diff --git a/.changeset/large-needles-vanish.md b/.changeset/large-needles-vanish.md new file mode 100644 index 0000000000..1e14b782a8 --- /dev/null +++ b/.changeset/large-needles-vanish.md @@ -0,0 +1,5 @@ +--- +'@sl-design-system/progress-bar': patch +--- + +Added progress bar component diff --git a/.changeset/new-ravens-compare.md b/.changeset/new-ravens-compare.md new file mode 100644 index 0000000000..170b8c9644 --- /dev/null +++ b/.changeset/new-ravens-compare.md @@ -0,0 +1,5 @@ +--- +'@sl-design-system/sanoma-learning': patch +--- + +Added an accessible colour palette for the warning colours diff --git a/.changeset/yellow-cars-shout.md b/.changeset/yellow-cars-shout.md new file mode 100644 index 0000000000..29b7419305 --- /dev/null +++ b/.changeset/yellow-cars-shout.md @@ -0,0 +1,16 @@ +--- +'@sl-design-system/editorial-suite': patch +'@sl-design-system/my-digital-book': patch +'@sl-design-system/sanoma-learning': patch +'@sl-design-system/itslearning': patch +'@sl-design-system/bingel-int': patch +'@sl-design-system/bingel-dc': patch +'@sl-design-system/clickedu': patch +'@sl-design-system/magister': patch +'@sl-design-system/kampus': patch +'@sl-design-system/neon': patch +'@sl-design-system/teas': patch +'@sl-design-system/max': patch +--- + +Added progress bar tokens diff --git a/packages/components/format-date/src/format-date.spec.ts b/packages/components/format-date/src/format-date.spec.ts index c4421c206f..a6dd32f65a 100644 --- a/packages/components/format-date/src/format-date.spec.ts +++ b/packages/components/format-date/src/format-date.spec.ts @@ -5,7 +5,7 @@ import { FormatDate } from './format-date.js'; describe('sl-format-number', () => { let el: FormatDate; - const date = new Date(Date.UTC(2022, 11, 17, 14, 5, 42)); + const date = new Date(2022, 11, 17, 14, 5, 42); describe('defaults', () => { beforeEach(async () => { @@ -111,7 +111,6 @@ describe('sl-format-number', () => { el.timeZoneName = 'long'; await el.updateComplete; - console.log(el.renderRoot); expect(el.renderRoot).to.have.trimmed.text('12/17/2022, Coordinated Universal Time'); }); diff --git a/packages/components/progress-bar/index.ts b/packages/components/progress-bar/index.ts new file mode 100644 index 0000000000..dd76894a2b --- /dev/null +++ b/packages/components/progress-bar/index.ts @@ -0,0 +1 @@ +export * from './src/progress-bar.js'; diff --git a/packages/components/progress-bar/package.json b/packages/components/progress-bar/package.json new file mode 100644 index 0000000000..81830725ac --- /dev/null +++ b/packages/components/progress-bar/package.json @@ -0,0 +1,53 @@ +{ + "name": "@sl-design-system/progress-bar", + "version": "0.0.0", + "description": "Progress-bar component for the SL Design System", + "license": "Apache-2.0", + "publishConfig": { + "registry": "https://npm.pkg.github.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/sl-design-system/components.git", + "directory": "packages/components/progress-bar" + }, + "homepage": "https://sanomalearning.design/components/progress-bar", + "bugs": { + "url": "https://github.com/sl-design-system/components/issues" + }, + "type": "module", + "main": "./index.js", + "module": "./index.js", + "types": "./index.d.ts", + "customElements": "custom-elements.json", + "exports": { + ".": "./index.js", + "./package.json": "./package.json", + "./register.js": "./register.js" + }, + "files": [ + "**/*.d.ts", + "**/*.js", + "**/*.js.map", + "custom-elements.json" + ], + "sideEffects": [ + "register.js" + ], + "scripts": { + "test": "echo \"Error: run tests from monorepo root.\" && exit 1" + }, + "dependencies": { + "@sl-design-system/icon": "^1.0.0" + }, + "devDependencies": { + "@lit/localize": "^0.12.1", + "@open-wc/scoped-elements": "^3.0.5", + "lit": "^3.1.4" + }, + "peerDependencies": { + "@lit/localize": "^0.12.1", + "@open-wc/scoped-elements": "^3.0.5", + "lit": "^3.1.4" + } +} diff --git a/packages/components/progress-bar/register.ts b/packages/components/progress-bar/register.ts new file mode 100644 index 0000000000..2ae5bc3ce1 --- /dev/null +++ b/packages/components/progress-bar/register.ts @@ -0,0 +1,3 @@ +import { ProgressBar } from './src/progress-bar.js'; + +customElements.define('sl-progress-bar', ProgressBar); diff --git a/packages/components/progress-bar/src/progress-bar.scss b/packages/components/progress-bar/src/progress-bar.scss new file mode 100644 index 0000000000..6e30d7d00d --- /dev/null +++ b/packages/components/progress-bar/src/progress-bar.scss @@ -0,0 +1,132 @@ +$variants: success, warning, error; + +:host { + --_bar-background: var(--sl-color-progressbar-background); + --_bar-thickness: var(--sl-size-progressbar); + --_border-radius: var(--sl-border-radius-full); + --_gap: var(--sl-space-progressbar-vertical-gap); + --_helper-color: var(--sl-color-input-helper-text-default); + --_helper-color-error: var(--sl-color-progressbar-error-track); + --_helper-font: var(--sl-text-input-field-label-hint-md); + --_indeterminate-duration: 20s; + --_label-color: var(--sl-color-input-field-label-text-default); + --_label-font: var(--sl-text-input-field-label-label-md); + --_label-gap: var(--sl-space-progressbar-horizontal-gap); + --_progress-background: var(--sl-color-progressbar-active-track); + --_icon-fill: var(--sl-color-progressbar-active-track); + + @media (prefers-reduced-motion: no-preference) { + --_indeterminate-duration: 1.2s; + } + + color: var(--_helper-color); + display: flex; + flex-direction: column; + font: var(--_helper-font); + gap: var(--_gap); +} + +@each $variant in $variants { + :host([variant='#{$variant}']:not([indeterminate])) { + --_progress-background: var(--sl-color-progressbar-#{$variant}-track); + --_icon-fill: var(--sl-color-progressbar-#{$variant}-track); + } + + :host([variant='#{$variant}'][indeterminate]) .progress { + --_progress-background: var(--sl-color-progressbar-#{$variant}-track); + --_icon-fill: var(--sl-color-progressbar-#{$variant}-track); + + animation: none; + inline-size: 100%; + } + + :host([variant='#{$variant}'][indeterminate]) { + .label sl-icon { + --sl-icon-fill-default: var(--sl-color-progressbar-#{$variant}-track); + } + + .helper sl-icon { + --sl-icon-fill-default: var(--sl-color-progressbar-#{$variant}-track); + } + } +} + +:host([indeterminate]) .progress { + animation: var(--_indeterminate-duration) ease 500ms infinite normal none running indeterminate; + position: relative; +} + +:host(:not([indeterminate])) .progress { + inline-size: 100%; +} + +:host([variant='error']) ::slotted(*) { + color: var(--_helper-color-error); +} + +.label { + color: var(--_label-color); + display: flex; + font: var(--_label-font); + gap: var(--_label-gap); + justify-content: space-between; + + sl-icon { + --sl-icon-fill-default: var(--_icon-fill); + } +} + +.helper { + display: flex; + gap: var(--_label-gap); + justify-content: space-between; + + sl-icon { + --sl-icon-fill-default: var(--_icon-fill); + } +} + +::slotted(*) { + color: var(--_helper-color); + font: var(--_helper-font); +} + +.container { + align-items: stretch; + background: var(--_bar-background); + block-size: var(--_bar-thickness); + border-radius: var(--_border-radius); + display: flex; + inline-size: 100%; + overflow: hidden; + position: relative; +} + +.progress { + background: var(--_progress-background); + border-radius: var(--_border-radius); + transform-origin: left; + transition: + 400ms transform, + 400ms width, + 400ms background-color; +} + +/** Hiding the aria-live element for the UI, but not for the screen readers. */ +#live { + block-size: 0; + inline-size: 0; + overflow: hidden; +} + +@keyframes indeterminate { + 0% { + inline-size: 80%; + inset-inline-start: -80%; + } + + 100% { + inline-size: 10%; + inset-inline-start: 110%; + } +} diff --git a/packages/components/progress-bar/src/progress-bar.spec.ts b/packages/components/progress-bar/src/progress-bar.spec.ts new file mode 100644 index 0000000000..85dd6e126b --- /dev/null +++ b/packages/components/progress-bar/src/progress-bar.spec.ts @@ -0,0 +1,128 @@ +import { expect, fixture } from '@open-wc/testing'; +import { html } from 'lit'; +import '../register.js'; +import { type ProgressBar } from './progress-bar.js'; + +describe('sl-progress-bar', () => { + let el: ProgressBar; + let progressBar: HTMLDivElement; + + beforeEach(async () => { + el = await fixture(html` Downloaded 30% of 100% `); + + progressBar = el.renderRoot.querySelector('div.container') as HTMLDivElement; + }); + + it('should have no variant by default', () => { + expect(el).not.to.have.attribute('variant'); + }); + + it('should have no icon by default', () => { + const icon = el.renderRoot.querySelector('sl-icon') as HTMLElement; + + expect(icon).not.to.exist; + }); + + it('should not have any label by default', () => { + expect(el).not.to.have.attribute('label'); + }); + + it('should have 0 value by default', () => { + expect(el).not.to.have.attribute('value', '0'); + }); + + it('should have determinate progress bar by default', () => { + expect(progressBar).to.have.attribute('aria-valuenow'); + expect(el).not.to.have.attribute('indeterminate'); + }); + + it('should have a progressbar role', () => { + expect(progressBar).to.have.attribute('role', 'progressbar'); + }); + + it('should have the correct attributes', () => { + expect(progressBar).to.have.attribute('aria-describedby', 'helper'); + expect(progressBar).to.have.attribute('aria-valuemin', '0'); + expect(progressBar).to.have.attribute('aria-valuemax', '100'); + expect(progressBar).to.have.attribute('aria-valuenow', '0'); + }); + + it('should have aria-live by default', () => { + const ariaLive = el.renderRoot.querySelector('#live') as HTMLElement; + expect(ariaLive).to.have.attribute('aria-live', 'polite'); + expect(ariaLive).to.have.rendered.text('state active 0%'); + }); + + it('should be labelled properly when the label is set', async () => { + el.label = 'Progress label'; + await el.updateComplete; + + const label = el.renderRoot.querySelector('div.label') as HTMLElement; + + expect(label).to.have.trimmed.text('Progress label'); + expect(progressBar).to.have.attribute('aria-labelledby', 'label'); + }); + + it('should have the proper icon when the success variant is set', async () => { + el.label = 'Progress label'; + el.variant = 'success'; + await el.updateComplete; + + const label = el.renderRoot.querySelector('div.label') as HTMLElement, + icon = label?.querySelector('sl-icon') as HTMLElement; + + expect(label).to.exist; + expect(label).to.have.trimmed.text('Progress label'); + expect(icon).to.have.attribute('name', 'circle-check-solid'); + }); + + it('should have the proper icon when the warning variant is set', async () => { + el.label = 'Progress label'; + el.variant = 'warning'; + await el.updateComplete; + + const label = el.renderRoot.querySelector('div.label') as HTMLElement, + icon = label?.querySelector('sl-icon') as HTMLElement; + + expect(label).to.exist; + expect(label).to.have.trimmed.text('Progress label'); + expect(icon).to.have.attribute('name', 'octagon-exclamation-solid'); + }); + + it('should have the proper icon when the error variant is set', async () => { + el.label = 'Progress label'; + el.variant = 'error'; + await el.updateComplete; + + const label = el.renderRoot.querySelector('div.label') as HTMLElement, + icon = label?.querySelector('sl-icon') as HTMLElement; + + expect(label).to.exist; + expect(label).to.have.trimmed.text('Progress label'); + expect(icon).to.have.attribute('name', 'triangle-exclamation-solid'); + }); + + it('should have the icon in the helper text part when there is no label', async () => { + const label = el.renderRoot.querySelector('div.label') as HTMLElement; + expect(label).not.to.exist; + + el.variant = 'success'; + await el.updateComplete; + + const helper = el.renderRoot.querySelector('div.helper') as HTMLElement, + helperIcon = helper?.querySelector('sl-icon') as HTMLElement; + + expect(helper).to.exist; + expect(helperIcon).to.exist; + }); + + it('should change the aria-live when the value and variant have changed', async () => { + el.value = 60; + el.variant = 'warning'; + await el.updateComplete; + + const ariaLive = el.renderRoot.querySelector('#live') as HTMLElement; + expect(ariaLive).to.have.attribute('aria-live', 'polite'); + expect(ariaLive).to.have.rendered.text('state warning 60%'); + }); +}); diff --git a/packages/components/progress-bar/src/progress-bar.stories.ts b/packages/components/progress-bar/src/progress-bar.stories.ts new file mode 100644 index 0000000000..ac1696f950 --- /dev/null +++ b/packages/components/progress-bar/src/progress-bar.stories.ts @@ -0,0 +1,241 @@ +import '@sl-design-system/button/register.js'; +import '@sl-design-system/icon/register.js'; +import { type Meta, type StoryObj } from '@storybook/web-components'; +import { type TemplateResult, html } from 'lit'; +import '../register.js'; +import { type ProgressBar } from './progress-bar.js'; + +type Props = Pick & { slot?(): TemplateResult }; +type Story = StoryObj; + +export default { + title: 'Components/Progress bar', + tags: ['preview'], + args: { + label: 'This is the label of progress bar', + value: 60, + indeterminate: false, + variant: undefined + }, + argTypes: { + value: { + control: { + type: 'range', + min: 0, + max: 100 + } + }, + variant: { + control: 'inline-radio', + options: [undefined, 'success', 'warning', 'error'] + }, + slot: { + table: { + disable: true + } + } + }, + parameters: { + viewport: { + defaultViewport: 'default' + } + }, + render: ({ indeterminate, variant, value, label, slot }) => { + return html` + + ${slot?.() ?? html`Uploaded ${value}% of 100%`} + + `; + } +} satisfies Meta; + +export const Basic: Story = {}; + +export const Overflow: Story = { + ...Basic, + args: { + label: + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ' + + 'Nunc lobortis mattis aliquam faucibus purus in massa tempor nec. Tincidunt eget nullam non nisi est sit amet facilisis magna. ' + + 'Dignissim convallis aenean et tortor. Facilisis leo vel fringilla est ullamcorper. Mi proin sed libero enim sed faucibus turpis in. ' + + 'Ullamcorper malesuada proin libero nunc consequat interdum varius. Eget egestas purus viverra accumsan in nisl nisi scelerisque. ' + + 'Erat imperdiet sed euismod nisi porta. Pulvinar pellentesque habitant morbi tristique. Lobortis elementum nibh tellus molestie nunc non blandit massa enim.' + }, + render: ({ indeterminate, variant, value, label }) => { + setTimeout(() => { + const progressBar = document.querySelector('sl-progress-bar') as ProgressBar, + subtractButton = progressBar?.nextElementSibling, + addButton = subtractButton?.nextElementSibling; + + addButton?.addEventListener('click', () => { + const newValue = Math.min(100, progressBar.value + 5); + progressBar.value = newValue; + progressBar.requestUpdate(); + }); + + subtractButton?.addEventListener('click', () => { + const newValue = Math.max(0, progressBar.value - 5); + progressBar.value = newValue; + progressBar.requestUpdate(); + }); + }); + + return html` + + + Uploaded ${value}% of 100% + + Decrease + Increase + `; + } +}; + +export const Indeterminate: Story = { + args: { + indeterminate: true, + label: 'Generating report', + slot: () => html`This may take a few minutes` + } +}; + +export const Download: StoryObj = { + args: { + ...Basic.args + }, + argTypes: { + label: { + table: { + disable: true + } + }, + value: { + table: { + disable: true + } + }, + indeterminate: { + table: { + disable: true + } + }, + variant: { + table: { + disable: true + } + } + }, + render: () => { + let progressBar: ProgressBar, currentProgress: number; + const helperText = 'Preparing download'; + setTimeout(() => { + const size = 100; + progressBar = document.querySelector('sl-progress-bar') as ProgressBar; + setTimeout(() => { + const interval = setInterval(() => { + currentProgress = progressBar.value; + const progressBarHelper = progressBar.querySelector('span.my-helper'), + step = Math.random() * 8; + + const running = progressBar.value > 0; + progressBarHelper!.innerHTML = running + ? `Downloading ${progressBar.value.toFixed(1)}MB of ${size}MB` + : 'Preparing download'; + if (currentProgress + step >= 100) { + progressBar.value = 100; + progressBarHelper!.innerHTML = 'Done'; + } + progressBar.variant = progressBar.value >= 100 ? 'success' : undefined; + if (currentProgress + step < size) { + progressBar.removeAttribute('indeterminate'); + progressBar.value = Math.round(currentProgress + step); + return currentProgress + step; + } else { + clearInterval(interval); + return size; + } + }, 300); + }, 3000); + }); + return html` + + ${helperText} + `; + } +}; + +export const All: StoryObj = { + argTypes: { + label: { + table: { + disable: true + } + }, + value: { + table: { + disable: true + } + }, + indeterminate: { + table: { + disable: true + } + }, + variant: { + table: { + disable: true + } + } + }, + render: () => html` + +

With label

+ + 20% of 100% + + + File downloaded + + + 40% of 100% + + + 50% of 100% + + + Preparing download + +

No label

+ + 20% of 100% + + + File uploaded + + + 40% of 100% + + + 50% of 100% + + + Preparing download + + ` +}; diff --git a/packages/components/progress-bar/src/progress-bar.ts b/packages/components/progress-bar/src/progress-bar.ts new file mode 100644 index 0000000000..f2f3c976bd --- /dev/null +++ b/packages/components/progress-bar/src/progress-bar.ts @@ -0,0 +1,99 @@ +import { localized, msg } from '@lit/localize'; +import { type ScopedElementsMap, ScopedElementsMixin } from '@open-wc/scoped-elements/lit-element.js'; +import { Icon } from '@sl-design-system/icon'; +import { type CSSResultGroup, LitElement, type TemplateResult, html, nothing } from 'lit'; +import { property } from 'lit/decorators.js'; +import { ifDefined } from 'lit/directives/if-defined.js'; +import { styleMap } from 'lit/directives/style-map.js'; +import styles from './progress-bar.scss.js'; + +declare global { + interface HTMLElementTagNameMap { + 'sl-progress-bar': ProgressBar; + } +} + +export type ProgressVariant = 'success' | 'warning' | 'error'; + +/** + * Progress bar component that can be used to communicate process status. + * Hidden `aria-live` element makes the progress bar more accessible, so developers don’t need to worry about adding it manually. + * + * + * ```html + * + * 40% of 100% + * + * ``` + * + * @slot default - A place for helper text like e.g. `20% of 100%`. + */ +@localized() +export class ProgressBar extends ScopedElementsMixin(LitElement) { + /** @internal */ + static get scopedElements(): ScopedElementsMap { + return { + 'sl-icon': Icon + }; + } + + /** @internal */ + static override styles: CSSResultGroup = styles; + + /** Whether the progress bar has the indeterminate state. */ + @property({ type: Boolean, reflect: true }) indeterminate = false; + + /** Label describing the value of the progress bar. */ + @property() label?: string; + + /** The variant of the progress bar. */ + @property({ reflect: true }) variant?: ProgressVariant; + + /** Progress value (from 0...100). */ + @property({ type: Number }) value = 0; + + /** @internal The name of the icon, depending on the variant. */ + get iconName(): string { + switch (this.variant) { + case 'success': + return 'circle-check-solid'; + case 'warning': + return 'octagon-exclamation-solid'; + case 'error': + return 'triangle-exclamation-solid'; + default: + return 'circle-check-solid'; + } + } + + override render(): TemplateResult { + return html` ${this.label + ? html`
+ ${this.label} ${this.variant ? html`` : nothing} +
` + : nothing} +
+
+
+
+ + + ${msg('state')} ${msg(this.variant ? this.variant : msg('active'))} + + ${this.value}% + + ${this.variant && !this.label ? html`` : nothing} +
`; + } +} diff --git a/packages/components/progress-bar/tsconfig.json b/packages/components/progress-bar/tsconfig.json new file mode 100644 index 0000000000..386c2cfcb7 --- /dev/null +++ b/packages/components/progress-bar/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../../../tsconfig.base.json", + "compilerOptions": { + "composite": true, + "rootDir": "./" + }, + "include": ["index.ts", "register.ts", "src/**/*.ts"] +} \ No newline at end of file diff --git a/packages/locales/src/nl.ts b/packages/locales/src/nl.ts index 03bd54fcfc..8a080bdf03 100644 --- a/packages/locales/src/nl.ts +++ b/packages/locales/src/nl.ts @@ -5,7 +5,9 @@ import { str } from '@lit/localize'; export const templates = { s091d3d07b5b3076f: 'Ok', + s129fac0ae1df7c8f: 'waarschuwing', s13fdff160ffad275: 'Wis tekst', + s19fe06e3408e53d0: 'succes', s2ceb11be2290bb1b: 'Annuleren', s39bba60b440fcf00: 'verplicht', s4215e0aa2fa8f5b4: 'Type hier om te filteren', @@ -16,9 +18,12 @@ export const templates = { s5e8250fb85d64c23: 'Sluiten', s629576c6b305d539: 'optioneel', s62aa2ba3fe47ece4: 'Vink tenminste één optie aan.', + s6580790b036f0c6f: 'actief', s6abb1cd87fe0114e: 'Home', + s7ce4fd9430e80cea: 'waarde', s8079b71872346425: 'Voer een waarde in.', s864c948d4629240f: 'Toon alles', + s9f7452dd75d54d31: 'fout', sa447e2f801a7eb2d: 'Kies een optie.', sa996297f6a208e98: 'Kruimelpad', sb85774dc5d18ff0f: 'Bevestig', @@ -31,6 +36,7 @@ export const templates = { sd244b51f6d7de8e2: 'Voer een waarde in volgens het gevraagde patroon.', sd711c88b851db6c9: 'De volgende velden zijn incorrect:', sde6884478b7cc818: str`Voer tenminste ${0} karakters in (je hebt op dit momoment ${1} karakter${2}).`, + see63aaad45b1b116: 'status', sf1ec4acb8d744ed9: 'Mededeling', sf677da98fa27f9b6: 'Meer links' }; diff --git a/packages/locales/src/nl.xlf b/packages/locales/src/nl.xlf index 7b73f4f945..20c6686b23 100644 --- a/packages/locales/src/nl.xlf +++ b/packages/locales/src/nl.xlf @@ -118,6 +118,30 @@ Frequently Used Vaak gebruikt + + state + status + + + active + actief + + + success + succes + + + warning + waarschuwing + + + error + fout + + + value + waarde + diff --git a/packages/tokens/src/$themes.json b/packages/tokens/src/$themes.json index ad732eb897..dc5016683b 100644 --- a/packages/tokens/src/$themes.json +++ b/packages/tokens/src/$themes.json @@ -13151,15 +13151,15 @@ "id": "2238cc554f2c51d124ae0b38928da5dc55a0327d", "name": "editorial-suite/light", "$figmaStyleReferences": { - "body.background": "S:fbb4e42d0a8e974444d7f1e39141c7bdfb9ce2fa,", - "body.foreground": "S:f766ba3a25883e392f0511f428e09bdf594a805a,", - "body.surface.100": "S:c5af9c7c01c77baf0c1692a7c7ce577c3a40d484,", - "body.surface.200": "S:c29fe7525b2ef3fba5003bf8a70e7d31a838469a,", - "body.surface.overlay": "S:8f48cd5982e65e0f30b305bf9adaed40926a5dbd,", - "color.avatar.background": "S:94566d4d3f5c6e15c5d1432abbbde763d01ff284,", - "color.avatar.foreground": "S:04d97a024e3653143ca3bd98c7ba01eae1da4f10,", - "color.avatar.header": "S:178037d775084fc69de32f8ac9cc2e4724315c07,", - "color.avatar.subheader": "S:72cecb14e7256ca6d92d69642ac5c19c387d9eee,", + "body.background": "S:aba733b77a7f068303c7457e6e99dbb5ed81197b,", + "body.foreground": "S:4c7a48ebada04120f54eb9eec7122ecf71330cb0,", + "body.surface.100": "S:d052c8d6561779f74693289d61e6aee65354f762,", + "body.surface.200": "S:5bbd756965aba53fe78ddf9b9e20d43b3904cb74,", + "body.surface.overlay": "S:b4506f5b6a3e4889bd700d679c7fcd4655229109,", + "color.avatar.background": "S:d52cebc8e2d2e46abeee9297dd3de1a6c967b00f,", + "color.avatar.foreground": "S:7846766ee2dc36091033af3effa2d16e1463828e,", + "color.avatar.header": "S:46e23362d3d5698594ca862d5e339e37302736c0,", + "color.avatar.subheader": "S:6fe14393145e60952024d018e3fee90e6cf5e7b0,", "color.badge.danger.background": "S:9a3a9572623b42df0f8e800d0c7eb48cb269a7a5,", "color.badge.danger.foreground": "S:8faf223ed2d4502bba620eedadf563ac2d2902bf,", "color.badge.success.background": "S:feafe69961aa9527c5e73f7a52791bc59a8b22a1,", @@ -13172,1026 +13172,1037 @@ "color.badge.neutral.foreground": "S:b906180dd7e9fa6179d068156011aa200f55c42e,", "color.badge.primary.background": "S:3e6f254a58698ebcf8b5f380f2e6ab68bed163e0,", "color.badge.primary.foreground": "S:132a8b2948db783b2c865c2434c888651c9c8d8a,", - "color.button.default.solid.idle.background": "S:a34850c24159835ed6ce532897b93d9b847b36e6,", - "color.button.default.solid.idle.foreground": "S:2e17f8f72d723caaaf9cbbafa0cf18aca31e587c,", - "color.button.default.solid.idle.border": "S:be50430a293f235d63194ee8e533b591422d995d,", - "color.button.default.solid.hover.background": "S:37ce2c3646a6f37a7f9ff22059edf8424a278427,", - "color.button.default.solid.hover.foreground": "S:429cda964894c5d5941a0f2af2bb3c93b6fa2f02,", - "color.button.default.solid.hover.border": "S:c11541ac3325877fa5925c3b4aab10c2b6963658,", - "color.button.default.solid.active.background": "S:d84e03a75ad52a650bdf8d33bf058a564fd18579,", - "color.button.default.solid.active.foreground": "S:5f5d8df81fda2c05505c89a834f4c3d9a898bced,", - "color.button.default.solid.active.border": "S:cd2d794d8f0fb393bb84dfc04949326c0d191a2e,", - "color.button.default.solid.disabled.background": "S:5a35bd9992739e25990253031b09103903aa8950,", - "color.button.default.solid.disabled.foreground": "S:960a18418a41b176a100ef0e7259b6ae75a1ae69,", - "color.button.default.solid.disabled.border": "S:e000520b084349c163198c34909ff993f7eb211d,", - "color.button.default.outline.idle.background": "S:7bba72f339688259b9895ec4510d069e09d69dd3,", - "color.button.default.outline.idle.foreground": "S:392ac63dc939f6c6c840b6eeb691f9c6a1cb942c,", - "color.button.default.outline.idle.border": "S:d339a5150d2e7471febf3dc9669e7792d523557e,", - "color.button.default.outline.hover.background": "S:72ad36e7d2f41f5238cce5479ff79149c839e36a,", - "color.button.default.outline.hover.foreground": "S:af6d139fe62716cae3b1d48d3709adcfb71f66b6,", - "color.button.default.outline.hover.border": "S:c29d9661ab2dcfa8e476d8a1f9edd00fb87aa563,", - "color.button.default.outline.active.background": "S:86c6c55ef58f965d61dd41c56c37d354bc8fc1fe,", - "color.button.default.outline.active.foreground": "S:0f5aa4f1a1213798fd7fc3df92fb7ac46623fea9,", - "color.button.default.outline.active.border": "S:332a7fb38009d42b644081b393f2c1ea5019d31b,", - "color.button.default.outline.disabled.background": "S:73c4932d8fc9df6194a301bbcd1aabba0bd9321a,", - "color.button.default.outline.disabled.foreground": "S:d496b58167c84009c9878cc7fd11e41289c6395e,", - "color.button.default.outline.disabled.border": "S:192aa9483a59ec739ada97d652f15ffea5aba164,", - "color.button.default.ghost.idle.background": "S:ef11ec561c5da822610860424497387c9f680f8a,", - "color.button.default.ghost.idle.foreground": "S:f0ec474457e8c9ae8092e16e869d50043ace1c2f,", - "color.button.default.ghost.idle.border": "S:48164b38e37dc467df318e69c77c4aef9d8da31c,", - "color.button.default.ghost.hover.background": "S:95b98b9c19367bfaa901b7dc47729122c629db01,", - "color.button.default.ghost.hover.foreground": "S:14c8d84148216bc53a4e77190febcd21e7470624,", - "color.button.default.ghost.hover.border": "S:5a7c705c0d4e6f9fcb0b1dad3dcd9cd2f2524dee,", - "color.button.default.ghost.active.background": "S:7ea4c68da20681cb517ba68a68610f04112e404e,", - "color.button.default.ghost.active.foreground": "S:6e7b8e2d6ab928bc08aed42cc9c9de46ca92b587,", - "color.button.default.ghost.active.border": "S:d35ef99a4c1aa3e1a25c689290d834eb6ad9ac61,", - "color.button.default.ghost.disabled.background": "S:d2aef73e739c8ef9bb500fdf13435b004661d5be,", - "color.button.default.ghost.disabled.foreground": "S:ee617e1c8fb0d0eb28cf041723e0028ec4ffcb72,", - "color.button.default.ghost.disabled.border": "S:5cd6c72a126de8eac4b53c5332ce0939ba8b92c2,", - "color.button.default.link.idle.background": "S:ea5a28d7ae498f72ed107224993aaeb248b65567,", - "color.button.default.link.idle.foreground": "S:40f4343f46651012abb69ca2d14deffa339252eb,", - "color.button.default.link.idle.border": "S:95104d2a85c3ed22cabadda0250577dfd9311510,", - "color.button.default.link.hover.background": "S:516b90a82508cb39d229d9c2a0d0f66285e633b1,", - "color.button.default.link.hover.foreground": "S:284fca4464f147afd465694f64b65bda8d079e36,", - "color.button.default.link.hover.border": "S:5146641fffc5e503eb774aa4941e2f3c37a3509b,", - "color.button.default.link.active.background": "S:9e10b98dc64c4e5db3230d5ff87443230eae16c8,", - "color.button.default.link.active.foreground": "S:8cc8eebb6583b6fd372b39457723dcbcc5355a33,", - "color.button.default.link.active.border": "S:79f71136884546ee0bbb24a98e7fc79be5d6c3e8,", - "color.button.default.link.disabled.background": "S:86362448fca7981df4d734dc308e6cf40197cdfa,", - "color.button.default.link.disabled.foreground": "S:cc149fd468ec21765b373cb27c87172a6dfdcc30,", - "color.button.default.link.disabled.border": "S:46c8f4ebc616747ff69bf1fac5393f9ac15d44bf,", - "color.button.primary.solid.idle.background": "S:e2f65429d53ec64878dc6c30f814facfa64aafed,", - "color.button.primary.solid.idle.foreground": "S:ad73521910e207e41f96b727207872e675e7a35b,", - "color.button.primary.solid.idle.border": "S:691f8c47be16d6fe4f82597b53fcfe18d0a24905,", - "color.button.primary.solid.hover.background": "S:5b0ba2bf510914a07d8f4c2a97e190f11be37718,", - "color.button.primary.solid.hover.foreground": "S:85edbcee382cb2374473b3c1d5431f2c51b6e414,", - "color.button.primary.solid.hover.border": "S:a9e889b7a4a7e79418f41b78c97553994ba652b6,", - "color.button.primary.solid.active.background": "S:b67fa2b3597c6976494cf32922b2823e1b335535,", - "color.button.primary.solid.active.foreground": "S:5fa4f60203e4a76216b8fb5f899731ee0f3465fa,", - "color.button.primary.solid.active.border": "S:4d116e37b1b7470648a85a1c979dfd7c0b166ed2,", - "color.button.primary.solid.disabled.background": "S:b61d51da33b5974e6be8e4a067d2da2f227051b6,", - "color.button.primary.solid.disabled.foreground": "S:9bbcdc3a08a5cd52440f3925922885c77a50bc44,", - "color.button.primary.solid.disabled.border": "S:d3eef10a2cf32dfb9d7329b85c69d0b486218fd5,", - "color.button.primary.outline.idle.background": "S:794063b12881f53a134f8278652d089e2c989fbd,", - "color.button.primary.outline.idle.foreground": "S:428d8079cc1b907f35ecb20ae3b41e8937c1a612,", - "color.button.primary.outline.idle.border": "S:3f59b219243d3d211438affdf81ff7d05b2798d0,", - "color.button.primary.outline.hover.background": "S:d35034241e2e32b482fd16c3357ba11e5213153c,", - "color.button.primary.outline.hover.foreground": "S:31fdd429a6e43a5aefe0be3dd82205baca3a65e1,", - "color.button.primary.outline.hover.border": "S:ac925e1c26863690d3ac0e45b4dfe8d8e635588d,", - "color.button.primary.outline.active.background": "S:a1fb07b957fd3c76257551b40f6bfab8dbe9aa00,", - "color.button.primary.outline.active.foreground": "S:d78345458c847b07075e90da601a65eb8b8b4548,", - "color.button.primary.outline.active.border": "S:df508c61ec1c3f1f37a7834cd54c92ee13567a52,", - "color.button.primary.outline.disabled.background": "S:ad0ca54a95426b86d595e7773abf28e7c0d38934,", - "color.button.primary.outline.disabled.foreground": "S:6a151e71843fe8eb02a3a70b7d5444f2e8a39613,", - "color.button.primary.outline.disabled.border": "S:e0eec608ee1e1beccf947ad65d75d079efd54f41,", - "color.button.primary.ghost.idle.background": "S:d4842ae2d1248274c1f55128b7b6fa2da878062f,", - "color.button.primary.ghost.idle.foreground": "S:6a4adc1f8380564eba0810883faa9ee2427c407f,", - "color.button.primary.ghost.idle.border": "S:07bcb1c01e709c6fb2a2be50831f7b172acaa4fe,", - "color.button.primary.ghost.hover.background": "S:0f0993aa7326067f96130e84d7b89c6a9b79f73d,", - "color.button.primary.ghost.hover.foreground": "S:8d683c38b4dbeeafb318fa192925398d704bd75d,", - "color.button.primary.ghost.hover.border": "S:53a17de560efe48ac1e5132919a0dc04062e3d93,", - "color.button.primary.ghost.active.background": "S:66f1d621c8465152a9e6cb72a8265f1eb1675465,", - "color.button.primary.ghost.active.foreground": "S:b876075073830d1d45f9aa0ff1ead745d784d6fe,", - "color.button.primary.ghost.active.border": "S:047998258ad54f5d0f71e9c2f3db6db34f9874ce,", - "color.button.primary.ghost.disabled.background": "S:bf96632832f5144b1c8120856445a73fd1e426c9,", - "color.button.primary.ghost.disabled.foreground": "S:4d5512aeee7e7f9d0f78252f7bc741f199ab6c4e,", - "color.button.primary.ghost.disabled.border": "S:49a1de810cb9ee07b0a900b4075d7d1d3ea03a73,", - "color.button.primary.link.idle.background": "S:8852f7f886e042ed06e9864d0083f8e2479668b1,", - "color.button.primary.link.idle.foreground": "S:ac58163d1d69d144b53323de584c8254cdca2ff5,", - "color.button.primary.link.idle.border": "S:c30a1fa2e15cb2c4c9209791b7abcf21bd233c18,", - "color.button.primary.link.hover.background": "S:4be63249c209c658cc62495f4f922026592b6555,", - "color.button.primary.link.hover.foreground": "S:1813491957acf4f2a409fd6fa11887287297b692,", - "color.button.primary.link.hover.border": "S:4aa406bc5b98111d927993d1c2a507eb8c857c5d,", - "color.button.primary.link.active.background": "S:25d3f86faf0235a4c122e7b7a765ee9642af4f84,", - "color.button.primary.link.active.foreground": "S:c18697320ed1960d08da9bfae12fbedc73ccedef,", - "color.button.primary.link.active.border": "S:514957c4ecc445d9c13ced2308677c0a2aebc42f,", - "color.button.primary.link.disabled.background": "S:2f94e7a49e008276e1abdc296a7a6c62af62f54f,", - "color.button.primary.link.disabled.foreground": "S:2b0e092d1800a7f008def5b774dbea3ff6f3a305,", - "color.button.primary.link.disabled.border": "S:595a0d41bccc9b9eb20b4c1ad3aff885f80213ea,", - "color.button.success.solid.idle.background": "S:4b6c2491ce2c16501dee5ee75e2a196b1f28e6bf,", - "color.button.success.solid.idle.foreground": "S:645b661e4f00cf2a08bcaa1022f896ffe95238e7,", - "color.button.success.solid.idle.border": "S:1165d21532bac7b713c9bba31aad401a6d2a1062,", - "color.button.success.solid.hover.background": "S:adf7800b06682da54f39f25edcf8a9a59ea643da,", - "color.button.success.solid.hover.foreground": "S:fe77bbded6ddc7ace42016d2b49e0e025b284ead,", - "color.button.success.solid.hover.border": "S:0a916f2bc67cac7f236d5f3e1b8b46f37e4c6ff5,", - "color.button.success.solid.active.background": "S:e62c08efbb7e789532b31b778ec1f1c000a917fe,", - "color.button.success.solid.active.foreground": "S:976c65c3090700d28697bb001403bb524a286228,", - "color.button.success.solid.active.border": "S:dc607a6232ee1f6a645f30660efdbaf9f2f535b7,", - "color.button.success.solid.disabled.background": "S:5b80c2fa4f1e6d29c1883edac01f7fce0db3c2f6,", - "color.button.success.solid.disabled.foreground": "S:8e002f47089fa85c57e5b1a4eeaa96d6d3457796,", - "color.button.success.solid.disabled.border": "S:41cb0aa4128189c8957d52e2a8d2a47ba433cb96,", - "color.button.success.outline.idle.background": "S:821dabea4f2153581b9c117ddc13227e32ce9512,", - "color.button.success.outline.idle.foreground": "S:83a1d6ee2d10367e2d185b9e9b41ba7e1b18e75e,", - "color.button.success.outline.idle.border": "S:c7d963b859d46f7986117a846dde77add9cb53eb,", - "color.button.success.outline.hover.background": "S:6261d12a2ef1ab52ea680685ed5027d7bdfc58bf,", - "color.button.success.outline.hover.foreground": "S:dbec5fc9798d7a1fc5e000476e0de7b798eb39a1,", - "color.button.success.outline.hover.border": "S:06e922a7d6fa8df767aa24f13f2aefdf07c9b582,", - "color.button.success.outline.active.background": "S:f0b3df7e9f8208129124abd393d07eb9c7e4b20f,", - "color.button.success.outline.active.foreground": "S:a8c9f254bdc9794b7d7a45448c1503d7dac18d1f,", - "color.button.success.outline.active.border": "S:c4a2a751be15d2ecec5986cb356683b8373a2fbb,", - "color.button.success.outline.disabled.background": "S:3ac69370bf979a1b9555c4d1118ec053b2cc50d6,", - "color.button.success.outline.disabled.foreground": "S:063e6d09c9276c79463ccf39c0c5725fe834a523,", - "color.button.success.outline.disabled.border": "S:0f943cb1900d116b84feb5f8f92017ba1876cc26,", - "color.button.success.ghost.idle.background": "S:129385f039bc7457e9037aeb031297af686fd833,", - "color.button.success.ghost.idle.foreground": "S:d286a35894e97af0ab1ffe0efc7e1483f072ade6,", - "color.button.success.ghost.idle.border": "S:6dcd4acc41a25383a36c6c00e66c8801a80755d9,", - "color.button.success.ghost.hover.background": "S:9721447534e4016c7d2c4b1c6b4b1489985b11db,", - "color.button.success.ghost.hover.foreground": "S:f3978d80ac6f4e5b77297b5aafcc04482df9255c,", - "color.button.success.ghost.hover.border": "S:0350fc02a1569b85cdb1a2f76be5e73cc5813989,", - "color.button.success.ghost.active.background": "S:4d9581baef1b58dd67502017c173736ea5f056a0,", - "color.button.success.ghost.active.foreground": "S:9910b71f1c30430c98d000f9bdc9aeefb334bc66,", - "color.button.success.ghost.active.border": "S:5ddce8894b46311070a9abee738b8c0164b9e240,", - "color.button.success.ghost.disabled.background": "S:bb04bd4dd3f4bb402f55adf1ca85a56660a4386c,", - "color.button.success.ghost.disabled.foreground": "S:8a820ab27e8947f1ebc80ce4866ff9166578f4a0,", - "color.button.success.ghost.disabled.border": "S:d2a825dd5a21f4c7c5090292dd35410b027852dd,", - "color.button.success.link.idle.background": "S:b791f75acb4cee78dbec2b27308ab6faa0b0b627,", - "color.button.success.link.idle.foreground": "S:7252cad2e7254b1d573899198debaff74cf9236e,", - "color.button.success.link.idle.border": "S:0c61f5c5afcb5fef3e3e542f0448ba10474ed365,", - "color.button.success.link.hover.background": "S:eb752c5fa476325b2b797f67991cdbcb8ffaea0f,", - "color.button.success.link.hover.foreground": "S:15f2367dd0f73b158693d4f335d5dec4bc3415b2,", - "color.button.success.link.hover.border": "S:9c2ea27373b8ad7586cac53365d5047dea4a5024,", - "color.button.success.link.active.background": "S:76631a93298ecea849d1423c12e0e1cf329b3169,", - "color.button.success.link.active.foreground": "S:cd35c7692d14185f61de28936f9ee7ba0126942e,", - "color.button.success.link.active.border": "S:0d9130b9bb86371f53b718235deefc3df5ccad3b,", - "color.button.success.link.disabled.background": "S:7d5ccbb8c3944f9a982285c9f152cef3cd349106,", - "color.button.success.link.disabled.foreground": "S:009cc151be881bb75528ab4b923fca7ca510caa6,", - "color.button.success.link.disabled.border": "S:8cf62d41d68252772f4f5fa8883bf759cc23aed2,", - "color.button.warning.solid.idle.background": "S:49e8b9a357ba26da42d549c90c603c5d8db1b3e9,", - "color.button.warning.solid.idle.foreground": "S:8bb04af1a46f970ebed22afea77e3aec6f8ab45f,", - "color.button.warning.solid.idle.border": "S:aadb4a78297f02e86c2359cede878c9f049c78d6,", - "color.button.warning.solid.hover.background": "S:ae2d5ef92e09e712efdfb10c60a72a82b93a09ee,", - "color.button.warning.solid.hover.foreground": "S:dd67bbaa345a3afd135088c16ea8acaa2244b6f4,", - "color.button.warning.solid.hover.border": "S:49de5b53388deed153212313c3348dfd8e603437,", - "color.button.warning.solid.active.background": "S:8d650e93e6c5a969d27d80b6297c389d8cb4a332,", - "color.button.warning.solid.active.foreground": "S:84d19367a1133074ea93f9aa601ef172e1bc3c37,", - "color.button.warning.solid.active.border": "S:d2a84baf08cc55c32e180888e66bbc5e376d8ac2,", - "color.button.warning.solid.disabled.background": "S:adb8edda0ef36ca92ccec9ae317890f2a195fb95,", - "color.button.warning.solid.disabled.foreground": "S:07ee998d9d0330bd919aaf94202f2e8b49a359d0,", - "color.button.warning.solid.disabled.border": "S:8810e6e5e9c3d95c58c2c0bb987466ac1d3bda2b,", - "color.button.warning.outline.idle.background": "S:567b58d6f79bd55c56c05f50f1d312f9aab22196,", - "color.button.warning.outline.idle.foreground": "S:d98da92eff70fc30bb3cd8afde88c3529d83940f,", - "color.button.warning.outline.idle.border": "S:ed74dd53abb91f8a1706705a80d19ae1b62fa57b,", - "color.button.warning.outline.hover.background": "S:ead6e7160dd6a566964fd77b714e60bdaad54f64,", - "color.button.warning.outline.hover.foreground": "S:8836f01cded0880c66e710dc025f1c1e27837958,", - "color.button.warning.outline.hover.border": "S:c8b0d90cca9f7d288d2704fc08d5a32a9497cdd1,", - "color.button.warning.outline.active.background": "S:93ddcf7f6ff8ad396821c8ed3593979138452f24,", - "color.button.warning.outline.active.foreground": "S:da1b5ef148200f434f9a430c1016dd723abfacee,", - "color.button.warning.outline.active.border": "S:1ca143fd86f09f0d728d87008f1a6a4481afcc25,", - "color.button.warning.outline.disabled.background": "S:80aaf1b45c782c05c983ee2dd0129f21eb9a351d,", - "color.button.warning.outline.disabled.foreground": "S:ea1482396bb548eba0e1ed78ca056a22cec35a72,", - "color.button.warning.outline.disabled.border": "S:0d0061756b3227becbfb55b35c584409397b0b98,", - "color.button.warning.ghost.idle.background": "S:e0e97efee379a75e03554aee8239cb87f7f17654,", - "color.button.warning.ghost.idle.foreground": "S:4407b6223476b75efa3cbb827ab2e86f9c599e3a,", - "color.button.warning.ghost.idle.border": "S:369a6600afadf9f8c0709e4adb9e3738fb2c2560,", - "color.button.warning.ghost.hover.background": "S:67f7e0ea24200984bc18e83ee8d4f3150b44665e,", - "color.button.warning.ghost.hover.foreground": "S:596f0cceb242edc6d9b946718af12989079e09a7,", - "color.button.warning.ghost.hover.border": "S:18130394f8fc4bcb0626337f9092155d57c924ce,", - "color.button.warning.ghost.active.background": "S:6c68df820c1cbbb41daded1ae8314925d36090d0,", - "color.button.warning.ghost.active.foreground": "S:0a8cf72d21e854721e0a10a8b7ae695167fccff3,", - "color.button.warning.ghost.active.border": "S:50468544099146d37b7f4f5b9d3d6e0afdf30cee,", - "color.button.warning.ghost.disabled.background": "S:9eb92edcebe05275410327d318eadfd9c643598f,", - "color.button.warning.ghost.disabled.foreground": "S:73a8b5e204679168bbba2ec89b1f91d0f496c918,", - "color.button.warning.ghost.disabled.border": "S:e24a28d30a1d329d60e329c3a3e0646ec02220c2,", - "color.button.warning.link.idle.background": "S:332a517da31945c804db4e172a6c20e196eee84d,", - "color.button.warning.link.idle.foreground": "S:86315c54b0819473eac694a1ff1a31cacb9edbdc,", - "color.button.warning.link.idle.border": "S:bb30832ec6dcb11d7472cc175c4dd76ae25f31dc,", - "color.button.warning.link.hover.background": "S:30394d1d4c5b1f247261e8da0002bf07b28be7a1,", - "color.button.warning.link.hover.foreground": "S:fca4856e4913fbd8f77251c57ef0f1afb23d23ce,", - "color.button.warning.link.hover.border": "S:e42bf8f63b460f43432026165f99208813aee9a6,", - "color.button.warning.link.active.background": "S:fb18049752b7d915220e545f720086ba9797c0be,", - "color.button.warning.link.active.foreground": "S:d1d6bfc9564bbc3cb02392df201bf03fab46ef8a,", - "color.button.warning.link.active.border": "S:ed2a2259cf53cfbee05260fac924c12cfc16aa13,", - "color.button.warning.link.disabled.background": "S:f9aa939e7c49ac74c915f0040f3c52d1fe4fdc81,", - "color.button.warning.link.disabled.foreground": "S:0c9a96557ad9dcb1fe8b2b485e5266697af7431c,", - "color.button.warning.link.disabled.border": "S:450d17faf50ef9f36657cd979f0689d8bdcc556d,", - "color.button.danger.solid.idle.background": "S:fb401abe2aef3d29d30a13a7d499161ac8ff24f8,", - "color.button.danger.solid.idle.foreground": "S:fc73812dc15a023e3315f10a479eaaadd2ec8812,", - "color.button.danger.solid.idle.border": "S:4508148a39d95f92705920a2c821523dd649ea0d,", - "color.button.danger.solid.hover.background": "S:313a959c1b1e0a500d555145437391c46e79ebb8,", - "color.button.danger.solid.hover.foreground": "S:081db10ab20fbf043577d259ebfed55870f8ca29,", - "color.button.danger.solid.hover.border": "S:674cf494519fe332eb1b72075933d1abd16d9211,", - "color.button.danger.solid.active.background": "S:ff89e5fbafd6dbbe0c09fdf4280697c541a80c12,", - "color.button.danger.solid.active.foreground": "S:bb5d4377461eae19ba0044a1aa2b279b573301d1,", - "color.button.danger.solid.active.border": "S:972de11e5a307044abd4365cdefc55fac519c866,", - "color.button.danger.solid.disabled.background": "S:bcac0d7891c9eb06d0749eae8dfb257af3aa1e56,", - "color.button.danger.solid.disabled.foreground": "S:edb335fb0d1003a886fefbbfe388152088a2b89f,", - "color.button.danger.solid.disabled.border": "S:86d071719e206f92659d46ca7bc26045bd7e0742,", - "color.button.danger.outline.idle.background": "S:96302080f68c196ffbf5b8b1416f8a64ced1f0bd,", - "color.button.danger.outline.idle.foreground": "S:d6f03a0d745c071a66583477c738b0ba5790b9e5,", - "color.button.danger.outline.idle.border": "S:14a8e2ab8e519540d5d54cff6bf07cf81c92e00f,", - "color.button.danger.outline.hover.background": "S:af8a89e97b8d07766daa58f23718a2a3713dcea2,", - "color.button.danger.outline.hover.foreground": "S:519257893bfe6f02cbc8574ed65d63655f3d206a,", - "color.button.danger.outline.hover.border": "S:e95da781556967fb7d8f573e695256b8c3fb29bf,", - "color.button.danger.outline.active.background": "S:198dfee7e460437e8b70fce0fb06caca8b773b71,", - "color.button.danger.outline.active.foreground": "S:7f12101156dafe91c624ccc5cd3c03b7e35db01e,", - "color.button.danger.outline.active.border": "S:026dd8986040225ffe67f0a3de0f568bf98b1fa3,", - "color.button.danger.outline.disabled.background": "S:31bbff74043a12bf1d571c1fef7881b20a13b069,", - "color.button.danger.outline.disabled.foreground": "S:7fc9369326b99c931ab98704e3e7e416fe9d53e9,", - "color.button.danger.outline.disabled.border": "S:fba01937f8cd41a9fa22116badb4cfeaf7d16630,", - "color.button.danger.ghost.idle.background": "S:613c2f16309a5440fe2a17361f6daf3c9fb0cbd6,", - "color.button.danger.ghost.idle.foreground": "S:16f516a7648761164ba66e63b9043f51ce68f754,", - "color.button.danger.ghost.idle.border": "S:350cead3889f0cc91c71f4926dc1d4bbffb36687,", - "color.button.danger.ghost.hover.background": "S:4cdc79fe703bfefd625fd28a1af326b38a2d4f6f,", - "color.button.danger.ghost.hover.foreground": "S:1e36bbe2b5ddb2369326082ebdc5e911bcdfe629,", - "color.button.danger.ghost.hover.border": "S:a137cae2558a893c5354e931e4123b634d47d848,", - "color.button.danger.ghost.active.background": "S:c519f437f4c1aae49af82345616b4adf0ff84d32,", - "color.button.danger.ghost.active.foreground": "S:1e697cb27014bbb06ede7ad36a9bbddcbd2ca9c7,", - "color.button.danger.ghost.active.border": "S:6f7ff8d8ad58b0e2c46a39f36085f4160de4f303,", - "color.button.danger.ghost.disabled.background": "S:10dbeb5ad8e8f2b02e8a2ebb0ad8c3afd80aaabe,", - "color.button.danger.ghost.disabled.foreground": "S:50e9be53e0b02a45a5e9d49a76ad4b94160f640f,", - "color.button.danger.ghost.disabled.border": "S:1b4e47198216b78d957c0bef173f634a155dde78,", - "color.button.danger.link.idle.background": "S:09a608940f65f3991b93955020dec947f59b99e6,", - "color.button.danger.link.idle.foreground": "S:738a5c0792fae358fc473de542cd48674247c7a3,", - "color.button.danger.link.idle.border": "S:c0d304751c801858a7dba0d8e6b0460c12f925d7,", - "color.button.danger.link.hover.background": "S:7fd91211301d6d0ab2fdff525dd026d106165ec4,", - "color.button.danger.link.hover.foreground": "S:144831f2b0b417f6f379e5e618cffa90f88d9e7c,", - "color.button.danger.link.hover.border": "S:bbb480c88b2ce16603553d657162ffafe6e9f524,", - "color.button.danger.link.active.background": "S:31262abac3d1c4304202e18fdfa6937bc6b605ff,", - "color.button.danger.link.active.foreground": "S:3146f61cac1ad7b55b39cc473d4225ceee851fcd,", - "color.button.danger.link.active.border": "S:2d04e339985ddf56a3269f5c685c647f5a0c8773,", - "color.button.danger.link.disabled.background": "S:cb8d8bec0628e8bf3a33d9cea32b2b1f6d8eadb0,", - "color.button.danger.link.disabled.foreground": "S:b5a7390d8921d06dfd8f400297bfbb6906dbab53,", - "color.button.danger.link.disabled.border": "S:2faba9e27a654f6abd5c307fd625179671a564b6,", - "color.surface.solid.primary.background": "S:59ca3592b4a54870f3e98d7cb811a96ab4ad0201,", - "color.surface.solid.primary.foreground": "S:ce2f67e938d5ffaf9c6580231da80682cf3eaa85,", - "color.surface.solid.secondary.background": "S:416a1c20d98a1c973edb2745fdf57154478067c3,", - "color.surface.solid.secondary.foreground": "S:4a80b34612a2d637959075c14e1d4a8ff8deda73,", - "color.surface.solid.accent.background": "S:a0d871129c519d9f72d0c978127b0917eb87e11a,", - "color.surface.solid.accent.foreground": "S:a09264e490e286617101a101cfd5856f7ae66063,", - "color.input.option.default.unchecked.default.background": "S:b90b758ec32321f6246611827d31383d20f5b854,", - "color.input.option.default.unchecked.default.border": "S:15097204ee80e3003e385ef29f6d32266bf4c703,", - "color.input.option.default.unchecked.default.label": "S:b13a153628f8c80244dd8ed9cb0648142f9e9dae,", - "color.input.option.default.unchecked.default.icon": "S:613ad96b8334f97953e102853eb5249e64955936,", - "color.input.option.default.unchecked.hover.background": "S:c278fcd2899439046f6c317c03e5823ff3d7f2d7,", - "color.input.option.default.unchecked.hover.border": "S:4cb61e370dc8aa5086f8f2773fa865a7cadf4410,", - "color.input.option.default.unchecked.hover.label": "S:3c276e3808aa018f36ec411c4b097141f76ef312,", - "color.input.option.default.unchecked.hover.icon": "S:194df42f09aeb11008b16563f6c5525e4a3ee2f7,", - "color.input.option.default.unchecked.active.background": "S:56486c7fb32ac3aa143fa56ae07c89f0a3920be9,", - "color.input.option.default.unchecked.active.border": "S:84c8fc3ad01c5ea991d5aca3bb4bc11e6eff3ffe,", - "color.input.option.default.unchecked.active.label": "S:98c4b4cab8f686075137609f437c5c1f09ab0467,", - "color.input.option.default.unchecked.active.icon": "S:89cf5701df65742fe4b2857f85b4a134ac7480d6,", - "color.input.option.default.unchecked.focus.background": "S:e231532048caf88cb9758a5029bb3b5276efd353,", - "color.input.option.default.unchecked.focus.border": "S:b77e2b614b3d2af58cf7e0b8cf1296604791c250,", - "color.input.option.default.unchecked.focus.label": "S:539776ccdb22d4bb19c9ba46ba9bf64998aec60b,", - "color.input.option.default.unchecked.focus.icon": "S:60624da0136abab5ab2e33905719b678abae2340,", - "color.input.option.default.unchecked.disabled.background": "S:26a5442ac2e6cfcd56298148522e67701cea5a7b,", - "color.input.option.default.unchecked.disabled.border": "S:51e1a0a65daae343edfd88047b90b6c846e4f212,", - "color.input.option.default.unchecked.disabled.label": "S:2497f4f4c5c6626706cc014f8f7c3d384e50c1a0,", - "color.input.option.default.unchecked.disabled.icon": "S:a20f3b073e26e1b534b3b626f7f834782d0b081a,", - "color.input.option.default.checked.default.background": "S:483b6ddd91fa661a281a5ae1411427a8dbacefd5,", - "color.input.option.default.checked.default.border": "S:2976fc0093fbc35cdc220665706ae9409f4c5cb7,", - "color.input.option.default.checked.default.label": "S:f6083758940a62c966cd7aad6f76d77efba355a7,", - "color.input.option.default.checked.default.icon": "S:aa205fcae65be30b8033fc9139ef7cb6905526a7,", - "color.input.option.default.checked.hover.background": "S:2f171f46f5b0b3013a0eb3df3047f10485899063,", - "color.input.option.default.checked.hover.border": "S:225d6b24669af398da0cae92b6289733a218f2c0,", - "color.input.option.default.checked.hover.label": "S:1b9574580f31cc5bf1b6c5fd4bc1dafe8183a5d7,", - "color.input.option.default.checked.hover.icon": "S:4e4f4d9fb5b5cec1e640260a16c7e52a90331876,", - "color.input.option.default.checked.active.background": "S:c5f83c94b61e3aca3e362e02aaee98becd235b98,", - "color.input.option.default.checked.active.border": "S:1a6acee8e555d0acaf10fb633aef735127a0ee1c,", - "color.input.option.default.checked.active.label": "S:93a330adfa5c13ba91c0f34217affed17d6f20b3,", - "color.input.option.default.checked.active.icon": "S:6cc55601dcca447c1d48a43e593ab6c948a8df8a,", - "color.input.option.default.checked.focus.background": "S:6893e8bd5fd47a1e2081bfabb9e02e9fd7dc4caf,", - "color.input.option.default.checked.focus.border": "S:2162007d213b802fbcd837508cf57f8579f5ac47,", - "color.input.option.default.checked.focus.label": "S:9d5bc0622444bc3a9b7733db0403f21926310dff,", - "color.input.option.default.checked.focus.icon": "S:3da3731196b8bd10e2f11b4a1e0803682a60f1c0,", - "color.input.option.default.checked.disabled.background": "S:46a0867bd5a18a95e1d0deeb1e8091a64c3d445d,", - "color.input.option.default.checked.disabled.border": "S:b29df55627e147d796a3616f9a313591a2b2c376,", - "color.input.option.default.checked.disabled.label": "S:0c87e460aaf2ce83dd602dc897f0bcffb8ff96b2,", - "color.input.option.default.checked.disabled.icon": "S:a7c32048a8f4bdeeba69687d8fe0d095b28e739c,", - "color.input.option.invalid.unchecked.default.background": "S:8a4d97fabd255315793739b22febc7a6de8afe93,", - "color.input.option.invalid.unchecked.default.border": "S:1f78a20d2e1d9729f3951e46005fe4a0070d0437,", - "color.input.option.invalid.unchecked.default.label": "S:e0d95f9f55c400e9029eff9cc45f5acb24519705,", - "color.input.option.invalid.unchecked.default.icon": "S:1fa947452b4cea0e2e7f808fd1134bd134796333,", - "color.input.option.invalid.unchecked.hover.background": "S:4fdb0d8a72d06319ec58beeab64a6c528550ebde,", - "color.input.option.invalid.unchecked.hover.border": "S:1d8f8dd776f68052c70aaf881523a3f65d3d9103,", - "color.input.option.invalid.unchecked.hover.label": "S:c814c43d4f4a389e492520c3e1160930c7872618,", - "color.input.option.invalid.unchecked.hover.icon": "S:0ccdac163c0ad83cae3b86a7f3770babf8ad27e3,", - "color.input.option.invalid.unchecked.active.background": "S:881bc92dec6687f885be0eac60676e56d9d85eb6,", - "color.input.option.invalid.unchecked.active.border": "S:148d45eeebd8eda10c299b504d13d89c59a2fc1f,", - "color.input.option.invalid.unchecked.active.label": "S:0432ab08cde8290120c1be1670b0d4cedfdac4e2,", - "color.input.option.invalid.unchecked.active.icon": "S:81fc441cac52dc0fb7c739de9614397c48e53672,", - "color.input.option.invalid.unchecked.focus.background": "S:ee8b4ec2254c570cc0459bb2dda6ed4d507b18ef,", - "color.input.option.invalid.unchecked.focus.border": "S:f26490a4a1cb18b3b8930c00117f845e8361e4f4,", - "color.input.option.invalid.unchecked.focus.label": "S:e60e39be1f8a4cb302b48fa70971f7e14140a49c,", - "color.input.option.invalid.unchecked.focus.icon": "S:8ef3eb62fc24226a1791afafc2ffcb6beb7206c0,", - "color.input.option.invalid.unchecked.disabled.background": "S:365cccd07a3acf87f3cf8a09ffb8d0d693c3f27a,", - "color.input.option.invalid.unchecked.disabled.border": "S:827f1d85af5ce32f04f78f9f87b9f4dad2c22ac4,", - "color.input.option.invalid.unchecked.disabled.label": "S:c9d8063c950f889ac0190640e3cadbe0146fd7e9,", - "color.input.option.invalid.unchecked.disabled.icon": "S:0e0fcfb602a79d0e90cf4c2442052781d548826a,", - "color.input.option.invalid.checked.default.background": "S:2122d83b221f1691381504bb2e0979064297f937,", - "color.input.option.invalid.checked.default.border": "S:6b6b6cda59e03dcb2a25676f9b94929d4e411b39,", - "color.input.option.invalid.checked.default.label": "S:6966fe9f638b567f9e5573fa20241b65c74d79bc,", - "color.input.option.invalid.checked.default.icon": "S:878a3779079c1137fc878bf5b6900b4223541410,", - "color.input.option.invalid.checked.hover.background": "S:990b6c12a10883da081b103f98d8a0f7efab7d06,", - "color.input.option.invalid.checked.hover.border": "S:ca117b5ab4739642fa5eb52186a94c3f6d6cb27d,", - "color.input.option.invalid.checked.hover.label": "S:741c1e17d6f3b0c1237a5738613b3edd58676fc5,", - "color.input.option.invalid.checked.hover.icon": "S:89031959a312bdc5c951251d9c85be8239b36631,", - "color.input.option.invalid.checked.active.background": "S:52fcf4787f4f54b6d61f1c458f8e5b5a480257d7,", - "color.input.option.invalid.checked.active.border": "S:98caf2662e24981f4ef21bf53f529a8aac169f1a,", - "color.input.option.invalid.checked.active.label": "S:c17a4907f2a362a9a7f506e019984e29602af3ed,", - "color.input.option.invalid.checked.active.icon": "S:3e47c9648c1673c4f8315beb96da33a248786088,", - "color.input.option.invalid.checked.focus.background": "S:8b756e4311d53bfe09831b82bafd116dbb2c3e47,", - "color.input.option.invalid.checked.focus.border": "S:51ccf663d3da7139176017135f252a2b5fe69728,", - "color.input.option.invalid.checked.focus.label": "S:b7a271234dd769bf3c0590bc6a306da4cdbde0a9,", - "color.input.option.invalid.checked.focus.icon": "S:b4d5fd6b72ddc494ce0bd2347dc15e3987882eef,", - "color.input.option.invalid.checked.disabled.background": "S:d94723b137b250aee0969369ad76780b628c228c,", - "color.input.option.invalid.checked.disabled.border": "S:47b37a35a5bc6af5e3c87608e0220f88e76ce08b,", - "color.input.option.invalid.checked.disabled.label": "S:b17a8d4b53cee503a54e27f66ca37e45e342f63b,", - "color.input.option.invalid.checked.disabled.icon": "S:000a469cd6686695669c9956c99e2f86b6b725cf,", - "color.input.option.valid.unchecked.default.background": "S:37cfaa9526829be88c4faf98b501531b8fe7f411,", - "color.input.option.valid.unchecked.default.border": "S:54f619199b95b59b45ff1cd0ecfbc084ad61e3fc,", - "color.input.option.valid.unchecked.default.label": "S:c4784a0671a3f1d816b2e33764ccfaaa538cb9d9,", - "color.input.option.valid.unchecked.default.icon": "S:9de593ae77a71f2b83922fd5f34774b324494342,", - "color.input.option.valid.unchecked.hover.background": "S:610f6537a217b15b95c349c61123978d5e4ddf9d,", - "color.input.option.valid.unchecked.hover.border": "S:db0e26738a8b2173dcd0df51ccb7b6e495b2771d,", - "color.input.option.valid.unchecked.hover.label": "S:b956fd17f5b99b3781b69df5f26a68c041a9ee7c,", - "color.input.option.valid.unchecked.hover.icon": "S:5f745acd958de74ed311a3f00aa1bae491ec453f,", - "color.input.option.valid.unchecked.active.background": "S:f4984efe4cf690b005b842ace37e3a3856647925,", - "color.input.option.valid.unchecked.active.border": "S:4b3532035c24b948714235ab18427643a95adf84,", - "color.input.option.valid.unchecked.active.label": "S:4af648caeed6c635cf3db8f0986cf5d5302ad3d2,", - "color.input.option.valid.unchecked.active.icon": "S:97cf74e3b7cfcee07b747463afc664b73e07b9d7,", - "color.input.option.valid.unchecked.focus.background": "S:234fb9987e87e3986d27241fc18347dbd7b55b74,", - "color.input.option.valid.unchecked.focus.border": "S:7101894d1dea17a91e5cf1b18a4d3b87f1a4f230,", - "color.input.option.valid.unchecked.focus.label": "S:5aa7b72f78dd9e96fb5f4cf663560cedbab14441,", - "color.input.option.valid.unchecked.focus.icon": "S:5e5090805193d8f98aad362860a2e7ca9df13275,", - "color.input.option.valid.unchecked.disabled.background": "S:1c2f490ada02db7894a621dfbe026ef99567776a,", - "color.input.option.valid.unchecked.disabled.border": "S:30cc635a09d62307106b533578fbc1664a1c8c22,", - "color.input.option.valid.unchecked.disabled.label": "S:676fd1821eb3bd59ff5fed258d04e864c66dc3c1,", - "color.input.option.valid.unchecked.disabled.icon": "S:abc4a599289ccf148ff4e094a230a1cd70d9576b,", - "color.input.option.valid.checked.default.background": "S:6f7a4ca18c41a52ffbfc733fc3f066586a6fbfc8,", - "color.input.option.valid.checked.default.border": "S:42366bf5d6c5ec1e1b2d8929932159681395b181,", - "color.input.option.valid.checked.default.label": "S:d0e7010c4545f8ae34753bd845cc459809a3fca3,", - "color.input.option.valid.checked.default.icon": "S:a0d008b7913ec2ec1426e46c0365cf39061b3fdc,", - "color.input.option.valid.checked.hover.background": "S:09468f6e950f7ba5580b009dac5da3b49403fa78,", - "color.input.option.valid.checked.hover.border": "S:bf7b293edb48d9b08dc6954994d309f0868bc6db,", - "color.input.option.valid.checked.hover.label": "S:d99cebf937fc6a71df940e6eb865112a2accc07c,", - "color.input.option.valid.checked.hover.icon": "S:faeda75e7e12ec210bb415c20fa5ca6c8d1c3a33,", - "color.input.option.valid.checked.active.background": "S:eb2660fe5a0291b15c159ae00980a0ebf5bba1ca,", - "color.input.option.valid.checked.active.border": "S:53176d39429527ef4d5f2f33108a442b0eb32b6d,", - "color.input.option.valid.checked.active.label": "S:c56412624fb311b638b2c1837c889dd8ede9fe06,", - "color.input.option.valid.checked.active.icon": "S:30c7d41cce12c0eed985aaef698d0521de7447ee,", - "color.input.option.valid.checked.focus.background": "S:0eb90e9633fcf04e5f7d317e95edd6effd3db23a,", - "color.input.option.valid.checked.focus.border": "S:5446299ca324d61d49ab9bd5c61895b89b14ef9f,", - "color.input.option.valid.checked.focus.label": "S:6b5db35c0194e7668cd329a42b42e3282fb225b2,", - "color.input.option.valid.checked.focus.icon": "S:6fdfc4b99e47a5e2247c448ab409846f736f7812,", - "color.input.option.valid.checked.disabled.background": "S:b63f07b600d4562fc47b2a108166625cb4f50a55,", - "color.input.option.valid.checked.disabled.border": "S:4f8e1113e75a1e0d1c186e3c8c69f5d16ae92188,", - "color.input.option.valid.checked.disabled.label": "S:697cb50797dd75f511ce62ab0ccfadf0d64968c8,", - "color.input.option.valid.checked.disabled.icon": "S:9bc09aef1d1807612da1fdc6bba76540b093b7df,", - "color.input.switch.default.unchecked.default.background": "S:d14a1498685f8102e07b3b99a579bef968f664b6,", - "color.input.switch.default.unchecked.default.text": "S:47d45d58f1d839dee9564b9d3c80744e730df7a1,", - "color.input.switch.default.unchecked.default.icon": "S:214810a3a10124467f064b83ad6b63b9f82cf916,", - "color.input.switch.default.unchecked.default.handle": "S:48b195b7640397cbd50b683262aab748afa4f52e,", - "color.input.switch.default.unchecked.hover.background": "S:83dbe6bb0f87974ee7c4e2faa54640b30ccef213,", - "color.input.switch.default.unchecked.hover.text": "S:44ca7a5ee0a79b46a4a5d49d452807d080568526,", - "color.input.switch.default.unchecked.hover.icon": "S:270f19a191f19f3f12a0abaca2ed697d8990bcf5,", - "color.input.switch.default.unchecked.hover.handle": "S:9597faaf5e1a1de138ab2666a91313b3bf785f3d,", - "color.input.switch.default.unchecked.active.background": "S:12dae74c42b15e1e011847224a48b04b1c8e05a4,", - "color.input.switch.default.unchecked.active.text": "S:0175087e8535eb64ac2f09284ae9ce7beee7529e,", - "color.input.switch.default.unchecked.active.icon": "S:8afd83dc6dd05a7b6620bcfe6458b4f93db207d4,", - "color.input.switch.default.unchecked.active.handle": "S:f3916eaf0cafdd3f5296adfcf0ed91da81572d9e,", - "color.input.switch.default.unchecked.focus.background": "S:658532866a7f7b016065dd3cd244e181de97ab90,", - "color.input.switch.default.unchecked.focus.text": "S:2848dc3f4918e60dac1bd8692763ccf7ffeb6356,", - "color.input.switch.default.unchecked.focus.icon": "S:ca547e4c463bd975c015a82f4c38376e42590f47,", - "color.input.switch.default.unchecked.focus.handle": "S:6a506c70e121962295c3e8528ee0c1d132003921,", - "color.input.switch.default.unchecked.disabled.background": "S:058caaaf237224f94d2b6be27a678ce75b3507c7,", - "color.input.switch.default.unchecked.disabled.text": "S:f67c56e2d12cfbff66bebf3e4474e134f913efca,", - "color.input.switch.default.unchecked.disabled.icon": "S:8533aa9e3a0fec6b755cc72e2f5c46591f3f6f3a,", - "color.input.switch.default.unchecked.disabled.handle": "S:812e56a903be772504af11e19bab42dcb93de9ed,", - "color.input.switch.default.checked.default.background": "S:1c51effeab733176c67ad6ffe1267a3b94b119eb,", - "color.input.switch.default.checked.default.text": "S:5caf3a93e43696113d6160fd61c2b8fca7576571,", - "color.input.switch.default.checked.default.icon": "S:8a8ccf78a954348b79bc907a736203fe6e07483c,", - "color.input.switch.default.checked.default.handle": "S:5ca9ff7bb4a2427217097009615a13827bd120cb,", - "color.input.switch.default.checked.hover.background": "S:2ef12db742b44c0706c32726780c2cc85b403269,", - "color.input.switch.default.checked.hover.text": "S:555bf30659b245c1689a2632c6c514514b8c8d78,", - "color.input.switch.default.checked.hover.icon": "S:b41ca47c55d8c0aa4a608fd2d332e8d3b5a7b415,", - "color.input.switch.default.checked.hover.handle": "S:74c2cbaa8a2b305d5323737ad5b6ec2c7d758a0e,", - "color.input.switch.default.checked.active.background": "S:2ebb162ee55924d198b7b06e75f8de3d158a393f,", - "color.input.switch.default.checked.active.text": "S:a3c5275e05e54450d50493bb4d1b1ff61b82d457,", - "color.input.switch.default.checked.active.icon": "S:ffee65c02f4f728d99eaad326f4cfc44931717e3,", - "color.input.switch.default.checked.active.handle": "S:e8e72b9e1ddeedf449af8d5533a2c3a91eb7e71e,", - "color.input.switch.default.checked.focus.background": "S:5e950824d18c8665acfc6c9d54dc219a7e6c2e7c,", - "color.input.switch.default.checked.focus.text": "S:6f20367c152bb8e222585ad392daa4e1c16ed070,", - "color.input.switch.default.checked.focus.icon": "S:04f7ddf3c39f25b5f2e1554c1c9540a0f2f48e24,", - "color.input.switch.default.checked.focus.handle": "S:a6f3fc2d2bbe2b08583affe8f01bb54903fffb13,", - "color.input.switch.default.checked.disabled.background": "S:03439cc42cedcfd0335e798b4002727a3c34ae65,", - "color.input.switch.default.checked.disabled.text": "S:7f5dc01fb78a38d10596ae4a7c2398f84ef7a7a1,", - "color.input.switch.default.checked.disabled.icon": "S:bb47b03f78b2097d1d35d8a68c2d9dd9ce7c95e3,", - "color.input.switch.default.checked.disabled.handle": "S:1de41e7cc20750a75ea71d8bb70e97925a529643,", - "color.input.textField.default.default.background": "S:beb7f1446c9cde9b86921ae50c5393226b6dd241,", - "color.input.textField.default.default.border": "S:34549e05b4f6ce799d5b9dd16566d3bd3ce03e09,", - "color.input.textField.default.default.label": "S:0264bdb7334116470cc87ab804c47d5f2072291d,", - "color.input.textField.default.default.icon": "S:06750c3cdff829e982d2b0012b305bfdb6dcc7ce,", - "color.input.textField.default.default.inputText": "S:85e98707921d7d04536d2f40f2528af0d03f8dc2,", - "color.input.textField.default.default.placeholder": "S:edf84ec773f84ffc686b3e09f5d7c990ff392f25,", - "color.input.textField.default.hover.background": "S:4d938ce4a949f58c2dfd94d8defdd284001cb406,", - "color.input.textField.default.hover.border": "S:ff80dce8292ac4172defdd5d6488f295c0e6e16f,", - "color.input.textField.default.hover.label": "S:4000d4d7b6e28f528c981c6ed0161d41c04d3c7b,", - "color.input.textField.default.hover.icon": "S:611735938b1b0cafd403c7724181cd137e27c625,", - "color.input.textField.default.hover.inputText": "S:dd03a89261f398161e57006ddc262986c5341e53,", - "color.input.textField.default.hover.placeholder": "S:5f116ddc8e37445b49807031fc13506ef21caa64,", - "color.input.textField.default.active.background": "S:cdc564fe9c55cf5e4613527194915d9e75a17bf2,", - "color.input.textField.default.active.border": "S:ec39a53ca0e6764b5253d9d80c114971f5d101d5,", - "color.input.textField.default.active.label": "S:72cd6e327cf145ad4d5848e1fd6a5779bd1d462b,", - "color.input.textField.default.active.icon": "S:b08acc5d6ac5aa79bdb28caa12f79b0b611117ef,", - "color.input.textField.default.active.inputText": "S:2baa06331820c742c4359f1592964231f5f0ebb9,", - "color.input.textField.default.active.placeholder": "S:86a889238862a125c06dff04c9e8865b25069112,", - "color.input.textField.default.focus.background": "S:231c687e25c0c850138d645901f1b52f1b8a5e2b,", - "color.input.textField.default.focus.border": "S:d5279ce9b6e01dd59fd074418199ff8def3c36f9,", - "color.input.textField.default.focus.label": "S:43f06c4cb4d2c8b50b921f2629108c1b6bcb667b,", - "color.input.textField.default.focus.icon": "S:94fa3fbbbad2cfa121d57c3c98bd0457c4041272,", - "color.input.textField.default.focus.inputText": "S:8c5107c0f634e985be30b7757c78322d7ad8eaf8,", - "color.input.textField.default.focus.placeholder": "S:d2bf3f10a7c361f083295bcf89cd6e2ad9d3b7aa,", - "color.input.textField.default.disabled.background": "S:0a28529c0d1aaa1b2ac1538e5e716459fd7d93cb,", - "color.input.textField.default.disabled.border": "S:7a68d51468efb6b946ad2eb2b1760117cb28a48e,", - "color.input.textField.default.disabled.label": "S:a5188d9f3b752ab961ce0f22b4dee63ae07aafd2,", - "color.input.textField.default.disabled.icon": "S:a1735846b6fd2b95af8bfab2ce5009ea11a90456,", - "color.input.textField.default.disabled.inputText": "S:9f3c065c70b086d6453b54cd4e0f85f62fe3170f,", - "color.input.textField.default.disabled.placeholder": "S:b882e1da109d6e3bf25e118b17c8242bad08d9a8,", - "color.input.textField.invalid.default.background": "S:c81bd84775594bef3dadefb5cfce45a621a5ef7f,", - "color.input.textField.invalid.default.border": "S:de474f3b158e2cc1e0ab1a09e4463c997442efd3,", - "color.input.textField.invalid.default.label": "S:6676c01411cc8519c195f465aa4e4d5e12173100,", - "color.input.textField.invalid.default.icon": "S:25777fa7580c5f7a0c0df1f320842a9e6e035ae6,", - "color.input.textField.invalid.default.inputText": "S:bfb17970c63b6231d2dfc46ecb86810f8745f6ac,", - "color.input.textField.invalid.default.placeholder": "S:30b891cba2588bc201cf67c9be9515cafe757df5,", - "color.input.textField.invalid.hover.background": "S:84eecba694071b12cd5e223502be1096df9a6a8d,", - "color.input.textField.invalid.hover.border": "S:a2c0ce02ccf88a0d5de604cf83d6b8fcef683254,", - "color.input.textField.invalid.hover.label": "S:a83b137e20a42a720bf9f4ce2f96e8726e7bbc8b,", - "color.input.textField.invalid.hover.icon": "S:0553b0f503dc420ea8dd5401d05a0577cfe1be9c,", - "color.input.textField.invalid.hover.inputText": "S:a4c3b295d6e12ca65efe5f15142e646b3d422cdc,", - "color.input.textField.invalid.hover.placeholder": "S:8887d5b6a2338baf5d0d035796b53bdf523a6574,", - "color.input.textField.invalid.active.background": "S:614fb6e99daa1b09792e8b3c8fba1b4dcfe8014a,", - "color.input.textField.invalid.active.border": "S:ac4af72b3b0f60b524499a233a8c440522151ab0,", - "color.input.textField.invalid.active.label": "S:ad5ef23a8ae51e2de792aff5123ec82e82072202,", - "color.input.textField.invalid.active.icon": "S:e9d531b58c9e8d3c3df213b16be128181aa930cc,", - "color.input.textField.invalid.active.inputText": "S:734c3cfa4bc1ab0a6d3a1e29b5922ef54ed77cc4,", - "color.input.textField.invalid.active.placeholder": "S:00edcd414eb48d431a651e803b5053629684e051,", - "color.input.textField.invalid.focus.background": "S:2605cd903a2e3fe63dc4341a2216481f0a894bef,", - "color.input.textField.invalid.focus.border": "S:39faf046802ee090c882f060f5a04713080b8d9f,", - "color.input.textField.invalid.focus.label": "S:b65d9fe4f0c391b9dc8c7fc5504da60bfef47b05,", - "color.input.textField.invalid.focus.icon": "S:65fce5fd9cea036d33db6365ddf949432eae4cd6,", - "color.input.textField.invalid.focus.inputText": "S:077707a83e60b96252efa90bbd1e455e2d1cb0d0,", - "color.input.textField.invalid.focus.placeholder": "S:f1a833b9196ca90f77889603adbeaa45c4715454,", - "color.input.textField.invalid.disabled.background": "S:da8a57d377535e8e26c297ab962703e3b623a48c,", - "color.input.textField.invalid.disabled.border": "S:c70ee99094797d5bfa5fd27fc6f17cf8b949adef,", - "color.input.textField.invalid.disabled.label": "S:7a408a99aeeb39f481f7405c746025cc1bbb6db1,", - "color.input.textField.invalid.disabled.icon": "S:6ad1481edda419eae261d1ccd9b0f1c75260ef25,", - "color.input.textField.invalid.disabled.inputText": "S:0b8c33718b8bdb2c81aff6a0aa972e5d926f1370,", - "color.input.textField.invalid.disabled.placeholder": "S:2c151106a460035bed7abb2c35aa8af995ea2171,", - "color.input.textField.valid.default.background": "S:93ccdc874116a70d48d58eaa85161fc50f5a988d,", - "color.input.textField.valid.default.border": "S:752215df055ec07b63184ae8c65e68997a7173d6,", - "color.input.textField.valid.default.label": "S:ea89befd77d41ba1f999a2dbe76f4beb3060776a,", - "color.input.textField.valid.default.icon": "S:414dad042a22fadf2861fc24a98402907af40572,", - "color.input.textField.valid.default.inputText": "S:1d5c3e9d2761d2f82a11e6765508f4d2d9cf7c3f,", - "color.input.textField.valid.hover.background": "S:376979e447d2118d2277e48684b2e7eaa7dd641d,", - "color.input.textField.valid.hover.border": "S:0fb134e1acf6146bf26480847247638498452a46,", - "color.input.textField.valid.hover.label": "S:e16aed8bade98c4e6cd4aaa62f7731927063f690,", - "color.input.textField.valid.hover.icon": "S:6ce802cfa7e6254838c814b93d091fed2ec9df72,", - "color.input.textField.valid.hover.inputText": "S:f4985d5e2cfd318d8e64f4e5915752475405a31f,", - "color.input.textField.valid.active.background": "S:a4de0b9778cef6cec8ad74c01af0210ab704ce91,", - "color.input.textField.valid.active.border": "S:f77f5da8f57a14227bc8c80983c7dcb2c0a4c99e,", - "color.input.textField.valid.active.label": "S:23a17c01ab254c554048d8bc614935fec3aab2ed,", - "color.input.textField.valid.active.icon": "S:4ab8ba460151dd873d0e08389a1fa1c71d5d9db1,", - "color.input.textField.valid.active.inputText": "S:e3c6cb91ddad88c176a036ff9707670228b1ef3e,", - "color.input.textField.valid.focus.background": "S:fccbfe28519fc37ac296ff4aecc7a5252632a7f6,", - "color.input.textField.valid.focus.border": "S:2135d653f91d10a9454804a0ea82c74591cf88ab,", - "color.input.textField.valid.focus.label": "S:4ae89d028e238a29745ccfe12b0e9cab57c68240,", - "color.input.textField.valid.focus.icon": "S:ebb6506cc67a644177942f27a827534d87f33dfd,", - "color.input.textField.valid.focus.inputText": "S:344fc6e519a36cac06aa79a72722a8c130988add,", - "color.input.textField.valid.disabled.background": "S:8aec6f2364e88c9ec8b2013c8013e36d3c001fa8,", - "color.input.textField.valid.disabled.border": "S:5cf491a5dfa56ce27e03bfac81b1063cd38147e3,", - "color.input.textField.valid.disabled.label": "S:1860bd114d680fe434690e80697a5d86457208da,", - "color.input.textField.valid.disabled.icon": "S:a861cd4926a66e122e837255104a639d1766972e,", - "color.input.textField.valid.disabled.inputText": "S:f21644d228edce33d0e68ae66f7b8c14402f68d0,", - "color.input.helper.text.default": "S:aa10f53bc8c9b71ce7df7a49c7fe4a13e2247d6e,", - "color.input.helper.text.disabled": "S:16624e043e82d3f43d32023d82bdb6a3867b0a9f,", - "color.input.helper.text.invalid": "S:74de709826ab92735ed9d0cb4c0f9e52030b93a0,", - "color.input.helper.icon.default": "S:1f47949f70a40e32c342aad7ab86e04388b6ef88,", - "color.input.helper.icon.disabled": "S:3f9bc91937cc59564ae084c6067c0f7770f72cc0,", - "color.input.helper.icon.invalid": "S:e289c179e00e9c05b162b2ab8303e1ab49c8936b,", - "color.input.fieldLabel.text.default": "S:a8243093813232f2c043d2ccba871d1708f1874e,", - "color.input.fieldLabel.text.disabled": "S:ccd2be4bfa5835887080708bc6169319bca29753,", - "color.input.fieldLabel.text.invalid": "S:5ab2cdfdcb01540dc05206066ba29c47cce104b8,", - "color.input.fieldLabel.icon.default": "S:4de2402e557a06cd921d97937b4b5504779ae4ac,", - "color.input.fieldLabel.icon.disabled": "S:edcfed4d0aa8e94331af0f8951c02dece5a9f0f2,", - "color.input.fieldLabel.icon.invalid": "S:d7bde77b2681e071aa09d40708bbac2029eb6865,", - "color.input.fieldLabel.select.hover.background": "S:06ebb2aa867491382ff5a9f3aa85896b59e8ba75,", - "color.input.fieldLabel.select.hover.foreground": "S:4872e2711fd797ed5b5f6444fb06016fc76e7b3f,", - "color.input.fieldLabel.select.hover.border": "S:3fc6e2401e211e3439e4a23866d8660c0d8d020b,", - "color.input.fieldLabel.select.group-title.foreground": "S:ed0fdc2fc58ccab51a465ea54f49d306a6a2b146,", - "color.input.fieldLabel.select.divider.line": "S:c902355d8d1dd446bbe4bd121a111a982bfcf720,", - "color.input.fieldLabel.select.default.background": "S:d9c116cc215b9b858b95724a6ad5f1d951734809,", - "color.input.fieldLabel.select.default.foreground": "S:d5075af14a477f4de42495e4806bec9c64dd6922,", - "color.input.fieldLabel.select.default.border": "S:abc7107b196df963e2075b17acf62232d8039364,", - "color.input.fieldLabel.select.active.background": "S:19296d820108f4bf2a1fe56e8bc3250e28d4c403,", - "color.input.fieldLabel.select.active.foreground": "S:01f69491efa564cc241b140cf24127723d1766ec,", - "color.input.fieldLabel.select.active.border": "S:fa26534640fe969d63dd0c20c2084ada4f657cde,", - "color.input.fieldLabel.select.selected.background": "S:577f292056abc912c0128739aea5192c3e9ddced,", - "color.input.fieldLabel.select.selected.foreground": "S:08a7b41767aa87f32ae61fa197564b559080c7ce,", - "color.input.fieldLabel.select.selected.border": "S:345bc9a33ab64ba46b60840ceb3408b3884fd7d6,", - "color.input.fieldLabel.select.focus.background": "S:68276ab510101bad8976fb0b7aa2cbc627e4be60,", - "color.input.fieldLabel.select.focus.foreground": "S:e2a169d0d5a8b27c6c83161df6087faabae1e3bb,", - "color.input.fieldLabel.select.focus.border": "S:116af43d3148ad15b975104f720ad352945722a2,", - "color.input.fieldLabel.select.disabled.background": "S:c95e2201217e814351974c9f112160a190dd8d65,", - "color.input.fieldLabel.select.disabled.foreground": "S:7b01efdcbd2641c41175760584559b8527410026,", - "color.input.fieldLabel.select.disabled.border": "S:a2d9561a7561626eba7144e6f3b864fe607e9641,", - "color.input.fieldLabel.select.panel.bacground": "S:a3c352e799c405f8ab5dca3027eca09117328260,", - "color.input.fieldLabel.select.panel.bacground-copy": "S:d08b61d02a15c405d26c13cae2e4f3d10f1de743,", - "color.tooltip.background": "S:b40df1c74338fb2c44272b015802b133d1b28703,", - "color.tooltip.foreground": "S:be4d148d0f9ad08bf217cb7a75bf4d797e217103,", - "color.tooltip.border": "S:0573c42844ff3ba5ca17b2a22eb39874d7d2563f,", - "color.focusring.default": "S:a2508e5c5af119cc26281837f1ba76d7daf3227e,", - "color.select.item.default.background": "S:29cac8ce0ff4517fb1cd0faab3c188901ccad770,", - "color.select.item.default.foreground": "S:ef3d5c5574e743a46da947b389ac7322ecc40f71,", - "color.select.item.default.border": "S:5364606bbf7ce9a43570857373ac35e59448179e,", - "color.select.item.default.indicator": "S:ae380612eafa6e2e084aee206a66b058131a5902,", - "color.select.item.hover.background": "S:4240a53d9e9341c12f2214686f8beecb4e8c8d70,", - "color.select.item.hover.foreground": "S:92cd84f58e0323932fc1c9205ad8c896893d1265,", - "color.select.item.hover.border": "S:5596a797c84cc785af397af9c2079ec490c74018,", - "color.select.item.hover.indicator": "S:0a8a402ec152398c6aeb79604c17c19a9906f2bd,", - "color.select.item.active.background": "S:2387d69de17f54868b198d8911144613dee4bc18,", - "color.select.item.active.foreground": "S:5d5eb8a30613751334f0b5c6ee4515a1e9f8df57,", - "color.select.item.active.border": "S:165fd3f128de0beebb707e407a246ce10a86695e,", - "color.select.item.active.indicator": "S:d5f06bb86449a0a906a0408a4a9951a820516632,", - "color.select.item.focus.background": "S:21bd2f44ebb12b374e594cb785f6868c2d5dc8e2,", - "color.select.item.focus.foreground": "S:dac2536f25d5a2cc4f65b93807ee84ce35598f74,", - "color.select.item.focus.border": "S:bb235d93acb70381703209ad52783b4841be7288,", - "color.select.item.focus.indicator": "S:30cf1e0b65165e4bd04f420e14bf38a7da270f79,", - "color.select.item.disabled.background": "S:d66309582e440aae904f5aed893ef074ee44d51f,", - "color.select.item.disabled.foreground": "S:0670e207d33a78d40a7d566e1edfc65bbb927434,", - "color.select.item.disabled.border": "S:8a1ffcd832d0084adbbcf1effc90b7a9b95dc5b8,", - "color.select.item.disabled.indicator": "S:f7860684cb0b545f7018bab27ab06063724892f1,", - "color.select.item.divider.line": "S:942c2bcfefa89c1afdecd1e30f381cc326265008,", - "color.select.item.group-title.foreground": "S:dcfa6cf4d682ef509e3ed16dafb3f544fd0971dc,", - "color.select.selectbox.default.default.background": "S:8440451ebbb6012e45ef5a14122372a286e2fc54,", - "color.select.selectbox.default.default.border": "S:4bb16578e0da1ee436d0224124f98b5264793c08,", - "color.select.selectbox.default.default.label": "S:bfea541863135fd6d193f12984dc5e6587a5c699,", - "color.select.selectbox.default.default.icon": "S:54f9afedda6898cb980b0b14bd60429e3e9384c3,", - "color.select.selectbox.default.default.inputText": "S:9313b8a5d59da1733f28821b06bd6abc0ce48041,", - "color.select.selectbox.default.default.placeholder": "S:4db33142b68d51ee605299de8a2c93af264fe879,", - "color.select.selectbox.default.hover.background": "S:fbc555b2d91f32dae9ad4752d83a09fb9957a7c7,", - "color.select.selectbox.default.hover.border": "S:24dd5cef578461f1df50079bc3e29508dc981a21,", - "color.select.selectbox.default.hover.label": "S:3be0f36e40b77d309f4c432614071cce2b1c33e9,", - "color.select.selectbox.default.hover.icon": "S:c92b01d1599f1b2d23211c0362a57b03406faece,", - "color.select.selectbox.default.hover.inputText": "S:c7edc89a7ce51e689ad6814c430dff6b9eeb334d,", - "color.select.selectbox.default.hover.placeholder": "S:3e0cafa88df79cc6eff34f913a078fcdcb0d99d5,", - "color.select.selectbox.default.active.background": "S:1265a51333e7230326895d657a57f41bcab90ab9,", - "color.select.selectbox.default.active.border": "S:32813e0791a065bdcace73fbad84d1afd5ffdcfd,", - "color.select.selectbox.default.active.label": "S:580fe00e3c83a8ad14b53d47ee15beea63aed560,", - "color.select.selectbox.default.active.icon": "S:dc2c665156464b553d5a60f63923a3e201c8abb3,", - "color.select.selectbox.default.active.inputText": "S:d5d88c81f12437c10673c0f11db7bb44111df2c4,", - "color.select.selectbox.default.active.placeholder": "S:a4543dfb930d236380094aac9ecf842e3c5bd1e9,", - "color.select.selectbox.default.focus.background": "S:309881ef062ddfdb3ec012adc45c976e160bbab7,", - "color.select.selectbox.default.focus.border": "S:27403221116d9a7887525e48738d08c1bb349d6e,", - "color.select.selectbox.default.focus.label": "S:9523de0a0c4fc2464b5ef5f1c332d775da826d25,", - "color.select.selectbox.default.focus.icon": "S:c3c188d75f4bde8de66845c5401b4b007ef9af0e,", - "color.select.selectbox.default.focus.inputText": "S:d792ea4a2c0d0322092fbd8b286578c5c63bcced,", - "color.select.selectbox.default.focus.placeholder": "S:b0f29428d0bfd67dd510335f1fe59daa2985542e,", - "color.select.selectbox.default.disabled.background": "S:0afb7499e225bfefe7b58ef2a87b8319178af00d,", - "color.select.selectbox.default.disabled.border": "S:8885b47c4c47dda7ea87ae70ade3dadeb8d67903,", - "color.select.selectbox.default.disabled.label": "S:58cbe4ff14260051430432d8f3cd015f71d0a4a5,", - "color.select.selectbox.default.disabled.icon": "S:b7eb08a976eac7a76a775cdc47a5dac8108135de,", - "color.select.selectbox.default.disabled.inputText": "S:3c1da702b496cf49856ccca3768eadabb72ea68d,", - "color.select.selectbox.default.disabled.placeholder": "S:8c94b16dc19717bd8dac97ad4df53fe5a806f427,", - "color.select.selectbox.invalid.default.background": "S:aec8e521b17ceb6916319f6e145900faacca10a5,", - "color.select.selectbox.invalid.default.border": "S:b7c51de64fa8ea3552cc02cd66fca0d716905052,", - "color.select.selectbox.invalid.default.label": "S:9b284a847635338122049bbfd0ec5d29f022456e,", - "color.select.selectbox.invalid.default.icon": "S:b7597b6537ccf81b8d76571b280a43b0767921d8,", - "color.select.selectbox.invalid.default.inputText": "S:1a232c1203a241adda153239b0b9e3623bc7fa41,", - "color.select.selectbox.invalid.default.placeholder": "S:51b8a39595884ae3f42705b6dc1dd3982cae9888,", - "color.select.selectbox.invalid.hover.background": "S:5165bb06c17dd14ff3aa9e91b09fe124a5fa509c,", - "color.select.selectbox.invalid.hover.border": "S:cd195fc291ae923238f7db421bb3b4b4280efa90,", - "color.select.selectbox.invalid.hover.label": "S:f235699120ea07bc808c895799420ef4bba51693,", - "color.select.selectbox.invalid.hover.icon": "S:15e9e676d3072098bd7856a7e28b3e57e509aac1,", - "color.select.selectbox.invalid.hover.inputText": "S:05f385174de6d7dc42e5dffe68a80353b1390954,", - "color.select.selectbox.invalid.hover.placeholder": "S:24e0709cc6f1288b58fe00908f4aa48d7fd2a7d5,", - "color.select.selectbox.invalid.active.background": "S:613f38221ec1e664227433f16f9168e07e66364b,", - "color.select.selectbox.invalid.active.border": "S:cb4e1052282c0e9f4ed104e276daaf2d2464b66c,", - "color.select.selectbox.invalid.active.label": "S:37d3c2dff96cd2efbcfa7003398242a540ec3cda,", - "color.select.selectbox.invalid.active.icon": "S:87a4b7f63046764c8a2cce849f81778b35df3e78,", - "color.select.selectbox.invalid.active.inputText": "S:778e84430149dec7121458587a5a9964c3b187ab,", - "color.select.selectbox.invalid.active.placeholder": "S:557ea2d2a712b47f8cd1b064c687b0395cf6125d,", - "color.select.selectbox.invalid.focus.background": "S:01d220d5c3e4d19a309001795d53715a0deedd47,", - "color.select.selectbox.invalid.focus.border": "S:7a175d42b7bc49599291ad09a8b74a64834d39bb,", - "color.select.selectbox.invalid.focus.label": "S:60c4e353e6cfbdd773e36b6cd797f5fa15bbdc92,", - "color.select.selectbox.invalid.focus.icon": "S:9e1ee8536feedecb0c005f624ebcf21be3b95534,", - "color.select.selectbox.invalid.focus.inputText": "S:02d0b5c328526001a2ae85ebf9203d0fd0dd4e9a,", - "color.select.selectbox.invalid.focus.placeholder": "S:ebac9a6c65eb9f569b20ee46db872e6a6b4ac538,", - "color.select.selectbox.invalid.disabled.background": "S:ee8628e626426755f23792b4c3221eff7560d0ec,", - "color.select.selectbox.invalid.disabled.border": "S:d7e0dae50a25aaa3980fabf4e126dcc635805cb9,", - "color.select.selectbox.invalid.disabled.label": "S:c369e56db7110d696d34847237bc49ad7427298a,", - "color.select.selectbox.invalid.disabled.icon": "S:89056e60e9bc641fe2bbe756e5255e69430d2bc3,", - "color.select.selectbox.invalid.disabled.inputText": "S:3478fe247862e713627367847ecf511baf3eac67,", - "color.select.selectbox.invalid.disabled.placeholder": "S:d3ff588c756b3e48069228b4f9ed4436c5e177ff,", - "color.select.selectbox.valid.default.background": "S:1230e84636d7bd57be6610c94a172058472a2846,", - "color.select.selectbox.valid.default.border": "S:42b7167cb843b40a3897e714b073b36a6d5544d9,", - "color.select.selectbox.valid.default.label": "S:2ad1499f8059e465ef4593e4b8008c03b1c6b439,", - "color.select.selectbox.valid.default.icon": "S:439902ee34e80f379a80872a4f12953fe55bf77a,", - "color.select.selectbox.valid.default.inputText": "S:2902e1da04fcc2a385ecec8efacb2eee2f071fbf,", - "color.select.selectbox.valid.default.placeholder": "S:47868b07c95718ddce9fe2265450d842678e2497,", - "color.select.selectbox.valid.hover.background": "S:3b99b6a95b3f1b700fe1023ee5f172485300b056,", - "color.select.selectbox.valid.hover.border": "S:198daf27536b920886d3dc3688b423af4fde1af1,", - "color.select.selectbox.valid.hover.label": "S:b79cceba2debefb34f775495d21febb58d49dfd1,", - "color.select.selectbox.valid.hover.icon": "S:f0311b6ca6827c77559672ed673e47999ebd3efb,", - "color.select.selectbox.valid.hover.inputText": "S:5dbee3771bbc6db21c1676841922cd8cb43ae664,", - "color.select.selectbox.valid.hover.placeholder": "S:625264693fc208808408c2fea643547768591992,", - "color.select.selectbox.valid.active.background": "S:ab2eb85688ed46d372f80c2b3bbbf841a5a15936,", - "color.select.selectbox.valid.active.border": "S:62ef47a16d7b89a3401677371964df2b9f9e3637,", - "color.select.selectbox.valid.active.label": "S:5f0e463cd3c0d3d41160f77f022ec03b2ccd87e6,", - "color.select.selectbox.valid.active.icon": "S:e6ec281b53e7bb6a068a6e2eb6ffc7e66cb83ae3,", - "color.select.selectbox.valid.active.inputText": "S:38c5525e155db50e2e35866d66b9f2b795a2132f,", - "color.select.selectbox.valid.active.placeholder": "S:940662be07073f3a246af2211d83398ba87348c7,", - "color.select.selectbox.valid.focus.background": "S:7ba883cedc6b7e367104ffb231615ae7bde25502,", - "color.select.selectbox.valid.focus.border": "S:8d5c2d1b00a01eda581c164874aec9042e9af7ce,", - "color.select.selectbox.valid.focus.label": "S:d1df3d7455a19daabbd9bb7738b5635eca0d2818,", - "color.select.selectbox.valid.focus.icon": "S:abe7fa12486ee9fdab99c54b89b4eeaf96b0d798,", - "color.select.selectbox.valid.focus.inputText": "S:aaf6195b4aa4141c71da1a212ada4e579dff5a53,", - "color.select.selectbox.valid.focus.placeholder": "S:801b38a0b185576b4d2e753ae8b55c262ec5b84a,", - "color.select.selectbox.valid.disabled.background": "S:c7465caeac4eb9e0888ec4e11412e4ceb256b19f,", - "color.select.selectbox.valid.disabled.border": "S:73c8d8fa0d46f90b1741616655f40f6a914d5ab8,", - "color.select.selectbox.valid.disabled.label": "S:be0dd20bd4e2db513e12053d94b8a09236f3ee7e,", - "color.select.selectbox.valid.disabled.icon": "S:f744418cefeeeb3686ef23c72b7ba69337a9b1a2,", - "color.select.selectbox.valid.disabled.inputText": "S:ddb6cfe3ab73677e94218261888a3a2abe303f8d,", - "color.select.selectbox.valid.disabled.placeholder": "S:e49338fe3938d8dde8a4f688080d87a623778e57,", - "color.select.listbox.border": "S:c4cfd86e490c9d0979784a365066767844875ed4,", - "color.select.listbox.background": "S:5a6563241263345a2b32fe78fc7dc104cce3b71a,", - "color.popover.background": "S:ee95ca44bd877cfd076ea15960ad87cd40bfb8ff,", - "color.popover.foreground": "S:7f735bdeba7aa4c9c6c662a7367a479869939631,", - "color.popover.border": "S:d36f373f4d624b60dc33ac2ad33ff45429ee8f11,", - "color.dialog.background": "S:780609e1f337ae999837d95dd9aa060527b63406,", - "color.dialog.foreground": "S:b0a3817947600862053a8c86d962d7e214dfedc7,", - "color.dialog.border": "S:3d94f06b0a2cf4d794556fd5f4999919eb081514,", - "color.inline-message.info.background": "S:bc9a8e3c50c3edec13ed95d675caedfb8e3a27eb,", - "color.inline-message.info.foreground": "S:e464c2609f4f8f72340c54c737ec8e75b962c59b,", - "color.inline-message.info.border": "S:8785002060316cd42d42f58d180fb4a9dcf1a922,", - "color.inline-message.info.icon": "S:1a579626a4d2a70ae5f387fa89196f990bf633b2,", - "color.inline-message.success.background": "S:a4e1a6b9362b7dee15630fb96ad419c710aa82d8,", - "color.inline-message.success.foreground": "S:e7679c1e2c5178b1fbb28a568b402a39b128889e,", - "color.inline-message.success.border": "S:1fece70d93c3b70dd8d35c621c08f867ef6302f5,", - "color.inline-message.success.icon": "S:e35e119b814ba1ff82a31524d8b64b27f19ee952,", - "color.inline-message.warning.background": "S:eecb53751393a374909f4bfe4b916226c5d0ddaa,", - "color.inline-message.warning.foreground": "S:70122b418aace246fd22ebf92568df148cf9e03f,", - "color.inline-message.warning.border": "S:18f3cc4944b0882cb335e12efc0dfbf828e11457,", - "color.inline-message.warning.icon": "S:1b1e04abae58073d689b2b31823413655646f6bc,", - "color.inline-message.danger.background": "S:4fc715cb80f5914c5ed47f614ef0ead214bfcd1b,", - "color.inline-message.danger.foreground": "S:dbb4ee6a27db85dc58477db9355118444b2f22b7,", - "color.inline-message.danger.border": "S:e167b7268a7948df69c744761ac86b6f07405f45,", - "color.inline-message.danger.icon": "S:f5162f466b70964c011c17d4d73e92f31f7d3183,", - "color.palette.primary.50": "S:afd4b33f105b2023a7f8144c04ec6799e0b7f956,", - "color.palette.primary.100": "S:8b1441923dd076ae751bfabaaa771ac3020122fb,", - "color.palette.primary.150": "S:ddac022d25721813a8b4eb8d0f3987da34b98258,", - "color.palette.primary.200": "S:177e68948b830838ab1917e93cebe0e6b0668dbb,", - "color.palette.primary.300": "S:b129b12385c69339a4ac0a7132c60eae470304e1,", - "color.palette.primary.400": "S:4385cfd1ea8af583578d28a401f027ef80b77d52,", - "color.palette.primary.500": "S:716373776c04e3932d90aeee0d7a9bbfce7d3e95,", - "color.palette.primary.600": "S:6892c9e4c375eef45a5d5f82c537f929082be778,", - "color.palette.primary.700": "S:c90514c00074ed6698edd157cdfb7bf566dff949,", - "color.palette.primary.800": "S:d2b546c002d308f99a4d533ce09f94a0a3050038,", - "color.palette.primary.900": "S:e002f7c61458702d701f00410b473c0a189585e9,", - "color.palette.primary.base": "S:60931d37039d1a6bac3c453a96b87ef7eb738d92,", - "color.palette.accent.50": "S:8027af11c4c59cd9af0e68b11fe43bdaabf92518,", - "color.palette.accent.100": "S:22373189938a894bc5a6277bb44f78593ba3e488,", - "color.palette.accent.150": "S:4d6f99adf5ca07ad502cf68c3e2e15ecb5563e45,", - "color.palette.accent.200": "S:dfcdacb7075fcfe4e11a9b53dcc4f16b17296093,", - "color.palette.accent.300": "S:da92cafdc52cdaa8069a7f6b05ac031e2cf268b6,", - "color.palette.accent.400": "S:c1028b4905370b7f0cddc39870a23368c6fc0a1e,", - "color.palette.accent.500": "S:41aed39f546820af15e02ed423f2f355b0ad69d2,", - "color.palette.accent.600": "S:0fc9d26a3f840e34a32739fd2f56ef5230b558e0,", - "color.palette.accent.700": "S:9a592a430ba1972b746aaef262d113ab920e7184,", - "color.palette.accent.800": "S:449a009624dc730292a18b9671ddae844fdfad9e,", - "color.palette.accent.900": "S:98ad6097d8b0e84d6b3bde248ecf989129876a05,", - "color.palette.accent.base": "S:5a5b239cd936ff76535e59b19c3430a02a559e43,", - "color.palette.neutral.50": "S:c0b7fc341d4a2c7c1d4959d87c5d04a4b8bb3ee7,", - "color.palette.neutral.100": "S:92c752510da7bf1ba098c2c30763e782a12050c3,", - "color.palette.neutral.150": "S:5e080a56f54318cceb4b6abfa3029496b95b9bf7,", - "color.palette.neutral.200": "S:4068ad89e3cb555de0da8482244ebac979e22974,", - "color.palette.neutral.300": "S:11d97d54b4923b51b4aab96aa686ec252e33c19e,", - "color.palette.neutral.400": "S:729c40f3bcf13f225dc74ad870862a39fdc92296,", - "color.palette.neutral.500": "S:cad933fa7922ac4628d4419ff0026f7c391ea900,", - "color.palette.neutral.600": "S:2c91266982ca3e86b2e012c5d3df4913cff830f4,", - "color.palette.neutral.700": "S:c74cee3003ee1948525799502266a84b583975db,", - "color.palette.neutral.800": "S:7d2134b09c5908d3d6597fbb99846205c58b3133,", - "color.palette.neutral.900": "S:95de092a6dcf91b73f13e2d4725828eae4381a50,", - "color.palette.neutral.base": "S:afa491a626a8722921a5b47376cce0e6622e671f,", - "color.palette.info.50": "S:c1f82739ea6d8f28181d5522596b4eaefa5d156d,", - "color.palette.info.100": "S:9d5cef90efc6f79b40bdaf3851467d0956760a7f,", - "color.palette.info.150": "S:a70da02ec5ec289d37f2c7ab535f869fbb63e158,", - "color.palette.info.200": "S:49241da32fdf70495b8e4eee20a76aaf19c7d644,", - "color.palette.info.300": "S:7b032b5ed51c6cf7c176c7bde71f2ed5072afa4a,", - "color.palette.info.400": "S:5e444d93317c005f6e84b920ebd95228bea2b35d,", - "color.palette.info.500": "S:84a6192907d11663246979bd8ec6700440255b97,", - "color.palette.info.600": "S:dca70a2c548a4da62c96d0508db4142671903cc4,", - "color.palette.info.700": "S:308bc94ad685c715de1d2b10ff16f9dff3bb25c9,", - "color.palette.info.800": "S:e01fc040c296bc45639ea452ea982265052b53ea,", - "color.palette.info.900": "S:e824bb46595fdf438056ec720361b9d324cde93d,", - "color.palette.info.base": "S:123c656373e382a795a67caef7ed76a5b7569996,", - "color.palette.success.50": "S:75d9a00bf6e99b9b2a8d0ff1b9c6afb78f48488e,", - "color.palette.success.100": "S:fcafb2009a0e2b05bbd979504c07bb41dd168720,", - "color.palette.success.150": "S:cbfa33ec0a7a81f45a18d92e5bcbb31fb6121870,", - "color.palette.success.200": "S:fb06daeae3f346dc0d5eff9d641451b35e9ed23d,", - "color.palette.success.300": "S:92d0a3027361380bb80d9fdf5fd5b930ceab604f,", - "color.palette.success.400": "S:37792ca33171d8b48961e0ab7478793f668448e1,", - "color.palette.success.500": "S:b5cbc516e884014799d7ffe9101c268386490864,", - "color.palette.success.600": "S:edfe3ebf9e04165fa040b473abfd3b4055a1fce9,", - "color.palette.success.700": "S:8c82550cae412a068025fed7837876acb197aa96,", - "color.palette.success.800": "S:2b699408d927fc06cb92b1c1a86607e8cdc638a4,", - "color.palette.success.900": "S:57deb51481fa16405d5e43464bec530bf84dfee0,", - "color.palette.success.base": "S:2880be637953a7243acf35c427f230c7fd7236b5,", - "color.palette.warning.50": "S:757fad6753ad933c9fd7ff34a0bbeb81aacdd4e9,", - "color.palette.warning.100": "S:e06a3d52bf1500c3798cdb6a276c1399213a3a98,", - "color.palette.warning.150": "S:c0fda17943914e91d29d221d608a5a6c9cedda83,", - "color.palette.warning.200": "S:4593fbfd2dd01989b3dd487bd4e1997f81f33271,", - "color.palette.warning.300": "S:3f59dc407fe22a9ab3d32a8c305c5b5b8acc0336,", - "color.palette.warning.400": "S:7478599c89d3ab603d5756b0a69a990be3a6f890,", - "color.palette.warning.500": "S:bc01dd660a487a40164709a11cb332426254a44e,", - "color.palette.warning.600": "S:d3eefb54f29c2ada8aeb13eb4c2bdb22391a223d,", - "color.palette.warning.700": "S:51709b55c3ce8b86a79eae34b302c3f3592e0c1f,", - "color.palette.warning.800": "S:ab42cbaa094fe4e2429d4ce8defbaad7adbef7be,", - "color.palette.warning.900": "S:2c93eb1262b5d910a4e2c4dbea4acf6a061b4bd3,", - "color.palette.warning.base": "S:fb5b4c0035ada7473f73f1d188eea1e410423aea,", - "color.palette.danger.50": "S:48d8661781453ef7b83afe02f354e65b55ccf876,", - "color.palette.danger.100": "S:33554622d2de3e9d96d5bb406e9fdf937ee5a4ef,", - "color.palette.danger.150": "S:0f4481c18bfd8d1d059dfe115b648b236f1f28ce,", - "color.palette.danger.200": "S:d5950bd34d8757e31f985d75026d2a6b9464a94b,", - "color.palette.danger.300": "S:f38b244a818a19e13db4888967cd704ac66c44b0,", - "color.palette.danger.400": "S:f9e49fd7e97ddd673a5f3a7b9fb772541b163a21,", - "color.palette.danger.500": "S:044cff168c16a7c73f05a86649fa57cd4f6145ce,", - "color.palette.danger.600": "S:e53258017005955b4b1ea5fbc760d902ccbe6e65,", - "color.palette.danger.700": "S:c7a1edec577328f8894cb5839b50a7cd207c58eb,", - "color.palette.danger.800": "S:3de0bb8122fd4f1d41766a4afd9397508dcc9a5d,", - "color.palette.danger.900": "S:b0366341505ead2405eb4bb0c2a750b226c310c6,", - "color.palette.danger.base": "S:c07ebe3259247cc15f523c0a63ee031bedfb11a9,", - "color.palette.black.base": "S:6cafce508f1e969c514f8cd158086854076f1646,", - "color.palette.white.base": "S:e613a9320bf34340f2b652b704f91a9c197f4a0e,", - "color.palette.transparent.base": "S:4605653287c7cb9248548489444e826d62763501,", - "text.avatar.initials.sm": "S:04978e891aacf1f695e1b7ec788bc1fa3b8f537f,", - "text.avatar.initials.md": "S:0df96e19411fd54a69dc656d902542f42a557649,", - "text.avatar.initials.lg": "S:81b2dfbb7cbe2a84172d0ab46999da96cb4ed14b,", - "text.avatar.initials.xl": "S:7ea70fbf4643c46fd38f7a3c1a042e051bbe0907,", - "text.avatar.initials.2xl": "S:7792f12cc39318b9d0c0ab83352fdb8f60ff8390,", - "text.avatar.initials.3xl": "S:646ffe616ea2612d04e0d13d548cf027d7e16f0c,", - "text.avatar.icon.sm": "S:e6788a305fabeb950ab25b01d0e4e0b5cf178c4c,", - "text.avatar.icon.md": "S:b6b3e4369b74676a1c8e5db7800cb867a43e2dd2,", - "text.avatar.icon.lg": "S:d26d97cae8ae640e671e5595ae9e17704a8419ae,", - "text.avatar.icon.xl": "S:ec034be04fd850ccf9824cc3482404c7b37c11b2,", - "text.avatar.icon.2xl": "S:229a6c4659809968118c5c7a3a3691de08986d62,", - "text.avatar.icon.3xl": "S:ab90e07e5440b58b489599d08fb0b9d42da7d673,", - "text.avatar.header.sm": "S:ad53075f7e4783286a8d171f2f4107820b608c82,", - "text.avatar.header.md": "S:d845859076b5e23a9f42159f9e15d56162a757d0,", - "text.avatar.header.lg": "S:d30f2f542690bd77a11ba58337791336dc288565,", - "text.avatar.header.xl": "S:52a28a37aa9bd4acbd47642be39797c1d8893a4b,", - "text.avatar.header.2xl": "S:01601e40994a86c3489176cc2acd362c6b0f02c5,", - "text.avatar.header.3xl": "S:d6fede1db746bf070b0dce08d9467206591e5638,", - "text.avatar.subheader.sm": "S:771c1d37f5ec15e783727707e0e12086e9274df4,", - "text.avatar.subheader.md": "S:d4fdf0afb798f3399619e124ee1bd53e005f49ca,", - "text.avatar.subheader.lg": "S:df1ac8d667c0bc257e2cba5254de3de1bad8aa9a,", - "text.avatar.subheader.xl": "S:8c14598d37b6965afec1a485380238e671adaa27,", - "text.avatar.subheader.2xl": "S:8b02c6bca5c9bb8e5ce2e4bc5cc7be313c4d9af5,", - "text.avatar.subheader.3xl": "S:4432a404c869a139e5be384aabbd440918a626ff,", - "text.heading.0": "S:e8685e74e4772518165e108310ed1cbd21bf18d7,", - "text.heading.1": "S:cd801251b752c345e8123d3ab68f27d20a353b0c,", - "text.heading.2": "S:084b0195364f836956ab39a3c0e6c545a5ee1aea,", - "text.heading.3": "S:12318ef543f24f92d350df703ee644fabe325954,", - "text.heading.4": "S:d0deaee8a5ecae5ef9e2bcbcf954b7fdca7e97e3,", - "text.body.sm.normal": "S:030800a0bae5b36dfc24fa158d1bf6a4abf957c9,", - "text.body.sm.demibold": "S:ec1d76eeff5c3ba9058dbc7733e46f5d1587e835,", - "text.body.sm.bold": "S:e8fd4486f608a6c81146cecab956ee18499fe467,", - "text.body.md.normal": "S:f1bdc6933684df468e204d18ab8b85d091b499c4,", - "text.body.md.demibold": "S:d65c8e2098091c3e31e546f3d1a900ce45be99df,", - "text.body.md.bold": "S:b8b783dccae175c2516822bf1742e73b97bca0b8,", - "text.body.lg.normal": "S:5acda5051cba9baaae316d8306a6894b104e79aa,", - "text.body.lg.demibold": "S:5dd73f4ff8cadc0d5a84bc962f51dba5a8ae5390,", - "text.body.lg.bold": "S:6a576c1fc9a3e4572842eba80bfb9fd6a91deef1,", - "text.list.sm.normal": "S:eab572c76dfb777680c42ef4fdfd5bb080c90926,", - "text.button.text.sm": "S:fda5437b33c385de47ba26dd44c4e545974f6374,", - "text.button.text.md": "S:beedab998c8a2998c2ab72bb7cc9f6f03f396c23,", - "text.button.text.lg": "S:29e6dd8ffb0c5ca7911514fb37dde526e9284e49,", - "text.button.fontIcon.sm": "S:4e05cceed93f30cfda93a4a9802893f95413fbc0,", - "text.button.fontIcon.md": "S:16cd9efb10d4059652952646b7bfcb1c9cfb8238,", - "text.button.fontIcon.lg": "S:4213be5bc3092fbb1369d82d0a90315046e5ac7c,", - "text.button.link.sm": "S:a8bf7e9f789a2fa6687450bf6a8df675d68152cc,", - "text.button.link.md": "S:458360aa16f637cdaa4107e74ef4d1ae82d55c59,", - "text.button.link.lg": "S:16df4802410ca630e73945480a092e5a8a13f65c,", - "text.button.link.idle.sm": "S:18978f8796f6af8dfdaf8af7d935fe20299d0a16,", - "text.button.link.idle.md": "S:d8180f113c2f1f9523ea44fc19080e774803ee04,", - "text.button.link.idle.lg": "S:d830a96dded9a20c9f92be89b4863849a104e95b,", - "text.button.link.hover.sm": "S:9acb98e7f14ea17d215fbe7937c4d6263b72bc06,", - "text.button.link.hover.md": "S:93fb4be278cfa3bb9dd4871202a1612b12d31762,", - "text.button.link.hover.lg": "S:57b878b4d8946f9e72c6990c96ddd779b989d7bb,", - "text.button.link.active.sm": "S:d490c3484cd79cff0eeda78a1b52012d96916f63,", - "text.button.link.active.md": "S:cc633ff34097eee96bf45dd663adbe61e80806cd,", - "text.button.link.active.lg": "S:77411677e61a3151cedc257f32482ae65c82ee4a,", - "text.button.link.disabled.sm": "S:c3388d52e87d50d06c5c4f7f10c77bfa97611885,", - "text.button.link.disabled.md": "S:1b47830b7d0f3a226b91346105fc3bf637bf470d,", - "text.button.link.disabled.lg": "S:095ade8528e19c5d6855546dced92f94dc04602d,", - "text.tooltip.text.tip": "S:bf44d9dc9955824ac4dc8e1210ca0c7eff394bd0,", - "text.tooltip.text.title": "S:bcd41cf00d4d032a6092d7b4a2963704dd9298cc,", - "text.dialog.heading": "S:60127e612419650a86e13c62c545641b57adafa9,", - "text.dialog.subheading": "S:7210ff06e348addcb021605c657f09fceaf43a8b,", - "text.input.textField.fontIcon.md": "S:5e6d7a707d75d1c80d41d426f04f20ea2a74e563,", - "text.input.textField.fontIcon.lg": "S:b31f562c8923143b3d4bd6ee356d5ab1feb16bf1,", - "text.input.textField.text.md": "S:6c712ee8f43e5ba08c72f06496bf76d57f10d2f2,", - "text.input.textField.text.lg": "S:c97b9d1fe807acb403927e42639f5025d718fb1a,", - "text.input.option.md": "S:e32ee8e973f870ef18f0a6d927ef58a9465f790f,", - "text.input.option.lg": "S:4a5f52d4c5897d0c9e6c6106dc1efcde2c936d36,", - "text.input.fieldLabel.label.sm": "S:4abdeed6abe7a52cfc088faae5fd708d9277be1c,", - "text.input.fieldLabel.label.md": "S:a391a359ecb8f6490a2bc8ec3b1a8399fb4c3a0b,", - "text.input.fieldLabel.label.lg": "S:1377ba6b459a545c02bb1df7124a9017c5bb91e7,", - "text.input.fieldLabel.tag.sm": "S:06ebddd9fe8c6d55b087f789c38772f06d75ea62,", - "text.input.fieldLabel.tag.md": "S:1d579d15a9c948e4574cbfd8b5c50be60793b3d0,", - "text.input.fieldLabel.tag.lg": "S:eb0d44d8d3202bb6c145fb603bd3e64a8eb46267,", - "text.input.helper.text.sm": "S:a29326751c18ab647b13187f3b993be9057ce116,", - "text.input.helper.text.md": "S:24b536ecee22116e1dbcd1dcacd3c25c28bf7b8c,", - "text.input.helper.text.lg": "S:f61b8f5fd8ba32bab7a1a3ce63aae67b56d22f1d,", - "text.input.helper.fontIcon.md": "S:aedcda4a5bc290c0e16181915a9b7325ddb5d90c,", - "text.input.helper.fontIcon.lg": "S:8229de5c6aec648d8bdeab1915f057b8f1e15d0d,", - "text.input.switch.inputField.regular.sm": "S:7dfd7ee9bdeef4b96e86520745398161aed19491,", - "text.input.switch.inputField.regular.md": "S:062434640758f6c12f05ebd2adf330964a711ace,", - "text.input.switch.inputField.regular.lg": "S:e237055971a9018d0c3c9e71e76f356b45b49e2e,", - "text.input.switch.inputField.bold.sm": "S:6f39139d1bdbb85d3339e49dbbcdc24e9f5a62c1,", - "text.input.switch.inputField.bold.md": "S:16970388a2f52f5cbce2bf3d0199e9da5001edbe,", - "text.input.switch.inputField.bold.lg": "S:eb60d960e69f543c1579699758b2f3fb3d339651,", - "text.icon.font.icon.sm": "S:0d4bc258764c372393cb4e9eb3207afa20a3a3c8,", - "text.icon.font.icon.md": "S:02e13dea22a53607b3f07a8fe0ad8c05f066ce21,", - "text.icon.font.icon.lg": "S:3e3b0777271336a8c6fbcebc0421d4addccd7d6c,", - "text.select.selectbox.text.md": "S:2db12b6bf34faf7e79e6443cefd4acb0fb174491,", - "text.select.selectbox.text.lg": "S:0170aeeade7884e3510db288f91bb103f5a2f4d8,", - "text.select.selectbox.title.md": "S:f1751c6ed0c2c92148776e9cf88c3462f2b50b38,", - "text.select.selectbox.title.lg": "S:f57c8ffda5ab31458acea0cf10b0c75f18c30c35,", - "text.popover.text.text": "S:152ebc3a777205322c77e5bd69bc43205970bb75,", - "text.popover.text.title": "S:ff5d8113532e40c1be627fd44c9254af8dfd9ef2,", - "boxShadow.focus": "S:55f889fbf5b69463b76d0e1121e44713eeed3cb4,", - "boxShadow.none": "S:f58d01313734ceb9cde45aa5f7b17473ca8ecbf2,", + "color.button.default.solid.idle.background": "S:64ae9c830b2e25d2c74fd4bf9fb3d20dea916d8c,", + "color.button.default.solid.idle.foreground": "S:5d4d2db5f80d1c75f9a6a4a0ba17db3498b7c40d,", + "color.button.default.solid.idle.border": "S:2e73416a137d3c6540be88a40fe1b5b7a5f28fb8,", + "color.button.default.solid.hover.background": "S:991dc355ff86e75bf5e69ce96338a9663765b8f1,", + "color.button.default.solid.hover.foreground": "S:a83698280fdeeb5fae8b8752f1c327e72bf5605c,", + "color.button.default.solid.hover.border": "S:43e9d60f1b699613d2c7cd5a76d84a0fbc85bd68,", + "color.button.default.solid.active.background": "S:55cdb2aeef9703e58ef86bd2f2dda53127f7a3a1,", + "color.button.default.solid.active.foreground": "S:8cbf8aa65df956f11a547156751ffa1140203433,", + "color.button.default.solid.active.border": "S:e0363a59b64a82131ad038d7348a020839aee519,", + "color.button.default.solid.disabled.background": "S:c343cbe2cd26d37b8e2fe57f0ca70cbd50445198,", + "color.button.default.solid.disabled.foreground": "S:e524b2c876c555d0c656aaeaf285f1b5dfe9d661,", + "color.button.default.solid.disabled.border": "S:9cc79f5ecba8ef5652701b99dc602f652b12018c,", + "color.button.default.outline.idle.background": "S:d1a4f248c043264b6dd4d2728f236cb11b461952,", + "color.button.default.outline.idle.foreground": "S:a3f945c371bfcac854dacf5fe93af44e6adfee8a,", + "color.button.default.outline.idle.border": "S:09304f8e6818ff8e993a4f2fc55906437f1e8c46,", + "color.button.default.outline.hover.background": "S:ea67316b0cf2345f9fa63fb00762424faa1a797d,", + "color.button.default.outline.hover.foreground": "S:dce18197b38531043b2f9145aaf01782bba83d0e,", + "color.button.default.outline.hover.border": "S:47840ea3e211609871d83319b58ea4b1bc7cd657,", + "color.button.default.outline.active.background": "S:0f84d7aae15c42550872fcb716b79b4abe7166c5,", + "color.button.default.outline.active.foreground": "S:918c27333778a25b825d1f5b6e27ffee0178aaf7,", + "color.button.default.outline.active.border": "S:77b6c2ca023d3c4e5e1021052e75dc4c7db640c2,", + "color.button.default.outline.disabled.background": "S:96d9cdb9ed27dff1d231ebb54190035c9d844d60,", + "color.button.default.outline.disabled.foreground": "S:6a9a291420aa97d3505ca65b37752889288aacdf,", + "color.button.default.outline.disabled.border": "S:2007f52c32f50e98b9b5b6182e78cef8ba783c73,", + "color.button.default.ghost.idle.background": "S:6a8f3cb826fe4fc976ee71bd5406daf02da88f37,", + "color.button.default.ghost.idle.foreground": "S:43e4157b785ee67698490c65563f82cf0510dbc6,", + "color.button.default.ghost.idle.border": "S:63cfde2e1fc6c691d12d6a4a435eefa23ff47a3a,", + "color.button.default.ghost.hover.background": "S:4bb03ddae89e5a6ebafb7d0bc70614c5f910fcc9,", + "color.button.default.ghost.hover.foreground": "S:6c8a0e5faeefa36a5f539d3adf40f0ff4c09f8fa,", + "color.button.default.ghost.hover.border": "S:da690481db8fa6afc3e22a45908a75028f67a706,", + "color.button.default.ghost.active.background": "S:c99b5ccefc3d3ffad5773d9792c309d3633e31ca,", + "color.button.default.ghost.active.foreground": "S:00d15592bc37eba89a7ecaec00bec2e67457997e,", + "color.button.default.ghost.active.border": "S:d20d4f369f659e0f88d228764bd41673d9d56f28,", + "color.button.default.ghost.disabled.background": "S:5e172884a6cdc4e649c9efccaa7cae19e8eb7324,", + "color.button.default.ghost.disabled.foreground": "S:a0434f6b2881f422eb6ffcea0d6e7f59663b8384,", + "color.button.default.ghost.disabled.border": "S:05bc0dbc035c218de82b19a1535f44f43284018b,", + "color.button.default.link.idle.background": "S:b14c2a5959073d8966c84fbda000b307616cb8fd,", + "color.button.default.link.idle.foreground": "S:7a4e67c50e0124a67c8fbfd6ac78731131ad4bbf,", + "color.button.default.link.idle.border": "S:318908e52cdf7bf31cf3bced3c469f4ab8065f65,", + "color.button.default.link.hover.background": "S:026d00f9f7b0c3651a6a1e4893b335ac6f4d8ab1,", + "color.button.default.link.hover.foreground": "S:cd4be66e1f79572635b3c4d538707d080f9fbb9b,", + "color.button.default.link.hover.border": "S:c431431c9ccc93c1c16282ed25c675dcdb188901,", + "color.button.default.link.active.background": "S:5e4cda06663b9102c9c1976c67c03aa4225505c4,", + "color.button.default.link.active.foreground": "S:ffe581af4264fc28c193f3784841a86c3c0581fd,", + "color.button.default.link.active.border": "S:a16a480aca5ab6813e9c77ad7eb9cdb468d37a77,", + "color.button.default.link.disabled.background": "S:f01f32b7d32694c184a863bccb2fe3c846d2e54f,", + "color.button.default.link.disabled.foreground": "S:58de4688949f1afde87124b51feedb0fadc8b2ae,", + "color.button.default.link.disabled.border": "S:e085d4d71bd5e35c36e9ecc910cb7290f78068f1,", + "color.button.primary.solid.idle.background": "S:a239aad11aa4a361344799bf182314d409d8df69,", + "color.button.primary.solid.idle.foreground": "S:57859c2a8c42d5838c186b020994f640a0e07877,", + "color.button.primary.solid.idle.border": "S:a19d73fc74d8b703d469230681877da2e724c96f,", + "color.button.primary.solid.hover.background": "S:dfceede8e807deacb876bce91d01f25be92e5be2,", + "color.button.primary.solid.hover.foreground": "S:9c6766d7d437cb67a79364a2c1e61e26a58e5346,", + "color.button.primary.solid.hover.border": "S:bc59f87d1705cf161aa1ea0f853a852c5f314dee,", + "color.button.primary.solid.active.background": "S:46ab464309adee299fbae1f082d680e620367656,", + "color.button.primary.solid.active.foreground": "S:8d095efa37e06bd411108a41562bc53253abc021,", + "color.button.primary.solid.active.border": "S:7d638faafceeaa1ef39b022c9e4e98fba6747e73,", + "color.button.primary.solid.disabled.background": "S:37687689497b65e5104becb335e7676876cba02b,", + "color.button.primary.solid.disabled.foreground": "S:7a9e1cc55d4b69e0ec4097c8f7939d6cb440d8cd,", + "color.button.primary.solid.disabled.border": "S:5131318edd0b0442ae93d424ab7491d8461c72e0,", + "color.button.primary.outline.idle.background": "S:516c14db29133d7a7dcb9cda6268ec4ec874da7e,", + "color.button.primary.outline.idle.foreground": "S:19bdb475cd8a10a54b8eb470fd6cf841b2b2cb1d,", + "color.button.primary.outline.idle.border": "S:6d02802f6edac5d9ce831c14dc1b12a4adb57d56,", + "color.button.primary.outline.hover.background": "S:e59e92118492ca5772b0e6a6e0e1920fb5f0a468,", + "color.button.primary.outline.hover.foreground": "S:5389019a7d4d587c06628d01b05337dfe6b694ca,", + "color.button.primary.outline.hover.border": "S:02866640caafe0511a539a9ca56c28817f750f8b,", + "color.button.primary.outline.active.background": "S:6d2c650eeff6529f5ddfce339812f5883a043609,", + "color.button.primary.outline.active.foreground": "S:2cb83017ca48b826afca1f27a807dd176f408bea,", + "color.button.primary.outline.active.border": "S:4dd91b22d9d4b4ddf02b6c0f17d8f92c4411a461,", + "color.button.primary.outline.disabled.background": "S:765a027049052be42b915d11019e461c7dcb7b47,", + "color.button.primary.outline.disabled.foreground": "S:0cba678d8fd02631df753382192dce5ae72bf4ad,", + "color.button.primary.outline.disabled.border": "S:fe79bb3404e07f8fc3545ed81745d53dbffa06c8,", + "color.button.primary.ghost.idle.background": "S:1071c4d5a511662d5a45d17fef6ca8e3a1652f81,", + "color.button.primary.ghost.idle.foreground": "S:f4d46ef126d20fef830fc228fa001234401c5aad,", + "color.button.primary.ghost.idle.border": "S:7c7259ac40a8ed6208edf9d6ceb917c6cb13f40f,", + "color.button.primary.ghost.hover.background": "S:bbd98176145cff6d0d6cc76ea8027807886fbaef,", + "color.button.primary.ghost.hover.foreground": "S:8d0f396bc00fc2f3994e12c1500453fded235820,", + "color.button.primary.ghost.hover.border": "S:3a2689dcfaa9be9724ca1b888d7895cabfbab7ec,", + "color.button.primary.ghost.active.background": "S:f522dd6803b0b7e50e9fc07edf3763ffa77493c9,", + "color.button.primary.ghost.active.foreground": "S:62b70cc411310cf3198dbe520e0ce5cdd2aa8a79,", + "color.button.primary.ghost.active.border": "S:29f5ea3fd4b84349a8a56c23ec288284f0ceb1e8,", + "color.button.primary.ghost.disabled.background": "S:9440d1b5e2119b134059f29542fb946a61e87a2d,", + "color.button.primary.ghost.disabled.foreground": "S:f8fb2cef2e742a03342e8321934551f4cb4da428,", + "color.button.primary.ghost.disabled.border": "S:ada42485cc50d8c61a5f70df79baa3d301856394,", + "color.button.primary.link.idle.background": "S:ba89c29ca3ef23ca0d7dffc72aa14b5d41dc690e,", + "color.button.primary.link.idle.foreground": "S:39f6bd84e045e88b77615de0f2fdce39b40ef354,", + "color.button.primary.link.idle.border": "S:9323dd1ee27578428b0d475bb2826e62089a4493,", + "color.button.primary.link.hover.background": "S:53ddef08d0b416542a3951455d1a85a75dd7aa28,", + "color.button.primary.link.hover.foreground": "S:a4c099df0f9032156d1ebef14e951334f5ebb33a,", + "color.button.primary.link.hover.border": "S:e17fb21c35184a6d7f5e21068b8642b0e746b3a9,", + "color.button.primary.link.active.background": "S:6ffb9119a6ecefaf479e66c1d7a074f1cb0b547d,", + "color.button.primary.link.active.foreground": "S:6af64cdfa685763ec2533f4867d626202d853f57,", + "color.button.primary.link.active.border": "S:488bed459f2d575a2942d72ff58556d305e09425,", + "color.button.primary.link.disabled.background": "S:f13a93fac19f074bdf3f4547c6c3f0281b22f07e,", + "color.button.primary.link.disabled.foreground": "S:f31c5f6594a56606e1e233d1b54ba0b515fe6cdf,", + "color.button.primary.link.disabled.border": "S:25272db567f8f1757a424496e91780cca2f12578,", + "color.button.success.solid.idle.background": "S:9cbcb32cd3fcc17fdd6b8fd1e7fb8b7a04d5712a,", + "color.button.success.solid.idle.foreground": "S:56c33883b26fc4c4a8f6614a557dff9be3c2a0e0,", + "color.button.success.solid.idle.border": "S:d1d1ed9cd19ce3c7a6529a28881f6ff231a8de7c,", + "color.button.success.solid.hover.background": "S:52d272e49a2b4214cb0395c16b366e9ab61bac43,", + "color.button.success.solid.hover.foreground": "S:f46fc21c077fe0eca4087a3fb658fb8c04e4d301,", + "color.button.success.solid.hover.border": "S:eaaac473bd876015f067ac843bc05c039f5cccd1,", + "color.button.success.solid.active.background": "S:e6b376d3f8ec7938ad9fb9e8eb847ea8b00ea960,", + "color.button.success.solid.active.foreground": "S:05e8cabb0d98950ecb83c4d8da284110c0421ec6,", + "color.button.success.solid.active.border": "S:4a2ee44e2c81afaa03af9a46c9a7e48e4ba9920a,", + "color.button.success.solid.disabled.background": "S:cf33ba816892117dfc6ab0be1453e787c528d8f1,", + "color.button.success.solid.disabled.foreground": "S:20109d332c914e6dc4449bcb8fd6064bea7161b9,", + "color.button.success.solid.disabled.border": "S:f68b2d6a87cc8af8b5c94d824560d71ff8600ffd,", + "color.button.success.outline.idle.background": "S:e8454ddb2e987749bc9e4853d8d03ae5f66fe04f,", + "color.button.success.outline.idle.foreground": "S:d6e19e19a71d5623c13b5fd622b0624a48d5f720,", + "color.button.success.outline.idle.border": "S:ce3a0ff12e21091c1ca72033da922f4c4e8e5473,", + "color.button.success.outline.hover.background": "S:a08d662b88121397ee334827f170caf436f2f365,", + "color.button.success.outline.hover.foreground": "S:b0287a1f48ae4d51a784afc48d373439694fe26b,", + "color.button.success.outline.hover.border": "S:855976b50bd4a3e0d1f24b600e32701092c5ccc9,", + "color.button.success.outline.active.background": "S:0aefa2995bb7df709031d8d22365b6c8d6b79abc,", + "color.button.success.outline.active.foreground": "S:46f9579232e8e3edb9267bd77dd622a4fe2323a4,", + "color.button.success.outline.active.border": "S:b8433f681eb73c8d44f645485a795852073078c7,", + "color.button.success.outline.disabled.background": "S:eb9fac0fbd3acf5c726389fe539ba3bf88f756e7,", + "color.button.success.outline.disabled.foreground": "S:59b07de11b20c3f77cd61b466b9075c3dcf1d296,", + "color.button.success.outline.disabled.border": "S:c62f2fb40c22759b69537a4683186f38e1b34f4a,", + "color.button.success.ghost.idle.background": "S:11aa3fec930aec1ba2d88f4874e2ced2a2940768,", + "color.button.success.ghost.idle.foreground": "S:57c48f06fd50e4470110503c90ebdc2275b7aca3,", + "color.button.success.ghost.idle.border": "S:39112fa1e2f28969dd029fb4c453f8ecbfb8c2a7,", + "color.button.success.ghost.hover.background": "S:24cfe3814aa2d04ae9f783c682a460a4085e1ebb,", + "color.button.success.ghost.hover.foreground": "S:2c07476b769486420ac43a68b39864b6cd29b16c,", + "color.button.success.ghost.hover.border": "S:18c27cc6fde2b90a29ea9a5c36050f32e987b460,", + "color.button.success.ghost.active.background": "S:461919c1ad820866bfddb89bef95cfecb1cbc7b7,", + "color.button.success.ghost.active.foreground": "S:a1efe3fe316a89fe8b639164d3d7250c50055a8e,", + "color.button.success.ghost.active.border": "S:96f075804d1d9ad1d6e6e0b9d1275373a1c8afe5,", + "color.button.success.ghost.disabled.background": "S:81610955caabe8b98da0ac81509ebb93d90faa79,", + "color.button.success.ghost.disabled.foreground": "S:b30409f8c507b8145940582bc14162789fbee2eb,", + "color.button.success.ghost.disabled.border": "S:d1cba6585b4c68a2025592396e5ec4fc8da16fb8,", + "color.button.success.link.idle.background": "S:0f938d0a904948e63a24d9f779ad070e14b8cefe,", + "color.button.success.link.idle.foreground": "S:47a93788f727e6098742e02b5be50e2db5e24c1e,", + "color.button.success.link.idle.border": "S:981ebecb9800815089b0371f2f612eda9fbd2409,", + "color.button.success.link.hover.background": "S:2e1934c047125216b23048698130bc47c6693b33,", + "color.button.success.link.hover.foreground": "S:c763a5ef9f9872f231491a0d273ae02e91486518,", + "color.button.success.link.hover.border": "S:6e27a42611ba8a2e556e20212b34c869f2b0c6e1,", + "color.button.success.link.active.background": "S:cf80ced3248a59cfddd13165fc10ca7188886ad8,", + "color.button.success.link.active.foreground": "S:9dcc1d5f14e99efe70a524047af0923680139677,", + "color.button.success.link.active.border": "S:0d761a5792863e71e7b2d06e1db8de6b72738001,", + "color.button.success.link.disabled.background": "S:f899b40e5e114aeca432173dd26d016be24258d4,", + "color.button.success.link.disabled.foreground": "S:8736fda315ce8ec1073a0910fecc50d52758a54a,", + "color.button.success.link.disabled.border": "S:f395c759d426db46174a2f144d783ba0ae73652e,", + "color.button.warning.solid.idle.background": "S:4044e6070eb43497350722ec833975c5a5fb5dc2,", + "color.button.warning.solid.idle.foreground": "S:0e3dc5c9268754aad62f3b4c12a386802cd16493,", + "color.button.warning.solid.idle.border": "S:03399c22959c6a635ba8717b502d97a2419adc15,", + "color.button.warning.solid.hover.background": "S:3fa42ff87b3d98107cb8aa78c0036293725de30e,", + "color.button.warning.solid.hover.foreground": "S:880e2eca5ab3af53d064fe9c0b6dcf59d41147a3,", + "color.button.warning.solid.hover.border": "S:986b92dab81d164de1e6af1b6d167cbb86c3e1c9,", + "color.button.warning.solid.active.background": "S:c680acb4921aba48221148b1e38067f6d99b6b1e,", + "color.button.warning.solid.active.foreground": "S:1518462ad2d71c296e27fa90ac27107e3945c138,", + "color.button.warning.solid.active.border": "S:1a6a50c6c36c52f0914b4b5c6510e8517c8d2c4e,", + "color.button.warning.solid.disabled.background": "S:a54f74d38f6f293efeeda69af7d2dc9cf66c8514,", + "color.button.warning.solid.disabled.foreground": "S:bd66939e8db61d54625382817dd09beef9d5a7c3,", + "color.button.warning.solid.disabled.border": "S:742ebb29cc0adc7a33ce025086bfd7c373f3fd40,", + "color.button.warning.outline.idle.background": "S:6dcd6194849357722666c9d8fa7741719a5c6ce8,", + "color.button.warning.outline.idle.foreground": "S:2b0a5997dafc8a5d2ec6a9ed35e2bcab79a5f414,", + "color.button.warning.outline.idle.border": "S:50e0a512d86a41727a30ed09f9c8ef6184233581,", + "color.button.warning.outline.hover.background": "S:0aa28322a03985ff2c295ba13999cebc04757bd0,", + "color.button.warning.outline.hover.foreground": "S:5a78c784241c87398b8168672dc6cd59e3683af3,", + "color.button.warning.outline.hover.border": "S:10df74d433e75f995e3db43560fa7f89d866b8d2,", + "color.button.warning.outline.active.background": "S:1d41545243e39227de6fd26cd3e163d2745fa9ec,", + "color.button.warning.outline.active.foreground": "S:69b13a767eb3572cc350ffa3aeb154e0a1933429,", + "color.button.warning.outline.active.border": "S:4265c34619cebd633b0887a4c446b8036af28441,", + "color.button.warning.outline.disabled.background": "S:4a3c0f96920983ceb4a382d4b2293582b08c0172,", + "color.button.warning.outline.disabled.foreground": "S:d3358935c62167837ccf6c79f7cb68689e2d8c7c,", + "color.button.warning.outline.disabled.border": "S:d278480eda6764df39dd0d43bcd8f3508383d4b4,", + "color.button.warning.ghost.idle.background": "S:703c649c5aa35edc2a9e632a0ba0342a9af72ad7,", + "color.button.warning.ghost.idle.foreground": "S:3ee44e5ff2693b3bd59faacf586141c93e51278b,", + "color.button.warning.ghost.idle.border": "S:4b23193cbc18da170d599937c14b001c1ec9b5fd,", + "color.button.warning.ghost.hover.background": "S:6b9f21ece390748199e89b65c9491f817c1f51d1,", + "color.button.warning.ghost.hover.foreground": "S:c35612c690722b71b9796bf4d3b86de9ad9715ed,", + "color.button.warning.ghost.hover.border": "S:39becbb568a3ece96a478c745eaa901cadcc4932,", + "color.button.warning.ghost.active.background": "S:a24e8e109234eabe5e99d11b0610c6dd96a15c77,", + "color.button.warning.ghost.active.foreground": "S:a70292154764598a32d5d7ea700f42fd8b3c4f4c,", + "color.button.warning.ghost.active.border": "S:1eac74c46fe42cba182ab02bbc1062b0414915db,", + "color.button.warning.ghost.disabled.background": "S:6f541c03154e218797e11ea3f80ea1de885624ba,", + "color.button.warning.ghost.disabled.foreground": "S:a8296d363f7f081c1cf4eead0acf68a4a4fcdc6b,", + "color.button.warning.ghost.disabled.border": "S:c5668161c2919838ac1d9506a6d04d73d93a9e77,", + "color.button.warning.link.idle.background": "S:35dd4cc51279a98da40b7c85ce8f6013bb8509a0,", + "color.button.warning.link.idle.foreground": "S:33b41e5987c4a887a674390f08fe007c2b78fb3b,", + "color.button.warning.link.idle.border": "S:43fe0cfc08017dd436ff3474dab08590273b558b,", + "color.button.warning.link.hover.background": "S:b3f884e019c722811a93cb1a374dfabcbf571086,", + "color.button.warning.link.hover.foreground": "S:179a52e4e25967c33a35650ad2c28a3b27715fc0,", + "color.button.warning.link.hover.border": "S:56288eeba30e3a82b64c02dc54de74731e7e9209,", + "color.button.warning.link.active.background": "S:31d80e37327b61a1754a9ed0a3526cf018033d15,", + "color.button.warning.link.active.foreground": "S:7554aaf6fd75742766b6a6289125f2a82b9e7593,", + "color.button.warning.link.active.border": "S:081c4f07695b4603afc878cd8161b92bd0e220f7,", + "color.button.warning.link.disabled.background": "S:b310c2e9b6b808c588ab3b8dc826f707142d9b8d,", + "color.button.warning.link.disabled.foreground": "S:97162017c8704f68aa08513d34e54578022555e1,", + "color.button.warning.link.disabled.border": "S:f92e7ead887c24ddabcdaa729a80297f4659958c,", + "color.button.danger.solid.idle.background": "S:0feee0f311a72652a3d422df0646718663edac29,", + "color.button.danger.solid.idle.foreground": "S:85d6636a0242346675fba0e679b92964ac3a3814,", + "color.button.danger.solid.idle.border": "S:cf6bf819f56afda8bca310bc833752118245564e,", + "color.button.danger.solid.hover.background": "S:6186525c8adc3619bae120e62075d2f932e22127,", + "color.button.danger.solid.hover.foreground": "S:1e9b2838fe57365ab088be020b0d80f25e95053a,", + "color.button.danger.solid.hover.border": "S:84a675f7c944a17daee9daea4c7e9464e7c4ba79,", + "color.button.danger.solid.active.background": "S:036ddac756ffcb6b50fb0dd42aa2dd11a8c8c90e,", + "color.button.danger.solid.active.foreground": "S:5f9a4e84e83710972ca2106974e87263b306b3d3,", + "color.button.danger.solid.active.border": "S:3a4c3e1c4bd2f87d4b444ab0ed6a03aa6f89d9a2,", + "color.button.danger.solid.disabled.background": "S:3282c3b88e9bb3db99afa2a847a0f2ee428c91f2,", + "color.button.danger.solid.disabled.foreground": "S:227d4bdc33af93a1a4b5bb4e7d37bf216a2e7bcb,", + "color.button.danger.solid.disabled.border": "S:beaeccb3a852ed7d3a766a1604369865bb858a65,", + "color.button.danger.outline.idle.background": "S:0d10681f6615fc8c52162a8f5351e569ceba134b,", + "color.button.danger.outline.idle.foreground": "S:3aea2976de1e8d6b9e27893ebd9f6a458ea05902,", + "color.button.danger.outline.idle.border": "S:00b55a21697c8c30a73d6aef712a26604790cbd4,", + "color.button.danger.outline.hover.background": "S:9c9042130fd4b83c9a393611eecc92dbbedd9c74,", + "color.button.danger.outline.hover.foreground": "S:5fa1ce4f6a6d5a2d8ef02eec8eac746d7438b74e,", + "color.button.danger.outline.hover.border": "S:e25c8b36992679b85ca1bc99ecf1652462cbc8bd,", + "color.button.danger.outline.active.background": "S:2fd9f26a223bb0ed3306e08ce8a147a14ba61d4d,", + "color.button.danger.outline.active.foreground": "S:ceabd5f2f9532e5ac2f57b3efcd70714a1083033,", + "color.button.danger.outline.active.border": "S:b243fd5ff45b2a1526ded0775daf7762d4078144,", + "color.button.danger.outline.disabled.background": "S:4914463e973dba83d4fb1f546a3c61b85d9873e3,", + "color.button.danger.outline.disabled.foreground": "S:9f2875ade01569c3d33416d07862bde7f04aee88,", + "color.button.danger.outline.disabled.border": "S:5695cb4e62e0b99036b02f8ef636e0f02226a2ed,", + "color.button.danger.ghost.idle.background": "S:c34f6a792b61e28312b5bedf5f0673ff1fb279c0,", + "color.button.danger.ghost.idle.foreground": "S:db2d41b64476020f7a24d78569c6572bfef95baf,", + "color.button.danger.ghost.idle.border": "S:e561ed120f8a911ab68fc07bd5db1628d426b11f,", + "color.button.danger.ghost.hover.background": "S:ed2b50159cd4851a19dd69b0e0bfc39539956732,", + "color.button.danger.ghost.hover.foreground": "S:d85215e47185f25e5f2c9d23d41934bba614fc30,", + "color.button.danger.ghost.hover.border": "S:7727b0e1eca7d4d695460734ae0e0a6bc414eb12,", + "color.button.danger.ghost.active.background": "S:54ec2d4e05ee2e291d85498d6fa30fa6553203ce,", + "color.button.danger.ghost.active.foreground": "S:1b3f18579a95f37bc5e13f5a7e2dc7d3a091596c,", + "color.button.danger.ghost.active.border": "S:ea067ac6c6f158f9597e41b26ee980d8b2502062,", + "color.button.danger.ghost.disabled.background": "S:4f2a8c43f59d1462f4579bb177efa2afd29b8936,", + "color.button.danger.ghost.disabled.foreground": "S:460b52f389adcf2442b630c4cd062df5dfc6cad8,", + "color.button.danger.ghost.disabled.border": "S:7311aca6e9306a38cbce77c08081ca14f25ae28c,", + "color.button.danger.link.idle.background": "S:8d9e40810112225522a3d1f43e2910b844d6a5aa,", + "color.button.danger.link.idle.foreground": "S:1f50d5e1d45acb988fbca97ed817c78904809b3a,", + "color.button.danger.link.idle.border": "S:1ec54bb24c19f55a1aef37067d4d372cae792a72,", + "color.button.danger.link.hover.background": "S:7598dae926e9a364ce02ab69e472544b781f5b5f,", + "color.button.danger.link.hover.foreground": "S:9c16b40d6b7462be349a785972b85fed0344c4b0,", + "color.button.danger.link.hover.border": "S:2e5ee72c6016c6a8a2ee0fcdfec8644e13305fac,", + "color.button.danger.link.active.background": "S:3e898e351934a9439a6b0749b4999b2312a1ce5e,", + "color.button.danger.link.active.foreground": "S:4dbd7ccff9b0af42c93330aca2b6a47e7e745b69,", + "color.button.danger.link.active.border": "S:4898249cd9a989b81ae193fa44fd52d47b2156cf,", + "color.button.danger.link.disabled.background": "S:0358f9bfb30536fbedfe59394a17ba8bc723f9c4,", + "color.button.danger.link.disabled.foreground": "S:5c46559bc266236ccdfac373cbe6c8144a5218d1,", + "color.button.danger.link.disabled.border": "S:901e9a2f99c8dccbd15c71cdd83567fa2a5764fc,", + "color.surface.solid.primary.background": "S:1df94da7de5fa5e40d4d0552e6e075da577621b4,", + "color.surface.solid.primary.foreground": "S:08cc64c8819c922cc389f51b6f9c8b8b2cd6409a,", + "color.surface.solid.secondary.background": "S:0536a2d0561b4c775929a373af15abee71b4c0b3,", + "color.surface.solid.secondary.foreground": "S:f2489bd4744d152e2394e6b96a19c27aeb300146,", + "color.surface.solid.accent.background": "S:43db9b0f6c1d507d2252ca63f44d70831b84b736,", + "color.surface.solid.accent.foreground": "S:a2beecac5900e03e840e96c966473ef703ce1b62,", + "color.input.option.default.unchecked.default.background": "S:8d3f9ebdff7fcfeb4719c8786648ac647ccb6f96,", + "color.input.option.default.unchecked.default.border": "S:dd723930bddf3cf11e316af4e7fea09b394cfe0a,", + "color.input.option.default.unchecked.default.label": "S:f7700118f19c89a95689ef88c62ac2a44c484a5e,", + "color.input.option.default.unchecked.default.icon": "S:e454606308462c8cb56bea4045e45f71ece93c0f,", + "color.input.option.default.unchecked.hover.background": "S:4c383e1c8baebdaa001f96ef6376a2cd3b0d242d,", + "color.input.option.default.unchecked.hover.border": "S:886bf8af6969a2cd586bd3f9260b6d45fc976ae7,", + "color.input.option.default.unchecked.hover.label": "S:3555a39f223e77dd078330fd8f2d070e32ad0f5c,", + "color.input.option.default.unchecked.hover.icon": "S:168bf0ec119fc56d1fccbcc78d748edb0d8302db,", + "color.input.option.default.unchecked.active.background": "S:52e612840dc8788940f3fa8f5ae66c05df97f635,", + "color.input.option.default.unchecked.active.border": "S:a55ad8565f49b96dff1ec1c22baf3a4343c9922e,", + "color.input.option.default.unchecked.active.label": "S:6859ff5dde6bc161fed312f1cbdc9755fc374706,", + "color.input.option.default.unchecked.active.icon": "S:ca45f02589856cb931030107eb1cfe41d58ae424,", + "color.input.option.default.unchecked.focus.background": "S:e19aa94b8e3daaaaf8513ad9f45ff5bf35bb909f,", + "color.input.option.default.unchecked.focus.border": "S:41f29b5c6dc4920dd2bd98eb2f68ae1c15048692,", + "color.input.option.default.unchecked.focus.label": "S:5e99544238f6e44013c2aeb5c152e7ba8b5a8441,", + "color.input.option.default.unchecked.focus.icon": "S:3dd0910201b6b7544b9f0985ce6e4ce3a331780d,", + "color.input.option.default.unchecked.disabled.background": "S:e630312b42356c87f584a0a630aa34d32fc21d01,", + "color.input.option.default.unchecked.disabled.border": "S:271455a918ba719a3a29ee51954f8c05daab928f,", + "color.input.option.default.unchecked.disabled.label": "S:93ba82cbc5c022e4d07411563eb29e0e710e5e07,", + "color.input.option.default.unchecked.disabled.icon": "S:625801d453458253ba3fea68101cfa32871b00dc,", + "color.input.option.default.checked.default.background": "S:f1901852dcbfad05a43f54b30b57b9fd9a00b3f1,", + "color.input.option.default.checked.default.border": "S:88950b3ec4beccab69883d8f29f2e7b7a6b9f399,", + "color.input.option.default.checked.default.label": "S:ac5c12fd879747adec3744f99e0df1a903453966,", + "color.input.option.default.checked.default.icon": "S:113a89569ebbece579335fefe4e40cca8c220756,", + "color.input.option.default.checked.hover.background": "S:56f4e2e8291310abdca1965b36790c8d060c00b7,", + "color.input.option.default.checked.hover.border": "S:07e45bda12868427be9d5a9809008d6425b31599,", + "color.input.option.default.checked.hover.label": "S:25ec46b67a359ac2b7e005befe8013be13099800,", + "color.input.option.default.checked.hover.icon": "S:68f82b95506b4816e76ffb440480fab3d6e4c480,", + "color.input.option.default.checked.active.background": "S:3322b59ec4157638bab3f4a79a63ff462dab3795,", + "color.input.option.default.checked.active.border": "S:e23833d194a88d2aef43acb0abad1da0dcd40dd8,", + "color.input.option.default.checked.active.label": "S:fff18714b1da1ea62a829aeb6e1fbf46621183e2,", + "color.input.option.default.checked.active.icon": "S:19cb45ea503a14e832cfe43ca9920252cc64e701,", + "color.input.option.default.checked.focus.background": "S:c16d65eebc75178165b2298278164b5f914769b9,", + "color.input.option.default.checked.focus.border": "S:39c35f161459a325182666e101fb219807e3aeb6,", + "color.input.option.default.checked.focus.label": "S:e993466ac0cb7d3f549ede373fc0c18d9cf61ec8,", + "color.input.option.default.checked.focus.icon": "S:4b0bf91029594f8a50bebebcf75c55779e1e0a8b,", + "color.input.option.default.checked.disabled.background": "S:c7043608533ce1ea4e6c67645dbc8cdd13dbb197,", + "color.input.option.default.checked.disabled.border": "S:709aa39b212386829af95a2766520adc87709e12,", + "color.input.option.default.checked.disabled.label": "S:5f0f9f012ad143ef5a1deae5ceb7d961c9f882f5,", + "color.input.option.default.checked.disabled.icon": "S:701519bbe417622b04c291c5acb4b80f40f73d02,", + "color.input.option.invalid.unchecked.default.background": "S:21a9930906ee10fcfac8200d271ea4d664f7e6fa,", + "color.input.option.invalid.unchecked.default.border": "S:c7a330a3242ada4f08d60a2d6ac3ccb674cd9149,", + "color.input.option.invalid.unchecked.default.label": "S:4315985dd5e577a46fcf34fcd7279ba2e38f855d,", + "color.input.option.invalid.unchecked.default.icon": "S:8f085ef37daf9bd26cd3acf25f1d4bc2531a405f,", + "color.input.option.invalid.unchecked.hover.background": "S:9c8451c0e66202f5fd7c81a77d64b839fe0c24f2,", + "color.input.option.invalid.unchecked.hover.border": "S:35e3e7dd11159345244679e2b3e325f542f5b93e,", + "color.input.option.invalid.unchecked.hover.label": "S:3867e306802f9ac32ed0460b0a137e56c9075bd0,", + "color.input.option.invalid.unchecked.hover.icon": "S:16a2f1258de21eefcfff60fa7d89b6acc9cb0124,", + "color.input.option.invalid.unchecked.active.background": "S:98ce3a84d63cf40d90c1156dce871498d9fb0133,", + "color.input.option.invalid.unchecked.active.border": "S:0823525915032df58a47d986469cb27bf35bbb2e,", + "color.input.option.invalid.unchecked.active.label": "S:ed85244a897ddd1d13762e925a3495133364237a,", + "color.input.option.invalid.unchecked.active.icon": "S:166aff56e676a42febc01f55cfc501ceff0c927a,", + "color.input.option.invalid.unchecked.focus.background": "S:4fed58e3d33be7478b29ecc25eb2a614bd165e0c,", + "color.input.option.invalid.unchecked.focus.border": "S:4a5434f831243c5e220a0567810f323177e971ec,", + "color.input.option.invalid.unchecked.focus.label": "S:2c1fad1554730a24eaa2ef8a949c070db2dad8e3,", + "color.input.option.invalid.unchecked.focus.icon": "S:1be314a75fb59206a3deb5e67ac435ad65a7fd1a,", + "color.input.option.invalid.unchecked.disabled.background": "S:66af18a733cfa71a0d301fa5a46316a17273b7b7,", + "color.input.option.invalid.unchecked.disabled.border": "S:288ff8203e30dadbc8c8f88f369196e4a514fd81,", + "color.input.option.invalid.unchecked.disabled.label": "S:42412c9a70239005a86aa84c5346d7530b965c9f,", + "color.input.option.invalid.unchecked.disabled.icon": "S:1f18deda87edf36040d04357986d34f045fe0913,", + "color.input.option.invalid.checked.default.background": "S:7d1f6b729c32e24170629aca0a275febd90d199a,", + "color.input.option.invalid.checked.default.border": "S:52936e6c0228ccde7ae2bebf8324767c60e0ccaa,", + "color.input.option.invalid.checked.default.label": "S:7b1733cfea800edd198d7c4f0d3723c5db18e7b0,", + "color.input.option.invalid.checked.default.icon": "S:9a971d3eae9fb77d90abdc393e5a2b47940f574d,", + "color.input.option.invalid.checked.hover.background": "S:329b336ac8db8a9577550e007a0ed507bc0e4e86,", + "color.input.option.invalid.checked.hover.border": "S:1edcfaa09694c708d61f432ee58f4a39ef2a5b4a,", + "color.input.option.invalid.checked.hover.label": "S:c5e0985d46eb0ad1738235008c84d7134841e386,", + "color.input.option.invalid.checked.hover.icon": "S:ce9fa0238eeddab6e2368751c80b8857b1a3872a,", + "color.input.option.invalid.checked.active.background": "S:8072db22cc9a28b80060addaa59acb5453427119,", + "color.input.option.invalid.checked.active.border": "S:61b182330e6e442a80fc2bfe7196e976a6ccc205,", + "color.input.option.invalid.checked.active.label": "S:c7b6e9fd1bfef1eec2c07658fb8ad92b8bc7045d,", + "color.input.option.invalid.checked.active.icon": "S:882ade312e950052c8f674806ba32cf6466ded79,", + "color.input.option.invalid.checked.focus.background": "S:a93c5b1dd3424f28a6840b597f0a79d8fe12f0f0,", + "color.input.option.invalid.checked.focus.border": "S:de22e7e11eb62522a17fc5e7e1a88549f8eaca28,", + "color.input.option.invalid.checked.focus.label": "S:6e4cbf7b0e41a3ed7e364bb70a75db7e68a87245,", + "color.input.option.invalid.checked.focus.icon": "S:58ad3903394c46297b89e35d2a9d2f71aec0b646,", + "color.input.option.invalid.checked.disabled.background": "S:e5b241100fd0fbe3bf3aba3f58ff893218a80f93,", + "color.input.option.invalid.checked.disabled.border": "S:369eb7d77dbd0f67cbb07ad9731634410bb4f392,", + "color.input.option.invalid.checked.disabled.label": "S:a52e1d16ff3f10cec6b22cca931d6cabd1ef3386,", + "color.input.option.invalid.checked.disabled.icon": "S:e2789a2e82fb1853a02d2a17fe8ddf2131244a35,", + "color.input.option.valid.unchecked.default.background": "S:932a4ee370192659f13caf5f5e74528385dc7f2d,", + "color.input.option.valid.unchecked.default.border": "S:cec25569608af1b0ae970f1d74a60c4c1b09b8ee,", + "color.input.option.valid.unchecked.default.label": "S:e18e081c4e641c46073b4ac1de5b09a38a74c9b2,", + "color.input.option.valid.unchecked.default.icon": "S:17a2b73ce78dd41be8e8c53078508b07b7abec1d,", + "color.input.option.valid.unchecked.hover.background": "S:c637d6662e8cbbe4197c976409bafcf32b36cbe8,", + "color.input.option.valid.unchecked.hover.border": "S:4c58480e9a5a2502c6eb8b69096102ba082558f5,", + "color.input.option.valid.unchecked.hover.label": "S:b09a0c4f3bbae68772573cb3fbafb2848258eaaf,", + "color.input.option.valid.unchecked.hover.icon": "S:239053679830fea0124a7d8ede8ebaec7b787bd3,", + "color.input.option.valid.unchecked.active.background": "S:3e5aa22facf73f5880fa459089a19321eb8630db,", + "color.input.option.valid.unchecked.active.border": "S:04db87a408dd2d8e0fce5008fa6d2f0de9b25eca,", + "color.input.option.valid.unchecked.active.label": "S:04e47e26620df2ac13410b31d827a6a2ed1b0804,", + "color.input.option.valid.unchecked.active.icon": "S:c34197507945c716ada03c48778cde472bbf5ab1,", + "color.input.option.valid.unchecked.focus.background": "S:104d4918a92d22dbf396d0440da18ab449f49790,", + "color.input.option.valid.unchecked.focus.border": "S:59fe49ba9c47e77f0021f4a748e5ab04ed6b83a9,", + "color.input.option.valid.unchecked.focus.label": "S:01f971c56a99f7a0068f44c6e239b87f5d0fa202,", + "color.input.option.valid.unchecked.focus.icon": "S:bf2d9c4c301598febf673f9ff9e404ca28dae675,", + "color.input.option.valid.unchecked.disabled.background": "S:085661ffe761a5d3d517dc371b008b17c720b23e,", + "color.input.option.valid.unchecked.disabled.border": "S:42a2a997bbc7679d6c2acf8a26f630363cddad0b,", + "color.input.option.valid.unchecked.disabled.label": "S:6049305315125d277ab1e482ac2ed273ab00071d,", + "color.input.option.valid.unchecked.disabled.icon": "S:e1e02bb27e24502ae736ab5127c657fde1e43106,", + "color.input.option.valid.checked.default.background": "S:f1f953b8f06c83a69e424ab574c69fd3078cb8c3,", + "color.input.option.valid.checked.default.border": "S:81ed816ce2b068e90572cc876b6996b43d8cc877,", + "color.input.option.valid.checked.default.label": "S:d683b4a6208a6ad2fec7f3419c8a5ed54e3e02e4,", + "color.input.option.valid.checked.default.icon": "S:528af423063d1d64227dc35787c38c34319c688c,", + "color.input.option.valid.checked.hover.background": "S:7169b06dc3397ca95ae83f1d9b7b868ab70935f9,", + "color.input.option.valid.checked.hover.border": "S:3537bb3f0654c3f43e201fbd3ad94a49b0fc347f,", + "color.input.option.valid.checked.hover.label": "S:3ff70511fbec264aeef9b6514d2b8a0ba87c1e57,", + "color.input.option.valid.checked.hover.icon": "S:1fa705776ba7772591344b904fcdb56ec17351f5,", + "color.input.option.valid.checked.active.background": "S:ee4b34c665a81a8c0ebc3a300a354900c1feeb48,", + "color.input.option.valid.checked.active.border": "S:cfa208a88838e5ead26876971a95e32d7593c6f3,", + "color.input.option.valid.checked.active.label": "S:a9491a2c53e229474b008078a30fed435272df12,", + "color.input.option.valid.checked.active.icon": "S:dd05506308f3261da6950bfaf1d3b24c459bbbb1,", + "color.input.option.valid.checked.focus.background": "S:1d9f503524dd647372c461ef7c661655a4fd926d,", + "color.input.option.valid.checked.focus.border": "S:efe5894a65df1540ef3b48e5a80f53af3c10c104,", + "color.input.option.valid.checked.focus.label": "S:82dbc9ddf4d5fa90b3e64d56042628f32e5a2f0c,", + "color.input.option.valid.checked.focus.icon": "S:3abe3ba0db7d1c51146414e299bddde9e63378fb,", + "color.input.option.valid.checked.disabled.background": "S:7f7d1c7135abbf29f00d9061ea9c36e15d4e1e97,", + "color.input.option.valid.checked.disabled.border": "S:572449ba5735c940743b877686365cff56a03a0f,", + "color.input.option.valid.checked.disabled.label": "S:7cbe07d7143f382f2105b3e5640a12f67d09ea4f,", + "color.input.option.valid.checked.disabled.icon": "S:1e56229a0ed35fc5365cd684ef7fb30a93740d40,", + "color.input.switch.default.unchecked.default.background": "S:abb76c3461d5c1741dad0b8b2c94e77ac151fd99,", + "color.input.switch.default.unchecked.default.text": "S:dbb0314e29b1438c957c9c0c58b595d439d8d6dc,", + "color.input.switch.default.unchecked.default.icon": "S:b6e1494379ce3500ed1d7f12c49c25b0f73706a0,", + "color.input.switch.default.unchecked.default.handle": "S:49b129aa4ef32f48922e885f604ad6432532a8bb,", + "color.input.switch.default.unchecked.hover.background": "S:c0efaa598beb2f337dd43ab6a8760ea6b2820731,", + "color.input.switch.default.unchecked.hover.text": "S:1fe74a0a7140dd0c5ad89f0d0eb91c24d35f9fd2,", + "color.input.switch.default.unchecked.hover.icon": "S:fd280cd4fdc7a1c745491b83176ee0767fb73223,", + "color.input.switch.default.unchecked.hover.handle": "S:e70c7e99a79bb4e477f12f24d01c6e4df5bd9021,", + "color.input.switch.default.unchecked.active.background": "S:a15fc631c68033c5c413d9859aeb977a9d735858,", + "color.input.switch.default.unchecked.active.text": "S:ea7edfbd069dd775b5f14bfa94de9064453f1e0a,", + "color.input.switch.default.unchecked.active.icon": "S:aacf68f16c1e07788474dcf78cc699bc89a14c1f,", + "color.input.switch.default.unchecked.active.handle": "S:27fd17d1fbce4b90d6bc66d8f95d87f97c457bcc,", + "color.input.switch.default.unchecked.focus.background": "S:32f5d0b1247083cadc1a7112aefec04d71508bd2,", + "color.input.switch.default.unchecked.focus.text": "S:83cee1db460de503c2610f30af542ffb88f266ea,", + "color.input.switch.default.unchecked.focus.icon": "S:f1c9a15a10be5f2927f0e78c4c2e7b8a695209ac,", + "color.input.switch.default.unchecked.focus.handle": "S:9651b4c8f91a7a5f654d7f7f215ae404f0e2e4b2,", + "color.input.switch.default.unchecked.disabled.background": "S:2d524f4293c72bf87a2519b6db33f9b84ba3aa43,", + "color.input.switch.default.unchecked.disabled.text": "S:7c9ad3013598f40eacbbc944be99419eb2cb4b30,", + "color.input.switch.default.unchecked.disabled.icon": "S:210c759ff1a5e0de2d34774b367bba81f0407a75,", + "color.input.switch.default.unchecked.disabled.handle": "S:6263ff84ffdd3afba09cadc4e38385eefd6285fb,", + "color.input.switch.default.checked.default.background": "S:eefbdd102c758540958ddbfa631bd4378b755d2e,", + "color.input.switch.default.checked.default.text": "S:b3d5d65ffee752815b279be6a6c9bf264c4d2989,", + "color.input.switch.default.checked.default.icon": "S:39e1908e3c7d3b6bcb95497900c523f04b36f973,", + "color.input.switch.default.checked.default.handle": "S:e5d82a4bbb089b8d48ff963a389d98fbb077cf9a,", + "color.input.switch.default.checked.hover.background": "S:6f17376f5804f2672c71db02f550002b371ecacd,", + "color.input.switch.default.checked.hover.text": "S:5e84e8b486a6428a7c1e5a178a62e1bed4b5dda0,", + "color.input.switch.default.checked.hover.icon": "S:e1009dce6f47cab549a5203962de3ba9ed1297ee,", + "color.input.switch.default.checked.hover.handle": "S:ab8abaa7826f82b00dfae3d49638115fcdb0dde2,", + "color.input.switch.default.checked.active.background": "S:8c703064120583ec7ec239ce3002632f2193588c,", + "color.input.switch.default.checked.active.text": "S:5f7ddc4159699d95ce05907fd003675109c8c4d7,", + "color.input.switch.default.checked.active.icon": "S:43221cb979edff4f9de0fc34ac59ca9315c0be9d,", + "color.input.switch.default.checked.active.handle": "S:a4e54cf6bb6eaca13a988b4c956c4334d1c0d5ef,", + "color.input.switch.default.checked.focus.background": "S:bdbc6e939fee44a5908ae068a942ae86182542fa,", + "color.input.switch.default.checked.focus.text": "S:fb9c6f8d9552b589da93b2f3f7f8e34869161650,", + "color.input.switch.default.checked.focus.icon": "S:ded813c202e97af599c8e579dd315a161b2bb364,", + "color.input.switch.default.checked.focus.handle": "S:11b0503959edd2f3fd725120cffcf84b3252a889,", + "color.input.switch.default.checked.disabled.background": "S:6aed9f97384d98b3049703c1f201cf5e388db802,", + "color.input.switch.default.checked.disabled.text": "S:d758dc1c72daac9575d9d1a394894a435d9feda6,", + "color.input.switch.default.checked.disabled.icon": "S:edd00d674de16dc4b6442b27adbe4d0846525e5c,", + "color.input.switch.default.checked.disabled.handle": "S:892b7a73c870c71ee00749a7020519b64d590d2f,", + "color.input.textField.default.default.background": "S:fda564842d47b6f9b6bde488cef74f2d0feedbde,", + "color.input.textField.default.default.border": "S:d0f382b7d51c41ef28f4cf54e680591363a44f13,", + "color.input.textField.default.default.label": "S:07c9376420d2070b269184a4a33775d73f1c68cc,", + "color.input.textField.default.default.icon": "S:a9a3e9de737f5ad1cbfc7cbe124f2afdcb8711ed,", + "color.input.textField.default.default.inputText": "S:827a03edce21948bbd9ab9a8e9f48e7f2a74031a,", + "color.input.textField.default.default.placeholder": "S:6f4d71a81bf7284ab1af67262de8d99e4e6cf434,", + "color.input.textField.default.hover.background": "S:63a765e389d62951755c6c6d95a34d9670d00102,", + "color.input.textField.default.hover.border": "S:dc943cf46be7f800cdd4f11d61b7a424de3d41b0,", + "color.input.textField.default.hover.label": "S:29a5798adf53df65647bfa9444e6fc2fd6e4ef4d,", + "color.input.textField.default.hover.icon": "S:73db56bdd934ced47fdb6f346e5f9882c0726eb4,", + "color.input.textField.default.hover.inputText": "S:7ad33d78122662cefc3a2c822a01c033fe33051d,", + "color.input.textField.default.hover.placeholder": "S:1fd6c3248de2ca8bb65e34b8fc73dca2fb08ccb3,", + "color.input.textField.default.active.background": "S:fbda71c47e65a3e6f6219a9ba648e07058a5c87b,", + "color.input.textField.default.active.border": "S:d1ca6b5c5a5fb4f1e7efdffd541d581c51f9b331,", + "color.input.textField.default.active.label": "S:c12de15c09085449e8bba5e88777124c16e36ab0,", + "color.input.textField.default.active.icon": "S:3bf6e21bc66db5a15afde5c4d7c68483bdca1e2d,", + "color.input.textField.default.active.inputText": "S:644defe9bf70cb33bd1a39bd2109d8ce68edfee0,", + "color.input.textField.default.active.placeholder": "S:51e14d33ab486b2f48e6ac2420b2b52a887d1dba,", + "color.input.textField.default.focus.background": "S:0280da57026860bb5548a28ad4e079e64cf68b3a,", + "color.input.textField.default.focus.border": "S:2ea62a32e7753450e18c4c475f339796330de75d,", + "color.input.textField.default.focus.label": "S:ab7e7ac9d65ba4e6f1d6c7a25e5c20883b459b50,", + "color.input.textField.default.focus.icon": "S:38462631b6b2c96d7c0c12ccc931dd16b7ac4a3d,", + "color.input.textField.default.focus.inputText": "S:ff13c280e1e5bc85a8830ae53948bb09411bde40,", + "color.input.textField.default.focus.placeholder": "S:0992195ca1b7b42cdbee2e2026f97dc045255efd,", + "color.input.textField.default.disabled.background": "S:8d2afea717fc6eee2cc96befa7da93d44db0e920,", + "color.input.textField.default.disabled.border": "S:f1aba995187e3a1495c3f8929c71a52673524318,", + "color.input.textField.default.disabled.label": "S:cd573cf91f6cdbe449c4c890ebc52b5f70906d07,", + "color.input.textField.default.disabled.icon": "S:0988f58d67b2a4acf8170f2e4603e386feb8caf0,", + "color.input.textField.default.disabled.inputText": "S:4ef4f7694f9505301c765c2baa2d994e3e3f60ec,", + "color.input.textField.default.disabled.placeholder": "S:110835a54973f94198fbbddf05d6fb8ee6de9910,", + "color.input.textField.invalid.default.background": "S:5e6e1a31f788e3f3eb3a8003d85d2a5b2d0489f6,", + "color.input.textField.invalid.default.border": "S:f9813d8ed8d600268cc830d6b38ab74242048933,", + "color.input.textField.invalid.default.label": "S:be1038d267aa3381a4e8125963f4e3f9395affd3,", + "color.input.textField.invalid.default.icon": "S:1849ee7bed42533b535303ccb4dd0ae58e68f6a5,", + "color.input.textField.invalid.default.inputText": "S:443a5f744025f0ec8ceb6f218e8145baa22b9d0e,", + "color.input.textField.invalid.default.placeholder": "S:93620b95854279ef48198d9d18d6a806c37afd7a,", + "color.input.textField.invalid.hover.background": "S:25d5d9e0799ebffa54039d43ba318675f9467758,", + "color.input.textField.invalid.hover.border": "S:df9c8350b41f65d78a4cdba08ec311d44a28e672,", + "color.input.textField.invalid.hover.label": "S:07e2d0ae336b8251b133fcc04c8a2968e976c08d,", + "color.input.textField.invalid.hover.icon": "S:d7af6d65e6f0332073a90b2024b1b0f8227f4556,", + "color.input.textField.invalid.hover.inputText": "S:efa274f2b9e80ff47c072fe6ed06b148445d4017,", + "color.input.textField.invalid.hover.placeholder": "S:db9b088686b92401b8da20df40df1c075c41b050,", + "color.input.textField.invalid.active.background": "S:34ab482be6c1cde28b45cfdc7385c0912204b564,", + "color.input.textField.invalid.active.border": "S:3d53bece5868fdcbd82b4a2050b0d9070dc9e1f3,", + "color.input.textField.invalid.active.label": "S:47de9155c21a895044beba38445b1a7f2fda503f,", + "color.input.textField.invalid.active.icon": "S:ea1aedf9848d2725af62a52f2ab2f8cf443e50c3,", + "color.input.textField.invalid.active.inputText": "S:e1a41b09a918a83ef183378f6bda04d75ad38c55,", + "color.input.textField.invalid.active.placeholder": "S:8d9a4c89b437aaf2f4347c3c385e4b4c3e9c8d3e,", + "color.input.textField.invalid.focus.background": "S:18efaf8d12eb23889b9ed24a6481a95de1d8cee6,", + "color.input.textField.invalid.focus.border": "S:4c341a38ae2a14526289cfa5f4169f983a89a0f7,", + "color.input.textField.invalid.focus.label": "S:e19ba159f050d89fbff49c196bc88582567fd1c5,", + "color.input.textField.invalid.focus.icon": "S:7fab7ea0f13d65263e9873addc3e54b9c25edf87,", + "color.input.textField.invalid.focus.inputText": "S:afdb79b608618b1317cc4e68d6d5051d9e338d1a,", + "color.input.textField.invalid.focus.placeholder": "S:3a93aec52fedd455c7e8e6df6a3d8f94bc1eb50f,", + "color.input.textField.invalid.disabled.background": "S:7a374c7a70cee74e0eccd6684345c391710a4415,", + "color.input.textField.invalid.disabled.border": "S:c85673e88c501c766be0bb5bfba041d5c07dc2b2,", + "color.input.textField.invalid.disabled.label": "S:b9f859eded73022cb2df76456ca89b13db0e7810,", + "color.input.textField.invalid.disabled.icon": "S:786c7b70c4038939998a858e68a64af17ff129f9,", + "color.input.textField.invalid.disabled.inputText": "S:60a3b0109593399e6d7a12f1561c8980fe08e53f,", + "color.input.textField.invalid.disabled.placeholder": "S:f8edae3664a4ca54f4d1e4a9cb4ad4bb0919f9a4,", + "color.input.textField.valid.default.background": "S:db0128dce9ace1b9c69a63007186f77327f20ddf,", + "color.input.textField.valid.default.border": "S:a01f161145c02d5fbdf99730de2b6881c9920096,", + "color.input.textField.valid.default.label": "S:5bcdf10071bfcca0ac669846322f872980778e65,", + "color.input.textField.valid.default.icon": "S:09c858984c48b7d7cf5be586063a6413882e5486,", + "color.input.textField.valid.default.inputText": "S:e2e810782ab3a9c7b1355caad373f51a2da48567,", + "color.input.textField.valid.hover.background": "S:436f5e5d27a0c2f4602db76b570823b70d73c58e,", + "color.input.textField.valid.hover.border": "S:d5eded049dda589a1c5873092573983a7381be1a,", + "color.input.textField.valid.hover.label": "S:e85b0c2af74518cd7a50a616a4f511ee107eaa50,", + "color.input.textField.valid.hover.icon": "S:ce05d5be7fef7995de380914953672adabe27c81,", + "color.input.textField.valid.hover.inputText": "S:842ab927dfa890e25ad2437b565c95577f500602,", + "color.input.textField.valid.active.background": "S:d9e7cb31216977612fdbaaf6e97cd66080bcfc9b,", + "color.input.textField.valid.active.border": "S:cf6afd5af395bc15aed41baba1f162e0fcdf8c43,", + "color.input.textField.valid.active.label": "S:aeee6b0441ccccab722105417c196e2e4b6c756f,", + "color.input.textField.valid.active.icon": "S:6f8a056ffeac004dd9cc05d7c62fddbcc522f43e,", + "color.input.textField.valid.active.inputText": "S:c45cd74bdf6aa9471a35d711d5785298783ce45b,", + "color.input.textField.valid.focus.background": "S:730abc7ac76ce6846d0fff4306aad7d7f50ee36c,", + "color.input.textField.valid.focus.border": "S:08f34331e32e2322922fce5784f03e78d58281a9,", + "color.input.textField.valid.focus.label": "S:3167950cd62514b36826134bae13d767ebf53c09,", + "color.input.textField.valid.focus.icon": "S:45e3a795cd2f5d5893012364116ada114f5e5b85,", + "color.input.textField.valid.focus.inputText": "S:94940c683f4a4fc8633a990867e568a5269f7d55,", + "color.input.textField.valid.disabled.background": "S:441fd5c2d1434ea8aeeb028e2e5503e23a67afb5,", + "color.input.textField.valid.disabled.border": "S:eb0025cefeca3c8ba15bd959bf668bbf54ee0767,", + "color.input.textField.valid.disabled.label": "S:60724ec18b020584562f031f95010a9fc3531f03,", + "color.input.textField.valid.disabled.icon": "S:37b25c45d63df67a54ff81ef31ab0ba1c245e93f,", + "color.input.textField.valid.disabled.inputText": "S:02844b9e68a794f781dc8170480cfde9c53aad05,", + "color.input.helper.text.default": "S:5f3d580f60b58532b9fe73073c8ddbc69c52af3f,", + "color.input.helper.text.disabled": "S:2ce5b9cc87912edaaa58f9da99cff96cf4e73f6c,", + "color.input.helper.text.invalid": "S:c0f996da704c36d1cf0444284aed7b48a6199c0d,", + "color.input.helper.icon.default": "S:72b8a77d2cf2a18a64d476114e9d74c3d95cd7e0,", + "color.input.helper.icon.disabled": "S:83f0d8da382223368f0fdef18806ba1844e9f40d,", + "color.input.helper.icon.invalid": "S:982ec5f15a88e0d7259bea2c9499fb89a90a9b08,", + "color.input.fieldLabel.text.default": "S:d8ad2c8fe472d31249345011816df7c66f669a21,", + "color.input.fieldLabel.text.disabled": "S:d8892d1b8993532b861a8df38f13228ba0420c85,", + "color.input.fieldLabel.text.invalid": "S:65c28f17a5ffcd8fbdf1c05b939af40b9a191503,", + "color.input.fieldLabel.icon.default": "S:236e5fbe7b198e369c81e0cab602eb3054e3f4ef,", + "color.input.fieldLabel.icon.disabled": "S:f478357997029d0c935a0eb2dc38c89b0dfd17ec,", + "color.input.fieldLabel.icon.invalid": "S:3ff07ead4c8eac6311c4ce50b5cffcfabf2bc12e,", + "color.input.fieldLabel.select.hover.background": "S:1e66e3075c3f79c7fa343a9e8718f260c23f176a,", + "color.input.fieldLabel.select.hover.foreground": "S:2bc04c6bd87c5ab422b527f5d8c4c7a0d3082ca3,", + "color.input.fieldLabel.select.hover.border": "S:ac49cfbae46c9e9d692815eea4a3f209b07cd8df,", + "color.input.fieldLabel.select.group-title.foreground": "S:7b2e7e1ca41148467a31f0aaa5cc8009c22cdea3,", + "color.input.fieldLabel.select.divider.line": "S:cad4d7ad8c1a454d2d2c52bfb472118beb661061,", + "color.input.fieldLabel.select.default.background": "S:822c3e4e9ca117e65753d927518652646720b122,", + "color.input.fieldLabel.select.default.foreground": "S:1b87b6ef2598c0ae712df3baf73b4f003b190965,", + "color.input.fieldLabel.select.default.border": "S:84f5ae2cc939131eab721b4b8c895dac942c3689,", + "color.input.fieldLabel.select.active.background": "S:d2922793605fbd235944e0a85f694064bee9817b,", + "color.input.fieldLabel.select.active.foreground": "S:f421d790739b7c374c4f750aea9984c29ba48828,", + "color.input.fieldLabel.select.active.border": "S:4bfe2a84238d16ab7970980ab4294e90fb30fbbb,", + "color.input.fieldLabel.select.selected.background": "S:2e8876a49f6bfd0b79923ccb74797a3161a3c9b4,", + "color.input.fieldLabel.select.selected.foreground": "S:a87da4785d7ac5ae32bb8780287e2bd45e0f0a66,", + "color.input.fieldLabel.select.selected.border": "S:ed808bd20a85b848b132d6c138d40d38712d9410,", + "color.input.fieldLabel.select.focus.background": "S:462bfb271f5f931367db57c91483eb0a33688284,", + "color.input.fieldLabel.select.focus.foreground": "S:c03d4c8cc0b736c948d62457501538222cea1df7,", + "color.input.fieldLabel.select.focus.border": "S:aa83f03df5ee101b05d70c0a2825f17aa6577723,", + "color.input.fieldLabel.select.disabled.background": "S:d50ac944bc867207fdb45c92d07ef11cb48abfef,", + "color.input.fieldLabel.select.disabled.foreground": "S:a8da253847425ae96302c999dfe3632bc8318114,", + "color.input.fieldLabel.select.disabled.border": "S:b2357b5420c874bad82a36dd50acf49ea0bca0de,", + "color.input.fieldLabel.select.panel.bacground": "S:80e654acb6f85eb8725feddc0367c8c7350966ea,", + "color.input.fieldLabel.select.panel.bacground-copy": "S:50c36b18857d23e3094231de32822ddac607114c,", + "color.tooltip.background": "S:35b7d127a61434da83061c01e10232be9d1564d9,", + "color.tooltip.foreground": "S:5f69a5450da60f2e412e7b617837004a385516bd,", + "color.tooltip.border": "S:054ae83acae37887d2f173f4d5276e5b52ef9bb1,", + "color.focusring.default": "S:a4405fd879cc152c91a24992eef8da6b85bd1e42,", + "color.select.item.default.background": "S:9ae12242da01b1a539ec3eb78d174917813facde,", + "color.select.item.default.foreground": "S:0a4c1fae1f616098a52663efe5cc3d0177d86373,", + "color.select.item.default.border": "S:885fcd364a4dea871404ae9e59884a59527279ae,", + "color.select.item.default.indicator": "S:d43a704ccd7b5e568b3ea0ed69561735c4f3d1b0,", + "color.select.item.hover.background": "S:fcce743ff5b698d2dfe8bf7e455f31ac545fd2b3,", + "color.select.item.hover.foreground": "S:bd3e6296326255677cb2979f7df0eac8d2edd209,", + "color.select.item.hover.border": "S:5dbe75760aea498f36e190cfa1b656efc0ba6634,", + "color.select.item.hover.indicator": "S:5773760c494969a88ff1d961b311fea116b50d44,", + "color.select.item.active.background": "S:58446c2343148327fd89913630f36f60885bc3c6,", + "color.select.item.active.foreground": "S:89162d007097c302211e1b9b4762fd611315f4be,", + "color.select.item.active.border": "S:bdcd6c918ed634aac53fcf8a05425f5514b6840b,", + "color.select.item.active.indicator": "S:42248ba68307dc1fc16035446180be1988f49b74,", + "color.select.item.focus.background": "S:6d11edea4162d4c4aaacaa258c3b663b517d319f,", + "color.select.item.focus.foreground": "S:c96a6c1f20420dd2618eebe5aa4e61bfe58a82fb,", + "color.select.item.focus.border": "S:a1122f67ea6c52a0509961cf0faf3acd76c38fbd,", + "color.select.item.focus.indicator": "S:b1c99b12765845418e64865d323659a991998550,", + "color.select.item.disabled.background": "S:680f720d0b78e39401fe6cd4277236e2a7e556a3,", + "color.select.item.disabled.foreground": "S:40710c62966dcae00e8401fbbb115e7ffd819b71,", + "color.select.item.disabled.border": "S:35a7114ff5c2d98c0ef91acf848911163c6caffc,", + "color.select.item.disabled.indicator": "S:19a8f78eb05db53204e15e152fe96d80f485cac9,", + "color.select.item.divider.line": "S:5ffb2a1164309be0b15e99b9086de2d2bc0d3fca,", + "color.select.item.group-title.foreground": "S:47a9eaec481cd0eeba14e38651e27f5179f23d46,", + "color.select.selectbox.default.default.background": "S:6c5962ad6b8a6fe19f00712d93a66882eab73006,", + "color.select.selectbox.default.default.border": "S:a104335b7908e50136ce64e4c3bbfc00ab196668,", + "color.select.selectbox.default.default.label": "S:8fcde302eb774e18320e680a3066862f0d10c566,", + "color.select.selectbox.default.default.icon": "S:5d3fb34c8af186051c62b618a49d45b44d898834,", + "color.select.selectbox.default.default.inputText": "S:a895700ba6ea8fa49a174de0bc1fb5e996f56a31,", + "color.select.selectbox.default.default.placeholder": "S:4202bc27926a3135a1ee6937db2662d18eb09b1c,", + "color.select.selectbox.default.hover.background": "S:1654d71b37a59e35dbc62de3bde4e8e9dce1fc10,", + "color.select.selectbox.default.hover.border": "S:e44303366a93755028e393ad1e12362843ed7f96,", + "color.select.selectbox.default.hover.label": "S:63734e69eabff88103676b8a02855d4cba3310d6,", + "color.select.selectbox.default.hover.icon": "S:637ca673655e093c0af97c8b8f271cc2572aada6,", + "color.select.selectbox.default.hover.inputText": "S:a971d1197f78e680575d54124a5011288ef0999c,", + "color.select.selectbox.default.hover.placeholder": "S:a5fb24f971ceb26a9c9d30317d50398fd6a89225,", + "color.select.selectbox.default.active.background": "S:fde5b046e75079ed082aa481eda8279851186b04,", + "color.select.selectbox.default.active.border": "S:1f7eeedad453a39fb6df880de40fc0014b7e61f4,", + "color.select.selectbox.default.active.label": "S:4765a1ba9c22edc5045aee8966951fb8fe8b2b95,", + "color.select.selectbox.default.active.icon": "S:ea80404788c13586c0004bf0854d4fd7d329dfd4,", + "color.select.selectbox.default.active.inputText": "S:9ffc2ca17e6a02bc07090a84ae6ee635dfee9e94,", + "color.select.selectbox.default.active.placeholder": "S:0574ef0fd2fcd0d66f33b6caa106c65742af11e4,", + "color.select.selectbox.default.focus.background": "S:1857e0f5c67fd4f763203a2b45a27816744d2614,", + "color.select.selectbox.default.focus.border": "S:587b0c448c37f383ba3737dda4a1c150be0e9f6f,", + "color.select.selectbox.default.focus.label": "S:e1671d8acb83090d588e3c21da6290765bbd1dde,", + "color.select.selectbox.default.focus.icon": "S:653838971662911374e78ce2c18e1670b213ac33,", + "color.select.selectbox.default.focus.inputText": "S:761d3a8028cd7884c10b827d7b5e339ef6637120,", + "color.select.selectbox.default.focus.placeholder": "S:eed80bd950f13e98188b59932e47ca2846bc1b92,", + "color.select.selectbox.default.disabled.background": "S:21abbea09ab2c78b04369be888914907b40b8b63,", + "color.select.selectbox.default.disabled.border": "S:7a2f1bf866f46af8e08cd490547be63f9ed4d289,", + "color.select.selectbox.default.disabled.label": "S:92c2904d7fff99b0604aeec140b6a43c54d2ecae,", + "color.select.selectbox.default.disabled.icon": "S:389ced08fcec955dee6db8e023c319d6f2cc3102,", + "color.select.selectbox.default.disabled.inputText": "S:c6047ad2ca638564d8f672d7dd821c9dfe32e8e0,", + "color.select.selectbox.default.disabled.placeholder": "S:d1e1e9ac780a6b2ad8338a044c62982bf556211f,", + "color.select.selectbox.invalid.default.background": "S:119d4bbd839a0194fb5601f96849919cc70775c0,", + "color.select.selectbox.invalid.default.border": "S:8fd36bba14ca7d91d64b850a9ffcf5b74c7501eb,", + "color.select.selectbox.invalid.default.label": "S:2b1a98086350dd3c7bc01a7752e3ad6e6bef7359,", + "color.select.selectbox.invalid.default.icon": "S:dd21e212d5bdc66b301549c516590e2dbcd3801d,", + "color.select.selectbox.invalid.default.inputText": "S:abb6c808540ce923ee66d763b0d94509affcc4f9,", + "color.select.selectbox.invalid.default.placeholder": "S:44d0e6064487ac3911369564ca5c839891fc463e,", + "color.select.selectbox.invalid.hover.background": "S:afd94dbf083579dc2389ad1a575c35e07ca66a8e,", + "color.select.selectbox.invalid.hover.border": "S:e66b2431cffb791bdd6cfc18c43011681e86528c,", + "color.select.selectbox.invalid.hover.label": "S:189036fe88804a6878d3a83f14f5605d2e0e8a66,", + "color.select.selectbox.invalid.hover.icon": "S:39741f034a27ce3b2b42333b5027ac89aa732027,", + "color.select.selectbox.invalid.hover.inputText": "S:5cdd2349432515f6fb173b5c82a0ac29442c5aa1,", + "color.select.selectbox.invalid.hover.placeholder": "S:a5ac8b8483b44b48ff9fcfa157b632871742efa8,", + "color.select.selectbox.invalid.active.background": "S:9036279de0962106cfaf470476e1840af81a1bf3,", + "color.select.selectbox.invalid.active.border": "S:3f191c3415dbe87b14b7d7631770cec309be4c4d,", + "color.select.selectbox.invalid.active.label": "S:ea3fb86d5d5e61f60265f2ec357d5e07afcf7c0b,", + "color.select.selectbox.invalid.active.icon": "S:aff0a8f9662c9a7bf76aea76ef7a48c30f3701fe,", + "color.select.selectbox.invalid.active.inputText": "S:b0650cd24e939b9d06461b95b4efb9ec2a61c922,", + "color.select.selectbox.invalid.active.placeholder": "S:ccfb3904c98c4c965e18bf25c9cd751cb7621081,", + "color.select.selectbox.invalid.focus.background": "S:913eb4acce7474696bcb3d91701640affc16b7c0,", + "color.select.selectbox.invalid.focus.border": "S:1030c7131d5b21f9101fcaf0f23c0eb3e7960f25,", + "color.select.selectbox.invalid.focus.label": "S:a1db41858ab7e2339d137d2344c7b3de89912e5d,", + "color.select.selectbox.invalid.focus.icon": "S:afc73388c6411c9dcebf16b8d0b71771d00deace,", + "color.select.selectbox.invalid.focus.inputText": "S:464c70defb813c99383b12e3d0725635a7c5e640,", + "color.select.selectbox.invalid.focus.placeholder": "S:749ce3a837d581c18226184d78c7c8768c0f5136,", + "color.select.selectbox.invalid.disabled.background": "S:a55f9dd8bd810a9cd220715095852d011229d1b4,", + "color.select.selectbox.invalid.disabled.border": "S:bac13fc017e1360a9dfb0cb4d872a1254b131d56,", + "color.select.selectbox.invalid.disabled.label": "S:67afa485966e98677ba78d3e120a7e32c9a6090f,", + "color.select.selectbox.invalid.disabled.icon": "S:d0410de7f74925dfd3481f1a65ebb6491b42190b,", + "color.select.selectbox.invalid.disabled.inputText": "S:502ff5e359b56fc6f03bc0ac8bd26cd228ade6b1,", + "color.select.selectbox.invalid.disabled.placeholder": "S:d40c5b815c9e1e51f536b6ded8e4135e3e8a0cc4,", + "color.select.selectbox.valid.default.background": "S:992f0c4f26cae6bdb48964cc82734bc9b9a62c10,", + "color.select.selectbox.valid.default.border": "S:37edf6e5b2f443ce4a3c2aa478ddeec90544afc4,", + "color.select.selectbox.valid.default.label": "S:192ea30c69046ca0a6b4c1ee8ced2465a6e62551,", + "color.select.selectbox.valid.default.icon": "S:a70366d7b28682cbf0f835a09b1a45bf75f73c16,", + "color.select.selectbox.valid.default.inputText": "S:eaeb98e0042806aea677db411324b8dc3ebea9bd,", + "color.select.selectbox.valid.default.placeholder": "S:73bb99447f4bc3b36864faa75b7c296c83408011,", + "color.select.selectbox.valid.hover.background": "S:8402608535afdb36ddd4c5e665c07c4e82329482,", + "color.select.selectbox.valid.hover.border": "S:540aec69f1c68ab3d13291a957fc5eb0ecb84aa5,", + "color.select.selectbox.valid.hover.label": "S:0a9f1562ce66c6722659123402210841ec5d3c1b,", + "color.select.selectbox.valid.hover.icon": "S:4042f7ed2c8f5beb87ae83581cf65e39978b5cff,", + "color.select.selectbox.valid.hover.inputText": "S:b3f375cd701b1c6b6bd58d311a0b8cdc2f3cf87f,", + "color.select.selectbox.valid.hover.placeholder": "S:3889c7b69d14436e72b122f75a46df716ff8b028,", + "color.select.selectbox.valid.active.background": "S:ae02394cf8087cf12b3f2274d74988147437a7d8,", + "color.select.selectbox.valid.active.border": "S:d9d2ceb73a283f9c5f5180e6b1cc68e7a635926c,", + "color.select.selectbox.valid.active.label": "S:c148ba0a8d233d24710733f2fcbc9a0c8e3a06f1,", + "color.select.selectbox.valid.active.icon": "S:e465ba4111214b918166ff03e59beae05a3aea3f,", + "color.select.selectbox.valid.active.inputText": "S:c61804c898b5f8a0e49213db6214b38cdc8a6d87,", + "color.select.selectbox.valid.active.placeholder": "S:7591a90385967f56906a20463ad8b186064b47b6,", + "color.select.selectbox.valid.focus.background": "S:df8ee0f7f08d8eacf22bb0855e8db8e0b1ac9ad7,", + "color.select.selectbox.valid.focus.border": "S:b371e4d9378cc25af4fec66cf79c10deba818063,", + "color.select.selectbox.valid.focus.label": "S:31696ad2c69958b8e00530f203ec87885df38392,", + "color.select.selectbox.valid.focus.icon": "S:81b1bf200f1f70871ae8cf85ba1fcda7a2fa5fb4,", + "color.select.selectbox.valid.focus.inputText": "S:bc20fe6a51da895c24cab976de51ec947fc5f8e0,", + "color.select.selectbox.valid.focus.placeholder": "S:2c297a1352541a726233e636289f290510f6fcf8,", + "color.select.selectbox.valid.disabled.background": "S:c97f0e44f29d3fbe9844cfff87271c9fd2bf9193,", + "color.select.selectbox.valid.disabled.border": "S:7536d778c2ccbe36b2b9109cae0844df8477e3ee,", + "color.select.selectbox.valid.disabled.label": "S:b1a450fcbd93ba77255f78d50daf848296642d5b,", + "color.select.selectbox.valid.disabled.icon": "S:d120975068f2c1dc2fc262bcea3e44fecf3f9937,", + "color.select.selectbox.valid.disabled.inputText": "S:9b38db40eb96e258da1066e338b4103c04ffad96,", + "color.select.selectbox.valid.disabled.placeholder": "S:d32d1fc85795b2214dfa13f6ea9c728cd95bfd97,", + "color.select.listbox.border": "S:0a4f3e5a4ad073a28274406589cdcfba6068f60b,", + "color.select.listbox.background": "S:23964db963f382c3984a906e8ccc73aa3c057dfd,", + "color.popover.background": "S:388ec7bda3a246138e847faedef9fb7f9a7a5f99,", + "color.popover.foreground": "S:77d80ed955550f9c636ce607432ca6819b9eb6e4,", + "color.popover.border": "S:48a38a09dec49eae66faaf4d627324f1e3bddc5a,", + "color.dialog.background": "S:a1ba8f4e35d1f3c363b163118c17dcf2200a1521,", + "color.dialog.foreground": "S:79a7b736bde2e73dad119814ac7030190089e7eb,", + "color.dialog.border": "S:fd8449e348c0c829d415026a18763089cebf6fe6,", + "color.inline-message.info.background": "S:604562a57a6bf0b93a69c0a840862fdab24faed9,", + "color.inline-message.info.foreground": "S:7235bb911577f9eafd15a946dce899a771eb51be,", + "color.inline-message.info.border": "S:08ed96879eb5ef849304cfab48f079de9f464fe7,", + "color.inline-message.info.icon": "S:8c3d6409e481093692d57820ff6290d3ef84cb31,", + "color.inline-message.success.background": "S:484b84bb59c67f57e9176879c7000ce846e12cbb,", + "color.inline-message.success.foreground": "S:e8dab5ee901cd58931fbeb4277943a7ebdb96a48,", + "color.inline-message.success.border": "S:24a4ecf24472ed82867fd946ce5cc45c28d31a51,", + "color.inline-message.success.icon": "S:a20711d52fa10bf0a9caa0af4e20a990fabba359,", + "color.inline-message.warning.background": "S:0818931f20753ed4b09151e05d0660bbf9f1e925,", + "color.inline-message.warning.foreground": "S:92945f665be223bdb38b841c6cd45bbc2db6c8b2,", + "color.inline-message.warning.border": "S:8db5bebfe2b174c7081fe230c63c2717f8f43726,", + "color.inline-message.warning.icon": "S:10e4426779eeb6bab1e573382e98080c11000c6e,", + "color.inline-message.danger.background": "S:58c818bf26bae833e56c404cdfad6d69ee87468e,", + "color.inline-message.danger.foreground": "S:9e6077d6d795950fe6b3355750e0d64c7a727029,", + "color.inline-message.danger.border": "S:826a6e224f25ac870c3ef017c372e10922bb1dc6,", + "color.inline-message.danger.icon": "S:8d7b3c23840ff42fb89fd8af9345d41ba31a0196,", + "color.palette.primary.50": "S:ff54330d41884d3e476719704db7ab7ca5d4b01b,", + "color.palette.primary.100": "S:155043a691c4e5b48f91584b66bb3e126536de81,", + "color.palette.primary.150": "S:790ea2c4d4e38eae9714cee0cbeb509325ee34a9,", + "color.palette.primary.200": "S:027d0e3e74345d17630b8f8cd26e225c795352df,", + "color.palette.primary.300": "S:ec2de0ba4b9c77c4f3bd8d1baee801e52ee7c3b0,", + "color.palette.primary.400": "S:0a4541e6c1cf88f65f6adfc2423adfd76a934350,", + "color.palette.primary.500": "S:8ce8eb3639860211a5dee8e9c4919a3d312db0ed,", + "color.palette.primary.600": "S:2b27cc61efc87da619d4088c6092cb2f4436c175,", + "color.palette.primary.700": "S:89c72c8b6f122bea1bf7db9af30eb0c852df6c28,", + "color.palette.primary.800": "S:9cd4a60b59bc838202622afd8878fb2e6210de63,", + "color.palette.primary.900": "S:30c64b65cc9a56998004855017acb1825dcb2a65,", + "color.palette.primary.base": "S:77ae2b44a5a915b53a027e159299e0d760031d25,", + "color.palette.accent.50": "S:c954d0dc02ee80c6d2d4f85e5c2ad1fff74c3afe,", + "color.palette.accent.100": "S:29d931316fb04b0bf139f7f4571bf43c937bb4e9,", + "color.palette.accent.150": "S:73337102055448d555612521d6138cf773c321ef,", + "color.palette.accent.200": "S:de4b7bd128424218f6d60f725249d9361365ad72,", + "color.palette.accent.300": "S:70301e36e8e2d197486ad8887bf7cea3389becaf,", + "color.palette.accent.400": "S:d1657421ace5abb205d99c335029b556fcef6c22,", + "color.palette.accent.500": "S:4660bf5b83dca8fdbae3d2805597b7c0c30556b3,", + "color.palette.accent.600": "S:88fa74bdb44956f87a666c41323128f8e416a90f,", + "color.palette.accent.700": "S:f87f015ff1f0c0fef92a6014354a8f8595e4e159,", + "color.palette.accent.800": "S:76df3b6515a2f66321e70b386a015618b9865ff8,", + "color.palette.accent.900": "S:46a620131db72185713a52bde0d3c84057a77598,", + "color.palette.accent.base": "S:0f1b61003ee9046be982a001c6a0c6ef22e83e8d,", + "color.palette.neutral.50": "S:aa2ee8db168ce4e2cd374074b54996ddbf1ffb4e,", + "color.palette.neutral.100": "S:52a2906d2a4c0b038915c29c198a1958dc0f5d2c,", + "color.palette.neutral.150": "S:2f59f67b3a9ddda84111713981eade1ff0868ab5,", + "color.palette.neutral.200": "S:9a7ac960c9c04206232342014c5885446ce487f3,", + "color.palette.neutral.300": "S:2d93b3d1b112499ef7f14fe561f1625ec0759bdf,", + "color.palette.neutral.400": "S:440edbfa770b1e9e92ac18937ee2e6af6ce15d05,", + "color.palette.neutral.500": "S:d96dde0f850f3710f1500e17f90194a151144289,", + "color.palette.neutral.600": "S:ead81b18a11e6902e47974f5516fa017ded37643,", + "color.palette.neutral.700": "S:776a7ae13a950fa683e947b1f6d578caece583e1,", + "color.palette.neutral.800": "S:9b51f91fef3128fa6c798c5c1dc8b8e04b572931,", + "color.palette.neutral.900": "S:c65af6b8646c06a631873f486324a789ac30c14d,", + "color.palette.neutral.base": "S:041f86390faae40f0b1edd8561421b343f8fef82,", + "color.palette.info.50": "S:0cdeaa41203ea0a43669c8a2e0cc4e94929eed8f,", + "color.palette.info.100": "S:56a28c0b4db93ffbb4a2bfebef5134eede5bc5fb,", + "color.palette.info.150": "S:0264e725be8919c5b19c65fe1f76e8271c4debbc,", + "color.palette.info.200": "S:30488dbb95a906d5f9b9d1b531eca51a58ab82a2,", + "color.palette.info.300": "S:45ade7c512b5f15c25e7c77c44888db020711a07,", + "color.palette.info.400": "S:88f69674c493eede3f9a503002277eed647bc1c2,", + "color.palette.info.500": "S:c3f78ddaa245a23036aeafc176a6efa0bfa37ef6,", + "color.palette.info.600": "S:574a244dbd6b30c69cb4dd3e1e5143ca89916098,", + "color.palette.info.700": "S:eca3a3843afa70ddc4ae034b9e65c6ba73177d53,", + "color.palette.info.800": "S:723b7c50ab0d481806a40fecf79eb1b0dff686f5,", + "color.palette.info.900": "S:b56e12f95a89718f3541e669b8fb2771a2c1fc2e,", + "color.palette.info.base": "S:f42c5d2b92c5a526055b845ba1f2559327e4434e,", + "color.palette.success.50": "S:6dcd92a8e940c16c83de5fdc72f13054c2acdb7c,", + "color.palette.success.100": "S:df4f9d45562e93a39f0928e226e06c8e2922c7f4,", + "color.palette.success.150": "S:7e3ab700551036a3c790e7f10cf60a45e1296f6e,", + "color.palette.success.200": "S:2248198971bb7101163f87bcdd3649f205128675,", + "color.palette.success.300": "S:1d65ba7405f54a7aa012c21ff5dce0903fdf7fba,", + "color.palette.success.400": "S:fc033ce064b0c4fd341fd249178f4c9c9f89d114,", + "color.palette.success.500": "S:011e945ddd2bc75b7d539760512daaf315b8f016,", + "color.palette.success.600": "S:2bbfbfab9a05458f223ac062649428a0f462d5e0,", + "color.palette.success.700": "S:86cd108fe405e159430b40c7961a60d383b950b5,", + "color.palette.success.800": "S:97e5377294b9413881d82956684c2ab932465f31,", + "color.palette.success.900": "S:0dcf0cf1654799dfe043e913aa7f3fce8ea6d34e,", + "color.palette.success.base": "S:b1cf319517317f5f430e476cebec1d16ea26e60c,", + "color.palette.warning.50": "S:b4683f0dc6196823931d124917c5610d5cc5859a,", + "color.palette.warning.100": "S:067cdc36af3962c24f356ee78137f0c510b79a79,", + "color.palette.warning.150": "S:da1f9e4fb866e8f4e225b7f45d8e3476e41a73d4,", + "color.palette.warning.200": "S:8f4584dba522658b6f0c7f0650730844a531b53b,", + "color.palette.warning.300": "S:c17ef7eacfe41026c18c07104d370371e4ab3d70,", + "color.palette.warning.400": "S:4bdc806dfd8cd0a25b90a8941d937bc6068bb709,", + "color.palette.warning.500": "S:324c7552c932bda5bb26ea6dfe8da2365191aafb,", + "color.palette.warning.600": "S:ea38738060cd2374874a941830ac00c83a9ab388,", + "color.palette.warning.700": "S:8cad518585437255319eed470751d80f50916aff,", + "color.palette.warning.800": "S:064da323d4b2028835310a21c542e828108bcc01,", + "color.palette.warning.900": "S:625aa87e49eff170259e58d5b8cca58b7e59e5ad,", + "color.palette.warning.base": "S:8561c61222cb9d79f03a6e189c3909618811572a,", + "color.palette.danger.50": "S:ef2ce635cdb07a6154b1e1e37f799ab0e4ba93ed,", + "color.palette.danger.100": "S:942ff483696d9aa849b0ec7c0b761f639677ad95,", + "color.palette.danger.150": "S:335cb97d9d31ccc3cbb32127ade84511d6a2e892,", + "color.palette.danger.200": "S:ed42f4a8a66592f3c1a117a0a2b96f2075a9def9,", + "color.palette.danger.300": "S:00459ea221516a35fec99dc105887922672396b7,", + "color.palette.danger.400": "S:f23516ea6c40fa8478690bf6c978dc8be30b2f19,", + "color.palette.danger.500": "S:091e5b6bc55aa47e76532ad4889fbcbdeea4acba,", + "color.palette.danger.600": "S:040ff7e0dd2c67ae067ea448546b6f9827b30f20,", + "color.palette.danger.700": "S:d24a34d5b917874172d9f77a469687d88c2be2de,", + "color.palette.danger.800": "S:28176f8f0019a1d54f0c7ef7d7c7b5bb27549098,", + "color.palette.danger.900": "S:d25a019294c53aa7e54fa73360c5881c96ca0f0a,", + "color.palette.danger.base": "S:5abe43772913c274f65ebbbbcd76d0c551844c78,", + "color.palette.black.base": "S:bd4519ffe268dbb9e91ca9109b8fe18b9e00e48d,", + "color.palette.white.base": "S:7d521e6f0bf9670b3ae15e50d1473350ec9aba1c,", + "color.palette.transparent.base": "S:389d9a0bc3f04d916bef5c1c72b2662b5af1b072,", + "text.avatar.initials.sm": "S:8ca39766e89b03f2f58a9cc7c1ed4099057774cf,", + "text.avatar.initials.md": "S:c918a73606c7724a4611295869841d913f2dbae5,", + "text.avatar.initials.lg": "S:84d4eda0a829f860b8fbf60b9b89f0646b8e6619,", + "text.avatar.initials.xl": "S:ea735b6288022649aabf852b79f069ba0b83508a,", + "text.avatar.initials.2xl": "S:6625c81fb41d6434fa4686960f5f2bdb3d9e3716,", + "text.avatar.initials.3xl": "S:b21c01b874b52e97d32337bf8265909643341da0,", + "text.avatar.icon.sm": "S:1e75970dad4000719ba21b137c9fa8e07de434dc,", + "text.avatar.icon.md": "S:8f9e4d185b367c4333a2ca518c3b273ec9dc368a,", + "text.avatar.icon.lg": "S:cbbc382ef63c24d2d4278d61ec24196ec885acbd,", + "text.avatar.icon.xl": "S:488cf864731dd5bd00db540925c981bf62e1e57b,", + "text.avatar.icon.2xl": "S:6f919d9b98da84367b6a411f3f7528bee0de6ec1,", + "text.avatar.icon.3xl": "S:fcc596bdf6bfa96e8ca102187b946bd0c9e33580,", + "text.avatar.header.sm": "S:8ce394b08f8fd444653d31f522da75c4cb26dc06,", + "text.avatar.header.md": "S:beed301161dff211e514e2443f943cd144f7cc30,", + "text.avatar.header.lg": "S:3e9c96ac3bfac6e12faba392c906eac48bfc0248,", + "text.avatar.header.xl": "S:127aa3c4921a91f0c0e87ae0f2fd9956e91d0f43,", + "text.avatar.header.2xl": "S:a191d45eb1f6d0368c91bfe8db5c7c6130fe086d,", + "text.avatar.header.3xl": "S:b59383f2a8542d24d55f154f92b0a22e1bea07b8,", + "text.avatar.subheader.sm": "S:4847caf0b4d9c8d948dc87e9bd4d8346bec086bc,", + "text.avatar.subheader.md": "S:16dc1f192b4da99a6bc1285bfb58ed93d8a304d9,", + "text.avatar.subheader.lg": "S:a8757e997f3fddfbf8b6da9d86a80ae8fb069c30,", + "text.avatar.subheader.xl": "S:3f9e691b136dfde03b54d2e8488ccc3291e004ed,", + "text.avatar.subheader.2xl": "S:c1cdbbaf1c94e414f8bf2e4de0948406f74a6b25,", + "text.avatar.subheader.3xl": "S:ab56479734e44e4c20dd53343e171b5d516be3ef,", + "text.heading.0": "S:39a40e3d41bc5f1417106389f2b0835152a3a100,", + "text.heading.1": "S:7edc60ea3807307c77dfaa8f64b2c13bce45c163,", + "text.heading.2": "S:44baa38f812762cb38df1636fb6eb9f903e583f2,", + "text.heading.3": "S:d7552f23b1411e61190a14182acf405e2005bb38,", + "text.heading.4": "S:4ed74ee5a2a378007d189af99b0eefc52575a901,", + "text.body.sm.normal": "S:55047749412a2fadf694940788bcb43f052de6f1,", + "text.body.sm.demibold": "S:b74cfe007c793f036d28b07fa8d47e45cc3fc674,", + "text.body.sm.bold": "S:c195992f20820811adfe13af2f4fd3d8e1844ed0,", + "text.body.md.normal": "S:015a5bd3ed0cc4f943c50e4d9997dd21e2f9f3ea,", + "text.body.md.demibold": "S:7f0907fc45df7f7dc6826b12e19d6552b733f884,", + "text.body.md.bold": "S:cd501bfb8cb2f6231bbeb016a3bcf55c5f7a202e,", + "text.body.lg.normal": "S:da8a8d1c9e228d1de943a1e7f9ce4fb0b4a5fe3e,", + "text.body.lg.demibold": "S:04d4fd29e10d477f5623840ff7ef4b32f00b0ab8,", + "text.body.lg.bold": "S:8bde1173564c5982adba5f78fd98651645fdcd43,", + "text.list.sm.normal": "S:a1e21a75acd9200c6b8ea4f022d48498535dd1bc,", + "text.button.text.sm": "S:28e4d5488e846c78651e6cb45c5a82b5cb069199,", + "text.button.text.md": "S:1120d3784676dd49e46f06fb373f794e52e409e2,", + "text.button.text.lg": "S:8ebe5af20fb48696a48497c0c9a40ee0654801b4,", + "text.button.fontIcon.sm": "S:e789e31b474c075a42dd22aab8443482d29a9c37,", + "text.button.fontIcon.md": "S:bf4459d6f914dae28c903a8f95defa3f074f411b,", + "text.button.fontIcon.lg": "S:3579834ac2c21847db0150e43eca6b8fd55ee692,", + "text.button.link.sm": "S:d073481134697e94b41ec64c175a804e0699183a,", + "text.button.link.md": "S:8c6ce3627574d3cde1cd25b01b4780b2793d5c92,", + "text.button.link.lg": "S:ae9d5a9615509615444a0a087d1f678b20406629,", + "text.button.link.idle.sm": "S:03e3d254c381f30da21eacaeae053d1ef1b35ffd,", + "text.button.link.idle.md": "S:675b42e0890cf46b64e6ad6d2f9fabeeeeef6b3f,", + "text.button.link.idle.lg": "S:ddb477b930954144400b1e124aef310014cdd3c6,", + "text.button.link.hover.sm": "S:091152f345e07abbfb97565aadd0055c695a96f1,", + "text.button.link.hover.md": "S:f8555210980f0278df5efd088a4200f5793b47f7,", + "text.button.link.hover.lg": "S:2374feaf25433b4e9319f3987696f1025849ffdd,", + "text.button.link.active.sm": "S:53f74456be2392f2d949851d28413b0f9f4721ba,", + "text.button.link.active.md": "S:379da12a2afa67f3659d587d9cfe0d8402866700,", + "text.button.link.active.lg": "S:8b6f2e8cc4d8456cc318a1cadfc87554726b255c,", + "text.button.link.disabled.sm": "S:aeab130f41a6f65fb2fe5b7c7902aef9f22af027,", + "text.button.link.disabled.md": "S:01c71496fc2fbe4d62e9f962e7ae6f8f9ee4a978,", + "text.button.link.disabled.lg": "S:2cde377ae2d30a2af5c3bcc95950dd6f8aa6e445,", + "text.tooltip.text.tip": "S:a093b2aba4a9b070eb6c1f182085622a7bb809c1,", + "text.tooltip.text.title": "S:cc6a043315e833cbe095c8a4f5801167b3a4dc9c,", + "text.dialog.heading": "S:85ac7fd55fee59212a37cdf469ba88faee44d0b3,", + "text.dialog.subheading": "S:2b04d190a12740b38f162e79abe61325efd17db4,", + "text.input.textField.fontIcon.md": "S:31a5852279cb5c32bde1ee0a98afae4d4ba04f95,", + "text.input.textField.fontIcon.lg": "S:fc9e0ea8768ccb05db86306893da240532c1a46e,", + "text.input.textField.text.md": "S:b2b6e13ba4e5f3c2b444b55ba00466497fef8f73,", + "text.input.textField.text.lg": "S:b4db4661aa52ebd5526b29e439a44e4a080e0c9b,", + "text.input.option.md": "S:33f2bc11c5f735db5337adb5c0c71b1379f2672e,", + "text.input.option.lg": "S:e4697f242a835d076e2c6ceafc34ea96977d43ca,", + "text.input.fieldLabel.label.sm": "S:d0a0977ba06b76cfaa6a0d525a2ea75de96f22c0,", + "text.input.fieldLabel.label.md": "S:ce2d7d8592f6d994e99e09be2f825561b5bfe552,", + "text.input.fieldLabel.label.lg": "S:42315d32570146f925facd4de34f78ec17db1a2a,", + "text.input.fieldLabel.tag.sm": "S:d1a67c3e1739d842b5d3d0afdd51594d235920b5,", + "text.input.fieldLabel.tag.md": "S:8cf855e9fad643a8fd9e4bb01c79a9bffe6a9a97,", + "text.input.fieldLabel.tag.lg": "S:1a4209246f938f7dad9d18d0cda28e9d6fce1646,", + "text.input.helper.text.sm": "S:b6380624954ee4ee23e5c7a157ef6955b2b06fba,", + "text.input.helper.text.md": "S:7ab81c702d6110fe38359efb346a31b01562806d,", + "text.input.helper.text.lg": "S:1190901a414addd24d61ca1991ce631c24c0e28a,", + "text.input.helper.fontIcon.md": "S:b22d156aa3626a9e6833dcaca58825f33e4498b8,", + "text.input.helper.fontIcon.lg": "S:ab4343f54a823532748b3fa794f88a4811bc7524,", + "text.input.switch.inputField.regular.sm": "S:26f56d864b1cf23c2f0c84149d07626c2282bbe3,", + "text.input.switch.inputField.regular.md": "S:eaae503bb5aa55bab53cc66d5e28206a68e53526,", + "text.input.switch.inputField.regular.lg": "S:397b27daee386cd427cd54cedf80adc290fd8397,", + "text.input.switch.inputField.bold.sm": "S:f96e3afbbfca6674274fab7a13776083d6dc34a5,", + "text.input.switch.inputField.bold.md": "S:5a436bcca055132ffee5a10ef1b6b1821a6bc70f,", + "text.input.switch.inputField.bold.lg": "S:eee1ec96061670ef02596c6f3f35640589e15414,", + "text.icon.font.icon.sm": "S:3d9c92ec1965dba3276fa4d5469b474bc7185623,", + "text.icon.font.icon.md": "S:ca50b0c8d29ac96ed7facbffed0b331f4ce68c9e,", + "text.icon.font.icon.lg": "S:3e4b27271764639f40c6e217b14ebd9388953ef6,", + "text.select.selectbox.text.md": "S:16c169324eb77e12e29dd3bfa621c10b06102694,", + "text.select.selectbox.text.lg": "S:bdbecade61b88297c30f3b0a88d3de4dac20f051,", + "text.select.selectbox.title.md": "S:7424e36294c5fbb803ac2781549ebee798cbd6a1,", + "text.select.selectbox.title.lg": "S:0110d53965e639baf0c45a0e7f8a8c7507a98a0c,", + "text.popover.text.text": "S:4acafe45e608d147e834f90fc605d5ceb49a1c8d,", + "text.popover.text.title": "S:338ccbf174600f3e1048fe74a8a57ce7cfb0fda0,", + "boxShadow.focus": "S:05d3ac933e1235325d0c40705de4bf05f2cf972a,", + "boxShadow.none": "S:59a7fb7c094375c44ade30887c1e72a4525f5fb7,", "text.badge.text.2xs": "S:e6f9ffc0e2b0e6f39c7cdd6f028e39c81cbd170f,", "text.badge.text.xs": "S:ad9472f4c4f47f9f7bd054d3794dd1f79c3172b4,", "text.badge.text.sm": "S:416e4bbe4bc3184254e3fe4e5854a4eaa6b829ea,", "text.badge.text.md": "S:621b98fa9fd4dbbcf5db8b989d9884f1f6c0b332,", "text.badge.text.lg": "S:5f3a4ba5bb7d2f55ac6dfdc3b579eed3e8ada094,", "text.badge.text.xl": "S:3a9e0941a2f8aa3a731a3607f86bf5989a23873c,", - "color.badge.bold.danger.background": "S:82686491d58018f08b502608e734bb95448d1bc4,", - "color.badge.bold.danger.foreground": "S:9bb5cbea5a71094ec943019c750784a5bdf584ef,", - "color.badge.bold.success.background": "S:0c1d1eba5af3aa4bcdedbad883ce0cc6b8135b8e,", - "color.badge.bold.success.foreground": "S:c8d3b348b5ddeab4f480a64ff36bc6b9e160045e,", - "color.badge.bold.warning.background": "S:3d3821a83954e5a77b71c3a0682edb733dda08f0,", - "color.badge.bold.warning.foreground": "S:581312f5d22805b7e58ea8bab42fb6ffee33047f,", - "color.badge.bold.accent.background": "S:632a26b319a6548addef8086c34857585e1e34a0,", - "color.badge.bold.accent.foreground": "S:a5ff65df95e27cda2c2b69cdb7854972bb7ac405,", - "color.badge.bold.neutral.background": "S:6709eeef34d55a278af4f70bf54978b4dbe17d2a,", - "color.badge.bold.neutral.foreground": "S:8a24f751ff245e9c39a5be54f683aba5e4271404,", - "color.badge.bold.primary.background": "S:e1a906207ca1fab824fdb6ebfe60f6195ff0ae06,", - "color.badge.bold.primary.foreground": "S:5e64fee228de1f5cf39051512097fa92cf2daa88,", - "color.badge.bold.info.background": "S:ab4dddbcfe6987b1abb20bb6efeddccc4a62a5d9,", - "color.badge.bold.info.foreground": "S:00c02cafb32fd25d4fa97e9aa864fe0820be5598,", - "color.badge.subtle.danger.background": "S:9d404a5094e608bfd409798542f868e5506003b6,", - "color.badge.subtle.danger.foreground": "S:411822aab05f7200f12d84b826435b3b61686f3f,", - "color.badge.subtle.success.background": "S:3ac50a69d174f28eb54184b8a32e9f3e61e84d4a,", - "color.badge.subtle.success.foreground": "S:8bb85c66a4c3417f051a5f9f90c4a47bd8f62f57,", - "color.badge.subtle.warning.background": "S:0e3db15b1814787f4d77bf6f023bc8c6a9ceb207,", - "color.badge.subtle.warning.foreground": "S:efa1ffe7805616da707dcf55447ea61721876802,", - "color.badge.subtle.accent.background": "S:283eb20c866549d697407e6a5ab41a8c2503aae5,", - "color.badge.subtle.accent.foreground": "S:3af4d04a649f734bdee4fd3fa06bfaadf1633e44,", - "color.badge.subtle.neutral.background": "S:edad2bd9e158c2b277f6c991ef5defd883a5cd2f,", - "color.badge.subtle.neutral.foreground": "S:0a4415d1f37463aedb2faf2108053db287da665d,", - "color.badge.subtle.primary.background": "S:3c33b268f38d241c93694b191cab04ae16345405,", - "color.badge.subtle.primary.foreground": "S:0b1dd1081d0796ac7538be25b2ae7a6c0d77732f,", - "color.badge.subtle.info.background": "S:a184a0cfe82b891a78d7f903d56cf409684566b7,", - "color.badge.subtle.info.foreground": "S:a218671b8f23475a51c60594714ba6d46ef7542e,", - "color.button.info.solid.idle.background": "S:79486ca9d08d29c646c292bc13c03b7caafb61e9,", - "color.button.info.solid.idle.foreground": "S:69f7a6bc09b78bf8a6c5f2c2215e4a88ce054867,", - "color.button.info.solid.idle.border": "S:8eeb09dc33efbffbe6cad5200a8c70b26c654c1d,", - "color.button.info.solid.hover.background": "S:20a9d4d5637792ffbfcc0c89944aa92055956d97,", - "color.button.info.solid.hover.foreground": "S:bf85aa339e34da2ddd4cf2028c69cfc1e0601d03,", - "color.button.info.solid.hover.border": "S:d5d6f35d0799f5d760422b94a1aa0484d43b54eb,", - "color.button.info.solid.active.background": "S:456a8155e860114a6bb9c0ef3f81cfd99b857214,", - "color.button.info.solid.active.foreground": "S:0181f5213422d5ec8602a74260e5ab37c55e53b5,", - "color.button.info.solid.active.border": "S:a8d15d98e0278f9ecb2ccd8de0e642b4883a6bb5,", - "color.button.info.solid.disabled.background": "S:51c6beb91a65757a909d8479cff171395f76126f,", - "color.button.info.solid.disabled.foreground": "S:99f1e30decc7a03f3f34e31d732f8a377df474fb,", - "color.button.info.solid.disabled.border": "S:b513696cee54905e0ca129266261931d176b10a1,", - "color.button.info.outline.idle.background": "S:1bb1427f8ac30237271c676106aefc1eb2ce3be8,", - "color.button.info.outline.idle.foreground": "S:df8e16eb2b93d1b4f5d8abac6dfefea759486d05,", - "color.button.info.outline.idle.border": "S:3102f55ebdc0f5061d668bcb3aa63646ed903d27,", - "color.button.info.outline.hover.background": "S:2134a4021e429a956f031b08d2fc6aba1ed74013,", - "color.button.info.outline.hover.foreground": "S:3bee09910b336fd936e2fef72dd26fcbfbd8fc26,", - "color.button.info.outline.hover.border": "S:2136347691414d919da845cc79856f305f5051ec,", - "color.button.info.outline.active.background": "S:2ab266b8f8ff730eb65e0bbf0a33b7064b606cd7,", - "color.button.info.outline.active.foreground": "S:c3d14d43d361f2634be268066d7a61ea6a230d80,", - "color.button.info.outline.active.border": "S:e13e6251a9d6bf91ec9d43f408289f3cc9834e4f,", - "color.button.info.outline.disabled.background": "S:62dfe0a6ad31d12e9bf85fa246e395c08ac31f5e,", - "color.button.info.outline.disabled.foreground": "S:5c75613c9dbd001f92728f40e60bb7433fce18fa,", - "color.button.info.outline.disabled.border": "S:e9ecbd6302e54b4786dd4660da8d5cd7fc0b4046,", - "color.button.info.ghost.idle.background": "S:6bd9871c7b96a285c93407eccd1a10ca66ef1dc7,", - "color.button.info.ghost.idle.foreground": "S:0ee4120e0afa0b0f5af7701abd327d5c476dc0d4,", - "color.button.info.ghost.idle.border": "S:6b54df6dead08ec08124f6335633ce29bbcd090b,", - "color.button.info.ghost.hover.background": "S:f1912ac8411d64af10379b2b0305a59f5273dfa7,", - "color.button.info.ghost.hover.foreground": "S:99492ac26503cb8e754a5a4604c4b3b7e1a75473,", - "color.button.info.ghost.hover.border": "S:548745adc026aebe8e3c1e1894b1dd929955c06d,", - "color.button.info.ghost.active.background": "S:eba073ca7de26013770cd8bb34f7729c109d8f08,", - "color.button.info.ghost.active.foreground": "S:fe0083ee0ea6bec8b66358e8256b3d4cb2231bd7,", - "color.button.info.ghost.active.border": "S:3f4db2208fe8a08d7e2fe6e86f7ea724c7c03ab4,", - "color.button.info.ghost.disabled.background": "S:a741ffb2b20871b7847374bfdeab1205c9e956a8,", - "color.button.info.ghost.disabled.foreground": "S:48b57d62e4c30a2d1e46163bc1f8d052585cb63d,", - "color.button.info.ghost.disabled.border": "S:22fd1ef2d39ef384b6806f943a9f434448954eea,", - "color.button.info.link.idle.background": "S:2a7166481d218f457bf523ade45577a5b3c55533,", - "color.button.info.link.idle.foreground": "S:ea6c8aef0554dd6cc9edec56af3460f9fb83e721,", - "color.button.info.link.idle.border": "S:46f3e475e30b0a06376f77b3410dfdc87ed3f182,", - "color.button.info.link.hover.background": "S:ba3b40a53c99df6fc2fa0edbf135c96a281bca74,", - "color.button.info.link.hover.foreground": "S:596e6c54ff7ac7d7411c81536543d8e587844ec2,", - "color.button.info.link.hover.border": "S:667f7efd395c557813a1da136c2cf50484305f9b,", - "color.button.info.link.active.background": "S:d6d200b309f9808e427a5f4d1148bd433815d25c,", - "color.button.info.link.active.foreground": "S:db837bce96d70011e5333773e010fe1212ea0992,", - "color.button.info.link.active.border": "S:8bafa14e07798f9ab1202675cd2e9b8eb94b876b,", - "color.button.info.link.disabled.background": "S:346d90abc90b03faef525306055a7b2412133062,", - "color.button.info.link.disabled.foreground": "S:8f08556af410a4dce5d256a9f757bdd2a63d2d04,", - "color.button.info.link.disabled.border": "S:569a4d57fcecaa5ced278942926e98bd6d918f7f,", - "color.input.fieldLabel.hint.default": "S:6c891ea281056f681603c5978556b6fdf11c9f4f,", - "color.input.fieldLabel.hint.disabled": "S:d785f4c6a2c12762b93b52590587ca467c1d7e92,", - "color.input.fieldLabel.hint.invalid": "S:1e22bc898802aea064d239f31ed6a92e97b14f33,", - "color.tab.default.background": "S:000d5ed1f952d597db499d840f5dda15b03ae3c7,", - "color.tab.default.foreground": "S:fe5c7d835799b79e6c2600230fba81db35cffec2,", - "color.tab.default.border": "S:b20b068812a455c0462094c0355e273d75029c4b,", - "color.tab.default.indicator": "S:aa8978808db64814e37d5285f3230050fe4c16b5,", - "color.tab.hover.background": "S:b78172a54bf21eadf9e2d093243aef16a48ac513,", - "color.tab.hover.foreground": "S:67388a56207d806e84cbc829c3c90f1daee0a146,", - "color.tab.hover.border": "S:c5cfedb14d81d0a7e409fedd0edb7c5d9424b0bd,", - "color.tab.disabled.background": "S:63294eef05c73b88bc6d3af28fcd8131bad7dd66,", - "color.tab.disabled.foreground": "S:158692dccfbd09ac514de5ca6e46158214bd68ef,", - "color.tab.disabled.border": "S:d00aa6b16c7fdc82bfebf55663d6ee59c137990d,", - "color.tab.tabbar.background": "S:5abb7c149c772ecc6cf1ed289a2a4fa95b372632,", - "color.tab.tabbar.foreground": "S:52f7cd0bc87cf0cf8605aa0c3e7c1c6391c2b728,", - "color.tab.tabbar.border": "S:cc2fb8e1c2875d877032458e4f7a9b2f8e2a1a0e,", - "color.tab.active.background": "S:33e21f749d17580a66395207d7febe478e28dcc6,", - "color.tab.active.foreground": "S:4857d666ac9c286ab45c3dd5d534d8dbe77000a3,", - "color.tab.active.border": "S:789c3c84d0a1d17328ae88406255a33a6512bb38,", - "color.tab.content.background": "S:707a7195b21d40bbbf65c13d5dc5848543f1f062,", - "color.tab.content.foreground": "S:c5b8ad586ffa69ef53ff4286848ee63b4cae0c96,", - "color.card.background": "S:030ff58f0a611ecdc4f08a91f83e007409c0905c,", - "color.card.foreground": "S:a701eb78539ae04aa895461ef6c6f2de2afa68d9,", - "color.card.border": "S:b566b8fd2ccadf20c97fdabcd493cdbeea666869,", - "color.spinner.default": "S:dbb07d28d19d3489a52d34396f264ae1f04a64ef,", - "color.spinner.white": "S:221f11d4ee7a4fd424cdcfaedc900a69a52d81ea,", - "color.spinner.accent": "S:21c5312be98f92197943103d0da52598716c045b,", - "color.spinner.info": "S:4677e609cb08b5bb8d14fd0264fc9c19aa1f95da,", - "color.spinner.success": "S:52c39b79650784649b8dc5a231ee9684d0d58229,", - "color.spinner.warning": "S:5bb896aef723cf2df7d70a40724eb38cf7e1fa84,", - "color.spinner.danger": "S:4e8795631911b2a6d65ceb45aab61b6a7920324b,", - "color.skeleton.base": "S:13f8a31f94358aad487d3bb5ad91521fb7a28757,", - "color.skeleton.effect": "S:03b74f0c4f23a3addf6182915a6a2b3c8bd62067,", - "color.skeleton.pulse": "S:a48b72109b21957c3a4d628b5ba0e91f46f8994f,", - "color.skeleton.shimmer": "S:7ea3026d74cdc8fb3d4b86458a921a4d926e1972,", - "color.accordion.default.background": "S:97a808e1d1770b1916975111d02e79ce909af1f7,", - "color.accordion.default.header": "S:5cb873bfb9fbd6b25236c885fcdcdaf78bce80b3,", - "color.accordion.default.foreground": "S:f7bdae2ffbe46dd584d1f63e2354f11e8ef3e56b,", - "color.accordion.default.icon": "S:d439fe23794d84b8bb72ee743ab0d8209c79876e,", - "color.accordion.default.border": "S:2a4094f236909d76d2933c9ed2fa311a356af094,", - "color.accordion.hover.background": "S:89d67f5ed10605a9e380dd9052f2295e54b26d36,", - "color.accordion.hover.header": "S:83f7b2813598ce342e266df5c3ec737128a1973e,", - "color.accordion.hover.foreground": "S:09f96686ad134b72a9f453daf735196c24c52b47,", - "color.accordion.hover.icon": "S:7ae5196d5bdae7cc48e8b0ceb3bedef52f574205,", - "color.accordion.hover.border": "S:07a20338915cfb14f0082294bb8beb60a48cf8a2,", - "color.accordion.disabled.background": "S:294fef3b25cd7023656c39464e2cf79a42bef9a2,", - "color.accordion.disabled.header": "S:eecdb2e58af41d008c5026f753b4a7d0a5908332,", - "color.accordion.disabled.foreground": "S:299c0eac12b473c38774f39954a756659abbf946,", - "color.accordion.disabled.icon": "S:dcaecfb4b51b92b2a5f6c5fceea683a0dcd35ee9,", - "color.accordion.disabled.border": "S:4ba38df8f1b7db302c5d0a778d33f45cfac1ac28,", - "color.accordion.active.background": "S:2cd55de828f6acc50b6156a930e8442f4f1f732e,", - "color.accordion.active.header": "S:8fb65aa70c764acca5b4048acdeb4a66c657337f,", - "color.accordion.active.foreground": "S:7cb74cbb2c0212fa7cb3dec843c18c110f42ccf3,", - "color.accordion.active.icon": "S:914c2fffab5e254ee17ac28dc709b9ee6b945398,", - "color.accordion.active.border": "S:bb38243dc65614995d45602cb9af88972df12b8a,", - "color.breadcrumb.divider": "S:a0c33ee15f57c8d2e654efd854d729a8cd054db3,", - "color.href.idle.foreground": "S:5e87138c828b6a51476abe781e5f581116d3e7b5,", - "color.href.hover.foreground": "S:9a51f782c05498cc4b24177a11f612dc644a927c,", - "color.href.active.foreground": "S:5104cb80829b54e42d0b5cb08866eecd381b79b7,", - "color.href.disabled.foreground": "S:2fb687173b60c43f0c42a296bc90f02a85cd8ae8,", - "text.input.fieldLabel.hint.sm": "S:4f22470f9f3d2a69eef9eb3ee572780799f6d40a,", - "text.input.fieldLabel.hint.md": "S:6f10a36692cbd266ff03a9212c7d462e7d964793,", - "text.input.fieldLabel.hint.lg": "S:410fa5549af5b475e30a7bebe79e96e216b8301f,", - "text.tab.title": "S:77227178c411e1d47b5738cb319e0af2115d697d,", - "text.tab.subtitle": "S:e1267d144ef2d1f4a1f46c14490ba3980ac80cb8,", - "text.card.title": "S:f3f1e3074f5e8477e2a33b0e4ff7877b914585c6,", - "text.card.subtitle": "S:de137c8bc8df9c0830aaf6970b072d68f804bf9d,", - "text.card.body": "S:bd264f2529d26c69aa1fd1746efcb2861244bf22,", - "text.accordion.title": "S:cb9d74f3439a660d8d6986276c32983dd4869b01,", - "text.accordion.body": "S:55fcffb8a1080895d17e73f38aa7eba2a694cf2c,", - "text.breadcrumb.link": "S:2941ab19c8ee8b9370109e6c605ccf365c8e3f54,", - "text.breadcrumb.current": "S:0e33094e5a26e6438a67adab387a713816814965,", - "text.breadcrumb.disabled": "S:f15efbe9d71f4d1a4537eb8947bbe7d2047cd04c,", - "text.href.sm": "S:2f74a2c6808c59b9386bd03b27010cd12013fba5,", - "text.href.md": "S:9a39590e8f9dfe24c6c3322a44a59754c382a515,", - "text.href.lg": "S:f58628a7abd36b0ceb0efbc0d587b634c062f7bd,", - "text.href.idle.sm": "S:6f517ad50a4cb1be8c3501b83e04367a0f0f5b86,", - "text.href.idle.md": "S:54648f9d99276336ec7a3a08288fde673ab79362,", - "text.href.idle.lg": "S:cdcda5a7f02756922574fc5aee5789d49c1070c2,", - "text.href.hover.sm": "S:0324c59e4b1eeca3c05b6bd314e2c274eb4ee849,", - "text.href.hover.md": "S:9094a51dc683ef93adec4ee32b938e0bfe225e7d,", - "text.href.hover.lg": "S:52246c4d6439db15997d68b3c853d39e6fcefb18,", - "text.href.active.sm": "S:17fb15a26925bcc5aa39872adc44c80736ec838d,", - "text.href.active.md": "S:85daa0cbd3e24d478f3a4c783ad5a868de253c45,", - "text.href.active.lg": "S:ff1d477d9294b823d821626f4755735b07dee3fe,", - "text.href.disabled.sm": "S:28ec4a380e09d81196dab40f8d0c027de879f00a,", - "text.href.disabled.md": "S:e816de70ead45708c5a8cb8eb1d6c5c2c894dcfa,", - "text.href.disabled.lg": "S:377e7c54bba1e36b72a664b1720dc19ccb7b0dcd," + "color.badge.bold.danger.background": "S:12a33c002c8fa04f73505835af97b00775c87deb,", + "color.badge.bold.danger.foreground": "S:14acd612aef96f9b199964f1886a846cbf3ef089,", + "color.badge.bold.success.background": "S:e60aab757ace873cbe721277d142ad3fd6b0592a,", + "color.badge.bold.success.foreground": "S:69ffefcd570f629cd3d39ad4e6786b25f2c6aa0b,", + "color.badge.bold.warning.background": "S:7af34bdb09792f8fcf04aa868b69f23e3aec3041,", + "color.badge.bold.warning.foreground": "S:03a700f84df8c2f5a0f5c309f41922c590b9f46a,", + "color.badge.bold.accent.background": "S:491232202b8fbf88039318e8bfdd42145cea85d7,", + "color.badge.bold.accent.foreground": "S:55dc498f5e1bb39426f3d3ee3b041482a103276a,", + "color.badge.bold.neutral.background": "S:b792b5bcaa39c1bdcb0b336d748f64db5dc34953,", + "color.badge.bold.neutral.foreground": "S:f45cae853cd9e4b576ccb350f2858178eedf5bdd,", + "color.badge.bold.primary.background": "S:5af33cb4f379c9b6da3f261975dad9947bd8f83f,", + "color.badge.bold.primary.foreground": "S:cbd6301c0fed385443551286ea21274e0b07d4de,", + "color.badge.bold.info.background": "S:a79b51de90adeba8d78fb1794c9609d742c3aed7,", + "color.badge.bold.info.foreground": "S:c3340c0cf8b8660fd9ce035390db8a6d0b8dbda1,", + "color.badge.subtle.danger.background": "S:cbf9e2e64f4015e9b9e288f88340125682880f96,", + "color.badge.subtle.danger.foreground": "S:f75f5e2ade3f667ccdf10fad51b173d5e0744512,", + "color.badge.subtle.success.background": "S:4ced0e059bd3e5dc94c30c08235fee5d1f20ed9e,", + "color.badge.subtle.success.foreground": "S:78ac31a960a34ae40c33d33ce28e2141bfa81770,", + "color.badge.subtle.warning.background": "S:4862f6f6b369edb942e6f773c758834950fa7f14,", + "color.badge.subtle.warning.foreground": "S:23979f64ecde6b1bffc447e0cedec6903fdd1a51,", + "color.badge.subtle.accent.background": "S:9085b7b6228103b2670995549791afe0a06019d1,", + "color.badge.subtle.accent.foreground": "S:a821a8736ff1dc40914145f9ae71febbf2c34351,", + "color.badge.subtle.neutral.background": "S:c120a7ac226983098649c7818a4d60b175865f20,", + "color.badge.subtle.neutral.foreground": "S:b851499afdb810ecdc054c8ba91912623e77a3f7,", + "color.badge.subtle.primary.background": "S:8ce6e9933a5693c44ba3a1058a7b14e45695bb6e,", + "color.badge.subtle.primary.foreground": "S:427fef23f9c67a944de73394549b1d3b48021722,", + "color.badge.subtle.info.background": "S:3c4ba6b803c2607f031e2cb6193b65a1213ee23a,", + "color.badge.subtle.info.foreground": "S:35083df742ac511b8b698880ac1847a7cf2674b7,", + "color.button.info.solid.idle.background": "S:5f6106736a7e11e0b5b24580b8e29d27d4842c6c,", + "color.button.info.solid.idle.foreground": "S:a294f5719a3912550361d050a82b394889c0f983,", + "color.button.info.solid.idle.border": "S:6bfb6e864ebc5576ee2f742e2a6b9ca7edbdadfe,", + "color.button.info.solid.hover.background": "S:694a67eff769014b1704438712cdd7b1c691d074,", + "color.button.info.solid.hover.foreground": "S:3d1720c4451cce5c3f526f2b2a585562bc506c46,", + "color.button.info.solid.hover.border": "S:cbbb196a3797c139e2f35cfb916950e2407b36c1,", + "color.button.info.solid.active.background": "S:0d096682fc30a3132055be358e40b3b6e5e8846c,", + "color.button.info.solid.active.foreground": "S:bb4212b448910b4c4b0bdb90127d098c75139eda,", + "color.button.info.solid.active.border": "S:7db8fa8b2f9a64a4d35d5289ea928fd6c31a22e7,", + "color.button.info.solid.disabled.background": "S:fda9ee81e737f287cdd514df32e55f65a8a93720,", + "color.button.info.solid.disabled.foreground": "S:838ec69665fd62e9ed4f50830900c829e858e9e7,", + "color.button.info.solid.disabled.border": "S:2b9310fe7891c15ae27f9972aa7853baf6269843,", + "color.button.info.outline.idle.background": "S:d0720d7ec78d2b9a68842d4f3eac3f5f28febe2e,", + "color.button.info.outline.idle.foreground": "S:e0132fdc32862bb15dbae62851c225647e38d157,", + "color.button.info.outline.idle.border": "S:d42e16c705778d744553de12cda503fc9cbccf7e,", + "color.button.info.outline.hover.background": "S:2a4d061f6866fdb83476f09e91c362032a061ba5,", + "color.button.info.outline.hover.foreground": "S:3a44d48f46f0b7173e27362063b3b4fbf5249c0c,", + "color.button.info.outline.hover.border": "S:919d8d5492e600b2ab5afcf43950a1a9931df353,", + "color.button.info.outline.active.background": "S:2ec9f9ce4a5f2ba68f92ed5d48186c7a4aaa260e,", + "color.button.info.outline.active.foreground": "S:4ddb03378f9990fef62acef0d90285f74599d83d,", + "color.button.info.outline.active.border": "S:1405de13cd233b2d2dc8bd60a22fc9ca9fc022e6,", + "color.button.info.outline.disabled.background": "S:382b23bd0b4fed6d5fa04004855e52026c56b468,", + "color.button.info.outline.disabled.foreground": "S:eb57919266ffb5196818f86510305a69e6fb494d,", + "color.button.info.outline.disabled.border": "S:703e9be4b6d50b2734e7302afd7769c09dd34c84,", + "color.button.info.ghost.idle.background": "S:2994d248739be682ea2e23a73f71b696eddeff88,", + "color.button.info.ghost.idle.foreground": "S:96b02ac18b5ab1d8edd4a60ced46c751878f46ea,", + "color.button.info.ghost.idle.border": "S:8cd6ef344bdd8fbfad4d61ebfdc27dc3a425d99a,", + "color.button.info.ghost.hover.background": "S:1ed2e652a1d230890721eed9bc00c69b7f24e715,", + "color.button.info.ghost.hover.foreground": "S:82c307a43e24aacd45032310bb1561cf3f3c29e7,", + "color.button.info.ghost.hover.border": "S:356068a4fc71f9aa4177be7907377c93bc99e08c,", + "color.button.info.ghost.active.background": "S:78d036a1692fcf5ab075f7d957cf72d125d8e9ae,", + "color.button.info.ghost.active.foreground": "S:22b3fd2db6b63ac8ce78c892cba27f6982bd68f2,", + "color.button.info.ghost.active.border": "S:d7ae95675e945d352cb722cebfedbc80bbcdcec0,", + "color.button.info.ghost.disabled.background": "S:ae6e8dfc91b339a5963acc8826e4f1eb4b373744,", + "color.button.info.ghost.disabled.foreground": "S:14f370cf63a5c90a1d88dcdb11a64538732f3c7e,", + "color.button.info.ghost.disabled.border": "S:953a2a703cd130fbb2e31d37e4f4966da70f3edb,", + "color.button.info.link.idle.background": "S:3642ed0244df41e8ee74f4c6d1c4943d30df3523,", + "color.button.info.link.idle.foreground": "S:f352a530a5318441ee864e17632e355881ebbfec,", + "color.button.info.link.idle.border": "S:37ced297dfc640ee675b962e10fa19c3207f6126,", + "color.button.info.link.hover.background": "S:4fe23297fcf56932e0ce1dc6906a85eca8d1dc0f,", + "color.button.info.link.hover.foreground": "S:2bc9646ff766d1f2412b0030db59c8ce64787923,", + "color.button.info.link.hover.border": "S:20339df657f001db558cb17b566b9798ba22cdf3,", + "color.button.info.link.active.background": "S:a19c26f6a5aa289bbf50de030d0ea3c6c87503ea,", + "color.button.info.link.active.foreground": "S:d5e5f7c88e20391c04f831ae6de7d4dff0ddd38f,", + "color.button.info.link.active.border": "S:7aa7f062b9e64673060dff85d408a7f14eb21924,", + "color.button.info.link.disabled.background": "S:7171005d34d77e2f4cbd09477695b3b198e76312,", + "color.button.info.link.disabled.foreground": "S:10d22e860a2f3bf20c3e3ca99a7127cc5705c6f2,", + "color.button.info.link.disabled.border": "S:1aad05f1de002106020058d61fe03285a7c6825b,", + "color.input.fieldLabel.hint.default": "S:81cb65c9f1d656044eef3b26bc67ecb8a848ab2d,", + "color.input.fieldLabel.hint.disabled": "S:16e03cf57bb2d6e83ef67aedd7f065f578e5bbac,", + "color.input.fieldLabel.hint.invalid": "S:7f0f7bd43ead4047c9a58288113b37d1336cd716,", + "color.tab.default.background": "S:60c260e29b185db7a82ea5066b5b0a077a4cc03e,", + "color.tab.default.foreground": "S:3f1bcbf58d7456d5066b0073c4383b2fae849a1a,", + "color.tab.default.border": "S:012a31be691159fd224f467a6f1effc5c6436c19,", + "color.tab.default.indicator": "S:d05c5238efa037520e7a708ba887f92ef2fd00b3,", + "color.tab.hover.background": "S:e2717a3b9a4e58c7fffde788bcb0f1f96d4b869d,", + "color.tab.hover.foreground": "S:e15618e2c3794e4f9d6b7c087c72757bc046e3c3,", + "color.tab.hover.border": "S:a43ab4f9403b1dc10a12179b31a3b66d303b155e,", + "color.tab.disabled.background": "S:cbb03241abb4e0bb4ff607ea8a8d8b5f42d8309a,", + "color.tab.disabled.foreground": "S:22bb0d3eb0278712a7a7312c03e60194f4e14493,", + "color.tab.disabled.border": "S:a266b7687e8df5c53b27d20e0757b29858d7e4b6,", + "color.tab.tabbar.background": "S:55e7e47a3c57880e2c2914931a4271670808c32f,", + "color.tab.tabbar.foreground": "S:db26fc08e00ebe63185fd8a13fd9b860baf388d0,", + "color.tab.tabbar.border": "S:a0b528223f14f1a7d8e7a49798b42bbfa54b8cb0,", + "color.tab.active.background": "S:82a6d163d0893d3f6b365937cc96c4538a60f48f,", + "color.tab.active.foreground": "S:c3c72664f3112178b0502ddc7b2aaf808d9523e3,", + "color.tab.active.border": "S:9822c3f9cdd0ec9f4741a15ed1cb0a31764ff3a9,", + "color.tab.content.background": "S:4929a9f3ea710ea277427fe2ffd4f9fe8c666e9d,", + "color.tab.content.foreground": "S:0a609a0d326ac72c5310f38a8d1d6c4fffe19929,", + "color.card.background": "S:a0337f9e6deca26f3353450dd69e0ad058dc1ffb,", + "color.card.foreground": "S:3ed152288ce7fe4d3f21ec3f71af6a02ed04483e,", + "color.card.border": "S:4d4cd6f95a5ca25f9da9a2bc750d1d319fb64435,", + "color.spinner.default": "S:bc9befb39664afae40db10b92b5c2c6209b1a13b,", + "color.spinner.white": "S:800ce955310faaf1984f1353b0293f1129b705e6,", + "color.spinner.accent": "S:8790f122218509ed64d7aa0c3a3238be481cfced,", + "color.spinner.info": "S:4b5564cf5982e711728f8a52875bf8e7f4a49822,", + "color.spinner.success": "S:968a6360aa77dfa5de6beea00296e6976d7a5ddd,", + "color.spinner.warning": "S:6c763364ce10128b51e3b2f2fbcc151875f87f15,", + "color.spinner.danger": "S:2c1d4e68594ff798f3bb3ccef130d63f90432670,", + "color.skeleton.base": "S:7e6d728488882c1612cf4cb24021d7d804f44b4d,", + "color.skeleton.effect": "S:827430defd95642e0546693a4bffd9928b6d030d,", + "color.skeleton.pulse": "S:fa39a302957d6c2b70eab94c5f024bff63b9ecfb,", + "color.skeleton.shimmer": "S:a58d054dd75f70fff29af9cb2476da66e4c73d59,", + "color.accordion.default.background": "S:f00ddabdfd1e2aac90c5d01691b66a798f082ded,", + "color.accordion.default.header": "S:035009b936f1c5b446264b7f113a9a5edc0b65d8,", + "color.accordion.default.foreground": "S:8091b61b6d24e3afdc5e344e4e754fa8f53086b9,", + "color.accordion.default.icon": "S:c30c9cf2dbcccbd9be2c54915b6693e73ee36f0b,", + "color.accordion.default.border": "S:e1289060fa8c274bbb4deb1ceecadeed56593d35,", + "color.accordion.hover.background": "S:8efe24d8cae4b37b132d63bc70e575d2989aec55,", + "color.accordion.hover.header": "S:7f06741b09894287c90d8ac6ce527c648a8ef350,", + "color.accordion.hover.foreground": "S:f1259e9a3d9cb84bb804db6f953cab2b42015887,", + "color.accordion.hover.icon": "S:3074b8bd40c4f8d5a899ad200e28e645f9e8f8d2,", + "color.accordion.hover.border": "S:798f8fab878bf9e7c0934796ad36d7dba14836dd,", + "color.accordion.disabled.background": "S:3a0b2d4f3f7aece92302521ba7a26e7d58fb6c0f,", + "color.accordion.disabled.header": "S:f747a2d2a8e4c69dd317006e94d4b16c0496cfc3,", + "color.accordion.disabled.foreground": "S:2465e00329fb6cdd938fb1dcf4c99affbc7d72a2,", + "color.accordion.disabled.icon": "S:edfb060b02c12beeb97a69726c4e34775c321df6,", + "color.accordion.disabled.border": "S:f55ac9f13d6ce6179e0c2422f022636f175705e5,", + "color.accordion.active.background": "S:a6a7dd22d1e3ca33032c9e7cce8f0cb77c9f1051,", + "color.accordion.active.header": "S:fe0f15f3bacaed8a63a49f610eda38ee4dfbe9cf,", + "color.accordion.active.foreground": "S:069a934670c4439fd0b9a1ca308bd87af9f8367d,", + "color.accordion.active.icon": "S:b766eff0d1bac71545615e1c2d4942f419079b73,", + "color.accordion.active.border": "S:473f796a4eef006073b83b96c98b9fa56427229f,", + "color.breadcrumb.divider": "S:0048bc4e635bdd49884a2868d8f3c8c7022c74a8,", + "color.href.idle.foreground": "S:c7302c6af4db69d7ef1617309b68e1668e0b9c84,", + "color.href.hover.foreground": "S:d9b6e2aecc42e9fff00d37cdeefd2043120d939d,", + "color.href.active.foreground": "S:1387b13ef4915f84c309f4f8c59f3a0b6ad79c6c,", + "color.href.disabled.foreground": "S:b6db092b285d06f7e36a20bd9f76162042f5b8c3,", + "color.progressbar.active.track": "S:cd0379441509aabd2053451e63ee48f56a430cf3,", + "color.progressbar.success.track": "S:527ee5e6fcc39e48a69038049b631fe1a35963ba,", + "color.progressbar.error.track": "S:c6166715b5f454e2dd5ea90967c5ec4f71400d8e,", + "color.progressbar.indeterminate.track": "S:a6c86c697558ca7097c2877aa07ecac069310319,", + "color.progressbar.warning.track": "S:163c6ecb0b40bd4e5af92d53f5f0fb61fa613925,", + "color.progressbar.background": "S:924eb481f8086fa0ef542280dbca64966d0cd57d,", + "text.input.fieldLabel.hint.sm": "S:ac9dab1f625fb31dd87a6436cf5f7998d8a776d0,", + "text.input.fieldLabel.hint.md": "S:cdf1c67754e5a8dfc767392b0d366519a22e3a9d,", + "text.input.fieldLabel.hint.lg": "S:3b603dfea05b1324b92c9a72ee0274c5a6e2aa2f,", + "text.tab.title": "S:c23cd6864ec7a9a89c8f801c30b0aed5cd1ade91,", + "text.tab.subtitle": "S:f0848a26bbf4873f476d19b86af38ca6e17a8ebf,", + "text.card.title": "S:62101775fba764702105228379b6c9a10611f6d7,", + "text.card.subtitle": "S:36736572490cef8ca779cbe06dd6b5ee7fa39bad,", + "text.card.body": "S:62c145d97dcd7831fd176a3fb881523123781ee3,", + "text.accordion.title": "S:fc6c9b817c88f37a5d47d30ba46d1d77f1ecd7e4,", + "text.accordion.body": "S:b81a171b800688f267c57159512d9d354b147e95,", + "text.breadcrumb.link": "S:533a066e7bab23a8c18153d0fb4405dbffe6ed77,", + "text.breadcrumb.current": "S:5d63218214f4328a468e96f6c5f99450ef732f07,", + "text.breadcrumb.disabled": "S:4cbb792026ce3e1f641b9370c5c9a0daedce922d,", + "text.href.sm": "S:3b1645b514a440986d105c77dccbd56d51ddf04b,", + "text.href.md": "S:9d50f1af2dd3022ab33ff2bb8c4b9f16b5cd8c75,", + "text.href.lg": "S:3d7608a516a489b0723a684777f7517223fca0fb,", + "text.href.idle.sm": "S:5467c9d0ff2ecc08dbfc1ed94aecae5dd2a39a83,", + "text.href.idle.md": "S:352544950a0769b5fc29977c5a57a272ae3e20af,", + "text.href.idle.lg": "S:7a70b9b582792d3f87773bf45306ba27aee24084,", + "text.href.hover.sm": "S:2a21e1fe7bdd526d62d3d993ba08fb071bbb4224,", + "text.href.hover.md": "S:b7a4c3356c710cc14ac427a58edd92d620d5961a,", + "text.href.hover.lg": "S:83ce18649be70cef74e12970959c55314503143b,", + "text.href.active.sm": "S:f307c3872ccd78336faec6534d4ef26b646173b3,", + "text.href.active.md": "S:1ed874fa535fa8da2294c857f56ec68e2eba5b8b,", + "text.href.active.lg": "S:2246957a15e1bf31c181d139b42df2419dba4d0d,", + "text.href.disabled.sm": "S:9864e8d1934ecdaace3725b939d99da2558f59d6,", + "text.href.disabled.md": "S:673069229dbe79b22078722919a3f7bba323a2da,", + "text.href.disabled.lg": "S:2d08a131aa454f0d65bd4e1c09ef0c50b535632e,", + "elevation.shadow.sm": "S:91ab51f2d7df3a1deb7d8b305494e97f540e1e0a,", + "elevation.shadow.md": "S:edf11833f300be34f898667a933115b3bee59c37,", + "elevation.shadow.lg": "S:d139b219688864ac5970756b1d65a1da23ca9c2e,", + "elevation.shadow.none": "S:667da8ed561030cad93de6a25a1c877875e777f8,", + "boxShadow.slds.checklist": "S:9a4f5ec537635b3c2889865295ce04af7eebb026," }, "selectedTokenSets": { "core": "enabled", diff --git a/packages/tokens/src/bingel-dc/light.json b/packages/tokens/src/bingel-dc/light.json index 28cec0742d..12f4dbb35a 100644 --- a/packages/tokens/src/bingel-dc/light.json +++ b/packages/tokens/src/bingel-dc/light.json @@ -3285,7 +3285,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3302,7 +3302,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4424,6 +4424,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.600}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.500}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.600}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/bingel-int/light.json b/packages/tokens/src/bingel-int/light.json index 4137b4fcdc..56c5fe6847 100644 --- a/packages/tokens/src/bingel-int/light.json +++ b/packages/tokens/src/bingel-int/light.json @@ -3355,7 +3355,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3372,7 +3372,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4494,6 +4494,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.600}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.500}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.600}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/clickedu/light.json b/packages/tokens/src/clickedu/light.json index d0679f1848..144a8c26dc 100644 --- a/packages/tokens/src/clickedu/light.json +++ b/packages/tokens/src/clickedu/light.json @@ -3799,7 +3799,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3816,7 +3816,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4298,6 +4298,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.accent.500}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.700}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.600}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.accent.500}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.600}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.100}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/core.json b/packages/tokens/src/core.json index 6fc3eafd58..f97ae7c50a 100644 --- a/packages/tokens/src/core.json +++ b/packages/tokens/src/core.json @@ -506,6 +506,10 @@ "value": "{size.4xs}", "type": "sizing" } + }, + "progressbar": { + "value": "{size.3xs}", + "type": "sizing" } }, "space": { @@ -1793,6 +1797,20 @@ "value": "{space.xl}", "type": "spacing" } + }, + "progressbar": { + "vertical": { + "gap": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "horizontal": { + "gap": { + "value": "{space.lg}", + "type": "spacing" + } + } } }, "text": { diff --git a/packages/tokens/src/editorial-suite/base.json b/packages/tokens/src/editorial-suite/base.json index efe45c6010..81d87e67d3 100644 --- a/packages/tokens/src/editorial-suite/base.json +++ b/packages/tokens/src/editorial-suite/base.json @@ -312,27 +312,27 @@ }, "warning": { "50": { - "value": "#FFF3D9", + "value": "#FEDCC2", "type": "color", "description": "color.palette.warning.50" }, "100": { - "value": "#FFE8B2", + "value": "#FFCDA7", "type": "color", "description": "color.palette.warning.100" }, "150": { - "value": "#FFDC8C", + "value": "#FFD976", "type": "color", "description": "color.palette.warning.150" }, "200": { - "value": "#FFD166", + "value": "#FFD056", "type": "color", "description": "color.palette.warning.200" }, "300": { - "value": "#FFC540", + "value": "#FFC53F", "type": "color", "description": "color.palette.warning.300" }, @@ -342,27 +342,27 @@ "description": "color.palette.warning.400" }, "500": { - "value": "#CC4400", + "value": "#FD8B35", "type": "color", "description": "color.palette.warning.500" }, "600": { - "value": "#993300", + "value": "#CA6F2A", "type": "color", "description": "color.palette.warning.600" }, "700": { - "value": "#802B00", + "value": "#985320", "type": "color", "description": "color.palette.warning.700" }, "800": { - "value": "#662200", + "value": "#653815", "type": "color", "description": "color.palette.warning.800" }, "900": { - "value": "#4D1A00", + "value": "#331C0B", "type": "color", "description": "color.palette.warning.900" }, diff --git a/packages/tokens/src/editorial-suite/light.json b/packages/tokens/src/editorial-suite/light.json index bbeeccab5f..b05ad643ef 100644 --- a/packages/tokens/src/editorial-suite/light.json +++ b/packages/tokens/src/editorial-suite/light.json @@ -71,11 +71,11 @@ }, "warning": { "background": { - "value": "{color.palette.warning.500}", + "value": "{color.palette.warning.base}", "type": "color" }, "foreground": { - "value": "{color.palette.white.base}", + "value": "{color.palette.black.base}", "type": "color" } }, @@ -147,7 +147,7 @@ "type": "color" }, "foreground": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color" } }, @@ -1044,7 +1044,7 @@ "solid": { "idle": { "background": { - "value": "{color.palette.warning.500}", + "value": "{color.palette.warning.700}", "type": "color", "description": "color.button.info.warning.idle.background" }, @@ -1061,7 +1061,7 @@ }, "hover": { "background": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.800}", "type": "color", "description": "color.button.warning.solid.hover.background" }, @@ -1078,7 +1078,7 @@ }, "active": { "background": { - "value": "{color.palette.warning.700}", + "value": "{color.palette.warning.900}", "type": "color", "description": "color.button.warning.solid.active.background" }, @@ -1119,19 +1119,19 @@ "description": "color.button.warning.outline.idle.background" }, "foreground": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color", "description": "color.button.warning.outline.idle.foreground" }, "border": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color", "description": "color.button.warning.outline.idle.border" } }, "hover": { "background": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color", "description": "color.button.warning.outline.hover.background" }, @@ -1141,14 +1141,14 @@ "description": "color.button.warning.outline.hover.foreground" }, "border": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color", "description": "color.button.warning.outline.hover.border" } }, "active": { "background": { - "value": "{color.palette.warning.700}", + "value": "{color.palette.warning.800}", "type": "color", "description": "color.button.warning.outline.active.background" }, @@ -1158,7 +1158,7 @@ "description": "color.button.warning.outline.active.foreground" }, "border": { - "value": "{color.palette.warning.700}", + "value": "{color.palette.warning.800}", "type": "color", "description": "color.button.warning.outline.active.border" } @@ -1189,7 +1189,7 @@ "description": "color.button.warning.outline.idle.background" }, "foreground": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color", "description": "color.button.warning.outline.idle.foreground" }, @@ -1206,7 +1206,7 @@ "description": "color.button.warning.outline.hover.background" }, "foreground": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.800}", "type": "color", "description": "color.button.warning.outline.hover.foreground" }, @@ -1223,7 +1223,7 @@ "description": "color.button.warning.outline.active.background" }, "foreground": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.900}", "type": "color", "description": "color.button.warning.outline.active.foreground" }, @@ -1259,7 +1259,7 @@ "description": "color.button.warning.outline.idle.background" }, "foreground": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color", "description": "color.button.warning.outline.idle.foreground" }, @@ -1276,7 +1276,7 @@ "description": "color.button.warning.outline.hover.background" }, "foreground": { - "value": "{color.palette.warning.700}", + "value": "{color.palette.warning.800}", "type": "color", "description": "color.button.warning.outline.hover.foreground" }, @@ -1293,7 +1293,7 @@ "description": "color.button.warning.outline.active.background" }, "foreground": { - "value": "{color.palette.warning.800}", + "value": "{color.palette.warning.900}", "type": "color", "description": "color.button.warning.outline.active.foreground" }, @@ -3017,7 +3017,7 @@ "description": "color.surface.solid.primary.foreground" }, "icon": { - "value": "{color.palette.danger.400}", + "value": "{color.palette.danger.600}", "type": "color", "description": "color.surface.solid.primary.background" }, @@ -3302,7 +3302,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.700}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3319,7 +3319,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.700}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4123,15 +4123,15 @@ "type": "color" }, "foreground": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color" }, "border": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color" }, "icon": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color" } }, @@ -4276,7 +4276,7 @@ "type": "color" }, "warning": { - "value": "{color.palette.warning.600}", + "value": "{color.palette.warning.700}", "type": "color" }, "danger": { @@ -4441,6 +4441,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.500}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.500}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.600}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.500}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.500}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/itslearning/light.json b/packages/tokens/src/itslearning/light.json index f3276ef1ed..6dfa19e2b0 100644 --- a/packages/tokens/src/itslearning/light.json +++ b/packages/tokens/src/itslearning/light.json @@ -3285,7 +3285,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.700}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3302,7 +3302,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.700}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4298,6 +4298,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.base}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.700}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.700}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.300}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/kampus/light.json b/packages/tokens/src/kampus/light.json index 601408c9ef..f3a2d4c6fd 100644 --- a/packages/tokens/src/kampus/light.json +++ b/packages/tokens/src/kampus/light.json @@ -3286,7 +3286,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3303,7 +3303,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4299,6 +4299,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.500}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.600}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.600}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/magister/dark.json b/packages/tokens/src/magister/dark.json index 928bc285dc..9f4af87969 100644 --- a/packages/tokens/src/magister/dark.json +++ b/packages/tokens/src/magister/dark.json @@ -3138,7 +3138,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.200}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3155,7 +3155,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.200}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4298,6 +4298,42 @@ } } }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.300}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.300}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.200}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.300}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.base}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.700}", + "type": "color" + } + }, "avatar": { "background": { "value": "{color.palette.primary.600}", @@ -4343,4 +4379,4 @@ "description": "boxShadow.none" } } -} \ No newline at end of file +} diff --git a/packages/tokens/src/magister/light.json b/packages/tokens/src/magister/light.json index 960e094506..584ff204ab 100644 --- a/packages/tokens/src/magister/light.json +++ b/packages/tokens/src/magister/light.json @@ -4597,6 +4597,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.600}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.600}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.500}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.600}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.600}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/max/light.json b/packages/tokens/src/max/light.json index cbc35c2dc4..ee9da82c4e 100644 --- a/packages/tokens/src/max/light.json +++ b/packages/tokens/src/max/light.json @@ -3285,7 +3285,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3302,7 +3302,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.600}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4298,6 +4298,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.accent.500}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.700}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.600}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.accent.500}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.800}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/my-digital-book/light.json b/packages/tokens/src/my-digital-book/light.json index 64b87c3c33..e916836c27 100644 --- a/packages/tokens/src/my-digital-book/light.json +++ b/packages/tokens/src/my-digital-book/light.json @@ -3138,7 +3138,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.500}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3155,7 +3155,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.500}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4439,6 +4439,42 @@ "type": "color" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.500}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.600}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.400}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.500}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.600}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/neon/dark.json b/packages/tokens/src/neon/dark.json index 03451705a3..024226b8fd 100644 --- a/packages/tokens/src/neon/dark.json +++ b/packages/tokens/src/neon/dark.json @@ -2866,7 +2866,7 @@ "description": "color.surface.solid.primary.background" }, "border": { - "value": "{color.palette.danger.600}", + "value": "{color.palette.danger.500}", "type": "color", "description": "color.surface.solid.primary.background" }, @@ -2876,7 +2876,7 @@ "description": "color.surface.solid.primary.foreground" }, "icon": { - "value": "{color.palette.danger.base}", + "value": "{color.palette.danger.500}", "type": "color", "description": "color.surface.solid.primary.background" }, @@ -3161,7 +3161,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.300}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3178,7 +3178,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.300}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4300,6 +4300,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.300}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.400}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.500}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.300}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.base}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.800}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/neon/light.json b/packages/tokens/src/neon/light.json index ee6a2f8750..31a0776451 100644 --- a/packages/tokens/src/neon/light.json +++ b/packages/tokens/src/neon/light.json @@ -3165,7 +3165,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.500}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3182,7 +3182,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.500}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4304,6 +4304,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.base}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.600}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.700}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/sanoma-learning/base.json b/packages/tokens/src/sanoma-learning/base.json index 943b14aea9..94575d32c3 100644 --- a/packages/tokens/src/sanoma-learning/base.json +++ b/packages/tokens/src/sanoma-learning/base.json @@ -312,62 +312,62 @@ }, "warning": { "50": { - "value": "#FFFDFD", + "value": "#FFFDF9", "type": "color", "description": "color.palette.warning.50" }, "100": { - "value": "#FFEAE0", + "value": "#FFF8E8", "type": "color", "description": "color.palette.warning.100" }, "150": { - "value": "#FFD5C2", + "value": "#FFEFCB", "type": "color", "description": "color.palette.warning.150" }, "200": { - "value": "#FFB796", + "value": "#FFE2A3", "type": "color", "description": "color.palette.warning.200" }, "300": { - "value": "#FF9667", + "value": "#FFD170", "type": "color", "description": "color.palette.warning.300" }, "400": { - "value": "#FF6D2C", + "value": "#FFAE00", "type": "color", "description": "color.palette.warning.400" }, "500": { - "value": "#F04A00", + "value": "#CC7700", "type": "color", "description": "color.palette.warning.500" }, "600": { - "value": "#CF4000", + "value": "#A66100", "type": "color", "description": "color.palette.warning.600" }, "700": { - "value": "#B03600", + "value": "#804B00", "type": "color", "description": "color.palette.warning.700" }, "800": { - "value": "#942E00", + "value": "#593400", "type": "color", "description": "color.palette.warning.800" }, "900": { - "value": "#6F2200", + "value": "#331E00", "type": "color", "description": "color.palette.warning.900" }, "base": { - "value": "#FF8650", + "value": "#FFAE00", "type": "color", "description": "color.palette.warning.base" } diff --git a/packages/tokens/src/sanoma-learning/dark.json b/packages/tokens/src/sanoma-learning/dark.json index e5c61c706f..593bcb9f55 100644 --- a/packages/tokens/src/sanoma-learning/dark.json +++ b/packages/tokens/src/sanoma-learning/dark.json @@ -4380,6 +4380,42 @@ } } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.accent.base}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.500}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.500}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.accent.base}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.500}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/sanoma-learning/light.json b/packages/tokens/src/sanoma-learning/light.json index 34d1e33cbf..2bddbb91b3 100644 --- a/packages/tokens/src/sanoma-learning/light.json +++ b/packages/tokens/src/sanoma-learning/light.json @@ -3007,7 +3007,7 @@ "description": "color.surface.solid.primary.background" }, "border": { - "value": "{color.palette.danger.400}", + "value": "{color.palette.danger.500}", "type": "color", "description": "color.surface.solid.primary.background" }, @@ -3017,7 +3017,7 @@ "description": "color.surface.solid.primary.foreground" }, "icon": { - "value": "{color.palette.danger.400}", + "value": "{color.palette.danger.500}", "type": "color", "description": "color.surface.solid.primary.background" }, @@ -3039,7 +3039,7 @@ "description": "color.surface.solid.primary.background" }, "border": { - "value": "{color.palette.danger.400}", + "value": "{color.palette.danger.500}", "type": "color", "description": "color.surface.solid.primary.background" }, @@ -3312,7 +3312,7 @@ "description": "color.surface.solid.primary.foreground" }, "invalid": { - "value": "{color.palette.danger.600}", + "value": "{color.palette.danger.500}", "type": "color", "description": "color.surface.solid.primary.foreground" } @@ -3348,7 +3348,7 @@ "description": "color.surface.solid.primary.foreground" }, "invalid": { - "value": "{color.palette.danger.600}", + "value": "{color.palette.danger.500}", "type": "color", "description": "color.surface.solid.primary.foreground" } @@ -4410,6 +4410,42 @@ } } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.accent.base}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.500}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.500}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.accent.base}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.500}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.150}", + "type": "color" + } } }, "boxShadow": { diff --git a/packages/tokens/src/teas/light.json b/packages/tokens/src/teas/light.json index b5068f351b..2ca257e741 100644 --- a/packages/tokens/src/teas/light.json +++ b/packages/tokens/src/teas/light.json @@ -3297,7 +3297,7 @@ "helper": { "text": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.700}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -3314,7 +3314,7 @@ }, "icon": { "default": { - "value": "{body.foreground}", + "value": "{color.palette.neutral.700}", "type": "color", "description": "color.surface.solid.primary.foreground" }, @@ -4436,6 +4436,42 @@ "description": "color.button.info.outline.disabled.foreground" } } + }, + "progressbar": { + "active": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "success": { + "track": { + "value": "{color.palette.success.600}", + "type": "color" + } + }, + "error": { + "track": { + "value": "{color.palette.danger.400}", + "type": "color" + } + }, + "indeterminate": { + "track": { + "value": "{color.palette.primary.base}", + "type": "color" + } + }, + "warning": { + "track": { + "value": "{color.palette.warning.600}", + "type": "color" + } + }, + "background": { + "value": "{color.palette.neutral.200}", + "type": "color" + } } }, "boxShadow": { diff --git a/tsconfig.all.json b/tsconfig.all.json index af309eb04f..fda0cd4079 100644 --- a/tsconfig.all.json +++ b/tsconfig.all.json @@ -36,6 +36,7 @@ { "path": "./packages/components/menu" }, { "path": "./packages/components/message-dialog" }, { "path": "./packages/components/popover" }, + { "path": "./packages/components/progress-bar" }, { "path": "./packages/components/radio-group" }, { "path": "./packages/components/select" }, { "path": "./packages/components/shared" }, diff --git a/website/src/_data/tokens/base.json b/website/src/_data/tokens/base.json new file mode 100644 index 0000000000..94575d32c3 --- /dev/null +++ b/website/src/_data/tokens/base.json @@ -0,0 +1,2431 @@ +{ + "color": { + "palette": { + "primary": { + "50": { + "value": "#FEFEFE", + "type": "color", + "description": "color.palette.primary.50" + }, + "100": { + "value": "#EAEAEA", + "type": "color", + "description": "color.palette.primary.100" + }, + "150": { + "value": "#D5D5D5", + "type": "color", + "description": "color.palette.primary.150" + }, + "200": { + "value": "#BCBCBC", + "type": "color", + "description": "color.palette.primary.200" + }, + "300": { + "value": "#A2A1A1", + "type": "color", + "description": "color.palette.primary.300" + }, + "400": { + "value": "#898989", + "type": "color", + "description": "color.palette.primary.400" + }, + "500": { + "value": "#737373", + "type": "color", + "description": "color.palette.primary.500" + }, + "600": { + "value": "#605F5F", + "type": "color", + "description": "color.palette.primary.600" + }, + "700": { + "value": "#4E4E4E", + "type": "color", + "description": "color.palette.primary.700" + }, + "800": { + "value": "#3E3D3D", + "type": "color", + "description": "color.palette.primary.800" + }, + "900": { + "value": "#262626", + "type": "color", + "description": "color.palette.primary.900" + }, + "base": { + "value": "#222222", + "type": "color", + "description": "color.palette.primary.base" + } + }, + "accent": { + "50": { + "value": "#EDF2FC", + "type": "color", + "description": "color.palette.accent.50" + }, + "100": { + "value": "#E0EAFF", + "type": "color", + "description": "color.palette.accent.100" + }, + "150": { + "value": "#CCDBFF", + "type": "color", + "description": "color.palette.accent.150" + }, + "200": { + "value": "#9EBAFF", + "type": "color", + "description": "color.palette.accent.200" + }, + "300": { + "value": "#5985FF", + "type": "color", + "description": "color.palette.accent.300" + }, + "400": { + "value": "{color.palette.accent.base}", + "type": "color", + "description": "color.palette.accent.400" + }, + "500": { + "value": "#2351DB", + "type": "color", + "description": "color.palette.accent.500" + }, + "600": { + "value": "#1138AD", + "type": "color", + "description": "color.palette.accent.600" + }, + "700": { + "value": "#09298E", + "type": "color", + "description": "color.palette.accent.700" + }, + "800": { + "value": "#00175F", + "type": "color", + "description": "color.palette.accent.800" + }, + "900": { + "value": "#000D33", + "type": "color", + "description": "color.palette.accent.900" + }, + "base": { + "value": "#3366FF", + "type": "color", + "description": "color.palette.accent.base" + } + }, + "neutral": { + "50": { + "value": "#f3f3f3", + "type": "color", + "description": "color.palette.neutral.50" + }, + "100": { + "value": "#EAEAEA", + "type": "color", + "description": "color.palette.neutral.100" + }, + "150": { + "value": "#D5D5D5", + "type": "color", + "description": "color.palette.neutral.150" + }, + "200": { + "value": "#BCBCBC", + "type": "color", + "description": "color.palette.neutral.200" + }, + "300": { + "value": "#A2A1A1", + "type": "color", + "description": "color.palette.neutral.300" + }, + "400": { + "value": "#898989", + "type": "color", + "description": "color.palette.neutral.400" + }, + "500": { + "value": "#737373", + "type": "color", + "description": "color.palette.neutral.500" + }, + "600": { + "value": "#605F5F", + "type": "color", + "description": "color.palette.neutral.600" + }, + "700": { + "value": "#4E4E4E", + "type": "color", + "description": "color.palette.neutral.700" + }, + "800": { + "value": "#3E3D3D", + "type": "color", + "description": "color.palette.neutral.800" + }, + "900": { + "value": "#2E2E2E", + "type": "color", + "description": "color.palette.neutral.900" + }, + "base": { + "value": "#222222", + "type": "color", + "description": "color.palette.neutral.base" + } + }, + "info": { + "50": { + "value": "#F0F5FF", + "type": "color", + "description": "color.palette.info.50" + }, + "100": { + "value": "#E0EAFF", + "type": "color", + "description": "color.palette.info.100" + }, + "150": { + "value": "#CCDBFF", + "type": "color", + "description": "color.palette.info.150" + }, + "200": { + "value": "#9EBAFF", + "type": "color", + "description": "color.palette.info.200" + }, + "300": { + "value": "#5985FF", + "type": "color", + "description": "color.palette.info.300" + }, + "400": { + "value": "{color.palette.info.base}", + "type": "color", + "description": "color.palette.info.400" + }, + "500": { + "value": "#2351DB", + "type": "color", + "description": "color.palette.info.500" + }, + "600": { + "value": "#1138AD", + "type": "color", + "description": "color.palette.info.600" + }, + "700": { + "value": "#09298E", + "type": "color", + "description": "color.palette.info.700" + }, + "800": { + "value": "#00175F", + "type": "color", + "description": "color.palette.info.800" + }, + "900": { + "value": "#000D33", + "type": "color", + "description": "color.palette.info.900" + }, + "base": { + "value": "#3366FF", + "type": "color", + "description": "color.palette.info.base" + } + }, + "success": { + "50": { + "value": "#EBF5EE", + "type": "color", + "description": "color.palette.success.50" + }, + "100": { + "value": "#D7F5E1", + "type": "color", + "description": "color.palette.success.100" + }, + "150": { + "value": "#AEEBC4", + "type": "color" + }, + "200": { + "value": "#70E09D", + "type": "color", + "description": "color.palette.success.200" + }, + "300": { + "value": "{color.palette.success.base}", + "type": "color", + "description": "color.palette.success.300" + }, + "400": { + "value": "#39B26C", + "type": "color", + "description": "color.palette.success.400" + }, + "500": { + "value": "#28854E", + "type": "color", + "description": "color.palette.success.500" + }, + "600": { + "value": "#1B6137", + "type": "color", + "description": "color.palette.success.600" + }, + "700": { + "value": "#114224", + "type": "color", + "description": "color.palette.success.700" + }, + "800": { + "value": "#0B331A", + "type": "color", + "description": "color.palette.success.800" + }, + "900": { + "value": "#082613", + "type": "color", + "description": "color.palette.success.900" + }, + "base": { + "value": "#45CC80", + "type": "color", + "description": "color.palette.success.base" + } + }, + "warning": { + "50": { + "value": "#FFFDF9", + "type": "color", + "description": "color.palette.warning.50" + }, + "100": { + "value": "#FFF8E8", + "type": "color", + "description": "color.palette.warning.100" + }, + "150": { + "value": "#FFEFCB", + "type": "color", + "description": "color.palette.warning.150" + }, + "200": { + "value": "#FFE2A3", + "type": "color", + "description": "color.palette.warning.200" + }, + "300": { + "value": "#FFD170", + "type": "color", + "description": "color.palette.warning.300" + }, + "400": { + "value": "#FFAE00", + "type": "color", + "description": "color.palette.warning.400" + }, + "500": { + "value": "#CC7700", + "type": "color", + "description": "color.palette.warning.500" + }, + "600": { + "value": "#A66100", + "type": "color", + "description": "color.palette.warning.600" + }, + "700": { + "value": "#804B00", + "type": "color", + "description": "color.palette.warning.700" + }, + "800": { + "value": "#593400", + "type": "color", + "description": "color.palette.warning.800" + }, + "900": { + "value": "#331E00", + "type": "color", + "description": "color.palette.warning.900" + }, + "base": { + "value": "#FFAE00", + "type": "color", + "description": "color.palette.warning.base" + } + }, + "danger": { + "50": { + "value": "#FFEDEB", + "type": "color", + "description": "color.palette.danger.50" + }, + "100": { + "value": "#FFD6D1", + "type": "color", + "description": "color.palette.danger.100" + }, + "150": { + "value": "#FFBCB8", + "type": "color", + "description": "color.palette.danger.150" + }, + "200": { + "value": "#FF8E8A", + "type": "color", + "description": "color.palette.danger.200" + }, + "300": { + "value": "{color.palette.danger.base}", + "type": "color", + "description": "color.palette.danger.300" + }, + "400": { + "value": "#E5454A", + "type": "color", + "description": "color.palette.danger.400" + }, + "500": { + "value": "#C73434", + "type": "color", + "description": "color.palette.danger.500" + }, + "600": { + "value": "#992224", + "type": "color", + "description": "color.palette.danger.600" + }, + "700": { + "value": "#6B1313", + "type": "color", + "description": "color.palette.danger.700" + }, + "800": { + "value": "#470D0D", + "type": "color", + "description": "color.palette.danger.800" + }, + "900": { + "value": "#260808", + "type": "color", + "description": "color.palette.danger.900" + }, + "base": { + "value": "#FF575C", + "type": "color", + "description": "color.palette.danger.base" + } + }, + "black": { + "base": { + "value": "#222222", + "type": "color", + "description": "color.palette.black.base" + } + }, + "white": { + "base": { + "value": "#FEFEFE", + "type": "color", + "description": "color.palette.white.base" + } + }, + "transparent": { + "base": { + "value": "#00000000", + "type": "color", + "description": "color.palette.transparent.base" + } + } + } + }, + "text": { + "avatar": { + "initials": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "fontSize": "{text.typeset.fontSize.xs}", + "lineHeight": "{text.typeset.lineHeight.xs}", + "textCase": "{text.typeset.textCase.uppercase}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "fontSize": "{text.typeset.fontSize.sm}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "textCase": "{text.typeset.textCase.uppercase}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "fontSize": "{text.typeset.fontSize.md}", + "lineHeight": "{text.typeset.lineHeight.md}", + "textCase": "{text.typeset.textCase.uppercase}" + }, + "type": "typography" + }, + "xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "fontSize": "{text.typeset.fontSize.xl}", + "lineHeight": "{text.typeset.lineHeight.xl}", + "textCase": "{text.typeset.textCase.uppercase}" + }, + "type": "typography" + }, + "2xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "fontSize": "{text.typeset.fontSize.2xl}", + "lineHeight": "{text.typeset.lineHeight.2xl}", + "textCase": "{text.typeset.textCase.uppercase}" + }, + "type": "typography" + }, + "3xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "fontSize": "{icon.typeset.fontSize.2xl}", + "lineHeight": "{text.typeset.lineHeight.2xl}", + "textCase": "{text.typeset.textCase.uppercase}" + }, + "type": "typography" + } + }, + "icon": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontSize": "{text.typeset.fontSize.md}", + "fontWeight": "{icon.style.outline}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{icon.style.outline}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{icon.style.outline}", + "fontSize": "{text.typeset.fontSize.xl}" + }, + "type": "typography" + }, + "xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{icon.style.outline}", + "fontSize": "{text.typeset.fontSize.2xl}" + }, + "type": "typography" + }, + "2xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{icon.style.outline}", + "fontSize": "{icon.typeset.fontSize.2xl}" + }, + "type": "typography" + }, + "3xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{icon.style.outline}", + "fontSize": "{icon.typeset.fontSize.2xl}" + }, + "type": "typography" + } + }, + "header": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.md}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "18px" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.md}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "18px" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.md}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "18px" + }, + "type": "typography" + }, + "xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.lg}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "{text.typeset.lineHeight.md}" + }, + "type": "typography" + }, + "2xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.lg}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "{text.typeset.lineHeight.md}" + }, + "type": "typography" + }, + "3xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.lg}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "{text.typeset.lineHeight.md}" + }, + "type": "typography" + } + }, + "subheader": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.sm}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "{text.typeset.lineHeight.sm}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.sm}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "18px" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.md}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "18px" + }, + "type": "typography" + }, + "xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.md}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "18px" + }, + "type": "typography" + }, + "2xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.md}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "18px" + }, + "type": "typography" + }, + "3xl": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.md}", + "textCase": "{text.typeset.textCase.none}", + "lineHeight": "18px" + }, + "type": "typography" + } + } + }, + "typeset": { + "fontFamily": { + "heading": { + "value": "The Message", + "type": "fontFamilies", + "description": "text.typeset.fontFamily.heading" + }, + "body": { + "value": "Source Sans Pro", + "type": "fontFamilies", + "description": "text.typeset.fontFamily.body" + }, + "icon": { + "value": "{icon.fontFamily.classic}", + "type": "fontFamilies", + "description": "text.typeset.fontFamily.fontIcon" + } + }, + "fontWeight": { + "demibold": { + "value": "SemiBold", + "type": "fontWeights" + } + } + }, + "heading": { + "0": { + "value": { + "fontFamily": "{text.typeset.fontFamily.heading}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.4xl}", + "fontSize": "{text.typeset.fontSize.4xl}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.none}", + "letterSpacing": "{text.typeset.letterSpacing.xs}" + }, + "type": "typography", + "description": "text.typeset.heading.0" + }, + "1": { + "value": { + "fontFamily": "{text.typeset.fontFamily.heading}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.3xl}", + "fontSize": "{text.typeset.fontSize.3xl}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.none}", + "letterSpacing": "{text.typeset.letterSpacing.sm}" + }, + "type": "typography", + "description": "text.typeset.heading.1" + }, + "2": { + "value": { + "fontFamily": "{text.typeset.fontFamily.heading}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.2xl}", + "fontSize": "{text.typeset.fontSize.2xl}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.none}", + "letterSpacing": "{text.typeset.letterSpacing.md}" + }, + "type": "typography", + "description": "text.typeset.heading.2" + }, + "3": { + "value": { + "fontFamily": "{text.typeset.fontFamily.heading}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.xl}", + "fontSize": "{text.typeset.fontSize.xl}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.none}", + "letterSpacing": "{text.typeset.letterSpacing.md}" + }, + "type": "typography", + "description": "text.typeset.heading.3" + }, + "4": { + "value": { + "fontFamily": "{text.typeset.fontFamily.heading}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.none}", + "letterSpacing": "{text.typeset.letterSpacing.lg}" + }, + "type": "typography", + "description": "text.typeset.heading.4" + } + }, + "body": { + "sm": { + "normal": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "{text.typeset.fontSize.sm}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.sm}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.sm.normal" + }, + "demibold": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "{text.typeset.fontSize.sm}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.sm}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.sm.demibold" + }, + "bold": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "{text.typeset.fontSize.sm}", + "letterSpacing": "{text.typeset.letterSpacing.lg}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.sm}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.sm.bold" + } + }, + "md": { + "normal": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.md}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.md.normal" + }, + "demibold": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.md}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.md.demibold" + }, + "bold": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}", + "letterSpacing": "{text.typeset.letterSpacing.lg}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.md}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.md.bold" + } + }, + "lg": { + "normal": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.lg}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.lg.normal" + }, + "demibold": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.lg}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.lg.demibold" + }, + "bold": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.lg}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography", + "description": "text.typeset.body.lg.bold" + } + } + }, + "tab": { + "title": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography" + }, + "subtitle": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + } + }, + "list": { + "sm": { + "normal": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.sm}", + "textCase": "{text.typeset.textCase.none}", + "textDecoration": "list" + }, + "type": "typography" + } + } + }, + "button": { + "text": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + } + }, + "fontIcon": { + "sm": { + "value": { + "lineHeight": "{text.typeset.lineHeight.xxs}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "md": { + "value": { + "lineHeight": "{text.typeset.lineHeight.xs}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "lg": { + "value": { + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + } + }, + "link": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "idle": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + } + }, + "hover": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + } + }, + "active": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + } + }, + "disabled": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + } + } + } + }, + "breadcrumb": { + "link": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "current": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "disabled": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + } + }, + "tooltip": { + "text": { + "tip": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.sm}" + }, + "type": "typography" + }, + "title": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "{text.typeset.fontSize.sm}" + }, + "type": "typography" + } + } + }, + "dialog": { + "heading": { + "value": { + "fontFamily": "{text.typeset.fontFamily.heading}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.2xl}", + "fontSize": "{icon.typeset.fontSize.xl}" + }, + "type": "typography" + }, + "subheading": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{icon.typeset.fontSize.md}" + }, + "type": "typography" + } + }, + "slds": { + "checklist": { + "heading": { + "value": { + "fontFamily": "{text.typeset.fontFamily.heading}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.xl}", + "fontSize": "{text.typeset.fontSize.xl}" + }, + "type": "typography" + }, + "body": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.lg}", + "lineHeight": "{text.typeset.lineHeight.lg}" + }, + "type": "typography" + }, + "listitem": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "fontSize": "{text.typeset.fontSize.lg}", + "lineHeight": "{text.typeset.lineHeight.lg}" + }, + "type": "typography" + } + } + }, + "input": { + "textField": { + "fontIcon": { + "md": { + "value": { + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "15", + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.icon-solid}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.icon-solid}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "18" + }, + "type": "typography" + } + }, + "text": { + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography" + } + } + }, + "option": { + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "Is use in Radio and Checkbox" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography", + "description": "Is use in Radio and Checkbox" + } + }, + "fieldLabel": { + "label": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography", + "description": "Font size xl is 18px need to be change to 20px to match 4-Grid layout." + } + }, + "tag": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography", + "description": "Font size xl is 18px need to be change to 20px to match 4-Grid layout." + } + }, + "hint": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "Font size xl is 18px need to be change to 20px to match 4-Grid layout." + } + } + }, + "helper": { + "text": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + } + }, + "fontIcon": { + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.icon-solid}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "15" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.icon-solid}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "15" + }, + "type": "typography" + } + } + }, + "switch": { + "inputField": { + "regular": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.xl}" + }, + "type": "typography", + "description": "Font size xl is 18px need to be change to 20px to match 4-Grid layout." + } + }, + "bold": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.xl}" + }, + "type": "typography", + "description": "Font size xl is 18px need to be change to 20px to match 4-Grid layout." + } + } + } + } + }, + "textField": { + "fontIcon": { + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.icon-solid}", + "lineHeight": "{text.typeset.lineHeight.sm}", + "fontSize": "15" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.icon-solid}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "18" + }, + "type": "typography" + } + }, + "label": { + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography" + } + }, + "value": { + "md": "[object Object]", + "lg": "[object Object]" + }, + "type": "other" + }, + "icon": { + "font": { + "icon": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{icon.typeset.fontSize.xs}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.icon}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography" + } + } + } + }, + "select": { + "selectbox": { + "text": { + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography", + "description": "UPDATED - Line height md from 22px to 20px" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.lg}", + "fontSize": "{text.typeset.fontSize.lg}" + }, + "type": "typography" + } + }, + "title": { + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.xxs}", + "fontSize": "{icon.typeset.fontSize.xs}", + "textCase": "{text.typeset.textCase.uppercase}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.xs}", + "fontSize": "{icon.typeset.fontSize.sm}", + "textCase": "{text.typeset.textCase.uppercase}" + }, + "type": "typography" + } + } + } + }, + "popover": { + "text": { + "text": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + }, + "title": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}" + }, + "type": "typography" + } + } + }, + "card": { + "title": { + "value": "{text.heading.3}", + "type": "typography" + }, + "subtitle": { + "value": "{text.body.lg.normal}", + "type": "typography" + }, + "body": { + "value": "{text.body.md.normal}", + "type": "typography" + } + }, + "href": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.sm}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "idle": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.sm}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + } + }, + "hover": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.sm}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + } + }, + "active": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.sm}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "textDecoration": "{text.typeset.textDecoration.underline}" + }, + "type": "typography" + } + }, + "disabled": { + "sm": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.sm}", + "fontSize": "{text.typeset.fontSize.sm}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.md}", + "fontSize": "{text.typeset.fontSize.md}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.bold}", + "lineHeight": "{button.label.lg}", + "fontSize": "{text.typeset.fontSize.lg}", + "textDecoration": "{text.typeset.textDecoration.none}" + }, + "type": "typography" + } + } + }, + "accordion": { + "title": { + "value": { + "fontFamily": "{text.typeset.fontFamily.heading}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.xl}", + "fontSize": "{text.typeset.fontSize.xl}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.none}", + "letterSpacing": "{text.typeset.letterSpacing.md}" + }, + "type": "typography" + }, + "body": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.regular}", + "lineHeight": "{text.typeset.lineHeight.md}", + "fontSize": "{text.typeset.fontSize.md}", + "letterSpacing": "{text.typeset.letterSpacing.md}", + "paragraphSpacing": "{text.typeset.paragraphSpacing.md}", + "textDecoration": "{text.typeset.textDecoration.none}", + "textCase": "{text.typeset.textCase.none}" + }, + "type": "typography" + } + } + }, + "borderRadius": { + "button": { + "sm": { + "value": "{border.radius.3xs}", + "type": "borderRadius", + "description": "borderRadius.button" + }, + "md": { + "value": "{border.radius.3xs}", + "type": "borderRadius", + "description": "borderRadius.button" + }, + "lg": { + "value": "{border.radius.3xs}", + "type": "borderRadius", + "description": "borderRadius.button" + }, + "icon-only": { + "sm": { + "value": "{border.radius.3xs}", + "type": "borderRadius", + "description": "borderRadius.button" + }, + "md": { + "value": "{border.radius.3xs}", + "type": "borderRadius", + "description": "borderRadius.button" + }, + "lg": { + "value": "{border.radius.3xs}", + "type": "borderRadius", + "description": "borderRadius.button" + } + } + }, + "default": { + "value": "{border.radius.3xs}", + "type": "borderRadius", + "description": "borderRadius.button" + }, + "popover": { + "default": { + "value": "{borderRadius.default}", + "type": "borderRadius", + "description": "borderRadius.button" + } + }, + "circle": { + "value": "{border.radius.full}", + "type": "borderRadius", + "description": "borderRadius.button" + }, + "checkbox": { + "value": "{border.radius.3xs}", + "type": "borderRadius" + }, + "focusring": { + "default": { + "value": "{borderRadius.default} - 1px", + "type": "borderRadius" + }, + "checkbox": { + "value": "{borderRadius.checkbox} - 1px", + "type": "borderRadius" + }, + "full": { + "value": "{border.radius.full}", + "type": "borderRadius" + } + }, + "dialog": { + "desktop": { + "value": "{borderRadius.default}", + "type": "borderRadius" + }, + "mobile": { + "value": "{border.radius.none}", + "type": "borderRadius" + } + }, + "select": { + "listbox": { + "value": "{border.radius.2xs}", + "type": "borderRadius" + }, + "item": { + "value": "{border.radius.3xs}", + "type": "borderRadius" + }, + "indicator": { + "value": "{border.radius.3xs}", + "type": "borderRadius" + } + }, + "badge": { + "full": { + "value": "{border.radius.full}", + "type": "borderRadius" + } + }, + "avatar": { + "square": { + "value": "{borderRadius.default}", + "type": "borderRadius" + } + }, + "inline-message": { + "default": { + "value": "{borderRadius.default}", + "type": "borderRadius", + "description": "borderRadius.button" + } + }, + "skeleton": { + "default": { + "value": "{borderRadius.default}", + "type": "borderRadius" + } + }, + "card": { + "default": { + "value": "{borderRadius.default}", + "type": "borderRadius" + }, + "image-margin": { + "value": "{borderRadius.default}", + "type": "borderRadius" + } + }, + "slds": { + "checklist": { + "value": "{border.radius.2xl}", + "type": "borderRadius" + } + } + }, + "border": { + "width": { + "button": { + "solid": { + "value": "{conceptual.border.width.default}", + "type": "borderWidth", + "description": "border.width.button.solid" + }, + "outline": { + "value": "{conceptual.border.width.default}", + "type": "borderWidth", + "description": "border.width.button.outline" + }, + "ghost": { + "value": "{conceptual.border.width.default}", + "type": "borderWidth", + "description": "border.width.button.ghost" + }, + "link": { + "value": "{conceptual.border.width.default}", + "type": "borderWidth", + "description": "border.width.button.link" + } + }, + "select": { + "listbox": { + "value": "{conceptual.border.width.default}", + "type": "borderWidth", + "description": "border.width.button.default" + } + }, + "input": { + "none": { + "value": "{border.width.none}", + "type": "borderWidth", + "description": "border.width.button.default" + }, + "border": { + "value": "{conceptual.border.width.default}", + "type": "borderWidth", + "description": "border.width.button.outline" + }, + "option": { + "value": "{border.width.xs}", + "type": "borderWidth", + "description": "border.width.button.outline" + } + }, + "focusring": { + "default": { + "value": "{border.width.sm}", + "type": "borderWidth" + }, + "offset": { + "value": "{border.width.sm}", + "type": "borderWidth" + } + }, + "dialog": { + "default": { + "value": "{border.width.none}", + "type": "borderWidth" + } + }, + "divider": { + "value": "{border.width.xs}", + "type": "borderWidth" + }, + "tooltip": { + "none": { + "value": "{border.width.none}", + "type": "borderWidth", + "description": "border.width.button.default" + }, + "border": { + "value": "{border.width.xs}", + "type": "borderWidth", + "description": "border.width.button.outline" + } + }, + "popover": { + "none": { + "value": "{border.width.none}", + "type": "borderWidth", + "description": "border.width.button.default" + }, + "border": { + "value": "{border.width.xs}", + "type": "borderWidth", + "description": "border.width.button.outline" + } + }, + "inline-message": { + "default": { + "value": "{conceptual.border.width.default}", + "type": "borderWidth" + }, + "start": { + "value": "{border.width.lg}", + "type": "borderWidth" + } + }, + "border": { + "tab": { + "value": "{border.width.xs}", + "type": "borderWidth" + }, + "tabbar": { + "value": "{border.width.xs}", + "type": "borderWidth" + } + }, + "card": { + "border": { + "value": "{border.width.xs}", + "type": "borderWidth" + } + }, + "slds": { + "checklist": { + "value": "{border.width.xs}", + "type": "borderWidth" + } + } + } + }, + "conceptual": { + "border": { + "width": { + "default": { + "value": "{border.width.xs}", + "type": "borderWidth", + "description": "Conceptual Theme Border Token" + } + } + } + }, + "animation": { + "button": { + "duration": { + "value": "{animation.duration.normal}", + "type": "other", + "description": "animation.button.duration" + }, + "easing": { + "value": "{animation.easing.ease-in-out}", + "type": "other", + "description": "animation.button.easing" + } + } + }, + "component": { + "button": { + "lg": { + "value": { + "height": "{size.md}", + "width": "{size.md}" + }, + "type": "composition" + }, + "md": { + "value": { + "height": "{size.sm}", + "width": "{size.sm}" + }, + "type": "composition" + } + } + }, + "icon": { + "style": { + "outline": { + "value": "{text.typeset.fontWeight.icon-regular}", + "type": "fontWeights" + }, + "solid": { + "value": "{text.typeset.fontWeight.icon-solid}", + "type": "fontWeights" + } + } + }, + "space": { + "tooltip": { + "arrow": { + "offset": { + "value": "{space.sm}", + "type": "spacing" + } + } + }, + "popover": { + "arrow": { + "offset": { + "value": "{space.lg}", + "type": "spacing" + } + }, + "offset": { + "value": "{space.xs}", + "type": "spacing" + } + }, + "card": { + "media": { + "full": { + "value": "{space.none}", + "type": "spacing" + }, + "margins": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "content": { + "inline": { + "value": "{space.xl}", + "type": "spacing" + }, + "block": { + "value": "{space.xl}", + "type": "spacing" + } + }, + "gap": { + "content": { + "inline": { + "value": "{space.sm}", + "type": "spacing" + }, + "block": { + "value": "{space.lg}", + "type": "spacing" + } + }, + "header": { + "inline": { + "value": "{space.none}", + "type": "spacing" + }, + "block": { + "value": "{space.none}", + "type": "spacing" + } + } + }, + "vertical": { + "inline": { + "value": "{space.none}", + "type": "spacing" + }, + "block": { + "value": "{space.xl}", + "type": "spacing" + }, + "gap": { + "value": "{space.none}", + "type": "spacing" + } + }, + "horizontal": { + "inline": { + "value": "{space.none}", + "type": "spacing" + }, + "block": { + "value": "{space.xl}", + "type": "spacing" + }, + "gap": { + "value": "{space.none}", + "type": "spacing" + } + } + }, + "accordion": { + "content": { + "inline": { + "value": "{space.3xl}", + "type": "spacing" + }, + "block": { + "value": "{space.lg}", + "type": "spacing" + } + }, + "title": { + "inline": { + "value": "{space.sm}", + "type": "spacing" + }, + "block": { + "value": "{space.lg}", + "type": "spacing" + }, + "gap": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "inline": { + "value": "{space.3xl}", + "type": "spacing" + }, + "block": { + "value": "{space.lg}", + "type": "spacing" + }, + "gap": { + "value": "{space.md}", + "type": "spacing" + } + } + }, + "dialog": { + "header": { + "flexDirection": { + "value": "{flexDirection.column}", + "type": "Flex" + } + }, + "footer": { + "flexDirection": { + "value": "{flexDirection.row}", + "type": "Flex" + }, + "justifyContent": { + "value": "{justifyContent.end}", + "type": "Flex" + } + } + }, + "textCase": { + "badge": { + "textTransform": { + "value": "{text.typeset.textCase.uppercase}", + "type": "textCase" + } + } + }, + "opacity": { + "spinner": { + "shadow": { + "value": "{opacity.600}", + "type": "opacity" + } + } + }, + "size": { + "tabbar": { + "vertical": { + "maxwidth": { + "value": "200px", + "type": "sizing" + } + } + }, + "select": { + "indicator": { + "value": "{size.3xs}", + "type": "sizing" + } + }, + "accordion": { + "icon": { + "height": { + "value": "28", + "type": "sizing" + } + } + }, + "inline-message": { + "start": { + "value": "{size.3xs}", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/website/src/_data/tokens/core.json b/website/src/_data/tokens/core.json new file mode 100644 index 0000000000..f97ae7c50a --- /dev/null +++ b/website/src/_data/tokens/core.json @@ -0,0 +1,2440 @@ +{ + "border": { + "radius": { + "none": { + "value": "0", + "type": "borderRadius", + "description": "border.radius.none" + }, + "3xs": { + "value": "2", + "type": "borderRadius", + "description": "border.radius.3xs" + }, + "2xs": { + "value": "4", + "type": "borderRadius", + "description": "border.radius.2xs" + }, + "xs": { + "value": "6", + "type": "borderRadius", + "description": "border.radius.xs" + }, + "sm": { + "value": "8", + "type": "borderRadius", + "description": "border.radius.sm" + }, + "md": { + "value": "10", + "type": "borderRadius", + "description": "border.radius.md" + }, + "lg": { + "value": "12", + "type": "borderRadius", + "description": "border.radius.lg" + }, + "xl": { + "value": "14", + "type": "borderRadius", + "description": "border.radius.xl" + }, + "2xl": { + "value": "16", + "type": "borderRadius" + }, + "3xl": { + "value": "18", + "type": "borderRadius", + "description": "border.radius.3xl" + }, + "full": { + "value": "50rem", + "type": "borderRadius", + "description": "border.radius.full" + } + }, + "width": { + "none": { + "value": "0", + "type": "borderWidth", + "description": "border.width.none" + }, + "2xs": { + "value": "0.5", + "type": "borderWidth", + "description": "2xs" + }, + "xs": { + "value": "1", + "type": "borderWidth", + "description": "border.width.xs" + }, + "sm": { + "value": "2", + "type": "borderWidth", + "description": "border.width.sm" + }, + "md": { + "value": "3", + "type": "borderWidth", + "description": "border.width.md" + }, + "lg": { + "value": "4", + "type": "borderWidth", + "description": "border.width.lg" + }, + "xl": { + "value": "5", + "type": "borderWidth", + "description": "border.width.xl" + }, + "2xl": { + "value": "6", + "type": "borderWidth", + "description": "border.width.2xl" + } + } + }, + "opacity": { + "50": { + "value": "0.02", + "type": "opacity", + "description": "opacity.50" + }, + "100": { + "value": "0.04", + "type": "opacity", + "description": "opacity.100" + }, + "150": { + "value": "0.06", + "type": "opacity", + "description": "opacity.150" + }, + "200": { + "value": "0.08", + "type": "opacity", + "description": "opacity.200" + }, + "300": { + "value": "0.12", + "type": "opacity", + "description": "opacity.300" + }, + "400": { + "value": "0.16", + "type": "opacity", + "description": "opacity.400" + }, + "500": { + "value": "0.2", + "type": "opacity", + "description": "opacity.500" + }, + "600": { + "value": "0.32", + "type": "opacity", + "description": "opacity.600" + }, + "700": { + "value": "0.48", + "type": "opacity", + "description": "opacity.700" + }, + "800": { + "value": "0.64", + "type": "opacity", + "description": "opacity.800" + }, + "900": { + "value": "0.8", + "type": "opacity", + "description": "opacity.900" + }, + "1000": { + "value": "1", + "type": "opacity", + "description": "opacity.1000" + }, + "transparent": { + "value": "0", + "type": "opacity", + "description": "opacity.transparent" + } + }, + "size": { + "none": { + "value": "0", + "type": "sizing", + "description": "size.none" + }, + "4xs": { + "value": "2", + "type": "sizing", + "description": "size.4xs" + }, + "3xs": { + "value": "4", + "type": "sizing", + "description": "size.3xs" + }, + "2xs": { + "value": "8", + "type": "sizing", + "description": "size.2xs" + }, + "xs": { + "value": "12", + "type": "sizing", + "description": "size.xs" + }, + "sm": { + "value": "14", + "type": "sizing", + "description": "size.sm" + }, + "md": { + "value": "16", + "type": "sizing", + "description": "size.md" + }, + "lg": { + "value": "20", + "type": "sizing", + "description": "size.lg" + }, + "xl": { + "value": "24", + "type": "sizing", + "description": "size.xl" + }, + "2xl": { + "value": "32", + "type": "sizing", + "description": "size.2xl" + }, + "3xl": { + "value": "48", + "type": "sizing", + "description": "size.3xl" + }, + "4xl": { + "value": "64", + "type": "sizing", + "description": "size.4xl" + }, + "input": { + "option": { + "sm": { + "value": "{size.lg}", + "type": "sizing" + }, + "md": { + "value": "{size.xl}", + "type": "sizing", + "description": "size.input.md" + }, + "lg": { + "value": "{size.2xl}", + "type": "sizing", + "description": "size.input.lg" + }, + "checkboxIcon": { + "sm": { + "value": "{size.icon.xs}", + "type": "sizing" + }, + "md": { + "value": "{size.icon.md}", + "type": "sizing", + "description": "size.input.md" + }, + "lg": { + "value": "{size.icon.lg}", + "type": "sizing", + "description": "size.input.lg" + } + } + }, + "switch": { + "handle": { + "sm": { + "value": "{size.md} - (2 * {space.input.switch.padding.controller})", + "type": "sizing", + "description": "size.input.md" + }, + "md": { + "value": "{size.xl} - (2 * {space.input.switch.padding.controller})", + "type": "sizing", + "description": "size.input.md" + }, + "lg": { + "value": "{size.2xl} - (2 * {space.input.switch.padding.controller})", + "type": "sizing", + "description": "size.input.md" + } + }, + "controller": { + "height": { + "sm": { + "value": "{size.md}", + "type": "sizing", + "description": "size.switch.controller.sm" + }, + "md": { + "value": "{size.xl}", + "type": "sizing", + "description": "size.switch.controller.md" + }, + "lg": { + "value": "{size.2xl}", + "type": "sizing", + "description": "size.switch.controller.lg" + } + }, + "width": { + "sm": { + "value": "{size.2xl}", + "type": "sizing", + "description": "size.switch.controller.sm" + }, + "md": { + "value": "{size.3xl}", + "type": "sizing", + "description": "size.switch.controller.md" + }, + "lg": { + "value": "{size.4xl}", + "type": "sizing", + "description": "size.switch.controller.lg" + } + } + } + } + }, + "icon": { + "2xs": { + "value": "10px", + "type": "sizing" + }, + "xs": { + "value": "{size.xs}", + "type": "sizing" + }, + "sm": { + "value": "{size.sm}", + "type": "sizing" + }, + "md": { + "value": "{size.md}", + "type": "sizing" + }, + "lg": { + "value": "{size.lg}", + "type": "sizing" + }, + "xl": { + "value": "{size.xl}", + "type": "sizing" + }, + "2xl": { + "value": "{size.2xl}", + "type": "sizing" + }, + "3xl": { + "value": "{size.3xl}", + "type": "sizing" + }, + "4xl": { + "value": "{size.4xl}", + "type": "sizing" + } + }, + "button": { + "icon-container": { + "icon-only": { + "sm": { + "value": "{size.md}", + "type": "sizing" + }, + "md": { + "value": "{size.md}", + "type": "sizing" + }, + "lg": { + "value": "{size.xl}", + "type": "sizing" + } + }, + "inline": { + "sm": { + "value": "{size.xs}", + "type": "sizing" + }, + "md": { + "value": "{size.sm}", + "type": "sizing" + }, + "lg": { + "value": "{size.md}", + "type": "sizing" + } + } + } + }, + "dialog": { + "min": { + "value": "400", + "type": "sizing", + "description": "size.input.md" + }, + "max": { + "value": "960", + "type": "sizing", + "description": "size.input.lg" + }, + "full": { + "value": "100%", + "type": "sizing", + "description": "size.input.lg" + } + }, + "badge": { + "sm": { + "value": "{size.2xs}", + "type": "sizing" + }, + "md": { + "value": "{size.md}", + "type": "sizing" + }, + "lg": { + "value": "{size.lg}", + "type": "sizing" + } + }, + "avatar": { + "sm": { + "value": "{size.xl}", + "type": "sizing" + }, + "md": { + "value": "{size.2xl}", + "type": "sizing" + }, + "lg": { + "value": "40", + "type": "sizing" + }, + "xl": { + "value": "52", + "type": "sizing" + }, + "2xl": { + "value": "{size.4xl}", + "type": "sizing" + }, + "3xl": { + "value": "80", + "type": "sizing" + }, + "badge": { + "sm": { + "value": "{size.2xs}", + "type": "sizing" + }, + "md": { + "value": "{size.md}", + "type": "sizing" + }, + "lg": { + "value": "{size.lg}", + "type": "sizing" + } + } + }, + "skeleton": { + "minHeight": { + "value": "{size.2xs}", + "type": "sizing" + } + }, + "spinner": { + "xs": { + "value": "{size.xs}", + "type": "sizing" + }, + "sm": { + "value": "{size.sm}", + "type": "sizing" + }, + "md": { + "value": "{size.md}", + "type": "sizing" + }, + "lg": { + "value": "{size.lg}", + "type": "sizing" + }, + "xl": { + "value": "{size.xl}", + "type": "sizing" + }, + "2xl": { + "value": "{size.2xl}", + "type": "sizing" + }, + "3xl": { + "value": "{size.3xl}", + "type": "sizing" + }, + "4xl": { + "value": "{size.4xl}", + "type": "sizing" + } + }, + "breadcrumb": { + "value": "{size.2xl}", + "type": "sizing" + }, + "tab": { + "indicator": { + "value": "{size.4xs}", + "type": "sizing" + } + }, + "progressbar": { + "value": "{size.3xs}", + "type": "sizing" + } + }, + "space": { + "none": { + "value": "0", + "type": "spacing", + "description": "space.none" + }, + "2xs": { + "value": "2", + "type": "spacing", + "description": "space.2xs" + }, + "xs": { + "value": "4", + "type": "spacing", + "description": "space.xs" + }, + "sm": { + "value": "8", + "type": "spacing", + "description": "space.sm" + }, + "md": { + "value": "12", + "type": "spacing", + "description": "space.md" + }, + "lg": { + "value": "16", + "type": "spacing", + "description": "space.lg" + }, + "xl": { + "value": "24", + "type": "spacing", + "description": "space.xl" + }, + "2xl": { + "value": "30", + "type": "spacing", + "description": "space.2xl" + }, + "3xl": { + "value": "40", + "type": "spacing", + "description": "space.3xl" + }, + "button": { + "solid": { + "block": { + "sm": { + "value": "{space.xs} - {border.width.button.solid}", + "type": "spacing", + "description": "space.button.solid.block.sm" + }, + "md": { + "value": "{space.sm} - {border.width.button.solid}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "lg": { + "value": "{space.sm} - {border.width.button.solid}", + "type": "spacing", + "description": "space.button.solid.block.lg" + } + }, + "inline": { + "sm": { + "value": "{space.lg} - {border.width.button.solid}", + "type": "spacing", + "description": "space.button.solid.inline.sm" + }, + "md": { + "value": "{space.xl} - {border.width.button.solid}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "lg": { + "value": "{space.xl} - {border.width.button.solid}", + "type": "spacing", + "description": "space.button.solid.inline.lg" + } + }, + "icon-only": { + "sm": { + "value": "{space.xs} - {border.width.button.solid}", + "type": "spacing" + }, + "md": { + "value": "{space.sm} - {border.width.button.solid}", + "type": "spacing" + }, + "lg": { + "value": "{space.sm} - {border.width.button.solid}", + "type": "spacing" + } + } + }, + "outline": { + "block": { + "sm": { + "value": "{space.xs} - {border.width.button.outline}", + "type": "spacing", + "description": "space.button.solid.block.sm" + }, + "md": { + "value": "{space.sm} - {border.width.button.outline}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "lg": { + "value": "{space.sm} - {border.width.button.outline}", + "type": "spacing", + "description": "space.button.solid.block.lg" + } + }, + "inline": { + "sm": { + "value": "{space.lg} - {border.width.button.outline}", + "type": "spacing", + "description": "space.button.solid.inline.sm" + }, + "md": { + "value": "{space.xl} - {border.width.button.outline}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "lg": { + "value": "{space.xl} - {border.width.button.outline}", + "type": "spacing", + "description": "space.button.solid.inline.lg" + } + }, + "icon-only": { + "sm": { + "value": "{space.xs} - {border.width.button.outline}", + "type": "spacing" + }, + "md": { + "value": "{space.sm} - {border.width.button.outline}", + "type": "spacing" + }, + "lg": { + "value": "{space.sm} - {border.width.button.outline}", + "type": "spacing" + } + } + }, + "ghost": { + "block": { + "sm": { + "value": "{space.xs} - {border.width.button.ghost}", + "type": "spacing", + "description": "space.button.solid.block.sm" + }, + "md": { + "value": "{space.sm} - {border.width.button.ghost}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "lg": { + "value": "{space.sm} - {border.width.button.ghost}", + "type": "spacing", + "description": "space.button.solid.block.lg" + } + }, + "inline": { + "sm": { + "value": "{space.lg} - {border.width.button.ghost}", + "type": "spacing", + "description": "space.button.solid.inline.sm" + }, + "md": { + "value": "{space.xl} - {border.width.button.ghost}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "lg": { + "value": "{space.xl} - {border.width.button.ghost}", + "type": "spacing", + "description": "space.button.solid.inline.lg" + } + }, + "icon-only": { + "sm": { + "value": "{space.xs} - {border.width.button.ghost}", + "type": "spacing" + }, + "md": { + "value": "{space.sm} - {border.width.button.ghost}", + "type": "spacing" + }, + "lg": { + "value": "{space.sm} - {border.width.button.ghost}", + "type": "spacing" + } + } + }, + "gap": { + "sm": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.sm}" + }, + "md": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + }, + "link": { + "block": { + "sm": { + "value": "{space.xs} - {border.width.button.link}", + "type": "spacing", + "description": "space.button.solid.block.sm" + }, + "md": { + "value": "{space.sm} - {border.width.button.link}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "lg": { + "value": "{space.sm} - {border.width.button.link}", + "type": "spacing", + "description": "space.button.solid.block.lg" + } + }, + "inline": { + "sm": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.inline.sm" + }, + "md": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "lg": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.inline.lg" + } + }, + "icon-only": { + "sm": { + "value": "{space.xs} - {border.width.button.link}", + "type": "spacing" + }, + "md": { + "value": "{space.sm} - {border.width.button.link}", + "type": "spacing" + }, + "lg": { + "value": "{space.sm} - {border.width.button.link}", + "type": "spacing" + } + } + } + }, + "input": { + "option": { + "block": { + "sm": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "md": { + "value": "{space.xs}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "lg": { + "value": "{space.xs}", + "type": "spacing", + "description": "space.button.solid.block.lg" + } + }, + "inline": { + "sm": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "md": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "lg": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.inline.lg" + } + }, + "gap": { + "sm": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "md": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + } + }, + "textField": { + "block": { + "md": { + "value": "{space.xs} + {conceptual.border.width.default}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "lg": { + "value": "{space.sm} - {conceptual.border.width.default}", + "type": "spacing", + "description": "space.button.solid.block.lg" + } + }, + "inline": { + "md": { + "value": "{space.md} - {conceptual.border.width.default}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "lg": { + "value": "{space.lg} - {conceptual.border.width.default}", + "type": "spacing", + "description": "space.button.solid.inline.lg" + } + }, + "gap": { + "md": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + } + }, + "helper": { + "gap": { + "sm": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "md": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + }, + "paddingTop": { + "sm": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "md": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.lg}" + }, + "none": { + "value": "{space.none}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + } + }, + "fieldLabel": { + "gap": { + "sm": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "md": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + }, + "icon": { + "md": { + "value": "{space.2xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.xs}", + "type": "spacing", + "description": "{space.button.gap.md}" + } + }, + "paddingBottom": { + "sm": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "md": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "none": { + "value": "{space.none}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + } + }, + "switch": { + "padding": { + "container": { + "value": "{space.xs}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "controller": { + "value": "{space.2xs}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "row": { + "sm": { + "value": "{space.input.switch.margin.left} + {size.input.switch.controller.width.sm} + ({space.input.switch.padding.container} * 2)", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "md": { + "value": "{space.input.switch.margin.left} + {size.input.switch.controller.width.md} + ({space.input.switch.padding.container} * 2)", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "lg": { + "value": "{space.input.switch.margin.left} + {size.input.switch.controller.width.lg} + ({space.input.switch.padding.container} * 2)", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "none": { + "value": "{space.none}", + "type": "spacing", + "description": "space.switch.padding.outer" + } + } + }, + "gap": { + "value": "{space.none}", + "type": "spacing", + "description": "space.input.switch.padding.gap" + }, + "margin": { + "top": { + "sm": { + "value": "{space.sm}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "md": { + "value": "{space.sm}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "none": { + "value": "{space.none}", + "type": "spacing", + "description": "space.switch.padding.outer" + } + }, + "left": { + "value": "{space.sm}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "bottom": { + "sm": { + "value": "{space.none}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "md": { + "value": "{space.xs}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "lg": { + "value": "{space.none}", + "type": "spacing", + "description": "space.switch.padding.outer" + }, + "none": { + "value": "{space.none}", + "type": "spacing", + "description": "space.switch.padding.outer" + } + } + } + } + }, + "dialog": { + "desktop": { + "container": { + "paddingTop": { + "value": "{space.xl}", + "type": "spacing", + "description": "space.dialog.desktop.container.paddingTop" + }, + "inline": { + "value": "{space.xl}", + "type": "spacing", + "description": "space.dialog.desktop.container.inline" + }, + "paddingBottom": { + "value": "{space.xl}", + "type": "spacing", + "description": "space.dialog.desktop.container.paddingBottom" + } + }, + "body": { + "block": { + "value": "{space.xl}", + "type": "spacing", + "description": "space.dialog.desktop.body.block" + }, + "inline": { + "value": "{space.xl}", + "type": "spacing", + "description": "space.dialog.desktop.body.inline" + }, + "gap": { + "value": "{space.xl}", + "type": "spacing", + "description": "space.dialog.desktop.body.gap" + } + } + }, + "mobile": { + "container": { + "paddingTop": { + "value": "{space.xl} * 2", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "inline": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "paddingBottom": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.block.md" + } + }, + "body": { + "block": { + "value": "{space.lg}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "inline": { + "value": "{space.lg}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "gap": { + "value": "{space.lg}", + "type": "spacing", + "description": "space.button.solid.block.md" + } + } + }, + "subtitle": { + "paddingBottom": { + "value": "{space.xs}", + "type": "spacing", + "description": "space.button.solid.block.md" + } + }, + "gap": { + "header": { + "value": "{space.none}", + "type": "spacing", + "description": "space.button.solid.block.md" + } + } + }, + "buttonBar": { + "gap": { + "default": { + "block": { + "value": "{space.sm}", + "type": "spacing" + }, + "inline": { + "value": "{space.buttonBar.gap.default.block}", + "type": "spacing" + } + }, + "ghostIcon": { + "block": { + "value": "{space.xs}", + "type": "spacing" + }, + "inline": { + "value": "{space.buttonBar.gap.ghostIcon.block}", + "type": "spacing" + } + } + } + }, + "group": { + "sm": { + "value": "{space.2xs}", + "type": "spacing" + }, + "md": { + "value": "{space.xs}", + "type": "spacing" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing" + }, + "xl": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "select": { + "listbox": { + "block": { + "lg": { + "value": "{space.sm} - {border.width.xs}", + "type": "spacing" + }, + "md": { + "value": "{space.sm} - {border.width.xs}", + "type": "spacing" + } + }, + "inline": { + "lg": { + "value": "{space.sm} - {border.width.xs}", + "type": "spacing" + }, + "md": { + "value": "{space.sm} - {border.width.xs}", + "type": "spacing" + } + }, + "gap": { + "lg": { + "value": "{space.xs}", + "type": "spacing" + }, + "md": { + "value": "{space.xs}", + "type": "spacing" + } + } + }, + "divider": { + "block": { + "lg": { + "value": "{space.sm}", + "type": "spacing" + }, + "md": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "inline": { + "lg": { + "value": "{space.md}", + "type": "spacing" + }, + "md": { + "value": "{space.md}", + "type": "spacing" + } + }, + "gap": { + "lg": { + "value": "{space.sm}", + "type": "spacing" + }, + "md": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "line": { + "lg": { + "value": "{space.sm}", + "type": "spacing" + }, + "md": { + "value": "{space.sm}", + "type": "spacing" + } + } + }, + "selectbox": { + "block": { + "md": { + "value": "{space.input.textField.block.md}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "lg": { + "value": "{space.input.textField.block.lg}", + "type": "spacing", + "description": "space.button.solid.block.lg" + } + }, + "inline": { + "md": { + "value": "{space.input.textField.inline.md}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "lg": { + "value": "{space.input.textField.inline.lg}", + "type": "spacing", + "description": "space.button.solid.inline.lg" + } + }, + "gap": { + "md": { + "value": "{space.input.textField.gap.md}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.input.textField.gap.lg}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + } + }, + "item": { + "block": { + "md": { + "value": "{space.input.textField.block.md}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "lg": { + "value": "{space.input.textField.block.lg}", + "type": "spacing", + "description": "space.button.solid.block.lg" + } + }, + "inline": { + "md": { + "value": "{space.input.textField.inline.md}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "lg": { + "value": "{space.input.textField.inline.lg}", + "type": "spacing", + "description": "space.button.solid.inline.lg" + } + }, + "gap": { + "md": { + "value": "{space.input.textField.gap.md}", + "type": "spacing", + "description": "{space.button.gap.md}" + }, + "lg": { + "value": "{space.input.textField.gap.lg}", + "type": "spacing", + "description": "{space.button.gap.lg}" + } + } + } + }, + "tooltip": { + "block": { + "value": "{space.sm}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "inline": { + "value": "{space.md}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "gap": { + "value": "{space.xs}", + "type": "spacing" + }, + "offset": { + "value": "{space.xs}", + "type": "spacing" + } + }, + "badge": { + "inline": { + "sm": { + "value": "{space.2xs}", + "type": "spacing" + }, + "md": { + "value": "{space.sm}", + "type": "spacing" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{space.2xs}", + "type": "spacing" + }, + "md": { + "value": "{space.2xs}", + "type": "spacing" + }, + "lg": { + "value": "{space.2xs}", + "type": "spacing" + } + }, + "gap": { + "sm": { + "value": "{space.2xs}", + "type": "spacing" + }, + "md": { + "value": "{space.xs}", + "type": "spacing" + }, + "lg": { + "value": "{space.xs}", + "type": "spacing" + } + }, + "icon": { + "inline": { + "2xs": { + "value": "{space.none}", + "type": "spacing" + }, + "xs": { + "value": "{space.none}", + "type": "spacing" + }, + "sm": { + "value": "{space.none}", + "type": "spacing" + }, + "md": { + "value": "{space.none}", + "type": "spacing" + }, + "lg": { + "value": "1", + "type": "spacing" + }, + "xl": { + "value": "{space.2xs}", + "type": "spacing" + } + }, + "block": { + "2xs": { + "value": "{space.none}", + "type": "spacing" + }, + "xs": { + "value": "{space.none}", + "type": "spacing" + }, + "sm": { + "value": "{space.none}", + "type": "spacing" + }, + "md": { + "value": "{space.none}", + "type": "spacing" + }, + "lg": { + "value": "1", + "type": "spacing" + }, + "xl": { + "value": "{space.2xs}", + "type": "spacing" + } + } + }, + "label": { + "inline": { + "2xs": { + "value": "{space.2xs}", + "type": "spacing" + }, + "xs": { + "value": "{space.2xs}", + "type": "spacing" + }, + "sm": { + "value": "{space.2xs}", + "type": "spacing" + }, + "md": { + "value": "3px", + "type": "spacing" + }, + "lg": { + "value": "3px", + "type": "spacing" + }, + "xl": { + "value": "3px", + "type": "spacing" + } + } + } + }, + "avatar": { + "inline": { + "sm": { + "value": "{space.sm}", + "type": "spacing" + }, + "md": { + "value": "{space.sm}", + "type": "spacing" + }, + "lg": { + "value": "{space.lg}", + "type": "spacing" + }, + "xl": { + "value": "{space.lg}", + "type": "spacing" + }, + "2xl": { + "value": "{space.lg}", + "type": "spacing" + }, + "3xl": { + "value": "{space.lg}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{space.sm}", + "type": "spacing" + }, + "md": { + "value": "{space.sm}", + "type": "spacing" + }, + "lg": { + "value": "{space.sm}", + "type": "spacing" + }, + "xl": { + "value": "{space.sm}", + "type": "spacing" + }, + "2xl": { + "value": "{space.sm}", + "type": "spacing" + }, + "3xl": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "badge": { + "inset": { + "sm": { + "value": "{space.2xs} * -1", + "type": "spacing" + }, + "md": { + "value": "{space.none}", + "type": "spacing" + }, + "lg": { + "value": "{space.xs} * -1", + "type": "spacing" + }, + "xl": { + "value": "{space.2xs} * -1", + "type": "spacing" + }, + "2xl": { + "value": "{space.2xs} * -1", + "type": "spacing" + }, + "3xl": { + "value": "{space.2xs}", + "type": "spacing" + } + }, + "margin": { + "value": "{space.2xs}", + "type": "spacing" + } + } + }, + "popover": { + "block": { + "value": "{space.sm}", + "type": "spacing", + "description": "space.button.solid.block.md" + }, + "inline": { + "value": "{space.md}", + "type": "spacing", + "description": "space.button.solid.inline.md" + }, + "gap": { + "value": "{space.xs}", + "type": "spacing", + "description": "space.popover.gap" + }, + "offset": { + "value": "{space.xs}", + "type": "spacing" + }, + "links": { + "gap": { + "value": "{space.sm}", + "type": "spacing" + }, + "block": { + "value": "{space.xs}", + "type": "spacing" + } + } + }, + "inline-message": { + "block": { + "value": "{space.md}", + "type": "spacing", + "description": "space.inline-message.block.md" + }, + "inline": { + "start": { + "value": "{space.lg} + {size.inline-message.start}", + "type": "spacing", + "description": "space.inline-message.inline.start" + }, + "end": { + "value": "{space.md}", + "type": "spacing", + "description": "space.inline-message.inline.end" + } + }, + "gap": { + "value": "{space.lg}", + "type": "spacing" + }, + "content": { + "gap": { + "value": "{space.xs}", + "type": "spacing" + } + } + }, + "tab": { + "inline": { + "value": "{space.xl}", + "type": "spacing" + }, + "block": { + "value": "{space.md}", + "type": "spacing" + }, + "gap": { + "value": "{space.sm}", + "type": "spacing" + }, + "more": { + "inline": { + "value": "{space.md}", + "type": "spacing" + }, + "block": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "content": { + "horizontal": { + "inline": { + "value": "{space.xl}", + "type": "spacing" + }, + "block": { + "value": "{space.xl}", + "type": "spacing" + }, + "gap": { + "value": "{space.xl}", + "type": "spacing" + } + }, + "vertical": { + "inline": { + "value": "{space.xl}", + "type": "spacing" + }, + "block": { + "value": "{space.sm}", + "type": "spacing" + }, + "gap": { + "value": "{space.xl}", + "type": "spacing" + } + } + } + }, + "card": { + "media": { + "full": { + "value": "{space.none}", + "type": "spacing" + }, + "margins": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "content": { + "inline": { + "value": "{space.xl}", + "type": "spacing" + } + }, + "vertical": { + "inline": { + "value": "{space.none}", + "type": "spacing" + }, + "block": { + "value": "{space.xl}", + "type": "spacing" + }, + "gap": { + "value": "{space.none}", + "type": "spacing" + } + }, + "horizontal": { + "inline": { + "value": "{space.none}", + "type": "spacing" + }, + "block": { + "value": "{space.xl}", + "type": "spacing" + }, + "gap": { + "value": "{space.none}", + "type": "spacing" + } + }, + "slotheader": { + "badges": { + "inline": { + "value": "{space.none}", + "type": "spacing" + }, + "block": { + "value": "{space.xs}", + "type": "spacing" + }, + "gap": { + "value": "{space.sm}", + "type": "spacing" + } + } + } + }, + "menu": { + "container": { + "block": { + "value": "{space.sm}", + "type": "spacing" + }, + "inline": { + "value": "{space.sm}", + "type": "spacing" + }, + "gap": { + "value": "{space.xs}", + "type": "spacing" + } + }, + "item": { + "block": { + "value": "{space.sm}", + "type": "spacing" + }, + "inline": { + "value": "{space.sm}", + "type": "spacing" + }, + "gap": { + "value": "{space.sm}", + "type": "spacing" + } + } + }, + "breadcrumb": { + "gap": { + "full": { + "value": "{space.lg}", + "type": "spacing" + }, + "short": { + "value": "{space.sm}", + "type": "spacing" + }, + "home": { + "value": "{space.xs}", + "type": "spacing" + } + } + }, + "form": { + "gap": { + "value": "{space.xl}", + "type": "spacing" + } + }, + "progressbar": { + "vertical": { + "gap": { + "value": "{space.sm}", + "type": "spacing" + } + }, + "horizontal": { + "gap": { + "value": "{space.lg}", + "type": "spacing" + } + } + } + }, + "text": { + "typeset": { + "fontFamily": { + "icon": { + "value": "Font Awesome 6 Pro", + "type": "fontFamilies", + "description": "text.typeset.fontFamily.icon" + } + }, + "fontWeight": { + "icon-thin": { + "value": "Thin", + "type": "fontWeights", + "description": "text.typeset.fontWeight.icon-thin" + }, + "icon-light": { + "value": "Light", + "type": "fontWeights", + "description": "text.typeset.fontWeight.icon-light" + }, + "icon-regular": { + "value": "Regular", + "type": "fontWeights", + "description": "text.typeset.fontWeight.icon-regular" + }, + "icon-solid": { + "value": "Solid", + "type": "fontWeights", + "description": "text.typeset.fontWeight.icon-solid" + }, + "regular": { + "value": "Regular", + "type": "fontWeights", + "description": "text.typeset.fontWeight.regular" + }, + "demibold": { + "value": "DemiBold", + "type": "fontWeights", + "description": "text.typeset.fontWeight.demibold" + }, + "bold": { + "value": "Bold", + "type": "fontWeights", + "description": "text.typeset.fontWeight.bold" + } + }, + "fontSize": { + "xs": { + "value": "10", + "type": "fontSizes", + "description": "text.typeset.fontSize.xs" + }, + "sm": { + "value": "12", + "type": "fontSizes", + "description": "text.typeset.fontSize.sm" + }, + "md": { + "value": "14", + "type": "fontSizes", + "description": "text.typeset.fontSize.md" + }, + "lg": { + "value": "16", + "type": "fontSizes", + "description": "text.typeset.fontSize.lg" + }, + "xl": { + "value": "18", + "type": "fontSizes", + "description": "text.typeset.fontSize.xl" + }, + "2xl": { + "value": "24", + "type": "fontSizes", + "description": "text.typeset.fontSize.2xl" + }, + "3xl": { + "value": "32", + "type": "fontSizes", + "description": "text.typeset.fontSize.3xl" + }, + "4xl": { + "value": "48", + "type": "fontSizes", + "description": "text.typeset.fontSize.4xl" + }, + "5xl": { + "value": "54", + "type": "fontSizes", + "description": "text.typeset.fontSize.5xl" + } + }, + "lineHeight": { + "xxs": { + "value": "12", + "type": "lineHeights", + "description": "text.typeset.lineHeight.xs" + }, + "xs": { + "value": "14", + "type": "lineHeights", + "description": "text.typeset.lineHeight.xs" + }, + "sm": { + "value": "16", + "type": "lineHeights", + "description": "text.typeset.lineHeight.sm" + }, + "md": { + "value": "20", + "type": "lineHeights", + "description": "text.typeset.lineHeight.md" + }, + "lg": { + "value": "24", + "type": "lineHeights", + "description": "text.typeset.lineHeight.lg" + }, + "xl": { + "value": "28", + "type": "lineHeights", + "description": "text.typeset.lineHeight.xl" + }, + "2xl": { + "value": "34", + "type": "lineHeights", + "description": "text.typeset.lineHeight.2xl" + }, + "3xl": { + "value": "42", + "type": "lineHeights", + "description": "text.typeset.lineHeight.3xl" + }, + "4xl": { + "value": "58", + "type": "lineHeights", + "description": "text.typeset.lineHeight.4xl" + }, + "5xl": { + "value": "64", + "type": "lineHeights", + "description": "text.typeset.lineHeight.5xl" + } + }, + "paragraphSpacing": { + "none": { + "value": "0", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.none" + }, + "xs": { + "value": "14", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.xs" + }, + "sm": { + "value": "18", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.sm" + }, + "md": { + "value": "22", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.md" + }, + "lg": { + "value": "24", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.lg" + }, + "xl": { + "value": "28", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.xl" + }, + "2xl": { + "value": "34", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.2xl" + }, + "3xl": { + "value": "42", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.3xl" + }, + "4xl": { + "value": "58", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.4xl" + }, + "5xl": { + "value": "64", + "type": "paragraphSpacing", + "description": "text.typeset.paragraphSpacing.5xl" + } + }, + "textDecoration": { + "none": { + "value": "none", + "type": "textDecoration", + "description": "text.typeset.textDecoration.none" + }, + "underline": { + "value": "underline", + "type": "textDecoration", + "description": "text.typeset.textDecoration.underline" + }, + "strikethrough": { + "value": "strikethrough", + "type": "textDecoration", + "description": "text.typeset.textDecoration.strikethrough" + } + }, + "textCase": { + "none": { + "value": "none", + "type": "textCase", + "description": "text.typeset.textCase.none" + }, + "uppercase": { + "value": "uppercase", + "type": "textCase", + "description": "text.typeset.textCase.uppercase" + }, + "lowercase": { + "value": "lowercase", + "type": "textCase", + "description": "text.typeset.textCase.lowercase" + }, + "capitalize": { + "value": "capitalize", + "type": "textCase", + "description": "text.typeset.textCase.capitalize" + } + }, + "letterSpacing": { + "none": { + "value": "0%", + "type": "letterSpacing", + "description": "text.typeset.letterSpacing.none" + }, + "xs": { + "value": "-2%", + "type": "letterSpacing", + "description": "text.typeset.letterSpacing.xs" + }, + "sm": { + "value": "-1%", + "type": "letterSpacing", + "description": "text.typeset.letterSpacing.sm" + }, + "md": { + "value": "0%", + "type": "letterSpacing", + "description": "text.typeset.letterSpacing.md" + }, + "lg": { + "value": "1%", + "type": "letterSpacing", + "description": "text.typeset.letterSpacing.lg" + }, + "xl": { + "value": "2%", + "type": "letterSpacing", + "description": "text.typeset.letterSpacing.xl" + } + } + }, + "badge": { + "text": { + "md": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "fontSize": "{text.typeset.fontSize.sm}", + "lineHeight": "{text.typeset.lineHeight.sm}" + }, + "type": "typography" + }, + "lg": { + "value": { + "fontFamily": "{text.typeset.fontFamily.body}", + "fontWeight": "{text.typeset.fontWeight.demibold}", + "fontSize": "{text.typeset.fontSize.md}", + "lineHeight": "{text.typeset.lineHeight.md}" + }, + "type": "typography" + } + } + } + }, + "icon": { + "fontFamily": { + "classic": { + "value": "Font Awesome 6 Pro", + "type": "fontFamilies" + }, + "sharp": { + "value": "Font Awesome 6 Sharp", + "type": "fontFamilies" + } + }, + "core": { + "face-smile": { + "value": "face-smile", + "type": "Icons", + "description": "icon.core.face-smile" + }, + "menu": { + "value": "bars", + "type": "Icons", + "description": "icon.core.menu" + }, + "fav": { + "value": "star", + "type": "Icons", + "description": "icon.core.fav" + }, + "pinata": { + "value": "pinata", + "type": "Icons", + "description": "icon.core.pinata" + }, + "pinata-solid": { + "value": "pinata", + "type": "Icons", + "description": "icon.core.pinata" + }, + "chevron-down": { + "value": "chevron-down", + "type": "Icons", + "description": "icon.core.chevron-down" + }, + "chevron-right": { + "value": "chevron-right", + "type": "Icons", + "description": "icon.core.chevron-right" + }, + "check": { + "value": "check", + "type": "Icons", + "description": "icon.core.check" + }, + "xmark": { + "value": "xmark", + "type": "Icons", + "description": "icon.core.xmark" + }, + "circle-exclamation-solid": { + "value": "circle-exclamation", + "type": "Icons", + "description": "icon.core.circle-exclamation-solid" + }, + "octagon-exclamation-solid": { + "value": "octagon-exclamation", + "type": "Icons", + "description": "icon.core.octagon-exclamation-solid" + }, + "triangle-exclamation-solid": { + "value": "triangle-exclamation", + "type": "Icons", + "description": "icon.core.triangle-exclamation-solid" + }, + "circle-check-solid": { + "value": "circle-check", + "type": "Icons", + "description": "icon.core.circle-check-solid" + }, + "ellipsis": { + "value": "ellipsis", + "type": "Icons", + "description": "icon.core.ellipsis" + }, + "home-blank": { + "value": "home-blank", + "type": "Icons", + "description": "icon.core.home-blank" + }, + "angle-down": { + "value": "angle-down", + "type": "Icons", + "description": "icon.core.angle-down" + }, + "breadcrumb-separator": { + "value": "slash-forward", + "type": "Icons", + "description": "icon.core.breadcrumb-separator" + }, + "search": { + "value": "magnifying-glass", + "type": "Icons", + "description": "icon.core.search" + } + }, + "typeset": { + "fontSize": { + "2xs": { + "value": "10px", + "type": "fontSizes", + "description": "icon.typeset.fontSize.xs" + }, + "xs": { + "value": "{size.xs}", + "type": "fontSizes", + "description": "icon.typeset.fontSize.xs" + }, + "sm": { + "value": "{size.sm}", + "type": "fontSizes", + "description": "icon.typeset.fontSize.sm" + }, + "md": { + "value": "{size.md}", + "type": "fontSizes", + "description": "icon.typeset.fontSize.md" + }, + "lg": { + "value": "{size.lg}", + "type": "fontSizes", + "description": "icon.typeset.fontSize.lg" + }, + "xl": { + "value": "{size.xl}", + "type": "fontSizes", + "description": "icon.typeset.fontSize.xl" + }, + "2xl": { + "value": "{size.2xl}", + "type": "fontSizes", + "description": "icon.typeset.fontSize.2xl" + }, + "3xl": { + "value": "{size.3xl}", + "type": "fontSizes", + "description": "icon.typeset.fontSize.3xl" + }, + "4xl": { + "value": "{size.4xl}", + "type": "fontSizes", + "description": "icon.typeset.fontSize.4xl" + } + } + } + }, + "animation": { + "duration": { + "fast": { + "value": "90ms", + "type": "other", + "description": "animation.duration.fast" + }, + "normal": { + "value": "200ms", + "type": "other", + "description": "animation.duration.normal" + }, + "slow": { + "value": "500ms", + "type": "other", + "description": "animation.duration.slow" + } + }, + "easing": { + "ease-in-out": { + "value": "ease-in-out", + "type": "other", + "description": "animation.easing.ease-in-out" + } + } + }, + "button": { + "label": { + "sm": { + "value": "{text.typeset.lineHeight.sm}", + "type": "lineHeights" + }, + "md": { + "value": "{text.typeset.lineHeight.sm}", + "type": "lineHeights" + }, + "lg": { + "value": "{text.typeset.lineHeight.lg}", + "type": "lineHeights" + } + } + }, + "elevation": { + "shadow": { + "sm": { + "value": [ + { + "x": "0", + "y": "0", + "blur": "6", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.50})", + "type": "dropShadow" + }, + { + "x": "0", + "y": "2px", + "blur": "4px", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.200})", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "md": { + "value": [ + { + "x": "0", + "y": "0", + "blur": "4", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.50})", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "8", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.150})", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "lg": { + "value": [ + { + "x": "0", + "y": "0", + "blur": "4", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.100})", + "type": "dropShadow" + }, + { + "x": "0", + "y": "8", + "blur": "16", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.200})", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "none": { + "value": [ + { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.transparent})", + "type": "dropShadow" + } + ], + "type": "boxShadow" + } + } + }, + "boxShadow": { + "slds": { + "checklist": { + "value": [ + { + "x": "0", + "y": "0", + "blur": "4", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.50})", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "8", + "spread": "0", + "color": "rgba({color.palette.neutral.base} , {opacity.150})", + "type": "dropShadow" + } + ], + "type": "boxShadow" + } + } + }, + "flexDirection": { + "column": { + "value": "column", + "type": "Flex" + }, + "columnReverse": { + "value": "column-reverse", + "type": "Flex" + }, + "rowReverse": { + "value": "row-reverse", + "type": "Flex" + }, + "row": { + "value": "row", + "type": "Flex" + } + }, + "justifyContent": { + "start": { + "value": "start", + "type": "Flex" + }, + "spaceBetween": { + "value": "space-between", + "type": "Flex" + }, + "end": { + "value": "end", + "type": "Flex" + } + } +} \ No newline at end of file diff --git a/website/src/categories/components/progress-bar/accessibility.md b/website/src/categories/components/progress-bar/accessibility.md new file mode 100644 index 0000000000..b9c56c6f3f --- /dev/null +++ b/website/src/categories/components/progress-bar/accessibility.md @@ -0,0 +1,38 @@ +--- +title: Progress bar accessibility +tags: accessibility +eleventyNavigation: + parent: Progress bar + key: ProgressBarAccessibility +--- + +
+ +## Accessibility considerations + +- Announcement of progress (for screen readers): Screen reader users should receive updates about the progress as it changes. This can be achieved by updating the aria-valuenow attribute and/or announcing changes in percentage or value through ARIA live regions (both are provided by the component). +- Error States and feedback: In case of error states, such as when the progress bar indicates an error condition, keyboard users should receive appropriate feedback. This can include announcing the error through ARIA live regions or focusing on an error indicator. By default, the component uses `aria-live="polite"` (to announce the status and progress change). However, in cases where there is an error, it can be useful to use `aria-live="assertive"`. In such situations, the aria-live attribute needs to be added to an element other than the progress bar itself. For example, it could be added to a field that is connected to the progress bar and may cause an error. + +
+ +
+ +## WAI-ARIA + +WAI-ARIA Roles, States, and Properties for a progress bar provide essential information to assistive technologies and screen readers. + +|Attribute | Value | Description | User supplied Specifies whether the attribute is always set in the component (no) or it needs to be provided by the developer (yes)| +|-|-|-|-| +|`role` |`'progressbar'`|This role indicates that an element represents a progress bar. It is used for both determinate (where progress is measurable, like a percentage) and indeterminate (where progress is ongoing without specific measure) progress bars.|no| +|`aria-valuemin`|string|Specifies the minimum value of the progress bar - 0 (0%).|no| +|`aria-valuemax`|string|Specifies the maximum value of the progress bar - 100 (100%).|no| +|`aria-valuenow`|string|Indicates the current value/progress of the progress bar (as percentage). This attribute is updated dynamically as the progress changes. For example, if the progress is at 50%, aria-valuenow would be set to 50.| no| +|`aria-live`|`polite`|Announces the state and value update/changes.|no| +|`aria-busy`|boolean|Set to `true` when the progress bar is in the `indeterminate` state on the aria-live element, otherwise it's set to `false`. You can also set `aria-busy="true"` when you want to connect the progress bar with other element/region on your application (please remember to connect the element/region with the progress bar component by e.g. by `aria-describedby`).|no/yes| +|`aria-labelledby`|string|Specifies a label or a reference to an element that serves as a label for the progress bar. This helps in associating the progress bar with its descriptive text or label for better understanding. By default, it contains `id` of the label (provided by `label` attribute). You can also connect the component with other label element using its `id` when there is no label attribute.|no/yes| +|`aria-describedby`|string|Identifies elements that provide additional descriptive information about the progress bar. This can include hints or additional explanations that assistive technologies can present to users. By default, it contains `id` of the slotted helper text. You can also add `aria-describedby="progress-bar-id"` on other element of your application to connect it with the progress bar component.|no/yes| +|`aria-label`|string|Can be added, when the progress bar has no label attribute.|yes| + +{.ds-table .ds-table-align-top} + +
\ No newline at end of file diff --git a/website/src/categories/components/progress-bar/code.md b/website/src/categories/components/progress-bar/code.md new file mode 100644 index 0000000000..e4f5a60aef --- /dev/null +++ b/website/src/categories/components/progress-bar/code.md @@ -0,0 +1,65 @@ +--- +title: Progress bar code +tags: code +APIdescription: Component has a range of properties to define the experience in different use cases. +eleventyNavigation: + parent: Progress bar + key: ProgressBarCode +--- + + +
+ +
+
+ + Uploaded 60% of 100% + + + File uploaded succesfully + + + File size is too big + + + Uploaded an invalid file type + + + Please wait + +
+
+ +
+ + ```html + + Uploaded 60% of 100% + + + File uploaded succesfully + + + File size is too big + + + Uploaded an invalid file type + + + Please wait + + ``` + +
+ +
+ + +{% include "../component-table.njk" %} diff --git a/website/src/categories/components/progress-bar/overview.md b/website/src/categories/components/progress-bar/overview.md new file mode 100644 index 0000000000..0511f57ac3 --- /dev/null +++ b/website/src/categories/components/progress-bar/overview.md @@ -0,0 +1,8 @@ +--- +title: Progress bar +tags: overview +eleventyNavigation: + parent: Progress bar + key: ProgressBarOverview +--- + diff --git a/website/src/categories/components/progress-bar/progress-bar.json b/website/src/categories/components/progress-bar/progress-bar.json new file mode 100644 index 0000000000..bbb87b7a85 --- /dev/null +++ b/website/src/categories/components/progress-bar/progress-bar.json @@ -0,0 +1,11 @@ +{ + "layout": "categories/components/components.njk", + "tags": "progress-bar", + "componentStatus": "preview", + "componentTagName": [ + { + "name": "Progress bar", + "selector": "sl-progress-bar" + } + ] +} diff --git a/website/src/categories/components/progress-bar/progress-bar.md b/website/src/categories/components/progress-bar/progress-bar.md new file mode 100644 index 0000000000..1c26da56f3 --- /dev/null +++ b/website/src/categories/components/progress-bar/progress-bar.md @@ -0,0 +1,15 @@ +--- +title: Progress bar +description: The progress bar is a visual indicator that shows how much of a task or process has been completed, giving users immediate feedback. +componentType: feedback +shortDescription: The progress bar is a visual indicator that shows how much of a task or process has been completed. +layout: "categories/components/components.njk" +tags: component +packageName: progress-bar +storybookCategory: components +eleventyNavigation: + parent: Components + key: Progress bar + status: new +--- + diff --git a/website/src/categories/components/progress-bar/specs.md b/website/src/categories/components/progress-bar/specs.md new file mode 100644 index 0000000000..e38f94686c --- /dev/null +++ b/website/src/categories/components/progress-bar/specs.md @@ -0,0 +1,7 @@ +--- +title: Progress bar specs +tags: specs +eleventyNavigation: + parent: Progress bar + key: ProgressBarSpecs +--- diff --git a/website/src/categories/components/progress-bar/usage.md b/website/src/categories/components/progress-bar/usage.md new file mode 100644 index 0000000000..7fe62dde45 --- /dev/null +++ b/website/src/categories/components/progress-bar/usage.md @@ -0,0 +1,121 @@ +--- +title: Progress bar usage +tags: usage +eleventyNavigation: + parent: Progress bar + key: ProgressBarUsage +--- + + +
+ +
+
+ + 20% of 100% + + + Done + + + Preparing download + +
+
+ +
+ + ```html + + 20% of 100% + + + Done + + + Preparing download + + ``` + +
+ +
+ + +
+ +## When to use + +### Long operations +A progress bar is essential for tasks that can take a considerable amount of time to complete or have unpredictable durations. It helps users stay informed about the ongoing status of the process. + +### File uploads/downloads +A progress bar is used to visually indicate the progression of system operations like downloading and uploading files. It provides users with real-time feedback on the status of these processes. + +### Quantitative information +A progress bar is suitable when the progress of a task can be quantitatively measured, such as using percentages. For instance, it's effective for showing teachers the percentage completion of their students' assignments. + +
+ + +
+ +## When not to use + +### Expanded information +When the loading time is anticipated to display extensive information, opt for [skeleton](categories/components/spinner/) states instead of a progress bar. + +### Short actions +If a process completes quickly, typically in less than 5 seconds, it's better to use a [spinner](categories/components/spinner/) instead of implementing a progress bar. + +
+ + +
+ +## Anatomy + +
+ +| Item | Name | Description | Optional| +|-|-|-|-| +| 1 | Label | Text describing the process referenced by the progress bar. Can be visually hidden but must be defined for accessibility purposes. |yes| +| 2 | Hint | Assistive text providing additional information about the ongoing process. For determinate progress bars, it typically displays progression as a percentage, fraction, ratio, or numeric value. |no| +| 3 | Track | The static area that the bar indicator moves on top of and acts as a fixed visual reference of what the total length and duration of the process could be.|no| +| 4 | Bar indicator | Indicates how much the process has progressed. |yes| +| 5 | Status icon | Indicates the state of the progress bar. |yes| + +{.ds-table .ds-table-align-top} + +
+ +
+ + +
+ +## Figma Options + +With these options, you can tweak the appearance of the progress bar in Figma. They are available in the Design Panel so you can compose the progress bar to exactly fit the user experience need for the use case you are working on. + +
+ +|Item|Options|Description| +|-|-|-| +|State|`default` `success` `error` `warning`|To indicate the state of the progress bar.| +|Progress|`0%` `25%` `50%` `75%` `100%` `inderterminate`| To visualise the progress. | +|Label|`boolean`| To show the label on top of the progress bar. | +|Hint|`value`| To enter the value of the hint. | + +{.ds-table .ds-table-align-top} + + +
+ diff --git a/website/src/ts/components/component-status/component-status-style.ts b/website/src/ts/components/component-status/component-status-style.ts index b934c220f1..5f0bf176ad 100644 --- a/website/src/ts/components/component-status/component-status-style.ts +++ b/website/src/ts/components/component-status/component-status-style.ts @@ -48,11 +48,11 @@ export const componentStatusStyles = css` .info:first-of-type { padding-inline-end: 1.6rem; - border-right: 0.1rem solid var(--control-color-surface-400-surface); } .info:not(:first-of-type) { padding-inline-start: 2.4rem; + border-left: 0.1rem solid var(--control-color-surface-400-surface); } sl-button-bar { diff --git a/website/src/ts/scripts/slds-components.ts b/website/src/ts/scripts/slds-components.ts index 44c25fe77d..04f6ed747c 100644 --- a/website/src/ts/scripts/slds-components.ts +++ b/website/src/ts/scripts/slds-components.ts @@ -17,6 +17,7 @@ import '@sl-design-system/icon/register.js'; import '@sl-design-system/inline-message/register.js'; import '@sl-design-system/message-dialog/register.js'; import '@sl-design-system/popover/register.js'; +import '@sl-design-system/progress-bar/register.js'; import '@sl-design-system/radio-group/register.js'; import '@sl-design-system/search-field/register.js'; import '@sl-design-system/select/register.js'; diff --git a/yarn.lock b/yarn.lock index 0091db351e..2931116ee1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5045,6 +5045,21 @@ __metadata: languageName: unknown linkType: soft +"@sl-design-system/progress-bar@workspace:packages/components/progress-bar": + version: 0.0.0-use.local + resolution: "@sl-design-system/progress-bar@workspace:packages/components/progress-bar" + dependencies: + "@lit/localize": "npm:^0.12.1" + "@open-wc/scoped-elements": "npm:^3.0.5" + "@sl-design-system/icon": "npm:^1.0.0" + lit: "npm:^3.1.4" + peerDependencies: + "@lit/localize": ^0.12.1 + "@open-wc/scoped-elements": ^3.0.5 + lit: ^3.1.4 + languageName: unknown + linkType: soft + "@sl-design-system/radio-group@npm:^1.0.0, @sl-design-system/radio-group@workspace:packages/components/radio-group": version: 0.0.0-use.local resolution: "@sl-design-system/radio-group@workspace:packages/components/radio-group"