From e4c5f32274f5b13b0fcf1fcb4bac419d97dae1af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 21 Apr 2026 16:18:08 +0100 Subject: [PATCH 01/12] feat: add new xs size variant --- .../src/components/step-group/step-group.ts | 9 ++++-- .../components/src/components/step/step.ts | 31 ++++++++++++------- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/packages/components/src/components/step-group/step-group.ts b/packages/components/src/components/step-group/step-group.ts index edb61a3fa7..37b0fe0f45 100644 --- a/packages/components/src/components/step-group/step-group.ts +++ b/packages/components/src/components/step-group/step-group.ts @@ -1,4 +1,4 @@ -import { css, html } from 'lit'; +import { css, html, nothing } from 'lit'; import { customElement } from '../../internal/register-custom-element'; import { property, query } from 'lit/decorators.js'; import { watch } from '../../internal/watch.js'; @@ -25,7 +25,7 @@ export default class SdStepGroup extends SolidElement { @query('[part=body]') body: HTMLSlotElement; /** The step-groups's size. */ - @property({ type: String, reflect: true }) size: 'lg' | 'sm' = 'lg'; + @property({ type: String, reflect: true }) size: 'lg' | 'sm' | 'xs' = 'lg'; /** Determines the orientation of the step-group. */ @property({ type: String, reflect: true }) orientation: 'horizontal' | 'vertical' = 'horizontal'; @@ -133,6 +133,11 @@ export default class SdStepGroup extends SolidElement { } render() { + if (this.size === 'xs' && this.orientation !== 'vertical') { + console.warn('Size "xs" is only supported when orientation is "vertical". The element will not be rendered.'); + return nothing; + } + return html`
diff --git a/packages/components/src/components/step/step.ts b/packages/components/src/components/step/step.ts index 46e08490cd..09b41d72ac 100644 --- a/packages/components/src/components/step/step.ts +++ b/packages/components/src/components/step/step.ts @@ -1,5 +1,5 @@ import '../icon/icon'; -import { css } from 'lit'; +import { css, nothing } from 'lit'; import { customElement } from '../../internal/register-custom-element'; import { HasSlotController } from '../../internal/slot'; import { html, literal } from 'lit/static-html.js'; @@ -41,7 +41,7 @@ export default class SdStep extends SolidElement { private readonly hasSlotController = new HasSlotController(this, 'label', '[default]'); /** The step's size. */ - @property({ type: String, reflect: true }) size: 'lg' | 'sm' = 'lg'; + @property({ type: String, reflect: true }) size: 'lg' | 'sm' | 'xs' = 'lg'; /** Determines the orientation of the step. */ @property({ type: String, reflect: true }) orientation: 'horizontal' | 'vertical' = 'horizontal'; @@ -126,6 +126,11 @@ export default class SdStep extends SolidElement { } render() { + if (this.size === 'xs' && this.orientation !== 'vertical') { + console.warn('Size "xs" is only supported when orientation is "vertical". The element will not be rendered.'); + return nothing; + } + const isLink = this.isLink(); const tag = this.notInteractive || this.waiting ? literal`div` : isLink ? literal`a` : literal`button`; const hasLabelSlot = this.hasSlotController.test('label'); @@ -143,7 +148,7 @@ export default class SdStep extends SolidElement { ? this.size === 'lg' ? 'translateLg' : 'translateSm' - : this.size === 'lg' + : this.size === 'lg' || this.size === 'xs' ? 'mt-1' : 'mt-3' ); @@ -152,12 +157,13 @@ export default class SdStep extends SolidElement { 'border sd-step__circle-border-width rounded-full aspect-square circle flex items-center justify-center shrink-0 font-bold select-none', this.disabled ? 'focus-visible:outline-none cursor-not-allowed' - : !this.notInteractive && !this.waiting + : !this.notInteractive && !this.waiting && this.size !== 'xs' ? 'focus-visible:focus-outline hover:cursor-pointer' : '', - this.notInteractive ? (this.size === 'lg' ? 'not-interactive-lg' : 'w-12') : this.size === 'lg' ? 'w-12' : 'w-8', + this.size === 'xs' ? 'w-2' : this.size === 'sm' ? 'w-8' : this.notInteractive ? 'not-interactive-lg' : 'w-12', this.disabled && 'border-neutral-500 text-neutral-500', this.waiting && 'border-neutral-400 text-neutral-700', + this.waiting && this.size === 'xs' && 'border-neutral-700', !this.disabled && !this.current && !this.notInteractive && @@ -209,13 +215,15 @@ export default class SdStep extends SolidElement { )} > ${ - !this.disabled && !this.current && !this.notInteractive && !this.waiting + !this.disabled && !this.current && !this.notInteractive && !this.waiting && this.size !== 'xs' ? html` ` - : html`${this.index}` + : this.size === 'xs' + ? '' + : html`${this.index}` } @@ -265,7 +273,7 @@ export default class SdStep extends SolidElement { part="description" id="description" class=${cx( - 'sd-paragraph sd-paragraph--size-sm break-words', + 'sd-paragraph sd-paragraph--size-sm wrap-break-word', hasDescription ? 'flex-1' : 'w-0 h-0 overflow-hidden', hasDescription && !this.noTail && 'pr-4', (this.disabled || this.waiting) && '!text-neutral-700' @@ -284,7 +292,7 @@ export default class SdStep extends SolidElement { class=${cx( this.orientation === 'horizontal' ? 'border-t w-full my-auto mr-2' - : 'border-l flex-grow flex-shrink-0 basis-auto h-full w-[1px] mx-auto', + : 'border-l grow shrink-0 basis-auto h-full w-[1px] mx-auto', !this.disabled && !this.current && !this.notInteractive && !this.waiting ? 'border-primary group-hover:border-primary-500' : 'border-neutral-400' @@ -299,7 +307,8 @@ export default class SdStep extends SolidElement {
Date: Tue, 21 Apr 2026 16:21:41 +0100 Subject: [PATCH 02/12] feat: add new xs variant to docs --- .../stories/components/step-group.stories.ts | 17 +++++++++++++++++ .../docs/src/stories/components/step.stories.ts | 14 ++++++++++++-- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/packages/docs/src/stories/components/step-group.stories.ts b/packages/docs/src/stories/components/step-group.stories.ts index 820bf9d69d..de630a4b4b 100644 --- a/packages/docs/src/stories/components/step-group.stories.ts +++ b/packages/docs/src/stories/components/step-group.stories.ts @@ -55,6 +55,7 @@ export const Default = { * * - `lg`(default) * - `sm` + * - `xs` (only available with vertical orientation) */ export const Size = { name: 'Size', @@ -87,6 +88,22 @@ export const Size = {

Step 3

+ +
+ + +

Step 1

+
+ + +

Step 2

+
+ + +

Step 3

+
+
+
` }; diff --git a/packages/docs/src/stories/components/step.stories.ts b/packages/docs/src/stories/components/step.stories.ts index 694b42cfd6..69f129b680 100644 --- a/packages/docs/src/stories/components/step.stories.ts +++ b/packages/docs/src/stories/components/step.stories.ts @@ -64,18 +64,22 @@ export const Default = { * * - `lg`(default) * - `sm` + * - `xs` (only available with vertical orientation) */ export const Size = { name: 'Size', render: () => html` -
+
Large Small + + Extra Small +
` }; @@ -252,12 +256,18 @@ export const Description = {

Description lorem ipsum sic semper

-
+
Step name

Description lorem ipsum sic semper

+
+ + Step name +

Description lorem ipsum sic semper

+
+
` }; From 67b6bf6f756e66de7d77c0b6f24d0f969fc4207d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 21 Apr 2026 16:30:02 +0100 Subject: [PATCH 03/12] fix: adjust story to pass a111y tests --- packages/docs/src/stories/components/step-group.stories.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/stories/components/step-group.stories.ts b/packages/docs/src/stories/components/step-group.stories.ts index de630a4b4b..6b4fee1a85 100644 --- a/packages/docs/src/stories/components/step-group.stories.ts +++ b/packages/docs/src/stories/components/step-group.stories.ts @@ -90,7 +90,7 @@ export const Size = {
- +

Step 1

From e4809b22c381ce3874fcf884129fddfb743ac26b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 21 Apr 2026 16:31:19 +0100 Subject: [PATCH 04/12] feat: update screenshot tests --- .../components/step-group.test.stories.ts | 19 +++++++- .../stories/components/step.test.stories.ts | 44 ++++++++++++++++++- 2 files changed, 60 insertions(+), 3 deletions(-) diff --git a/packages/docs/src/stories/components/step-group.test.stories.ts b/packages/docs/src/stories/components/step-group.test.stories.ts index 3bd2e5d8ab..e9266c2137 100644 --- a/packages/docs/src/stories/components/step-group.test.stories.ts +++ b/packages/docs/src/stories/components/step-group.test.stories.ts @@ -118,7 +118,7 @@ export const notInteractive = { return generateTemplate({ axis: { x: { type: 'attribute', name: 'not-interactive' }, - y: { type: 'attribute', name: 'size' } + y: { type: 'attribute', name: 'size', values: ['lg', 'sm', 'xs'] } }, args, options: { @@ -127,6 +127,21 @@ export const notInteractive = { .map(([attr, value]) => `${attr}='${value}'`) .join(' '); + if (attributes.size === 'xs') { + const xsSlots = ` + +

Lorem ipsum dolor sit

+
+ +

Exercitation ullamco laboris

+
+ +

Reprehenderit qui in e name

+
`; + + return `
${xsSlots}
`; + } + const slotted = Object.entries(slots ?? {}) .map(([, slot]) => slot) .join('\n'); @@ -140,7 +155,7 @@ export const notInteractive = { (story: () => typeof html) => html` ${story()} diff --git a/packages/docs/src/stories/components/step.test.stories.ts b/packages/docs/src/stories/components/step.test.stories.ts index 0b0063c282..3195c84d7a 100644 --- a/packages/docs/src/stories/components/step.test.stories.ts +++ b/packages/docs/src/stories/components/step.test.stories.ts @@ -1,5 +1,5 @@ import '../../../../components/src/solid-components'; -import { html } from 'lit-html'; +import { html, render } from 'lit-html'; import { storybookDefaults, storybookHelpers, @@ -79,6 +79,47 @@ export const Orientation = { ] }; +export const Sizes = { + name: 'Sizes', + render: () => { + return generateTemplate({ + axis: { + y: { + type: 'attribute', + name: 'size', + values: ['lg', 'sm', 'xs'].map(size => { + return { title: size, value: size }; + }) + } + }, + args: overrideArgs([ + { + type: 'slot', + name: 'label', + value: `Step name` + } + ]), + options: { + templateRenderer: ({ attributes, slots }) => { + const attrs = Object.entries(attributes) + .map(([attr, value]) => `${attr}='${value}'`) + .join(' '); + + if (attributes.size === 'xs') { + return `
Step name
`; + } + + const slotted = Object.entries(slots ?? {}) + .map(([, slot]) => slot) + .join('\n'); + + return `${slotted}`; + } + } + }); + } +}; + export const HorizontalInline = { name: 'Horizontal Inline', render: () => { @@ -325,6 +366,7 @@ export const Mouseless = { export const Combination = generateScreenshotStory([ Default, Orientation, + Sizes, HorizontalInline, Waiting, Disabled, From 2bf32205719d5132f98165b3677918bae33b2fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 21 Apr 2026 16:33:24 +0100 Subject: [PATCH 05/12] chore: add changeset --- .changeset/thirty-carpets-joke.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/thirty-carpets-joke.md diff --git a/.changeset/thirty-carpets-joke.md b/.changeset/thirty-carpets-joke.md new file mode 100644 index 0000000000..d87471cdfa --- /dev/null +++ b/.changeset/thirty-carpets-joke.md @@ -0,0 +1,6 @@ +--- +'@solid-design-system/components': minor +'@solid-design-system/docs': minor +--- + +Added new `xs` size variant for `sd-step` and `sd-step-group`. This variant is only available with vertical `orientation` and if this attribute is not set, the component will not be rendered. From 36fb7c932f03ed23061349b0a70a10bf212761e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 21 Apr 2026 16:46:42 +0100 Subject: [PATCH 06/12] fix: cleanup --- packages/docs/src/stories/components/step.test.stories.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/stories/components/step.test.stories.ts b/packages/docs/src/stories/components/step.test.stories.ts index 3195c84d7a..9c0921c40a 100644 --- a/packages/docs/src/stories/components/step.test.stories.ts +++ b/packages/docs/src/stories/components/step.test.stories.ts @@ -1,5 +1,5 @@ import '../../../../components/src/solid-components'; -import { html, render } from 'lit-html'; +import { html } from 'lit-html'; import { storybookDefaults, storybookHelpers, From 67e32703585588a8dc59ca912b39b016f57ed5ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 21 Apr 2026 16:49:26 +0100 Subject: [PATCH 07/12] fix: update story to default state --- packages/docs/src/stories/components/step.stories.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/stories/components/step.stories.ts b/packages/docs/src/stories/components/step.stories.ts index 69f129b680..cdd91b4b4c 100644 --- a/packages/docs/src/stories/components/step.stories.ts +++ b/packages/docs/src/stories/components/step.stories.ts @@ -77,7 +77,7 @@ export const Size = { Small - + Extra Small
From d3e82d4015053162e7cf8b9850129bcf78bf297d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Fri, 24 Apr 2026 16:32:36 +0100 Subject: [PATCH 08/12] fix: address design comments --- .../components/src/components/step/step.ts | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/packages/components/src/components/step/step.ts b/packages/components/src/components/step/step.ts index 09b41d72ac..728ac2851b 100644 --- a/packages/components/src/components/step/step.ts +++ b/packages/components/src/components/step/step.ts @@ -157,10 +157,20 @@ export default class SdStep extends SolidElement { 'border sd-step__circle-border-width rounded-full aspect-square circle flex items-center justify-center shrink-0 font-bold select-none', this.disabled ? 'focus-visible:outline-none cursor-not-allowed' - : !this.notInteractive && !this.waiting && this.size !== 'xs' + : !this.notInteractive && !this.waiting ? 'focus-visible:focus-outline hover:cursor-pointer' : '', - this.size === 'xs' ? 'w-2' : this.size === 'sm' ? 'w-8' : this.notInteractive ? 'not-interactive-lg' : 'w-12', + this.notInteractive + ? this.size === 'lg' + ? 'not-interactive-lg' + : this.size === 'xs' + ? 'w-2' + : 'w-12' + : this.size === 'lg' + ? 'w-12' + : this.size === 'xs' + ? 'w-2' + : 'w-8', this.disabled && 'border-neutral-500 text-neutral-500', this.waiting && 'border-neutral-400 text-neutral-700', this.waiting && this.size === 'xs' && 'border-neutral-700', @@ -169,10 +179,12 @@ export default class SdStep extends SolidElement { !this.notInteractive && !this.waiting && 'border-primary hover:bg-primary-100 hover:border-primary-500', - this.notInteractive && 'border-neutral-400', + this.notInteractive && (this.size === 'xs' ? 'border-primary' : 'border-neutral-400'), this.current && 'bg-accent border-none text-white' ); + const listItemClasses = 'flex-row items-stretch h-full w-full overflow-hidden'; + /* eslint-disable lit/no-invalid-html */ /* eslint-disable lit/binding-positions */ return html` @@ -183,7 +195,9 @@ export default class SdStep extends SolidElement { 'flex pt-1', this.orientation === 'horizontal' ? 'flex-col w-full' - : 'flex-row gap-4 items-stretch h-full w-full overflow-hidden', + : this.size === 'xs' + ? `${listItemClasses} gap-2` + : `${listItemClasses} gap-4`, !this.disabled && !this.current && !this.notInteractive && !this.waiting && 'group' )} @focus=${this.handleFocus} @@ -308,7 +322,7 @@ export default class SdStep extends SolidElement { part="text-container" class=${cx( 'wrap-break-word flex flex-col gap-2', - this.size === 'xs' ? '-mt-1' : 'mt-4', + this.size === 'xs' ? '-mt-1 mb-4' : 'mt-4', this.orientation === 'horizontal' ? 'text-center w-40' : 'text-left', this.disabled && 'text-neutral-500', this.waiting && 'text-neutral-700', From 9cec1b00c50771ac49cefcd9cf22ae8e4d9d5b6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Fri, 24 Apr 2026 16:35:02 +0100 Subject: [PATCH 09/12] feat: add step group xs template --- .../stories/templates/step-group.stories.ts | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/packages/docs/src/stories/templates/step-group.stories.ts b/packages/docs/src/stories/templates/step-group.stories.ts index a4828a9ce0..845f1fad47 100644 --- a/packages/docs/src/stories/templates/step-group.stories.ts +++ b/packages/docs/src/stories/templates/step-group.stories.ts @@ -124,3 +124,43 @@ export const NonInteractiveStepGroupWithIcon = { ` }; + +export const StepGroupForExtraSmallVariant = { + name: 'Step Group for Extra Small Variant', + render: () => html` +
+ + +

Log in to your bank's online banking using your access credentials.

+
+ + +

+ Enter your personal data along with your tax identification number in the online banking portal or the + Banking App. +

+
+ + +

+ The product finder helps you find an investment solution that matches your preferences. Immediately after + making your selection, you can configure your first transaction. +

+
+ + +

+ Check your entered data, confirm the legal documents, and approve everything using the VR SecureGo plus app. +

+
+ + +

+ Identify yourself via Video-Ident or the eID service. After successful completion, you will receive a + confirmation and access to your securities account (depot). +

+
+
+
+ ` +}; From 80ffb1e91a830a98a2504f15e7329e71c202b833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Mon, 27 Apr 2026 12:10:17 +0100 Subject: [PATCH 10/12] chore: add new border color neutral-700 --- .../output/figma-variables.json | 68 +- .../src/figma-variables/variableTokens.json | 1883 ++++++++--------- packages/tokens/themes/kid/kid.css | 1 + packages/tokens/themes/tailwind.css | 1 + packages/tokens/themes/ui-dark/ui-dark.css | 1 + packages/tokens/themes/ui-light/ui-light.css | 1 + packages/tokens/themes/vb/vb.css | 1 + 7 files changed, 942 insertions(+), 1014 deletions(-) diff --git a/packages/tokens/src/figma-variables/output/figma-variables.json b/packages/tokens/src/figma-variables/output/figma-variables.json index ec39f57240..fe16880dc0 100644 --- a/packages/tokens/src/figma-variables/output/figma-variables.json +++ b/packages/tokens/src/figma-variables/output/figma-variables.json @@ -2445,6 +2445,11 @@ "type": "color", "value": "{ui-light.utilities.color.neutral.600}" }, + "700": { + "description": "Used for step group xs", + "type": "color", + "value": "{ui-light.utilities.color.neutral.700}" + }, "800": { "description": "Used for form fields, switch, radio, checkbox", "type": "color", @@ -4008,18 +4013,6 @@ } }, "color": { - "background": { - "_transparent": { - "white|80": { - "type": "color", - "value": "rgba(255, 255, 255, 0.80)" - }, - "primary|80": { - "type": "color", - "value": "rgba(0, 53, 142, 0.80)" - } - } - }, "border": { "white": { "default": { @@ -5826,6 +5819,11 @@ "type": "color", "value": "{ui-dark.utilities.color.neutral.600}" }, + "700": { + "description": "Used for step group xs", + "type": "color", + "value": "{ui-dark.utilities.color.primary.400}" + }, "800": { "description": "Used for form fields, switch, radio, checkbox", "type": "color", @@ -7389,18 +7387,6 @@ } }, "color": { - "background": { - "_transparent": { - "white|80": { - "type": "color", - "value": "rgba(0, 53, 142, 0.80)" - }, - "primary|80": { - "type": "color", - "value": "rgba(0, 53, 142, 0.80)" - } - } - }, "border": { "white": { "default": { @@ -9207,6 +9193,11 @@ "type": "color", "value": "{vb.utilities.color.neutral.600}" }, + "700": { + "description": "Used for step group xs", + "type": "color", + "value": "{vb.utilities.color.neutral.700}" + }, "800": { "description": "Used for form fields, switch, radio, checkbox", "type": "color", @@ -10770,18 +10761,6 @@ } }, "color": { - "background": { - "_transparent": { - "white|80": { - "type": "color", - "value": "rgba(255, 255, 255, 0.00)" - }, - "primary|80": { - "type": "color", - "value": "rgba(255, 255, 255, 0.00)" - } - } - }, "border": { "white": { "default": { @@ -12588,6 +12567,11 @@ "type": "color", "value": "{kid.utilities.color.neutral.600}" }, + "700": { + "description": "Used for step group xs", + "type": "color", + "value": "{kid.utilities.color.neutral.700}" + }, "800": { "description": "Used for form fields, switch, radio, checkbox", "type": "color", @@ -14151,18 +14135,6 @@ } }, "color": { - "background": { - "_transparent": { - "white|80": { - "type": "color", - "value": "rgba(255, 255, 255, 0.00)" - }, - "primary|80": { - "type": "color", - "value": "rgba(255, 255, 255, 0.00)" - } - } - }, "border": { "white": { "default": { diff --git a/packages/tokens/src/figma-variables/variableTokens.json b/packages/tokens/src/figma-variables/variableTokens.json index b5b80e8d47..536af8d80d 100644 --- a/packages/tokens/src/figma-variables/variableTokens.json +++ b/packages/tokens/src/figma-variables/variableTokens.json @@ -5,7 +5,7 @@ "hiddenFromPublishing": false, "id": "VariableCollectionId:42952:95", "isExtension": false, - "key": "48bb21caa4a10703bdc5b149fd9be658bb426da7", + "key": "7e3d7e1162a6e6b8cb0c75eb6e6a75558c7fa5c3", "modes": [ { "modeId": "43138:0", @@ -377,7 +377,7 @@ "hiddenFromPublishing": false, "id": "VariableCollectionId:43174:55999", "isExtension": false, - "key": "7ef31232d8e9abe898b6626cc84a4bc633788c04", + "key": "afa5ddd2c41d917d64144628d52a58a502b0a57b", "modes": [ { "modeId": "43174:13", @@ -463,8 +463,8 @@ "VariableID:43979:261", "VariableID:43979:262", "VariableID:43979:263", - "VariableID:43979:299", "VariableID:43979:264", + "VariableID:43979:299", "VariableID:43979:300", "VariableID:43979:265", "VariableID:43979:301", @@ -488,11 +488,9 @@ "VariableID:43373:35312", "VariableID:43373:35313", "VariableID:43373:35314", - "VariableID:60954:2037", "VariableID:43979:305", "VariableID:43979:306", "VariableID:43979:307", - "VariableID:60954:2038", "VariableID:43979:308", "VariableID:43979:309", "VariableID:43979:310", @@ -557,6 +555,7 @@ "VariableID:43979:295", "VariableID:53463:2694", "VariableID:43979:296", + "VariableID:62435:796", "VariableID:43979:255", "VariableID:43979:293", "VariableID:43979:256", @@ -936,7 +935,7 @@ "description": "low value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:171", - "key": "dab6a6e1b4aa050304ef678a31086f3b1e7fe7ac", + "key": "31a28786f4f603caed15957653c7caa6773a3fcd", "name": "cerulean", "remote": false, "resolvedType": "COLOR", @@ -956,7 +955,7 @@ "description": "moderate value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:172", - "key": "98cb6ea86e13d24b0058ac30772a691dcfb9b6c0", + "key": "cb9f4a316184374d81dab14f3c1f558914137769", "name": "emerald", "remote": false, "resolvedType": "COLOR", @@ -976,7 +975,7 @@ "description": "increased value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:173", - "key": "368f7bb626ffc6c4811adde0eb5e949a7c9c12d9", + "key": "df1760e0bd3afbfacac02f7a513e37d43ac33ba6", "name": "lemon", "remote": false, "resolvedType": "COLOR", @@ -996,7 +995,7 @@ "description": "high value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:174", - "key": "753da39c953b647b674309c7f4d5eba55e6d1abe", + "key": "48ccf2fedafb66169daec96f29263bad33338154", "name": "orange", "remote": false, "resolvedType": "COLOR", @@ -1016,7 +1015,7 @@ "description": "very high value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:175", - "key": "82bdc55903421fbb863d17acb3535184122ee091", + "key": "305a1e07b39de4412090ea32c673249d5ce5a868", "name": "brightred", "remote": false, "resolvedType": "COLOR", @@ -1036,7 +1035,7 @@ "description": "white", "hiddenFromPublishing": false, "id": "VariableID:42952:176", - "key": "7d0fc0ff842aa1255656a663b6a73c1c0b112703", + "key": "72b0f3ace0239eed16b431103d339d2fce26bdce", "name": "white", "remote": false, "resolvedType": "COLOR", @@ -1056,7 +1055,7 @@ "description": "black", "hiddenFromPublishing": false, "id": "VariableID:42952:177", - "key": "f525237ae6fefab6fe6eab50020147f1803f946f", + "key": "a42c89c0dd4704f0649eaa4bf162e9af76071951", "name": "black", "remote": false, "resolvedType": "COLOR", @@ -1076,7 +1075,7 @@ "description": "\b0px", "hiddenFromPublishing": false, "id": "VariableID:43138:1914", - "key": "823affe124bddf3ab50ffb22a6b823e62cdf5a01", + "key": "3216e2fdced75f46e21b4e6b15b3dd98ab810a18", "name": "sizing", "remote": false, "resolvedType": "FLOAT", @@ -1091,7 +1090,7 @@ "description": "4px", "hiddenFromPublishing": false, "id": "VariableID:43138:1915", - "key": "c74ec160f163a7e268f6532f7d340c7b04eaf593", + "key": "04699b287631e8cd4c72c6e9d22a2a68eed09eb3", "name": "1", "remote": false, "resolvedType": "FLOAT", @@ -1106,7 +1105,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:43138:1916", - "key": "847ed61e47adbf0da3187fa70fa0907bd6c05f00", + "key": "f6a385bb9d08e07d785188d15e1fc24ac9fb3429", "name": "2", "remote": false, "resolvedType": "FLOAT", @@ -1121,7 +1120,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:43138:1917", - "key": "2ad12f0578d528e67e993466ddebf095db48d0bb", + "key": "16a22fda2e4d1cf3543b87d19cfc6282ccfa90a1", "name": "3", "remote": false, "resolvedType": "FLOAT", @@ -1136,7 +1135,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:43138:1918", - "key": "d6e3b2a0ecdc462ad2233b63efcac801b056da51", + "key": "69fe6016c41f851e24a17c73951d5c3b1fb407de", "name": "4", "remote": false, "resolvedType": "FLOAT", @@ -1151,7 +1150,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:43138:1919", - "key": "fb5ecb427b8fe00b88f944aa7cc26b9a737a2b93", + "key": "1b59e2d0d8e5bdbaa1a47a19f1c63ee5b334aea6", "name": "5", "remote": false, "resolvedType": "FLOAT", @@ -1166,7 +1165,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:43138:1920", - "key": "0ba3c1d3797bac3556aeafd255e14ea16a715311", + "key": "14ac477a0ebbd04e95e34ce4b3662fcf16806fce", "name": "6", "remote": false, "resolvedType": "FLOAT", @@ -1181,7 +1180,7 @@ "description": "28px", "hiddenFromPublishing": false, "id": "VariableID:43138:1921", - "key": "43ea3edcdf3bb07e17f5ceb37183ac600b00ab58", + "key": "faf124b319ba7aecb47a23cec4fa1c9902159ddd", "name": "7", "remote": false, "resolvedType": "FLOAT", @@ -1196,7 +1195,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:43138:1922", - "key": "9bf923516eb20cb57ef9c7cb6bd831cc397b9361", + "key": "36d7ccbe70b870672f451ec382d6550c6d9e170c", "name": "8", "remote": false, "resolvedType": "FLOAT", @@ -1211,7 +1210,7 @@ "description": "36px", "hiddenFromPublishing": false, "id": "VariableID:43138:1923", - "key": "5fc2ccfb98d797f9c09f89d4fa280ed77cc8f578", + "key": "95e07e8e7769b7a936c39341ac52a6ea1b94e44a", "name": "9", "remote": false, "resolvedType": "FLOAT", @@ -1226,7 +1225,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:43138:1924", - "key": "07f1a186bc8dcd052232c1b32032da482af0c66d", + "key": "7ed1d4e4a1507a78f87ae384508bcc522d9ee5b6", "name": "10", "remote": false, "resolvedType": "FLOAT", @@ -1241,7 +1240,7 @@ "description": "44px", "hiddenFromPublishing": false, "id": "VariableID:43138:1925", - "key": "82bf3a9ea2173c0427aafbeadad5196b09e5b00f", + "key": "5025ed9eb182526f391a34e12eb30c0610d09032", "name": "11", "remote": false, "resolvedType": "FLOAT", @@ -1256,7 +1255,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:43138:1926", - "key": "e0bff632c0cb7bc941a1bfd14c1c4f289c0505d8", + "key": "710e17843964f39ae16a2431d70637bb6c5ec98b", "name": "12", "remote": false, "resolvedType": "FLOAT", @@ -1271,7 +1270,7 @@ "description": "56px", "hiddenFromPublishing": false, "id": "VariableID:43138:1927", - "key": "00eeb79f4b59ea2224e525d87b4e9aee8cc25eb8", + "key": "e3dcf8a58456aaf283bf9b18e889a1faf8a71058", "name": "14", "remote": false, "resolvedType": "FLOAT", @@ -1286,7 +1285,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:43138:1928", - "key": "b1c42128b465288bbc5bf60debe0a9fa559e9670", + "key": "45d03843345ca7171840c71c6fb10d42eefed910", "name": "16", "remote": false, "resolvedType": "FLOAT", @@ -1301,7 +1300,7 @@ "description": "80px", "hiddenFromPublishing": false, "id": "VariableID:43138:1929", - "key": "931eea7eea55bf4e795525cf12658e26f68c12d4", + "key": "39f81189d44e8ce2d1a30914d1e9c997831a4180", "name": "20", "remote": false, "resolvedType": "FLOAT", @@ -1316,7 +1315,7 @@ "description": "96px", "hiddenFromPublishing": false, "id": "VariableID:43138:1930", - "key": "ecdeb3d7f17a7f277d51d9ac4521b778c26f7c3a", + "key": "cfa91e5609d74bc9b47c58a9d99143017c129d39", "name": "24", "remote": false, "resolvedType": "FLOAT", @@ -1331,7 +1330,7 @@ "description": "112px", "hiddenFromPublishing": false, "id": "VariableID:43138:1931", - "key": "50e9407c0e84a3eacfb9fb00e0b7f5b2df007833", + "key": "b2cd5102aec8a300ad436cfbe871545275d8ee38", "name": "28", "remote": false, "resolvedType": "FLOAT", @@ -1346,7 +1345,7 @@ "description": "128px", "hiddenFromPublishing": false, "id": "VariableID:43138:1932", - "key": "ef99cebc7b4af4d7d79728251f308f7366d46ba2", + "key": "ac168d5031b411a9acc9ed1e69053c52e0670c19", "name": "32", "remote": false, "resolvedType": "FLOAT", @@ -1361,7 +1360,7 @@ "description": "144px", "hiddenFromPublishing": false, "id": "VariableID:43138:1933", - "key": "158e8291d776fc106af574c3ba7ad47eb93f9867", + "key": "6ea4332fa0bc6180f6605121cd08e3cab3519394", "name": "36", "remote": false, "resolvedType": "FLOAT", @@ -1376,7 +1375,7 @@ "description": "160px", "hiddenFromPublishing": false, "id": "VariableID:43138:1934", - "key": "f30c7c880bd9ce89b2dbfeb429c79dc232e750a2", + "key": "51638d227317f80cf9f818675e6cc78d372b1918", "name": "40", "remote": false, "resolvedType": "FLOAT", @@ -1391,7 +1390,7 @@ "description": "176px", "hiddenFromPublishing": false, "id": "VariableID:43138:1935", - "key": "5a16e3383d6aaa72b41478b2baeaee604c9938e8", + "key": "2a157b3d8dab7bb2168ca7d476670e554895d47c", "name": "44", "remote": false, "resolvedType": "FLOAT", @@ -1406,7 +1405,7 @@ "description": "208px", "hiddenFromPublishing": false, "id": "VariableID:43138:1936", - "key": "c78874de408428822424fe1b38dc8093c91207c0", + "key": "5ab812f466d8c2d8c00aa1848ee2317e9093addf", "name": "52", "remote": false, "resolvedType": "FLOAT", @@ -1421,7 +1420,7 @@ "description": "224px", "hiddenFromPublishing": false, "id": "VariableID:43138:1937", - "key": "d34afb08aa085101ece373bf8ad5059cd8733847", + "key": "409ae72f5e358ed486882dbc119c9a8ed95919fb", "name": "56", "remote": false, "resolvedType": "FLOAT", @@ -1436,7 +1435,7 @@ "description": "256px", "hiddenFromPublishing": false, "id": "VariableID:43138:1938", - "key": "14def7a72bb80dc52d54b6c0a5b9fbc55acce36b", + "key": "abe04ab1fe705bcf6097d0445ab3f58bb201ca1e", "name": "64", "remote": false, "resolvedType": "FLOAT", @@ -1451,7 +1450,7 @@ "description": "288px", "hiddenFromPublishing": false, "id": "VariableID:43138:1939", - "key": "cac4d7ddd4e9ee11053790f475a95497b9c2838b", + "key": "d274c127e3eeb20dc82e23e71e5057e39bc63944", "name": "72", "remote": false, "resolvedType": "FLOAT", @@ -1466,7 +1465,7 @@ "description": "320px", "hiddenFromPublishing": false, "id": "VariableID:43138:1940", - "key": "dde55c7a65480e7eb6bcfd049f250f408f30c468", + "key": "21c0d4409ccdf3a63eb7ba7788e128b8a4009845", "name": "80", "remote": false, "resolvedType": "FLOAT", @@ -1481,7 +1480,7 @@ "description": "384px", "hiddenFromPublishing": false, "id": "VariableID:43138:1941", - "key": "343bb53c9d7cdf821cb495dc9c8095c9c2486172", + "key": "0b6392ce86b14d2f654d435b27a82c9acb0ce95b", "name": "96", "remote": false, "resolvedType": "FLOAT", @@ -1496,7 +1495,7 @@ "description": "1px\b", "hiddenFromPublishing": false, "id": "VariableID:43138:1942", - "key": "4f37b63048259fdde99bda2bf0d1caced61d2d35", + "key": "cdd0687109356e06e0d5d2cbe80357b93b0226f3", "name": "px", "remote": false, "resolvedType": "FLOAT", @@ -1511,7 +1510,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:43138:1943", - "key": "6701d73f419c3be6e4b1bebc83852f02bae4f44b", + "key": "1512c812f193bdf3075c7e6a2ef2e279fd7925ab", "name": "0,5", "remote": false, "resolvedType": "FLOAT", @@ -1526,7 +1525,7 @@ "description": "\b6px", "hiddenFromPublishing": false, "id": "VariableID:43138:1944", - "key": "fed198a30f71247e3685c3af722e899df8f24a69", + "key": "6c2146880cd856b63dca26ccc5b40484fc281d49", "name": "1,5", "remote": false, "resolvedType": "FLOAT", @@ -1541,7 +1540,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:43138:1945", - "key": "f7501ae96e258bd606de5cb9e12af4c516e0e2d3", + "key": "daf049ad4d6c87138eec49bff42264662c270751", "name": "3,5", "remote": false, "resolvedType": "FLOAT", @@ -1556,7 +1555,7 @@ "description": "10px", "hiddenFromPublishing": false, "id": "VariableID:43138:1946", - "key": "8dcc25489ddb112f7f9ab1a17831c5aa9d20479d", + "key": "f6e71f47dbaee6354b6a506ccadab9f9b2e47d8a", "name": "2,5", "remote": false, "resolvedType": "FLOAT", @@ -1571,7 +1570,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1947", - "key": "ade1feb3a9823d1320adbabcd0e3b28e0bc37459", + "key": "7b90939a3491af86a77fb1610f9e155868b039e5", "name": "opacity-0", "remote": false, "resolvedType": "FLOAT", @@ -1586,7 +1585,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1948", - "key": "369ef32ce0337338a928c5740a817f901e8a7df1", + "key": "ebf755ab9b291ea74e05aeebbba2d11fa5ec3101", "name": "opacity-5", "remote": false, "resolvedType": "FLOAT", @@ -1601,7 +1600,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1949", - "key": "efb6fc0d58b8794403254bcb987cb802ddd1ac8f", + "key": "0e1b4bf54f46096a4e6dd2e638375bf0cc17fa76", "name": "opacity-10", "remote": false, "resolvedType": "FLOAT", @@ -1616,7 +1615,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1950", - "key": "8c042926e4051c0c3d119122a154a36e57ca53c8", + "key": "058cc2fae507a04cb6402d02479270124fa68747", "name": "opacity-20", "remote": false, "resolvedType": "FLOAT", @@ -1631,7 +1630,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1951", - "key": "fa0a58258e6872db1127bdeca4540b78a2542163", + "key": "4304162272093a0e444f70c75ea185f9f7be6c53", "name": "opacity-30", "remote": false, "resolvedType": "FLOAT", @@ -1646,7 +1645,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1952", - "key": "ba52f52ad34e9b9d5e63868fa377c0c836898003", + "key": "9c25364068160a56e311e3a7a84bc565c2741fb0", "name": "opacity-50", "remote": false, "resolvedType": "FLOAT", @@ -1661,7 +1660,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1953", - "key": "42a4df837b9fcf571e58b804a4ec7079e36993d4", + "key": "ebc7d9f965590380cab788768ffa6e6b5f914fc3", "name": "opacity-55", "remote": false, "resolvedType": "FLOAT", @@ -1676,7 +1675,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1954", - "key": "b55a760e488e6bd44ff839e4830070b0fe6db071", + "key": "5f2a27f5ce55a1c3003367458ee54c74d2348ec1", "name": "opacity-60", "remote": false, "resolvedType": "FLOAT", @@ -1691,7 +1690,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1955", - "key": "bcfb25fe8b0c723fa7c79aa4bfbd9983c18dfbd9", + "key": "c2172b0685f6c2a5b54cd285761594660bda0280", "name": "opacity-70", "remote": false, "resolvedType": "FLOAT", @@ -1706,7 +1705,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1956", - "key": "aa33739ca5b3a01a6d723f7184cb8ad8a2273fb3", + "key": "f1e01f15e3b8e8cdca86818bcb325d8eca2b8d40", "name": "opacity-75", "remote": false, "resolvedType": "FLOAT", @@ -1721,7 +1720,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1957", - "key": "7f424616e48d5c81228ff7570eecab4d465aa159", + "key": "797ccf6a63a5a2988e840483f4944077728f08c3", "name": "opacity-80", "remote": false, "resolvedType": "FLOAT", @@ -1736,7 +1735,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1958", - "key": "4f5d0fa982494556994cf92d5f2a91e584c9c557", + "key": "abc72d5e4baad7733042e9bddff24d2534f2246e", "name": "opacity-85", "remote": false, "resolvedType": "FLOAT", @@ -1751,7 +1750,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1959", - "key": "41308ca4011b3551fd78cb3d87abaf93c57f28ae", + "key": "a0b57a5c5e2f574583c0ac5733f217c84552feeb", "name": "opacity-90", "remote": false, "resolvedType": "FLOAT", @@ -1766,7 +1765,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1960", - "key": "8cffbd2706ba8d1bd6384ce30765e0b9635643e7", + "key": "106d0c1ea3303ff9dd5e13002b7d85b46f53067c", "name": "opacity-1", "remote": false, "resolvedType": "FLOAT", @@ -1781,7 +1780,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43174:55601", - "key": "2fb659c9ac9a1e4069555c48a5393e9bd242cbff", + "key": "65e7cbb526c01ca9dbcfab8b607157ed4fbb73f3", "name": "opacity-2", "remote": false, "resolvedType": "FLOAT", @@ -1796,7 +1795,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:43343:15190", - "key": "0977d93d3b3e3c473ac263a58bc60e146289e879", + "key": "b6a598c20934f3910dbabfd30926ddb2807d8fb1", "name": "text-sm", "remote": false, "resolvedType": "FLOAT", @@ -1811,7 +1810,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:43343:15191", - "key": "e10fa44176cb46bf315cc7fcc86b1553f2fa46ce", + "key": "8eb0c982a7ffbafb4f25ed769b04e336d14bb6a9", "name": "text-base", "remote": false, "resolvedType": "FLOAT", @@ -1826,7 +1825,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:43343:15192", - "key": "bc029bae7fcac8bd62534734d20449c4a8cb861e", + "key": "5f7c63193980b6ceb306bb8e0af5b804dcf0c2a0", "name": "text-lg", "remote": false, "resolvedType": "FLOAT", @@ -1841,7 +1840,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:43343:15193", - "key": "4115ec8aefb138d2181a308154bc5e1f9a057734", + "key": "0a145478e7ea417f0611f2eb900ad948491dfed1", "name": "text-xl", "remote": false, "resolvedType": "FLOAT", @@ -1856,7 +1855,7 @@ "description": "28px", "hiddenFromPublishing": false, "id": "VariableID:43343:15194", - "key": "e1ee5064705832b21cedd2f99d6e139c2f8520fc", + "key": "44886f2c15b496dac1c8363ffba80ce652f5daf0", "name": "text-2xl", "remote": false, "resolvedType": "FLOAT", @@ -1871,7 +1870,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:43343:15195", - "key": "2fd9755ac787681f6c4eb9a548a58f586e180aca", + "key": "dd9d8dce8b2a6564e81e24c4196b50ae85b17161", "name": "text-3xl", "remote": false, "resolvedType": "FLOAT", @@ -1886,7 +1885,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:43343:15196", - "key": "43fb2fceb406103076931ad70d80924296701828", + "key": "8c00cdfeb30be519b27909768191b8abd60a4a5c", "name": "text-4xl", "remote": false, "resolvedType": "FLOAT", @@ -1901,7 +1900,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15197", - "key": "2988fdc6408e1affea3444d5f62fef5d610ec903", + "key": "6534e99dcecacba2260ae855cb409fd7d13cee6b", "name": "border-0", "remote": false, "resolvedType": "FLOAT", @@ -1916,7 +1915,7 @@ "description": "Default border width", "hiddenFromPublishing": false, "id": "VariableID:43343:15198", - "key": "2f276e59e755c0ee0dff69511d4b4af377634345", + "key": "9ae88ef31c3e733b457190acc71f7639eff571d9", "name": "border", "remote": false, "resolvedType": "FLOAT", @@ -1931,7 +1930,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15199", - "key": "bb52d3fc593ef1eab8474e6d8ddf5bf754fcb480", + "key": "6cc4ff5264ac08060383eede97747fbb699fccef", "name": "border-2", "remote": false, "resolvedType": "FLOAT", @@ -1946,7 +1945,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15200", - "key": "242687a0de38c3ccd89a9fa2abc9f9c6bc699853", + "key": "c29aff98e931c258749a0a50144542de583cd52d", "name": "border-4", "remote": false, "resolvedType": "FLOAT", @@ -1961,7 +1960,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15201", - "key": "d6c2432b31ed585ffd487aef4c38792a745f3f50", + "key": "4c6e3af3083fbbf1c813185bec1c6626d44a6210", "name": "border-6", "remote": false, "resolvedType": "FLOAT", @@ -1976,7 +1975,7 @@ "description": "For pill buttons / shapes", "hiddenFromPublishing": false, "id": "VariableID:43343:15202", - "key": "bbe45ec82e22732354b84ab1741cdf21e67db526", + "key": "54b7042191aa1f7591c227e75ff4ce3b3b99ee64", "name": "rounded-full", "remote": false, "resolvedType": "FLOAT", @@ -1991,7 +1990,7 @@ "description": "For pill buttons / shapes", "hiddenFromPublishing": false, "id": "VariableID:43343:15203", - "key": "e59f7920da969eefceec566916448179446a6091", + "key": "227505a00e2a13989915d7ecc6980d4787fbafff", "name": "rounded", "remote": false, "resolvedType": "FLOAT", @@ -2006,7 +2005,7 @@ "description": "No rounding", "hiddenFromPublishing": false, "id": "VariableID:43343:15204", - "key": "ce1ae56c4b4a72249190710d0a58d36d94480930", + "key": "6775efb013bab52703100ab848d4e9597be75869", "name": "rounded-none", "remote": false, "resolvedType": "FLOAT", @@ -2021,7 +2020,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:43343:15205", - "key": "bda76dc556307bc6de5f37054d1158510d78b100", + "key": "5415e5ae980706b99ad30d747f3983b16ac16daf", "name": "rounded-sm", "remote": false, "resolvedType": "FLOAT", @@ -2036,7 +2035,7 @@ "description": "6px", "hiddenFromPublishing": false, "id": "VariableID:43343:15206", - "key": "b1bf0095ca5be364c6f9cbfb094978882d8b9ef3", + "key": "c84bbe1aabc31bf4250bc905e2b99d1e1e80ba64", "name": "rounded-md", "remote": false, "resolvedType": "FLOAT", @@ -2051,7 +2050,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:43343:15207", - "key": "d99669524b858f55f033176195dd1774e9a44fc4", + "key": "9fe30294095750b45c0c54149a2348047d80d286", "name": "rounded-\blg", "remote": false, "resolvedType": "FLOAT", @@ -2066,7 +2065,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:43343:15208", - "key": "b2928f099c6357afff3156ea90df4a11955d2ec9", + "key": "55bbe6014384b3a5a080cdf652dfe780e6cf1305", "name": "rounded-xl", "remote": false, "resolvedType": "FLOAT", @@ -2081,7 +2080,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15209", - "key": "8276712f091be5fa2bde77b3635a26c04a2aa05f", + "key": "04304b1da58f06e33888fb70fad7f1eab5fcba10", "name": "font-normal", "remote": false, "resolvedType": "STRING", @@ -2096,7 +2095,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15210", - "key": "07234b01c34641854f2c4f698415873d8a302d4b", + "key": "3597e93590b1f68561f766abe6837dbf59056d14", "name": "font-bold", "remote": false, "resolvedType": "STRING", @@ -2112,7 +2111,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:16783", - "key": "11ae0a8ed74efb08580da4f8ada4483ed92e299d", + "key": "8a82d885476e2cbde7b3f64aaafde2725a346a25", "name": "sd-button/border-width", "remote": false, "resolvedType": "FLOAT", @@ -2144,7 +2143,7 @@ "description": "Used for text 3xl, mobile text 4xl (size: 32, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21080", - "key": "c2f14ea1700feb443fa7be3a9a92885fda51b973", + "key": "443a9aa8d05a036cb52a61e81ea4d504865679dc", "name": "leading-9,5", "remote": false, "resolvedType": "FLOAT", @@ -2159,7 +2158,7 @@ "description": "Used for mobile text lg (size: 20, line-height: 150%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21081", - "key": "b2dc56a73ca1aa96ff39c63864fc92b8180278be", + "key": "0149ae570463ed9718119164c8878737beff5086", "name": "leading-8", "remote": false, "resolvedType": "FLOAT", @@ -2174,7 +2173,7 @@ "description": "Used for text base (size: 16, line-height: 150%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21082", - "key": "db26ea351de57200282303dc79528ba0bc402e5e", + "key": "20c32e94e53b3f4f7a2f390d99797e18a494bd08", "name": "leading-9", "remote": false, "resolvedType": "FLOAT", @@ -2189,7 +2188,7 @@ "description": "Used for text 3xl (size: 32, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21083", - "key": "67f3fa0943fd05ceea7f2aa8454c5333c5ddf120", + "key": "903e3581c536b181fe51ddcba6c34174403e2373", "name": "leading-12", "remote": false, "resolvedType": "FLOAT", @@ -2204,7 +2203,7 @@ "description": "Used for text xl (size: 24, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21084", - "key": "713782b16ddf64e85cbc7f6d8e7a75eec07e3cda", + "key": "0eb3e6b197e8edbb8b4d7849a4cd9b5ebecdc0ad", "name": "leading-7", "remote": false, "resolvedType": "FLOAT", @@ -2219,7 +2218,7 @@ "description": "Used for text base (size: 16, line-height: 150%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21085", - "key": "7fa6395182b6b0d32606c3a8e1766590d7d67f6b", + "key": "869ee3e5e24e053d94816c381acab0dfd99b8fde", "name": "leading-6", "remote": false, "resolvedType": "FLOAT", @@ -2234,7 +2233,7 @@ "description": "Used for text sm (size: 14, line-height: 150%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21086", - "key": "4004ea7120264475fe5e96002fdd17a321f87669", + "key": "e2cba5bd5f69b406346c7023f367091e3fadb8b8", "name": "leading-5", "remote": false, "resolvedType": "FLOAT", @@ -2249,7 +2248,7 @@ "description": "Used for text base compact (size: 16, line-height: 100%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21090", - "key": "3d381b79c90c31fd4db4f87f2a45cf32eff03b5f", + "key": "8233d7aa904dafb6cd5c14b22ef329aba8e8237a", "name": "leading-4", "remote": false, "resolvedType": "FLOAT", @@ -2264,7 +2263,7 @@ "description": "Used for text xl, mobile text 3xl (size: 28, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21094", - "key": "c96b9c3aeddba4ca8241362cdda5bff0ee73fade", + "key": "3f51fa1b629a73c71e89ca3a94c4a877b81fdba7", "name": "leading-8,5", "remote": false, "resolvedType": "FLOAT", @@ -2279,7 +2278,7 @@ "description": "Used for text sm compact (size: 14, line-height: 100%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21095", - "key": "badb0d7d2550d6af733fbca1269fc4600393a8e8", + "key": "877dfa15d7dd68288cab492a17575cdeb2bf6cd9", "name": "leading-3", "remote": false, "resolvedType": "FLOAT", @@ -2294,7 +2293,7 @@ "description": "Used for text 4xl (size: 40, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21096", - "key": "e72f977dcbe9c31e6fe34ebea2c8c7db2d94ef39", + "key": "c66b5c52ae606c66c3b570101fb3e30ed28267f8", "name": "leading-15", "remote": false, "resolvedType": "FLOAT", @@ -2309,7 +2308,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43372:21097", - "key": "be922632cb37f7c97fdd31831f206e5154bff478", + "key": "b71da6e5af9861a8cb02fabe7928a516c1d4b75d", "name": "letter-spacing-none", "remote": false, "resolvedType": "FLOAT", @@ -2325,7 +2324,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43372:21101", - "key": "b3c2459d45726f7f77999e91b4b417f721b1cd7b", + "key": "5589c2e90102cce9643ebf8158e51090326b7a13", "name": "sd-button/letter-spacing", "remote": false, "resolvedType": "FLOAT", @@ -2358,7 +2357,7 @@ "description": "Inverted background color (light mode)\nUsed for button", "hiddenFromPublishing": false, "id": "VariableID:43373:35292", - "key": "d2fabbb103bf2fe101c6b5d3b1c7e78c4851e961", + "key": "e607bd4835efae093a68c3e4b6d131766f04997d", "name": "background/primary", "remote": false, "resolvedType": "COLOR", @@ -2390,7 +2389,7 @@ "description": "Default background color. Used for sd-chip, sd-flag, sd-container", "hiddenFromPublishing": false, "id": "VariableID:43373:35293", - "key": "b9ab9686cc49b25f369caf906c79ba4331c727fe", + "key": "626ac213e1fd4e4901a5d1f8d79d668c6c820e79", "name": "utilities/color/background/white/default", "remote": false, "resolvedType": "COLOR", @@ -2422,7 +2421,7 @@ "description": "Form field read only. Used for sd-container", "hiddenFromPublishing": false, "id": "VariableID:43373:35301", - "key": "3392ee628eee04df8fe51728c1aa7a268c1fcba8", + "key": "6b04cca2d732fca28cd547b8424944bd34c3b372", "name": "utilities/color/background/neutral/100", "remote": false, "resolvedType": "COLOR", @@ -2454,7 +2453,7 @@ "description": "Used for sd-flag", "hiddenFromPublishing": false, "id": "VariableID:43373:35302", - "key": "4a710d378b5935d655af5f1f491ef1241f6c1a9b", + "key": "5c796f360506dc3462d2743c7898a44f6253ad4b", "name": "utilities/color/background/neutral/200", "remote": false, "resolvedType": "COLOR", @@ -2486,7 +2485,7 @@ "description": "Used for sd-flag ", "hiddenFromPublishing": false, "id": "VariableID:43373:35303", - "key": "78df114948da75ac36565a4cd874f3bf607c2ff4", + "key": "95055cece97b6e1cc5bc3516636377be0ead43ca", "name": "utilities/color/background/neutral/300", "remote": false, "resolvedType": "COLOR", @@ -2518,7 +2517,7 @@ "description": "Used for sd-flag ", "hiddenFromPublishing": false, "id": "VariableID:43373:35304", - "key": "8a0ae2bfc1bd10e64f7e791c09a7d097fa099505", + "key": "b411507c4eff86348db226521b242f245d13b47a", "name": "utilities/color/background/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -2550,7 +2549,7 @@ "description": "Used for disabled state ", "hiddenFromPublishing": false, "id": "VariableID:43373:35305", - "key": "0ad4f0bb3298050a488615db9058c0fb31c4f901", + "key": "a74c6363e86a013f8e8263c2e22152c45c531f30", "name": "utilities/color/background/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -2582,7 +2581,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43373:35306", - "key": "005313ca9a659878ef7f222bc507c0230e521344", + "key": "2431a69febb9831724e093ca1cc8d70a04a80adf", "name": "utilities/color/background/success/default", "remote": false, "resolvedType": "COLOR", @@ -2614,7 +2613,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43373:35307", - "key": "39d7a4d735adebad8dec149705e8b41f83db0129", + "key": "bd56beadff129eb17715c293f10da6979ddf7077", "name": "utilities/color/background/error/default", "remote": false, "resolvedType": "COLOR", @@ -2646,7 +2645,7 @@ "description": "Used for hover interaction invalid form elements", "hiddenFromPublishing": false, "id": "VariableID:43373:35308", - "key": "3e7812a14d72d5d3743e4167095a0fe134c00923", + "key": "43b52d70f4ca26c76350d11d12317f074e6919c9", "name": "utilities/color/background/error/400", "remote": false, "resolvedType": "COLOR", @@ -2678,7 +2677,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35309", - "key": "4c14e288821674dcc60879562ec7bbd309a768c0", + "key": "7799cab9b7babd36c6f88ad82d109969e0f6b273", "name": "utilities/color/background/_transparent/primary-100|80", "remote": false, "resolvedType": "COLOR", @@ -2718,7 +2717,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35310", - "key": "10021cdf677120ec8afbec18662d34e81d705cbd", + "key": "aed191bb6eb4b221cc16ee481c638cf8cce5fc00", "name": "utilities/color/background/_transparent/primary-100|90", "remote": false, "resolvedType": "COLOR", @@ -2758,7 +2757,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35311", - "key": "39f2ed3d4ca72a9594b61c1e857e4476a18efd65", + "key": "25c46287eed9c87cee55138321bbafaf3bc748e8", "name": "utilities/color/background/_transparent/neutral-100|80", "remote": false, "resolvedType": "COLOR", @@ -2798,7 +2797,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35312", - "key": "d54c45f7da9e9d5b3431b3e6087447131dc2904b", + "key": "1acfa60f1301499e875765e6417b677cb246b033", "name": "utilities/color/background/_transparent/neutral-100|90", "remote": false, "resolvedType": "COLOR", @@ -2838,7 +2837,7 @@ "description": "Used for teaser, audio (wave animation)\n", "hiddenFromPublishing": false, "id": "VariableID:43373:35313", - "key": "b58252a053e0584b88689d5156c6494a4ec2b8c7", + "key": "e852879639d0c6e0934f7d8f6f63a30ccb984b3b", "name": "utilities/color/background/_transparent/white|90", "remote": false, "resolvedType": "COLOR", @@ -2878,7 +2877,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35314", - "key": "c306d6537df70672dff20ac1b921517218ed2a32", + "key": "9b20c89b17362fe82bc91c93648fb32cfc7da35d", "name": "utilities/color/background/_transparent/white|80", "remote": false, "resolvedType": "COLOR", @@ -2919,7 +2918,7 @@ "description": "Primary brand color for text", "hiddenFromPublishing": false, "id": "VariableID:43373:35315", - "key": "f48fac2558c85d046235017963e1ac7ec3d749ad", + "key": "1b86ccc59982dd66eb735879a7369ad3bf110c6f", "name": "text/primary", "remote": false, "resolvedType": "COLOR", @@ -2952,7 +2951,7 @@ "description": "Inverted text color", "hiddenFromPublishing": false, "id": "VariableID:43373:35316", - "key": "2bf6e2475750d9b43f74d7ed7e7b73a26951d130", + "key": "6b511f53991ed54521d8a14024fb506d4f18a5ae", "name": "text/white", "remote": false, "resolvedType": "COLOR", @@ -2985,7 +2984,7 @@ "description": "4px", "hiddenFromPublishing": false, "id": "VariableID:43373:35401", - "key": "0a2a6280c171805e4bfb5ce4985e82d9a7cefe38", + "key": "15801c15ddfce77a4343e7a57ab38ba5195994e7", "name": "spacing/1", "remote": false, "resolvedType": "FLOAT", @@ -3018,7 +3017,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:43373:35402", - "key": "359e0af37680f91dda07c54c47a91f9e148d597d", + "key": "90bbb50ba95358b5d1ad2c90c4873d9d5d198bf2", "name": "spacing/2", "remote": false, "resolvedType": "FLOAT", @@ -3051,7 +3050,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:43373:35403", - "key": "0e1a2351a90058f4907dbd945a497357d0da2d7d", + "key": "1bff7330e3fa24781a787cd00c939076d75217a1", "name": "spacing/3", "remote": false, "resolvedType": "FLOAT", @@ -3084,7 +3083,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:43373:35404", - "key": "c9883145eb48e40cd1f72dd2c340a10e69e6e843", + "key": "2eb06d4b66537143cb22a28828e704d7e8df16b8", "name": "spacing/4", "remote": false, "resolvedType": "FLOAT", @@ -3117,7 +3116,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:43373:35414", - "key": "82ac4a076128fc58a93f696bb2e869d3b383f8c0", + "key": "691c14f318e4f0a304dafca15c1603d03656780f", "name": "spacing/0,5", "remote": false, "resolvedType": "FLOAT", @@ -3150,7 +3149,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:43373:35418", - "key": "dc102ab9afbb9105f4b56d0efc611da900b5c205", + "key": "c10b6252d772229d9bf89e97d563a5fcc6c41ddd", "name": "sizing/3", "remote": false, "resolvedType": "FLOAT", @@ -3183,7 +3182,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:43373:35419", - "key": "657738ebfdc0cdb32ec4535a6b28dc80c72063d0", + "key": "ec7a096d9a4b1a64f107350e7ea037f7f5d46dc6", "name": "sizing/4", "remote": false, "resolvedType": "FLOAT", @@ -3216,7 +3215,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:43373:35420", - "key": "942192e4fc1204bd7d3f56bab2c4c1d66a907bee", + "key": "36d39f1e4a8efcd0d79fdf5d331df839fbfc9cfe", "name": "sizing/5", "remote": false, "resolvedType": "FLOAT", @@ -3249,7 +3248,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:43373:35421", - "key": "845eb90822e5d392ae067799d1b2f3375db6d1b8", + "key": "04ddaafdfc15792090a707be4b360c2a1f67ff99", "name": "sizing/6", "remote": false, "resolvedType": "FLOAT", @@ -3282,7 +3281,7 @@ "description": "10px", "hiddenFromPublishing": false, "id": "VariableID:43373:35427", - "key": "1e9d8415c0e6d8493ee5e4d3a6a22d0d6ac7db88", + "key": "1fa9d95c8d6193b3ab86ac17838fc5e6a9e70098", "name": "sizing/2,5", "remote": false, "resolvedType": "FLOAT", @@ -3315,7 +3314,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43373:35437", - "key": "63a0a32a724c19887b117deca787a9a70b9badde", + "key": "fc65b6e98f6ab371a5cde903a0acbc723f623038", "name": "border-width/default", "remote": false, "resolvedType": "FLOAT", @@ -3347,7 +3346,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43373:35452", - "key": "abda98a854bd53fe135e66bac29e6170ca62677f", + "key": "1dab9e3e52f9fe3c60232729a4ed1387f8479946", "name": "UI/font-family/font-family-primary", "remote": false, "resolvedType": "STRING", @@ -3362,7 +3361,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4947", - "key": "a0fcd198a2585ec89ae178bdbdc094975439ba29", + "key": "7f5b0f1b9f5b0b8c65924797a0709a251525946e", "name": "UI/blue/100", "remote": false, "resolvedType": "COLOR", @@ -3382,7 +3381,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4948", - "key": "a47e78805c54906ab9c276b9c6aec1ac9971daab", + "key": "ee9e711e54f647d51ead192e626cb7c00295284f", "name": "UI/blue/200", "remote": false, "resolvedType": "COLOR", @@ -3402,7 +3401,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4949", - "key": "9d0dbb326d485683568726266bd137c8f870211d", + "key": "215fb82b5c2232370dad71e18896fcebb0880edb", "name": "UI/blue/300", "remote": false, "resolvedType": "COLOR", @@ -3422,7 +3421,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4950", - "key": "1df4c93aceb343da02588fa63b2a7e814b5a5102", + "key": "4f41ba210a080fb935b6308402a502656cdce359", "name": "UI/blue/400", "remote": false, "resolvedType": "COLOR", @@ -3442,7 +3441,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4951", - "key": "27880441acce29bf2de42f7fe9a62c150f558bb8", + "key": "a33281de00b6575b0c52d3a62c41cf9112fbf8ba", "name": "UI/blue/500", "remote": false, "resolvedType": "COLOR", @@ -3462,7 +3461,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4952", - "key": "b543f9d97b1b0edc08df8af4642509eda9b1314f", + "key": "e8c7d9e0f1ada14907021d7111248b75ffb5228b", "name": "UI/blue/600", "remote": false, "resolvedType": "COLOR", @@ -3482,7 +3481,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4953", - "key": "842591776d52f234de816130e8d393354d78cc00", + "key": "9cae38a2e8c375debe570334c91c7757dc00fdf3", "name": "UI/blue/700", "remote": false, "resolvedType": "COLOR", @@ -3502,7 +3501,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4954", - "key": "93657cf5c409c734835cc8825f3979dd4b9b6dd0", + "key": "abb3373a50bc117ba90bbcdc899911663b99b675", "name": "UI/blue/750", "remote": false, "resolvedType": "COLOR", @@ -3522,7 +3521,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4955", - "key": "28ae85894046634773e294ef6201f8cf379d5b7d", + "key": "b0a7c07d303db1be1360436b030b4043b4995356", "name": "UI/blue/800", "remote": false, "resolvedType": "COLOR", @@ -3542,7 +3541,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4956", - "key": "1358671231153e3bdd24fa84d042cc686f5d77ac", + "key": "2ddf8c4594180290731a293f11de92fc17d45d20", "name": "UI/blue/900", "remote": false, "resolvedType": "COLOR", @@ -3562,7 +3561,7 @@ "description": "blue-default", "hiddenFromPublishing": false, "id": "VariableID:43927:4957", - "key": "625aed0f12ddc4eeca5f3d6dcb8384aed3f38f0e", + "key": "73c4b50fa5e4261fc9cb7a352b8d1f12b6b29dee", "name": "UI/blue/default", "remote": false, "resolvedType": "COLOR", @@ -3580,7 +3579,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4958", - "key": "5c7ff423926bb84346bea59446c97168c9ac6779", + "key": "bcca91defb7698b3ad3054c72a1ce018f3134fb5", "name": "UI/green/100", "remote": false, "resolvedType": "COLOR", @@ -3600,7 +3599,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4959", - "key": "b9434930c3e2cf3f3203d365fbddc09de8c8a1c8", + "key": "e38b42efcf568670e1227b79b7f30c7941da2071", "name": "UI/green/200", "remote": false, "resolvedType": "COLOR", @@ -3620,7 +3619,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4960", - "key": "213b11535212596a8dc45aacf3ef26bb3aa1c542", + "key": "96375237e717deb264522909bdf5adbe16fd0c80", "name": "UI/green/300", "remote": false, "resolvedType": "COLOR", @@ -3640,7 +3639,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4961", - "key": "795205515fc0efb129d25425a3f901799e6ad5a9", + "key": "05bdbbeeeb829880e507c1b723761bca06e2fa29", "name": "UI/green/400", "remote": false, "resolvedType": "COLOR", @@ -3660,7 +3659,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4962", - "key": "678e7a6a4dedc7cfb5732974f83f3729abe9ff1d", + "key": "79e1299cc9e15b23a2cbfc9aead08b07ef7fc45a", "name": "UI/green/500", "remote": false, "resolvedType": "COLOR", @@ -3680,7 +3679,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4963", - "key": "c85c1f847d05a0bb01b4ebc9c945af00a68bec2d", + "key": "7709662751752f0254ee838ace692e2b09d450f0", "name": "UI/green/550", "remote": false, "resolvedType": "COLOR", @@ -3700,7 +3699,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4964", - "key": "f9807758f8f90c98b45e1af769f2f171818aa0d0", + "key": "29b48bc8a043a5df966c8453fd2f5be7bb0fe2ad", "name": "UI/green/600", "remote": false, "resolvedType": "COLOR", @@ -3720,7 +3719,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4965", - "key": "49c319c72dda9a0ae945ccbd7ed43d3ca8b53d48", + "key": "7f0df4e1dbcf175e95796f7f8f2e235512693eeb", "name": "UI/green/700", "remote": false, "resolvedType": "COLOR", @@ -3740,7 +3739,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4966", - "key": "c35ca5815e9e69e3e0c4b8d85cbb83e0c974e64f", + "key": "47d128d95df72566d55131ad0c7b3aa64caf3b92", "name": "UI/green/800", "remote": false, "resolvedType": "COLOR", @@ -3760,7 +3759,7 @@ "description": "green-default", "hiddenFromPublishing": false, "id": "VariableID:43927:4967", - "key": "6a853772d730481fdcf52d46db4ea71dde8fd3cd", + "key": "7098798c736c1dd000f51b20b5f6038ee96c585a", "name": "UI/green/default", "remote": false, "resolvedType": "COLOR", @@ -3778,7 +3777,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4968", - "key": "30bc12b0395633f1eb55cedb3d9ed5b317b316c4", + "key": "619018e69826fa8447aded66a91211ffc1de67ee", "name": "UI/grey/100", "remote": false, "resolvedType": "COLOR", @@ -3798,7 +3797,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4969", - "key": "b9f9041e5e76b7399b8b80d8bf9679e1d291a77f", + "key": "79f37ee7c35a471268eaca8961e73d58c2cfe336", "name": "UI/grey/200", "remote": false, "resolvedType": "COLOR", @@ -3818,7 +3817,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4970", - "key": "3c9ed45d1b1216344fc0bd2613bd579c57329afa", + "key": "72f29d01fd01b044022d2f290d37cc968724c409", "name": "UI/grey/300", "remote": false, "resolvedType": "COLOR", @@ -3838,7 +3837,7 @@ "description": "grey-400", "hiddenFromPublishing": false, "id": "VariableID:43927:4971", - "key": "52fdd005e88cc85fb2c11bbad92dd8d9ca460ada", + "key": "12dca6f88ea3d8dcb3941894aa8c5e42cc9f3602", "name": "UI/grey/400", "remote": false, "resolvedType": "COLOR", @@ -3858,7 +3857,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4972", - "key": "ee0f6a7a931a61cb76ef7dc9311c91a88f4309e2", + "key": "5c3e92fe322f3a0a0345ed2bbcf20f129061b387", "name": "UI/grey/500", "remote": false, "resolvedType": "COLOR", @@ -3878,7 +3877,7 @@ "description": "grey-600", "hiddenFromPublishing": false, "id": "VariableID:43927:4973", - "key": "8ffda14b2d053ec4bcbafaf607fd4c9d94f849a8", + "key": "5a02419f9d44fc6510e7a53dde75a103d197e271", "name": "UI/grey/600", "remote": false, "resolvedType": "COLOR", @@ -3898,7 +3897,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4974", - "key": "4cefecdb4d973e2870333e1cb9545b0e758bb99c", + "key": "123ff33fcecf5495426898d14a3bdc57a6ae6f8c", "name": "UI/grey/700", "remote": false, "resolvedType": "COLOR", @@ -3918,7 +3917,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4975", - "key": "64fa7e4783c6972bc1221fbadcb69ada39c61f20", + "key": "eb1f9b2725c4c5207e143e8452a6c024136b85e5", "name": "UI/grey/800", "remote": false, "resolvedType": "COLOR", @@ -3938,7 +3937,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4976", - "key": "682159ff0a2c7761498ca45d2e0fd44b09296856", + "key": "2bb97dc836bf6316751dc4c2e5c2bbe8bad2c668", "name": "UI/teal/100", "remote": false, "resolvedType": "COLOR", @@ -3958,7 +3957,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4977", - "key": "19f1412d80c67dd2e5328fbc4e380387d76b76c8", + "key": "ede1f4750730a6333b36c9b62f71401f2ccbf13e", "name": "UI/teal/200", "remote": false, "resolvedType": "COLOR", @@ -3978,7 +3977,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4978", - "key": "97697eb3fdb675deaecb1fdfb937cd55cfb00436", + "key": "bbd630fdc726884379fe3b93e51119dd9aa11ad6", "name": "UI/teal/300", "remote": false, "resolvedType": "COLOR", @@ -3998,7 +3997,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4979", - "key": "1273eb0ec70bfdee0166d9110316647ba0ef9726", + "key": "5004071b3f6d2391ac18da2e52759a15e17caed5", "name": "UI/teal/400", "remote": false, "resolvedType": "COLOR", @@ -4018,7 +4017,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4980", - "key": "0c87e261e3ae4745a6fb63654878e221d3e87cf8", + "key": "5dd583a1a531b1e46f09456a6ec9442c2cef6c50", "name": "UI/teal/500", "remote": false, "resolvedType": "COLOR", @@ -4038,7 +4037,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4981", - "key": "888f06d705c8cceff4b1acda2f2742d57228e0fa", + "key": "8ca7f928f0c1b8ffa552fdc4fcd0e088f26eb80d", "name": "UI/teal/600", "remote": false, "resolvedType": "COLOR", @@ -4058,7 +4057,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4982", - "key": "93df1233ce301a8b4cf35987c0d368a36549c6af", + "key": "2a6dcb25c64116196c6b5fcc008b660921cfecff", "name": "UI/teal/700", "remote": false, "resolvedType": "COLOR", @@ -4078,7 +4077,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4983", - "key": "d98cd3d61b998648b93f69c538695e050d1933e3", + "key": "ecb00ce2643a9ad0d5922b15eb43759497beb8b2", "name": "UI/teal/800", "remote": false, "resolvedType": "COLOR", @@ -4098,7 +4097,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4984", - "key": "314e8e1b6a26da8999799bc01cd4140880f26568", + "key": "2e4d13439393b5d80a6708690dce1f67866b6659", "name": "UI/yellow/100", "remote": false, "resolvedType": "COLOR", @@ -4118,7 +4117,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4985", - "key": "85b3c2d7cf821cdb2cb5684508d2a9b2bac663e1", + "key": "b5b26f848506e01887ffed4defd8c3767615fddd", "name": "UI/yellow/200", "remote": false, "resolvedType": "COLOR", @@ -4138,7 +4137,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4986", - "key": "27dad3221a1d793e0edbd5049f63a8d9a1da4e78", + "key": "bf0a9d5190fdbb74bf0b7988870d2f482a400677", "name": "UI/yellow/300", "remote": false, "resolvedType": "COLOR", @@ -4158,7 +4157,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4987", - "key": "7274ecf65e39a49bf9e4509c32424ffca391afef", + "key": "76b8c161ae222b23d5e73f0bcf47024e87056b10", "name": "UI/yellow/400", "remote": false, "resolvedType": "COLOR", @@ -4178,7 +4177,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4988", - "key": "5d9249a86f9f427c109469e7d4484d6c9b3e943d", + "key": "bd435fe1ed1fa125f40a519da1aa346da4024a0d", "name": "UI/yellow/500", "remote": false, "resolvedType": "COLOR", @@ -4198,7 +4197,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4989", - "key": "9bb601555cd6c9cb0b45d3a1f315e1becc2e4158", + "key": "ed73cc3638249a1cdc57c75a37fc42a681671153", "name": "UI/yellow/600", "remote": false, "resolvedType": "COLOR", @@ -4218,7 +4217,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4990", - "key": "80388f18babbb356446a8e24cf4b7a08c388dc12", + "key": "ebeec19fe479373def6f76263dd036875aa0e79d", "name": "UI/yellow/650", "remote": false, "resolvedType": "COLOR", @@ -4238,7 +4237,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4991", - "key": "1144b019e677d3c393919b96fa1e767e4ab6fda4", + "key": "94e3085da9f0012cacca0a9f3259c97e4955b005", "name": "UI/yellow/700", "remote": false, "resolvedType": "COLOR", @@ -4258,7 +4257,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4992", - "key": "bedf5b447b3aae988a71cf1deb6de11af18e69a1", + "key": "7561b24fe7bbcee28ca52f456d505304a9770266", "name": "UI/yellow/800", "remote": false, "resolvedType": "COLOR", @@ -4278,7 +4277,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4993", - "key": "2acb9b560a50b5d94e8cf16938a627ce8abf3ab0", + "key": "f57ff7ee71abcb5570a2ca4712e6a773986b2578", "name": "UI/lightblue/100", "remote": false, "resolvedType": "COLOR", @@ -4298,7 +4297,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4994", - "key": "40302ed75e9cbad88a2425f303ddf6a5d63fa718", + "key": "3eb9523442c747e27fc698fa8278c8a1e5c90d47", "name": "UI/lightblue/200", "remote": false, "resolvedType": "COLOR", @@ -4318,7 +4317,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4995", - "key": "dc87c3a6e5826ea6c06429c8b9094f288ff614dd", + "key": "2883a818ff5ca0f16d2ba23dd8ee4266ca70c6b4", "name": "UI/lightblue/300", "remote": false, "resolvedType": "COLOR", @@ -4338,7 +4337,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4996", - "key": "931963b71fdc2801e8a458957506ef46c8d10b97", + "key": "099d14ff07b4947c7a24f34a680d3228b8f7fda5", "name": "UI/lightblue/400", "remote": false, "resolvedType": "COLOR", @@ -4358,7 +4357,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4997", - "key": "931bcdd741da2ac72a760ce510c982de0838a7f7", + "key": "2b3d7ac1309e16e8256ea96f853080c42f8a381f", "name": "UI/lightblue/500", "remote": false, "resolvedType": "COLOR", @@ -4378,7 +4377,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4998", - "key": "e6af6c410bc27b36849d50ef05b61321ba441950", + "key": "34f7a33c3d01eaf4cc3d01f23af44fa51a0851cf", "name": "UI/lightblue/600", "remote": false, "resolvedType": "COLOR", @@ -4398,7 +4397,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4999", - "key": "47a37439b5127c887b1912ea5c6c8c13e87dd05a", + "key": "89d2d3d5c7671fe1a0612c29a3a83af20e5e6a96", "name": "UI/lightblue/700", "remote": false, "resolvedType": "COLOR", @@ -4418,7 +4417,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5000", - "key": "2fe0d05f14c7d5c95c5d3c1055ef1c15dfd0dd2b", + "key": "982d547da477e17629d4c650d3e5c38bfac56d9d", "name": "UI/lightblue/800", "remote": false, "resolvedType": "COLOR", @@ -4438,7 +4437,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5001", - "key": "05c24497383f6176bc4eb82bdcf46204a2d669f9", + "key": "7306b5e70e95926343b5bde3d1a2a8a86ca46ddd", "name": "UI/violet/100", "remote": false, "resolvedType": "COLOR", @@ -4458,7 +4457,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5002", - "key": "8e744b88f7d2443e96431658b3a6ae347b775c18", + "key": "26dbfc6cb9ab15e9c244b8de07c009d6ae02af72", "name": "UI/violet/200", "remote": false, "resolvedType": "COLOR", @@ -4478,7 +4477,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5003", - "key": "d4cf7b0509b57be1dea7a6845189f09ad80e30d0", + "key": "e883495efca79f59181c95df7164bdddcf5a59f6", "name": "UI/violet/300", "remote": false, "resolvedType": "COLOR", @@ -4498,7 +4497,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5004", - "key": "bd018e1334cb97b0949067b455f7fd73db86ccb2", + "key": "48000ed011ca372de77b31a475ef8fd64f67634a", "name": "UI/violet/400", "remote": false, "resolvedType": "COLOR", @@ -4518,7 +4517,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5005", - "key": "2597686a3e8b6ddcf399ff648183e089d725c57e", + "key": "8b48312950672b468d9e0024dd6831ecb8246b86", "name": "UI/violet/500", "remote": false, "resolvedType": "COLOR", @@ -4538,7 +4537,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5006", - "key": "a9fbef7a057bada71f3c5d57e455085242985db3", + "key": "cb9cc6b2ee90287180fb1f9ef54f5e1fd4201b3c", "name": "UI/violet/600", "remote": false, "resolvedType": "COLOR", @@ -4558,7 +4557,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5007", - "key": "b2fe3c5941b2f443b7d7161ba3a002e8fd93c6c1", + "key": "f9234beb69bc6ceda506efb29cc005906afa325c", "name": "UI/violet/700", "remote": false, "resolvedType": "COLOR", @@ -4578,7 +4577,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5008", - "key": "ec3c38995703149226243453d4602e302cb50069", + "key": "ff0875e01de7cc74c7b0d70c02cf52bf0a483a2f", "name": "UI/violet/800", "remote": false, "resolvedType": "COLOR", @@ -4598,7 +4597,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5009", - "key": "14d1f64ad3e332cd261fb5251454acdeba11e727", + "key": "0a77adee1bde0cf8202b9d8077ed9e885f1d98a9", "name": "UI/lightgreen/100", "remote": false, "resolvedType": "COLOR", @@ -4618,7 +4617,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5010", - "key": "169f016cad100d0579147ae215ba6ab242e334de", + "key": "6108917e0d188f17a3eba4b059ed70406e1802da", "name": "UI/lightgreen/200", "remote": false, "resolvedType": "COLOR", @@ -4638,7 +4637,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5011", - "key": "aabf6c864d1fef279a495be18de04a6884562cd1", + "key": "bff49eeaca591e532f63341ae28ee0341a4527ce", "name": "UI/lightgreen/300", "remote": false, "resolvedType": "COLOR", @@ -4658,7 +4657,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5012", - "key": "32680cc3d2faba056762779c38e67c004c84b268", + "key": "94677bb89aaed0e8dde527a1574e7f6534a9510e", "name": "UI/lightgreen/400", "remote": false, "resolvedType": "COLOR", @@ -4678,7 +4677,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5013", - "key": "20bf01ab2f90eb2034263f26e33c6b2c343d808b", + "key": "d1a111e06b2b1f8b228af2688cb6d1b5930fe2cb", "name": "UI/lightgreen/500", "remote": false, "resolvedType": "COLOR", @@ -4698,7 +4697,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5014", - "key": "d893916b85df4fe5a6ace404d8180c885ad84102", + "key": "2c8cac63ec37fd9f679f13147570fc4b73de0c23", "name": "UI/lightgreen/600", "remote": false, "resolvedType": "COLOR", @@ -4718,7 +4717,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5015", - "key": "7b844ba4d3e60cb24d24e9264cc8d111dec388e0", + "key": "6840e454b7dc5c19e270192a31267019246a2325", "name": "UI/lightgreen/700", "remote": false, "resolvedType": "COLOR", @@ -4738,7 +4737,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5016", - "key": "0b401b9c72a538c8b2f9c8598cd4176d3c9c7fbc", + "key": "64552c4c7b84d5084e9ce618c7a149fdd77ad407", "name": "UI/lightgreen/800", "remote": false, "resolvedType": "COLOR", @@ -4758,7 +4757,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5017", - "key": "882198605b672958ae500085a394c0c24f7af16f", + "key": "2166dd91f9a99ddb1bded699e3bf3b2da7f47ed6", "name": "UI/red/250", "remote": false, "resolvedType": "COLOR", @@ -4778,7 +4777,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5018", - "key": "43f606e66382df642c82ad00263da7e6b9c3ee2c", + "key": "5b4c1b55930e02760ce78f6b7d71c6b135b89d5f", "name": "UI/red/300", "remote": false, "resolvedType": "COLOR", @@ -4798,7 +4797,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5019", - "key": "65aaf37e56358a52dc33aa25731e038afadb45ee", + "key": "a2edb69a55aa03cc5f670330e51a9a536be02f16", "name": "UI/red/400", "remote": false, "resolvedType": "COLOR", @@ -4818,7 +4817,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5020", - "key": "2ae2cfdd359363e917e1f17fbd60a4a43e002d1e", + "key": "2c11761514dbaa7a8652b4b4f10c9e72523b875a", "name": "UI/red/500", "remote": false, "resolvedType": "COLOR", @@ -4838,7 +4837,7 @@ "description": "low value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5021", - "key": "c66338afc1c51fe5bfff1e969e4ce8031296e5a3", + "key": "81c853a75b58b56050b2cdf799bf354794502410", "name": "UI/cerulean", "remote": false, "resolvedType": "COLOR", @@ -4858,7 +4857,7 @@ "description": "moderate value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5022", - "key": "eeb6999a95210b2b66ea81b4ef20fc02de0683ff", + "key": "0b315bc37f9c8e2e3215781be7f3fe5cf0aab37d", "name": "UI/emerald", "remote": false, "resolvedType": "COLOR", @@ -4878,7 +4877,7 @@ "description": "increased value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5023", - "key": "476fd9a3752db9c6c8835d85a680c4f0be1fe2af", + "key": "a4df049f89f12f02a8ae35c65d6c100d2ac635a9", "name": "UI/lemon", "remote": false, "resolvedType": "COLOR", @@ -4898,7 +4897,7 @@ "description": "high value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5024", - "key": "b79d821a3e3a61d4e9bbeb71ab437fcc08f43d00", + "key": "fc28d236cbb4dc7696786833d28006e07b3b300c", "name": "UI/orange", "remote": false, "resolvedType": "COLOR", @@ -4918,7 +4917,7 @@ "description": "very high value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5025", - "key": "95dd22c19a485f3ea7a2e65c8e5bf2127ef0204c", + "key": "35b07899d14b75e59ca41644ce8a16af829eaad5", "name": "UI/brightred", "remote": false, "resolvedType": "COLOR", @@ -4938,7 +4937,7 @@ "description": "white", "hiddenFromPublishing": false, "id": "VariableID:43927:5026", - "key": "f13ce9980a7e6fe09bcf0b5b4bca71a6a7a0a060", + "key": "9e7a24f9b0a87bab27d9f6fdf9aa6e285553b37a", "name": "UI/white", "remote": false, "resolvedType": "COLOR", @@ -4958,7 +4957,7 @@ "description": "black", "hiddenFromPublishing": false, "id": "VariableID:43927:5027", - "key": "95031fcaa5564cb24ee3337bea45db4c7f605b2c", + "key": "7926c733102900f04eacc6ec5562e4658d1b702b", "name": "UI/black", "remote": false, "resolvedType": "COLOR", @@ -4978,7 +4977,7 @@ "description": "color has same luminance as step 100", "hiddenFromPublishing": false, "id": "VariableID:43927:5029", - "key": "a3d6361be3c0a95f82b0bc431ae031adc834218c", + "key": "ad8178a4c4920dfd34a7a51e99507091cd2c61e8", "name": "VB/azure/100", "remote": false, "resolvedType": "COLOR", @@ -4998,7 +4997,7 @@ "description": "used for tag selected hover", "hiddenFromPublishing": false, "id": "VariableID:43927:5030", - "key": "e8c7cf217b92c0f710e2a4e024c8b934fe6ce963", + "key": "b357fbb18b45fc6f22f3810ac18e5f0dda07d3c9", "name": "VB/azure/300", "remote": false, "resolvedType": "COLOR", @@ -5018,7 +5017,7 @@ "description": "color has same luminance as step 100", "hiddenFromPublishing": false, "id": "VariableID:43927:5031", - "key": "b2e655a7af43c690e1d157944b82ee2e9f27e75e", + "key": "8cf17c6f6cf276ebd1816f8dc49249a3d141c139", "name": "VB/azure/400", "remote": false, "resolvedType": "COLOR", @@ -5038,7 +5037,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5032", - "key": "a6ca06d8879a3c28aafe3e4e32296c6153186358", + "key": "8e4c910ea6824b30e820c574655b588cd88d5c81", "name": "VB/azure/500", "remote": false, "resolvedType": "COLOR", @@ -5058,7 +5057,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5033", - "key": "d4e878a423dd4e383eb8922155f560e0c353db1e", + "key": "627e0722cbf5a39454c83558cfeecd99d0c1d471", "name": "VB/azure/550", "remote": false, "resolvedType": "COLOR", @@ -5078,7 +5077,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5034", - "key": "bf868623d3f90df13cfb74d7e24c9d2ff74f350f", + "key": "075e7b2a42522e5e91bf69e650f9c352b7462f06", "name": "VB/azure/600", "remote": false, "resolvedType": "COLOR", @@ -5098,7 +5097,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5035", - "key": "12309452ceb081ea1d9978fd170a13845115121f", + "key": "e07d929388f47df5291376a191d3d025fa88b09b", "name": "VB/azure/650", "remote": false, "resolvedType": "COLOR", @@ -5118,7 +5117,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5036", - "key": "e486d2354c485c7f88f2cebd3030c5f49df082a7", + "key": "212a98f0a1ae6c6320b49a4043ecfb2a60185e2d", "name": "VB/azure/750", "remote": false, "resolvedType": "COLOR", @@ -5138,7 +5137,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5037", - "key": "b6279ec367ea147be4eecc42751b48b294ab9941", + "key": "d8aed472076399958e6adbdc40b90136a090a972", "name": "VB/azure/800", "remote": false, "resolvedType": "COLOR", @@ -5158,7 +5157,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5038", - "key": "7188d752f4d8b8cfc3e231cc68f1e9cf8fd2b45c", + "key": "ed81d18d173528ad4b1c5e3ead12cc8bc7dcfd6d", "name": "VB/azure/default", "remote": false, "resolvedType": "COLOR", @@ -5176,7 +5175,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:187", - "key": "5af7ff0c1bc8db8be94fe82001e5780cd66dabd4", + "key": "3064f15a8396806fa979825f89ccb004511f0e10", "name": "VB/azure/900", "remote": false, "resolvedType": "COLOR", @@ -5196,7 +5195,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:189", - "key": "00415e16ffd78bdb34a85493f3e62920d812ca2f", + "key": "f15b7c02defa516ca5b16e0afdd7a9f65b6f0ac5", "name": "VB/vermillion/550", "remote": false, "resolvedType": "COLOR", @@ -5216,7 +5215,7 @@ "description": "green-default", "hiddenFromPublishing": false, "id": "VariableID:43979:190", - "key": "0d6a6502fe7025e955164b3dda2750a0d8933995", + "key": "f8f5e2fed98a2c075d765beff9a3fbe5b37451ca", "name": "VB/vermillion/default", "remote": false, "resolvedType": "COLOR", @@ -5234,7 +5233,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:193", - "key": "871d92c58a86c6cf530a20e0c11d33abaf6091cc", + "key": "e09bfc00496bdd3a6e3902f47f4c6dc44ee752bb", "name": "utilities/color/primary/100", "remote": false, "resolvedType": "COLOR", @@ -5264,7 +5263,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:194", - "key": "523dfdc711346eb1018c5dc5389966c76dbbdad4", + "key": "be53bfa6ccdda3b8b7104f530f7d596037f236b2", "name": "utilities/color/primary/200", "remote": false, "resolvedType": "COLOR", @@ -5294,7 +5293,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:195", - "key": "7b3557fc80934534aa6374f7e9dd0859f26f2a15", + "key": "4e197d766d6ac6e9c7e5e58d93bbed93147d6934", "name": "utilities/color/primary/300", "remote": false, "resolvedType": "COLOR", @@ -5324,7 +5323,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:196", - "key": "08d04a7f62e52953a9f174444bfe9c1fafb6f691", + "key": "4841231ba6fc339a3e4f0d4ecf3df1fb4cc2cbb0", "name": "utilities/color/primary/400", "remote": false, "resolvedType": "COLOR", @@ -5354,7 +5353,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:197", - "key": "2be1ddcd0736da3c252728cfd84d4e191c61bda1", + "key": "aaea895d4e46a5efcebc6ac9fcf1f071162fc25f", "name": "utilities/color/primary/500", "remote": false, "resolvedType": "COLOR", @@ -5384,7 +5383,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:198", - "key": "c14dfbcaba6ea2f6f56c266ed1faf041954eb5b7", + "key": "bcb1b213bbc3bfab7e464d71c26b00bb4a433e52", "name": "utilities/color/primary/600", "remote": false, "resolvedType": "COLOR", @@ -5416,7 +5415,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:199", - "key": "d321e0090b13a40f324e07fb669f32e5207c465c", + "key": "9a7a23e59cfe8acb9dcd89d0714b81af45eb13a8", "name": "utilities/color/primary/700", "remote": false, "resolvedType": "COLOR", @@ -5446,7 +5445,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:200", - "key": "d55fd6b835aa8caf6af0ea5d76e35a33e9edf1a7", + "key": "4b22378fcb18d5fc1f25d72eb20b05161724f09a", "name": "utilities/color/primary/750", "remote": false, "resolvedType": "COLOR", @@ -5476,7 +5475,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:201", - "key": "08b7f25d9f7b7bb0b57eba73dad64045ca451c43", + "key": "399ce67f5b75ff4f2088011e43129c05117b9961", "name": "utilities/color/primary/800", "remote": false, "resolvedType": "COLOR", @@ -5506,7 +5505,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:202", - "key": "8fe3c5b185b9909cecb908499822bfc2a41b3c06", + "key": "3e3c8e3a2f4e832c0b4c13d9542e416cc00b06a9", "name": "utilities/color/primary/900", "remote": false, "resolvedType": "COLOR", @@ -5536,7 +5535,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:203", - "key": "084095f8ee69fab6cd9763ed3b7c1a277c8df309", + "key": "02e8d0edb806027286b90f53a594c7d3bd9b84ae", "name": "utilities/color/primary/default", "remote": false, "resolvedType": "COLOR", @@ -5566,7 +5565,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:204", - "key": "ebc82c1965f6f63de76565becce730224c184476", + "key": "09ecdb4054bec44c2cd67756e9a61ec603997e4a", "name": "utilities/color/accent/100", "remote": false, "resolvedType": "COLOR", @@ -5596,7 +5595,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:205", - "key": "a0456a0c4f37bc7dd123f55ee01ea293b03af958", + "key": "ad75fd0294da9c546588f3db1920ff5cd2a5b86a", "name": "utilities/color/accent/200", "remote": false, "resolvedType": "COLOR", @@ -5626,7 +5625,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:206", - "key": "6344fbdd8f7051163c90f9378d753bef258e6f35", + "key": "51fe40caa806b22cfbaf1154c38b7e2b98672a0a", "name": "utilities/color/accent/300", "remote": false, "resolvedType": "COLOR", @@ -5656,7 +5655,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:207", - "key": "2ffbb01a979f1c753553a42ec5d9a456c70b1a12", + "key": "83b4cc6f8f1830d53588611ba8b7fb868b1ce0b8", "name": "utilities/color/accent/400", "remote": false, "resolvedType": "COLOR", @@ -5686,7 +5685,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:208", - "key": "7be255af4bbb417fbd5f4cdeb7e1fdc8e42bc505", + "key": "ba8478128d82dc29fbeedca96caff697472927a7", "name": "utilities/color/accent/500", "remote": false, "resolvedType": "COLOR", @@ -5716,7 +5715,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:209", - "key": "bc12262fc8ef9446376e6ab98b4cc4a90287736c", + "key": "7e86cccf757342605e0b0cbdd28e9f1797843e42", "name": "utilities/color/accent/550", "remote": false, "resolvedType": "COLOR", @@ -5746,7 +5745,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:210", - "key": "4e7031eabf20226b3a7f23c35813bb05d768c67f", + "key": "ebbbdc440a4cbf85de3873b8b062d261268d02ce", "name": "utilities/color/accent/600", "remote": false, "resolvedType": "COLOR", @@ -5776,7 +5775,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:211", - "key": "d57d4f6c191044d9a55605049ab83a04dfb140ac", + "key": "b8a459a0fe020227198d14e75ea22b3d69d0f8c5", "name": "utilities/color/accent/700", "remote": false, "resolvedType": "COLOR", @@ -5806,7 +5805,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:212", - "key": "32b182e322beece97e9fa77e8bc708d61042c338", + "key": "fb814ff4e4b4273a168aa69464c016e30f82d8e4", "name": "utilities/color/accent/800", "remote": false, "resolvedType": "COLOR", @@ -5836,7 +5835,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:213", - "key": "be151c1d5732c23fa9cd27b1d8b67b8546536985", + "key": "55fb21b07d1b9adc48d42e3464be91ab272b74fd", "name": "utilities/color/accent/default", "remote": false, "resolvedType": "COLOR", @@ -5866,7 +5865,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:214", - "key": "c2719e2232ad0071ec77e6c62056080427d92685", + "key": "309867147969aced864d987adf2d64aa3bb268fd", "name": "utilities/color/neutral/100", "remote": false, "resolvedType": "COLOR", @@ -5896,7 +5895,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:215", - "key": "a164ded2fad939f9250a7b0b1220fe502b28e3ac", + "key": "eb42987ebffb22321629f51ee2b6249851bd14ec", "name": "utilities/color/neutral/200", "remote": false, "resolvedType": "COLOR", @@ -5926,7 +5925,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:216", - "key": "ec138825375524b2e4c110562188167834911d53", + "key": "1c2fffab4a220dc502a3b7430cc7b0f5678af9c5", "name": "utilities/color/neutral/300", "remote": false, "resolvedType": "COLOR", @@ -5956,7 +5955,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:217", - "key": "0a0ac1b18d3a80470c8944cb775ee3bbd48b7807", + "key": "2b13199beb0d0c4c9339595572b636fb31e1588f", "name": "utilities/color/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -5986,7 +5985,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:218", - "key": "96811b278917730688592024adbb7b90c9af4a62", + "key": "f00ace4044a81bf897c94ae9dc9fde82ef39b008", "name": "utilities/color/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -6016,7 +6015,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:219", - "key": "29eb798ba2bc540012f9da546f5a1d5564248aa9", + "key": "3164a7557f40a4c3d0dec7ae6aef81c17fb2280c", "name": "utilities/color/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -6046,7 +6045,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:220", - "key": "3352090d518d9fb8c1010e476a67b3e4ee583cbd", + "key": "22067b46a0864d80b752fff8e12a90dda0af3e97", "name": "utilities/color/neutral/700", "remote": false, "resolvedType": "COLOR", @@ -6076,7 +6075,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:221", - "key": "921747a4041e9f669730b0efc02ad5eece2d86ce", + "key": "62381a06207bdf7fe13ec0c8381f45145d8693f5", "name": "utilities/color/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -6106,7 +6105,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:222", - "key": "9d41a86301227a3725aee059dcfa6fc13871f00c", + "key": "737b9997186c07321de53a88936913609fce99d7", "name": "utilities/color/error/300", "remote": false, "resolvedType": "COLOR", @@ -6136,7 +6135,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:223", - "key": "ba81d2968b48879a1c9c7902f2f40bab75b70b49", + "key": "6e857651aa1eeb11a9c500cf8d672c9f9cada4de", "name": "utilities/color/error/400", "remote": false, "resolvedType": "COLOR", @@ -6166,7 +6165,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:224", - "key": "daafe583c6dca90f3a543fd34a065efeca4a542f", + "key": "a883007121660cc94cf6ef39aa0fc5fc385bc380", "name": "utilities/color/success/default", "remote": false, "resolvedType": "COLOR", @@ -6196,7 +6195,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:225", - "key": "cf2a079c911b3f4d722aae0d72c107c7586d8c3f", + "key": "0487f8ceaccf5ca660efe8695602c036a64d655c", "name": "utilities/color/black/default", "remote": false, "resolvedType": "COLOR", @@ -6226,7 +6225,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:227", - "key": "049a79d4ea42a14d0fc5994e9b55e3c767579640", + "key": "4acfd3932bd293190f7a12a63af1aa43339da008", "name": "utilities/color/white/default", "remote": false, "resolvedType": "COLOR", @@ -6256,7 +6255,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:229", - "key": "7d581bfe4848ed0cc9a3e639e2a2139d74fccb9c", + "key": "d3d2d8add95ccc2a314510490ab9e973d2798e99", "name": "utilities/color/risk/low", "remote": false, "resolvedType": "COLOR", @@ -6286,7 +6285,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:230", - "key": "d19bc32b2c1749d82e3957b0dd841686ca19b1b2", + "key": "79b2564e3da522b56f4222c3afab64194b587e19", "name": "utilities/color/risk/moderate", "remote": false, "resolvedType": "COLOR", @@ -6316,7 +6315,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:231", - "key": "f394d635e9c522a073806ae07b7ee567577dca04", + "key": "095471ad5e2e75e8cbc10a8ed6fd30c9f52274c5", "name": "utilities/color/risk/increased", "remote": false, "resolvedType": "COLOR", @@ -6346,7 +6345,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:232", - "key": "2e99d7eadc7f884469cc4d252ffc53b1c5e430ff", + "key": "856a343aaa73360e0db9d901f14e70c3f4a192f4", "name": "utilities/color/risk/high", "remote": false, "resolvedType": "COLOR", @@ -6376,7 +6375,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:233", - "key": "eef6ca3abf325df379a2600d5ad8cb9e36021aa6", + "key": "04d78dd356ca73bfa87eb8a1f9477e814411a43e", "name": "utilities/color/risk/veryhigh", "remote": false, "resolvedType": "COLOR", @@ -6406,7 +6405,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:234", - "key": "762eb86eb577d81119c43eb390d5c877ee96cc90", + "key": "689e56866506f9cb0737cbeddc705f9663d9fc7a", "name": "utilities/color/info/default", "remote": false, "resolvedType": "COLOR", @@ -6436,7 +6435,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:235", - "key": "0f3f3fe0c4a84d430d8c0143a408cbf3d5c63e18", + "key": "8aac4afb70a742d5d0edb99fed733830db4447f7", "name": "utilities/color/warning/default", "remote": false, "resolvedType": "COLOR", @@ -6466,7 +6465,7 @@ "description": "Used for inverted hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:236", - "key": "639c44624996e7b5ca0b814d0e6ab2995f8b91d6", + "key": "962e9483262eea599b28d4a435c32193b6ce8e4c", "name": "utilities/color/icon-fill/primary/100", "remote": false, "resolvedType": "COLOR", @@ -6498,7 +6497,7 @@ "description": "Used for inverted pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:237", - "key": "cb63a4f55fb6982f92b48229fc41fbb639129967", + "key": "ac45f2fe9c065f560601ea702484d2c55ad7defe", "name": "utilities/color/icon-fill/primary/200", "remote": false, "resolvedType": "COLOR", @@ -6530,7 +6529,7 @@ "description": "Used for inverted pressed interaction in text link", "hiddenFromPublishing": false, "id": "VariableID:43979:238", - "key": "4c6b9f1067d040e8247fcc2a3fbf77f32dbbf228", + "key": "b2a1c3aae94653db66dc78c27591a45a7bffeb76", "name": "utilities/color/icon-fill/primary/400", "remote": false, "resolvedType": "COLOR", @@ -6566,7 +6565,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:239", - "key": "b3e30505f66acf0200931482d7e016daee2a19f4", + "key": "d4964e06c83b146512420f7d22dbc4f99da1d334", "name": "utilities/color/icon-fill/primary/500", "remote": false, "resolvedType": "COLOR", @@ -6598,7 +6597,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:240", - "key": "c1f45a098096ed905a86d867c2fffb70303988d6", + "key": "1fc9fbe1181ff9df0cc6dd3a7bb48819874f68f9", "name": "utilities/color/icon-fill/primary/800", "remote": false, "resolvedType": "COLOR", @@ -6630,7 +6629,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:43979:241", - "key": "864bb2082fed35f475e0245b03c618d4ad85d953", + "key": "0646819632394993d4f8eddea092a7eb6278be45", "name": "utilities/color/icon-fill/primary/default", "remote": false, "resolvedType": "COLOR", @@ -6662,7 +6661,7 @@ "description": "Inverted icon color", "hiddenFromPublishing": false, "id": "VariableID:43979:242", - "key": "0f28138f0863e7598b6e06500487728c859930b9", + "key": "1a634ef580e3a011dd2c517849882eeafa2e451b", "name": "utilities/color/icon-fill/white/default", "remote": false, "resolvedType": "COLOR", @@ -6694,7 +6693,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:244", - "key": "b8565932998c9e7c2433a9489c7631286ea819b6", + "key": "fb426623c07ff78dc90870828b804c62fe926134", "name": "utilities/color/icon-fill/accent/550", "remote": false, "resolvedType": "COLOR", @@ -6726,7 +6725,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:43979:245", - "key": "7442d680a6752e0df8ab0c9da42e4c99371785a5", + "key": "1e4f3776111b01da4de14477592e1e7375fec56b", "name": "utilities/color/icon-fill/accent/default", "remote": false, "resolvedType": "COLOR", @@ -6758,7 +6757,7 @@ "description": "Used for disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:246", - "key": "b361bbaa5c224284cd0c9795baa2db2ee3804162", + "key": "9505d6312d1e2e9ef0cdddc5e0da8abbabf94809", "name": "utilities/color/icon-fill/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -6790,7 +6789,7 @@ "description": "Used for inverted disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:247", - "key": "3da08c8313ce1cd555f0132107c0896eb9dee71c", + "key": "9b96dad67466abde49956bc2b5a5e09c68bc1be2", "name": "utilities/color/icon-fill/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -6826,7 +6825,7 @@ "description": "Used for switch, clearable", "hiddenFromPublishing": false, "id": "VariableID:43979:248", - "key": "ac63712e480397dbd9151be819ab1193f8ac894f", + "key": "09aba09c88bde2ae9cca118f3b312c15efd578a5", "name": "utilities/color/icon-fill/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -6858,7 +6857,7 @@ "description": "Used for success messages, valid states", "hiddenFromPublishing": false, "id": "VariableID:43979:249", - "key": "ce10285a2a1f39cd4e05baffc31b7092de37521b", + "key": "c43f5d98604e9cd858518c3f737b8144fa1c53e3", "name": "utilities/color/icon-fill/success/default", "remote": false, "resolvedType": "COLOR", @@ -6890,7 +6889,7 @@ "description": "Used for hover interaction invalid form elements\n", "hiddenFromPublishing": false, "id": "VariableID:43979:250", - "key": "e0cbff02e31caf68d7d7d098a0da9cd9fea68b45", + "key": "c39c07afa1f5c66e7a2e4fc45211ac93e2c4c20c", "name": "utilities/color/icon-fill/error/400", "remote": false, "resolvedType": "COLOR", @@ -6922,7 +6921,7 @@ "description": "Used for error messages, invalid states", "hiddenFromPublishing": false, "id": "VariableID:43979:251", - "key": "6bb1ae1380f3ce3518beab8c0982fffddcef418e", + "key": "f4b1c9a60d4616ed9e09cb22c7c001fa6f92bb5a", "name": "utilities/color/error/default", "remote": false, "resolvedType": "COLOR", @@ -6952,7 +6951,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:43979:252", - "key": "a22313663e6ca79bde9ea51bcb3c8c55ec493dde", + "key": "3edfe8a468fefa303e53028d0b46983bfaae02ee", "name": "utilities/color/border/primary/default", "remote": false, "resolvedType": "COLOR", @@ -6984,7 +6983,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:253", - "key": "b93e5b83241956bdbd32ea96f9f2f49da2a52919", + "key": "b97ed86ccc500b5d277e91f60a1d980a446abd84", "name": "utilities/color/border/accent/550", "remote": false, "resolvedType": "COLOR", @@ -7016,7 +7015,7 @@ "description": "Default border color. \nUsed for sd-divider, teaser, table cell, ... sd-container,", "hiddenFromPublishing": false, "id": "VariableID:43979:254", - "key": "376ac7ad02c6fe642e8d09a01d2810dd860a286c", + "key": "8e4c7fdd18f39c9ae1a5f2cc69f0e990f51dc901", "name": "utilities/color/border/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -7048,7 +7047,7 @@ "description": "Used for form fields, switch, radio, checkbox", "hiddenFromPublishing": false, "id": "VariableID:43979:255", - "key": "034a1f97e751c0c42523d28cf9a68ce9afb28713", + "key": "402c1211bcb098a0a3ebabc4ce87ef4d72487ebc", "name": "utilities/color/border/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -7080,7 +7079,7 @@ "description": "Used for valid form fields\n", "hiddenFromPublishing": false, "id": "VariableID:43979:256", - "key": "02b59ad396345a2910b55d11f1c2cd8a38f0a851", + "key": "f0f7463047766b0c219d8c4f381ab1d6546d5fec", "name": "utilities/color/border/success/default", "remote": false, "resolvedType": "COLOR", @@ -7112,7 +7111,7 @@ "description": "Used for hover interaction invalid form elements", "hiddenFromPublishing": false, "id": "VariableID:43979:257", - "key": "038e6ae879b1bc6b7c15b18452f5cefa5e7f5862", + "key": "ee303d00b86505b9525a84ea691a28c7d5d24697", "name": "utilities/color/border/error/400", "remote": false, "resolvedType": "COLOR", @@ -7144,7 +7143,7 @@ "description": "Used for invalid form fields", "hiddenFromPublishing": false, "id": "VariableID:43979:258", - "key": "6a2d10adf1ba81438d38f2ab5822e9702bce6f52", + "key": "592145d7a7025b381514515e03514be9736e9a95", "name": "utilities/color/border/error/default", "remote": false, "resolvedType": "COLOR", @@ -7176,7 +7175,7 @@ "description": "Used for sd-container", "hiddenFromPublishing": false, "id": "VariableID:43979:259", - "key": "c3e66a17c589643f3bfd56a950d5a99cf2ab5834", + "key": "87b3a570f0727cc9916ab158ddfb6230ad8d6494", "name": "utilities/color/background/primary/100", "remote": false, "resolvedType": "COLOR", @@ -7208,7 +7207,7 @@ "description": "Used for sd-chip", "hiddenFromPublishing": false, "id": "VariableID:43979:260", - "key": "dc44e65cd2c5cc2a53f6a60d70c186e12b5797c0", + "key": "3edfdbf233551f6213b62d5a5502c2da769e5e01", "name": "utilities/color/background/primary/200", "remote": false, "resolvedType": "COLOR", @@ -7240,7 +7239,7 @@ "description": "Used for sd-chip", "hiddenFromPublishing": false, "id": "VariableID:43979:261", - "key": "b802c03c5a8b5c34d83af28f44b4cc0593a8765c", + "key": "bafc13463a52e799561bf1a97372d6f4d6f57689", "name": "utilities/color/background/primary/300", "remote": false, "resolvedType": "COLOR", @@ -7272,7 +7271,7 @@ "description": "Used for sd-chip, sd-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:262", - "key": "8742ed6f671ee6434307b0f726a26efae8017da3", + "key": "f3a47026e933703e8f086aff75e394d735eaa0e9", "name": "utilities/color/background/primary/500", "remote": false, "resolvedType": "COLOR", @@ -7304,7 +7303,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:263", - "key": "a4ef589efe36a91a1d5113b7f6345fed74073d09", + "key": "3e62c168462ce8402b0a5a37f9d5676e565b49b4", "name": "utilities/color/background/primary/800", "remote": false, "resolvedType": "COLOR", @@ -7336,7 +7335,7 @@ "description": "Inverted background color (light mode)\nUsed for button", "hiddenFromPublishing": false, "id": "VariableID:43979:264", - "key": "713161b1bea209e71fece24ef82ce771366409d7", + "key": "71df8c9347f3c44d19dc1596b842c4f760bb1253", "name": "utilities/color/background/primary/default", "remote": false, "resolvedType": "COLOR", @@ -7368,7 +7367,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:265", - "key": "988a63474bbe668e30037900ba434d7f43c07949", + "key": "2a8a3b23083288f0b5298dbc17d9f04b7e434795", "name": "utilities/color/background/accent/550", "remote": false, "resolvedType": "COLOR", @@ -7400,7 +7399,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:266", - "key": "94747cfdd60ed733a82f3b88f42b6cc2a20604e3", + "key": "6d27dfbb8b4a4dab6ad309423b72ade6bd44ef3c", "name": "utilities/color/background/info/default", "remote": false, "resolvedType": "COLOR", @@ -7432,7 +7431,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:267", - "key": "f6a06b0e48ae1dc6ec2aab400a3d180f3aa56a1e", + "key": "c030f2493b8247eb8486ffd184d395146e2c54e1", "name": "utilities/color/background/warning/default", "remote": false, "resolvedType": "COLOR", @@ -7464,7 +7463,7 @@ "description": "Used for inverted hover interaction text link and inverted pressed interaction button label", "hiddenFromPublishing": false, "id": "VariableID:43979:268", - "key": "b19615adba98963c1a3b35fca2b0029adb745d7a", + "key": "067432c2f0fef4643eb7c341b336ba7cf6f2c2a0", "name": "utilities/color/text/primary/200", "remote": false, "resolvedType": "COLOR", @@ -7496,7 +7495,7 @@ "description": "Additional text inverted color", "hiddenFromPublishing": false, "id": "VariableID:43979:269", - "key": "fb63701d256bac04885f8fecc95e8b66861f3622", + "key": "5ebc55b0788de67c67d250345fe7538c9f0aaf55", "name": "utilities/color/text/primary/400", "remote": false, "resolvedType": "COLOR", @@ -7532,7 +7531,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:270", - "key": "ca61056f78ba2b3da09f0752f60100cc4a20af26", + "key": "5c83c488eb586ab212ab12c636897420b1733315", "name": "utilities/color/text/primary/500", "remote": false, "resolvedType": "COLOR", @@ -7564,7 +7563,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:271", - "key": "43312b7f4b70dcd4f1d77d7033202948062dffc2", + "key": "93a9077e97e47f15079ae56acc94ded2aeaa6aef", "name": "utilities/color/text/primary/800", "remote": false, "resolvedType": "COLOR", @@ -7596,7 +7595,7 @@ "description": "Primary brand color for text", "hiddenFromPublishing": false, "id": "VariableID:43979:272", - "key": "71e57a6ed04d9ed3d75b5c936fb82e0b70d08fbb", + "key": "f99f4016cca349031db3e706b2e66689c895c6a8", "name": "utilities/color/text/primary/default", "remote": false, "resolvedType": "COLOR", @@ -7628,7 +7627,7 @@ "description": "Inverted text color", "hiddenFromPublishing": false, "id": "VariableID:43979:273", - "key": "4060a0ab4ab0372453a34b8af28dff6300a34805", + "key": "ae480eb23e647e2f07292cc63c0d32cd98f885ae", "name": "utilities/color/text/white/default", "remote": false, "resolvedType": "COLOR", @@ -7661,7 +7660,7 @@ "description": "Unchanged in dark mode", "hiddenFromPublishing": false, "id": "VariableID:43979:274", - "key": "fe10896058e823ff05d8692b1462300529a879ca", + "key": "70b9f744ad60838d7abf13df3c8b4449f9b817fc", "name": "utilities/color/text/white/default-constant", "remote": false, "resolvedType": "COLOR", @@ -7693,7 +7692,7 @@ "description": "Default text color", "hiddenFromPublishing": false, "id": "VariableID:43979:275", - "key": "3e470d32d9f1eee6ae3de88e3ce5dcc0458dedd1", + "key": "5c07ef2a85bc84ed76a8f42cb824d74e38fabe1c", "name": "utilities/color/text/black/default", "remote": false, "resolvedType": "COLOR", @@ -7725,7 +7724,7 @@ "description": "Used for disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:277", - "key": "4ace1fc8084e1ff4ff52e30094ae018a0d53532f", + "key": "9a8778b0a1478148a86de3c82921bb23e9ef3f6e", "name": "utilities/color/text/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -7757,7 +7756,7 @@ "description": "Additional text color, Breadcrumb item current and Video descriotion #100, 62%", "hiddenFromPublishing": false, "id": "VariableID:43979:278", - "key": "6f5781c7413c2409b10b951b6a14981f2e00ce1b", + "key": "2923653711354221ca67050a3daee82c5b017651", "name": "utilities/color/text/neutral/700", "remote": false, "resolvedType": "COLOR", @@ -7789,7 +7788,7 @@ "description": "Used to display negative performance values", "hiddenFromPublishing": false, "id": "VariableID:43979:279", - "key": "1fd1fdac868797d6753fe7aef1bacb28fbb09401", + "key": "392614a382fe18ee57942e20dba6e67595bc7a97", "name": "utilities/color/text/error/default", "remote": false, "resolvedType": "COLOR", @@ -7821,7 +7820,7 @@ "description": "Used to display positive performance values", "hiddenFromPublishing": false, "id": "VariableID:43979:280", - "key": "4902d4fe9b4959af945186333ea662dce0c5c6b2", + "key": "d5d4536a66117d6a0279337798fe9632dea9d8f1", "name": "utilities/color/text/success/default", "remote": false, "resolvedType": "COLOR", @@ -7853,7 +7852,7 @@ "description": "Used for hover interaction (dark mode)", "hiddenFromPublishing": false, "id": "VariableID:43979:281", - "key": "dca50a18b721384e8627c6a345b0500bdbc4c507", + "key": "fee4020a9af6576d97d65ec6ed51646d3b12253b", "name": "utilities/color/border/primary/500", "remote": false, "resolvedType": "COLOR", @@ -7885,7 +7884,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:282", - "key": "90d1ca66e4c59d77d2ccd304454e1cfe66342f2a", + "key": "65d4df15124b4037032795fd7915ec1762def2c7", "name": "utilities/color/border/primary/800", "remote": false, "resolvedType": "COLOR", @@ -7917,7 +7916,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:283", - "key": "5b6d1c3b0dce04c63deee93787bf2656814cf9f0", + "key": "10df804ce1b315cd938c30199da1982d6ab5ae46", "name": "utilities/color/icon-fill/risk/low", "remote": false, "resolvedType": "COLOR", @@ -7949,7 +7948,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:284", - "key": "0cc388499154f370fb356931264db817852d1293", + "key": "82c9f7bd18c02356c989039481ddac349680177f", "name": "utilities/color/icon-fill/risk/moderate", "remote": false, "resolvedType": "COLOR", @@ -7981,7 +7980,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:285", - "key": "f69da6e4ddbe2f8f2ab1624d517e34a1f7c17d0d", + "key": "dc2e19539e410835157fe9a8d25d6b4de2350f0c", "name": "utilities/color/icon-fill/risk/increased", "remote": false, "resolvedType": "COLOR", @@ -8013,7 +8012,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:286", - "key": "95049a514d39de8fc6b463c60bca7c39543386ba", + "key": "5566a63a049f2467a06e18f7ec8f6f4d96824245", "name": "utilities/color/icon-fill/risk/high", "remote": false, "resolvedType": "COLOR", @@ -8045,7 +8044,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:287", - "key": "b6205be06acd30ff9cc2b690b10703c16da8332a", + "key": "0c5c691724b74c92f5360dad61f1bc345c1f1b0a", "name": "utilities/color/icon-fill/risk/veryhigh", "remote": false, "resolvedType": "COLOR", @@ -8077,7 +8076,7 @@ "description": "Used for inverted hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:288", - "key": "22378a1c8b987272f5167eec5c5ac72fa718d548", + "key": "f8494ade78133eaf908b2b849a7e0e5161684ec0", "name": "utilities/color/border/primary/100", "remote": false, "resolvedType": "COLOR", @@ -8109,7 +8108,7 @@ "description": "Used for inverted pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:289", - "key": "29e5c36eb4ab81f7596e6f3752d9471535482949", + "key": "e3ce876c904b6361756c9b582caa4699fd6e5032", "name": "utilities/color/border/primary/200", "remote": false, "resolvedType": "COLOR", @@ -8141,7 +8140,7 @@ "description": "Used for inverted dividers", "hiddenFromPublishing": false, "id": "VariableID:43979:290", - "key": "388084b083c66f9d9abe18d60370c228975b6306", + "key": "cd975085d31cb49051d52ffd97320b069bb3e6e7", "name": "utilities/color/border/primary/400", "remote": false, "resolvedType": "COLOR", @@ -8173,7 +8172,7 @@ "description": "Used for buttons, inverted focus state", "hiddenFromPublishing": false, "id": "VariableID:43979:293", - "key": "b411b139c7707674db8754c767414103160f4c22", + "key": "b7dab54dbb2d7274bd65a1857321ee411c77e489", "name": "utilities/color/border/white/default", "remote": false, "resolvedType": "COLOR", @@ -8205,7 +8204,7 @@ "description": "Used to highlight active/selected elements\n", "hiddenFromPublishing": false, "id": "VariableID:43979:294", - "key": "54ed95642bef58a9f0373d367f663d8dd3f2154a", + "key": "0f8c347c8fb62a24be94d3f6f063c2432959735e", "name": "utilities/color/border/accent/default", "remote": false, "resolvedType": "COLOR", @@ -8237,7 +8236,7 @@ "description": "Used for disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:295", - "key": "0f8c3aa75f6b24a4d9fa52b959db1a393c65fc62", + "key": "f613a16ae05947aea9ec6a5f4ebc4c45d6f6b9b0", "name": "utilities/color/border/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -8269,7 +8268,7 @@ "description": "Used for inverted disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:296", - "key": "1fb8a04c3039eb428b8569fc869ad2f95dee5672", + "key": "9e30f258b2c0f0d2629c53c221c4751ed64863e0", "name": "utilities/color/border/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -8301,7 +8300,7 @@ "description": "Used for inverted hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:299", - "key": "98ca14ec8386f7d47fb2031caa94ca1347714ce5", + "key": "ab2f825f91eb7ba2f11568b0190b442732b829b1", "name": "utilities/color/background/accent/300", "remote": false, "resolvedType": "COLOR", @@ -8333,7 +8332,7 @@ "description": "Used for cta background", "hiddenFromPublishing": false, "id": "VariableID:43979:300", - "key": "fcdb6bc876c960a3972da4ca506c62f14a3f6b00", + "key": "3ad1768298970cc2426092705b32478a787c2fbf", "name": "utilities/color/background/accent/500", "remote": false, "resolvedType": "COLOR", @@ -8365,7 +8364,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:301", - "key": "21ef4255467c8ee9d3f381f609712aaf4164d6d9", + "key": "084563e826fc6be5c3794ea355813abf7ddb8841", "name": "utilities/color/background/accent/700", "remote": false, "resolvedType": "COLOR", @@ -8397,7 +8396,7 @@ "description": "Used for checkbox, switch", "hiddenFromPublishing": false, "id": "VariableID:43979:302", - "key": "c64a5d5139a71b86c0527a6b8cbe5487d5bf6aad", + "key": "b99bc39562a3eabb5dda9348b3277cf4bf02cdce", "name": "utilities/color/background/accent/default", "remote": false, "resolvedType": "COLOR", @@ -8429,7 +8428,7 @@ "description": "Used for inverted disabled state ", "hiddenFromPublishing": false, "id": "VariableID:43979:303", - "key": "7295476d48ceec4b060d9a1370cf3f314da58b4d", + "key": "a69d6cd23db786e44506eb9da42ea6d2f1b7957a", "name": "utilities/color/background/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -8461,7 +8460,7 @@ "description": "Used for badge", "hiddenFromPublishing": false, "id": "VariableID:43979:304", - "key": "e78d1111f785ba1b603e1e8f95c826b4c92ac0f0", + "key": "daa3d6328760539153fc3f45647ad145bafce298", "name": "utilities/color/background/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -8493,7 +8492,7 @@ "description": "Used for audio (wave animation)", "hiddenFromPublishing": false, "id": "VariableID:43979:305", - "key": "f70e52bbd223f0896caa97b0e78e33354187d260", + "key": "5dd1b70f30143dfd4f26ce27b4f8d6783e46bf07", "name": "utilities/color/background/_transparent/primary|10", "remote": false, "resolvedType": "COLOR", @@ -8533,7 +8532,7 @@ "description": "Used for map-marker", "hiddenFromPublishing": false, "id": "VariableID:43979:306", - "key": "33509adb18bf121f022a120db5258645fca018d6", + "key": "bebac26c4057a9c15063ebdb15ca92ded3156233", "name": "utilities/color/background/_transparent/primary|30", "remote": false, "resolvedType": "COLOR", @@ -8573,7 +8572,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43979:307", - "key": "4f80cc75f43c2ed18bb35264cc9f17824224eaff", + "key": "632a16c24ef4de601aef85a91a7c6efd7bb5477a", "name": "utilities/color/background/_transparent/primary|80", "remote": false, "resolvedType": "COLOR", @@ -8613,7 +8612,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43979:308", - "key": "83b16b775fe4d3fb66edc5c9eca9aced5069b3a1", + "key": "61808306a9bf578e0d2fcb5cd411e734c15568b7", "name": "utilities/color/background/_transparent/primary|90", "remote": false, "resolvedType": "COLOR", @@ -8653,7 +8652,7 @@ "description": "Used for audio (wave animation inverted)", "hiddenFromPublishing": false, "id": "VariableID:43979:309", - "key": "5e696d972de326b3fc3f9610e26fa3eb38d1c4cb", + "key": "9e2ac87cfc9b625ccb2f3a1421b4c90c35db0baa", "name": "utilities/color/background/_transparent/white|20", "remote": false, "resolvedType": "COLOR", @@ -8693,7 +8692,7 @@ "description": "Used for overlays", "hiddenFromPublishing": false, "id": "VariableID:43979:310", - "key": "5fe8ec6a4372ec3f8e20dca6079a4ec8c45cf3d6", + "key": "f05eaf7c336301818c4c860724325ce161632001", "name": "utilities/color/background/_transparent/primary-800|90", "remote": false, "resolvedType": "COLOR", @@ -8733,7 +8732,7 @@ "description": "Used for inverted hover interaction button label", "hiddenFromPublishing": false, "id": "VariableID:43979:311", - "key": "51e16d3cd8480deaebb0c4ca32a42369c84b0fe7", + "key": "d822c045f36b95a41595a331c15f2c6c1f911fd2", "name": "utilities/color/text/primary/100", "remote": false, "resolvedType": "COLOR", @@ -8765,7 +8764,7 @@ "description": "Used for inverted hover interaction button label", "hiddenFromPublishing": false, "id": "VariableID:43979:312", - "key": "967eec86f918a58187dd529399184ae238a11c5c", + "key": "dcab778e98006e62c2f9bcca63d4ad4c9ca91101", "name": "utilities/color/text/accent/default", "remote": false, "resolvedType": "COLOR", @@ -8797,7 +8796,7 @@ "description": "Used for inverted disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:313", - "key": "8a481b8cce5b47160d59cd4d272d04306e6cc656", + "key": "953d346b31ed015fa8c7220ba926e57982c73399", "name": "utilities/color/text/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -8831,7 +8830,7 @@ "description": "Used for tooltip", "hiddenFromPublishing": false, "id": "VariableID:43979:314", - "key": "d4139d796f0a150931530d67985df31b63bae1ae", + "key": "aedd4ad70357f8bbc63c882a23df069eb9c4285d", "name": "utilities/shadow/default/color", "remote": false, "resolvedType": "COLOR", @@ -8871,7 +8870,7 @@ "description": "Used for error messages, invalid states", "hiddenFromPublishing": false, "id": "VariableID:43979:493", - "key": "21989266f261e412e9b68a20b491678283c14e5f", + "key": "bcf7064923787b6a9ecda8d6df80d79f15ba76f9", "name": "utilities/color/icon-fill/error/default", "remote": false, "resolvedType": "COLOR", @@ -8903,7 +8902,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:39692", - "key": "26c88d345b8e7bbfdc92bceb00c6e4e293b4503a", + "key": "bfa8c9a392544ac39d4762960737f1365e8b781f", "name": "components/sd-breadcrumb/__separator/color", "remote": false, "resolvedType": "COLOR", @@ -8935,7 +8934,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:39695", - "key": "10963fee5698f83c6a3aa683180f3909a6616378", + "key": "0bd6e7b7ff86c905754340f7a254ce504fa1e82d", "name": "components/sd-header/color/background", "remote": false, "resolvedType": "COLOR", @@ -8967,7 +8966,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:39696", - "key": "eabb04070909fa9334d790ba739a79126031171b", + "key": "e4e3c39bf189e942cb10e2152bdc59b5daa6c8bd", "name": "components/sd-tag/--selected/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -8999,7 +8998,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:39698", - "key": "1544746768e81956ac80517cb050cf5694fbbb52", + "key": "888c121b1c70c0e412c8cdd87797339f20c5cf34", "name": "components/form-control/color/border", "remote": false, "resolvedType": "COLOR", @@ -9031,7 +9030,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:41070", - "key": "0d76b77e33d5a58373ea8c9f826831a3e346a929", + "key": "a5b086c155047b1c3811d0e00ff0711c7ab0c74c", "name": "components/panel/color/border", "remote": false, "resolvedType": "COLOR", @@ -9069,7 +9068,7 @@ "description": "\b0px", "hiddenFromPublishing": false, "id": "VariableID:44029:1552", - "key": "7c477f855cf4ae45769f707923db412d8845b3a7", + "key": "e5c5db0ad392ca25d4dd017613e8aebb8dddc7b2", "name": "UI/sizing/0", "remote": false, "resolvedType": "FLOAT", @@ -9084,7 +9083,7 @@ "description": "4px", "hiddenFromPublishing": false, "id": "VariableID:44029:1553", - "key": "f1ce12c532bbaca0537046783dcc1dff1e1838f5", + "key": "2c2b1f28d9451785f54e1f2e4401f34a49992197", "name": "UI/sizing/1", "remote": false, "resolvedType": "FLOAT", @@ -9099,7 +9098,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:44029:1554", - "key": "72877b5fa4fe283cfb7bd780ea3f5acd0c303fd9", + "key": "a5091f77c67a853826850a993fb65ca1dac7aabd", "name": "UI/sizing/2", "remote": false, "resolvedType": "FLOAT", @@ -9114,7 +9113,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:44029:1555", - "key": "fbc64dad97f00c032fcbaa11dfa42ac789294a03", + "key": "1dcbb4e13f7e0ac3e36df59f40e2092b9f37884c", "name": "UI/sizing/3", "remote": false, "resolvedType": "FLOAT", @@ -9129,7 +9128,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:44029:1556", - "key": "c0777e26fd0dadfc11a79e04d92ece890a14e504", + "key": "81a9505d7d7285444b72a568fe193cc7d91be13c", "name": "UI/sizing/4", "remote": false, "resolvedType": "FLOAT", @@ -9144,7 +9143,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:44029:1557", - "key": "d767ffa2e169e9badde43edec5da3fb8d60e9871", + "key": "8e92aceb1c4456311eab953d3908e8f6e807bd79", "name": "UI/sizing/5", "remote": false, "resolvedType": "FLOAT", @@ -9159,7 +9158,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:44029:1558", - "key": "ac2ff8bbd33cd291d85f5a37e30c904a74f97d6e", + "key": "b7307b6070ea656577a557c288fbf034df78444a", "name": "UI/sizing/6", "remote": false, "resolvedType": "FLOAT", @@ -9174,7 +9173,7 @@ "description": "28px", "hiddenFromPublishing": false, "id": "VariableID:44029:1559", - "key": "d1081ff26110330c57ae4dfb395f23d37575b5e7", + "key": "ffd712f618fb057ea76fda336b51943bb8255621", "name": "UI/sizing/7", "remote": false, "resolvedType": "FLOAT", @@ -9189,7 +9188,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:44029:1560", - "key": "60798c7cc2be0a08ba7bae05c22e43ced0d72a0e", + "key": "ec62c4bb2c8c10f5b0ef28e852ba3bc2e84d86f6", "name": "UI/sizing/8", "remote": false, "resolvedType": "FLOAT", @@ -9204,7 +9203,7 @@ "description": "36px", "hiddenFromPublishing": false, "id": "VariableID:44029:1561", - "key": "c5e8a584d4dc89553662e1ea644ed962818ea510", + "key": "f6ee32c97782f6294b5f2a6acce831b90a0e5560", "name": "UI/sizing/9", "remote": false, "resolvedType": "FLOAT", @@ -9219,7 +9218,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:44029:1562", - "key": "33f8472f7af8cdd6fb54270164b4a51c08647d57", + "key": "a59a82bfce5a30a467daa61ad0c8f15360d40492", "name": "UI/sizing/10", "remote": false, "resolvedType": "FLOAT", @@ -9234,7 +9233,7 @@ "description": "44px", "hiddenFromPublishing": false, "id": "VariableID:44029:1563", - "key": "acca30343f6cb99738923474f49a328ff39df729", + "key": "57b22c3947e16e85f59b857a7384dc0966d6db73", "name": "UI/sizing/11", "remote": false, "resolvedType": "FLOAT", @@ -9249,7 +9248,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:44029:1564", - "key": "72c3517453ef54308beb009f01f6ef47e64e4614", + "key": "bc9952989a89c9426389a7319ae7f494d07b4e6e", "name": "UI/sizing/12", "remote": false, "resolvedType": "FLOAT", @@ -9264,7 +9263,7 @@ "description": "56px", "hiddenFromPublishing": false, "id": "VariableID:44029:1565", - "key": "75a9260ea45bcbd00536930c02272accb59af8f0", + "key": "319d9dacb17e72bf426c956d070c5b608dacbe73", "name": "UI/sizing/14", "remote": false, "resolvedType": "FLOAT", @@ -9279,7 +9278,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:44029:1566", - "key": "9a6143526077ff470b5f8efb0819d227f9d91eac", + "key": "a1494d57d4f18658bd7bca39852be628898f86f9", "name": "UI/sizing/16", "remote": false, "resolvedType": "FLOAT", @@ -9294,7 +9293,7 @@ "description": "80px", "hiddenFromPublishing": false, "id": "VariableID:44029:1567", - "key": "a7be5fcf21995e6e77d75fc7a6a2436b969e1722", + "key": "7b25789acf2117b767ec91d398ee35aabdc0ccfd", "name": "UI/sizing/20", "remote": false, "resolvedType": "FLOAT", @@ -9309,7 +9308,7 @@ "description": "96px", "hiddenFromPublishing": false, "id": "VariableID:44029:1568", - "key": "9a04569e881405a36ae58f304242fb60837c212a", + "key": "ba711f2d37fbdae8419625e4e0223966f3067a30", "name": "UI/sizing/24", "remote": false, "resolvedType": "FLOAT", @@ -9324,7 +9323,7 @@ "description": "112px", "hiddenFromPublishing": false, "id": "VariableID:44029:1569", - "key": "a0f6d90b83f1bd9d657a117d94e9ada0cebc2905", + "key": "4e7f8769faa2003229832b2f652c79a8c7d79b1b", "name": "UI/sizing/28", "remote": false, "resolvedType": "FLOAT", @@ -9339,7 +9338,7 @@ "description": "128px", "hiddenFromPublishing": false, "id": "VariableID:44029:1570", - "key": "ad9b0baea8731ed1e31e8f1c680e75cbc9ba32c2", + "key": "08335bc1f79329ce36c6dfa01140438ea4875a78", "name": "UI/sizing/32", "remote": false, "resolvedType": "FLOAT", @@ -9354,7 +9353,7 @@ "description": "144px", "hiddenFromPublishing": false, "id": "VariableID:44029:1571", - "key": "fedc249ada7b936d4d8bfdf96fda56da12cad887", + "key": "de8da0883c94e330834d8dd72d9c7692d6f3eb4d", "name": "UI/sizing/36", "remote": false, "resolvedType": "FLOAT", @@ -9369,7 +9368,7 @@ "description": "160px", "hiddenFromPublishing": false, "id": "VariableID:44029:1572", - "key": "faebe3ad9cbb59013bf6276d876e4b598a5a785c", + "key": "8f8cd40fb83b4041c4c7a57343899839235b7dcf", "name": "UI/sizing/40", "remote": false, "resolvedType": "FLOAT", @@ -9384,7 +9383,7 @@ "description": "176px", "hiddenFromPublishing": false, "id": "VariableID:44029:1573", - "key": "d33b6178540db5afcd4c51946fb361136d68870f", + "key": "0db980b0d57c79f9b7859684fdc8b054437ad717", "name": "UI/sizing/44", "remote": false, "resolvedType": "FLOAT", @@ -9399,7 +9398,7 @@ "description": "208px", "hiddenFromPublishing": false, "id": "VariableID:44029:1574", - "key": "660ba5bcdab8ee53a2c1ddbbfde01c6c9d517a1f", + "key": "ee677a09262cc4d9cab3f6c6c2e29e350fa24f20", "name": "UI/sizing/52", "remote": false, "resolvedType": "FLOAT", @@ -9414,7 +9413,7 @@ "description": "224px", "hiddenFromPublishing": false, "id": "VariableID:44029:1575", - "key": "29916bbd596a2dafb92b7b5a713f0085cff64484", + "key": "bad128d1cf42322511ad0eaf6aeb191292db0934", "name": "UI/sizing/56", "remote": false, "resolvedType": "FLOAT", @@ -9429,7 +9428,7 @@ "description": "256px", "hiddenFromPublishing": false, "id": "VariableID:44029:1576", - "key": "b1b3350eb61f97e72006ffe005b8a24f4607cc4c", + "key": "c147c92c2da99b6c9513c201721c6a91fed7b4ef", "name": "UI/sizing/64", "remote": false, "resolvedType": "FLOAT", @@ -9444,7 +9443,7 @@ "description": "288px", "hiddenFromPublishing": false, "id": "VariableID:44029:1577", - "key": "7f8e32caecc487908926c5875aceb175e03f2a2f", + "key": "742ad520d073708af3de230000152d7411210faf", "name": "UI/sizing/72", "remote": false, "resolvedType": "FLOAT", @@ -9459,7 +9458,7 @@ "description": "320px", "hiddenFromPublishing": false, "id": "VariableID:44029:1578", - "key": "e8f5d5eabd765ce6fd37b6a32f7faba093aad8ac", + "key": "5ad621d3ae1f3e78b984db81a5b5303900bae222", "name": "UI/sizing/80", "remote": false, "resolvedType": "FLOAT", @@ -9474,7 +9473,7 @@ "description": "384px", "hiddenFromPublishing": false, "id": "VariableID:44029:1579", - "key": "ffd081ae049be3e14263103afb9bdc3e6520d524", + "key": "711a2abd24c147789e235890693ce59e41e63e85", "name": "UI/sizing/96", "remote": false, "resolvedType": "FLOAT", @@ -9490,7 +9489,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:44029:1580", - "key": "cc1e7f9807b09bb99742f0828e0880793ce5965d", + "key": "1d4a59408ca790a07edbd75f463d571e7907de27", "name": "UI/text/sm", "remote": false, "resolvedType": "FLOAT", @@ -9506,7 +9505,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:44029:1581", - "key": "a191a66d99f604389d3b2a114ec1767165de13dd", + "key": "53e028c439df989d4c8bfda1ed5f8844dc88c88f", "name": "UI/text/base", "remote": false, "resolvedType": "FLOAT", @@ -9522,7 +9521,7 @@ "description": "Used for text sm compact (size: 14, line-height: 100%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1587", - "key": "dc7b6417953ac25a291a8ff319934529ee1284b4", + "key": "932fa9b67b3ebe95e1312c3544572b06262ed50d", "name": "UI/leading/3", "remote": false, "resolvedType": "FLOAT", @@ -9538,7 +9537,7 @@ "description": "Used for text sm (size: 14, line-height: 150%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1589", - "key": "5c547212a892f596b06ed8dd09559480acbfa3ae", + "key": "53e35fce1e75d9f51dd6ad952ece1ce384da5fdb", "name": "UI/leading/5", "remote": false, "resolvedType": "FLOAT", @@ -9554,7 +9553,7 @@ "description": "Used for text base (size: 16, line-height: 150%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1590", - "key": "c4d66578b823b30a20e16762d200287394355650", + "key": "f3bc6900d5ecfd801851b8febb76a34d32a39270", "name": "UI/leading/6", "remote": false, "resolvedType": "FLOAT", @@ -9570,7 +9569,7 @@ "description": "Used for mobile text lg (size: 20, line-height: 150%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1592", - "key": "c0cf288ed7523531945e8b973b3135102e318997", + "key": "f5a1fc81d367fce4434c324af61b56f06720e914", "name": "UI/leading/8", "remote": false, "resolvedType": "FLOAT", @@ -9586,7 +9585,7 @@ "description": "Used for text base (size: 16, line-height: 150%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1594", - "key": "6833d3ac75c1e7df1be1ff43d2e294cae2e8a684", + "key": "0dca595518114be9573c32ca1713efe0b5b28287", "name": "UI/leading/9", "remote": false, "resolvedType": "FLOAT", @@ -9602,7 +9601,7 @@ "description": "Used for text 3xl, mobile text 4xl (size: 32, line-height: 120%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1595", - "key": "41e953b7294f4ee26784a1edbaafab1670ee4ea2", + "key": "c19881cfc5eb87ca3824d9079ce78f2dbc0aac3d", "name": "UI/leading/9,5", "remote": false, "resolvedType": "FLOAT", @@ -9617,7 +9616,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1598", - "key": "379d025544e8ecd0eb02553e61dddfa240daaa17", + "key": "fd4c1d8e1c1ad21cb8684ada2e19a28ded27e408", "name": "UI/border/border-0", "remote": false, "resolvedType": "FLOAT", @@ -9632,7 +9631,7 @@ "description": "Default border width", "hiddenFromPublishing": false, "id": "VariableID:44029:1599", - "key": "0f6095d019315a87dd0974516beefbe613098a5b", + "key": "c47b5d19257f4d350fdc867957a2f42976a3b289", "name": "UI/border/border", "remote": false, "resolvedType": "FLOAT", @@ -9647,7 +9646,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1600", - "key": "f0e992b47d5841d0d3c90f4db9e5afe4d99d49ec", + "key": "bf5491b01b1cc68ffdadad03f99ae7b349a917b7", "name": "UI/border/border-2", "remote": false, "resolvedType": "FLOAT", @@ -9662,7 +9661,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1601", - "key": "410e01622732636ef59903d9fc1bb5897016c397", + "key": "1b6bc43adb5dc0598ef6b258e8941676148f2ba1", "name": "UI/border/border-4", "remote": false, "resolvedType": "FLOAT", @@ -9677,7 +9676,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1602", - "key": "f0ecde5ce317b8bf1b554bf64ae0f8ab36f7fbf7", + "key": "1faa72dfd5c7c3d6f2a269c478a4f585c5a23018", "name": "UI/border/border-6", "remote": false, "resolvedType": "FLOAT", @@ -9692,7 +9691,7 @@ "description": "For pill buttons / shapes", "hiddenFromPublishing": false, "id": "VariableID:44029:1603", - "key": "61c53f8221aebf6c16ac055de72f184d963176cf", + "key": "eadcda80e43c5897fbbc257cade9de8f3c7dca24", "name": "UI/rounded/full", "remote": false, "resolvedType": "FLOAT", @@ -9707,7 +9706,7 @@ "description": "For pill buttons / shapes", "hiddenFromPublishing": false, "id": "VariableID:44029:1604", - "key": "e37c6960c80264ed6bc72c73837d88e80273f7d2", + "key": "a7382b4972316c9a4d00edfde2d774101aeefa9f", "name": "UI/rounded/default", "remote": false, "resolvedType": "FLOAT", @@ -9722,7 +9721,7 @@ "description": "No rounding", "hiddenFromPublishing": false, "id": "VariableID:44029:1605", - "key": "e40289c64fc6db6c827080183c1300d727bec67a", + "key": "313c5fef17c6bce1d9e60ab0a2f87706362b7e2f", "name": "UI/rounded/none", "remote": false, "resolvedType": "FLOAT", @@ -9737,7 +9736,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:44029:1606", - "key": "78e43473af538a6f995b7d839ef73444fdfc5db2", + "key": "4de835ca59980687954af8902cf33a37627aad84", "name": "UI/rounded/sm", "remote": false, "resolvedType": "FLOAT", @@ -9752,7 +9751,7 @@ "description": "6px", "hiddenFromPublishing": false, "id": "VariableID:44029:1607", - "key": "264d71252d2057a06ebf9c28eaf7833dc3e5fd65", + "key": "1cdbe4833402b4792bf7adef9e4bbb591b710aa8", "name": "UI/rounded/md", "remote": false, "resolvedType": "FLOAT", @@ -9767,7 +9766,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:44029:1608", - "key": "5cc51f361038532b3f2da80498976897fbf3847d", + "key": "e489d09135b02cbc4392cd11d0956319f94922e0", "name": "UI/rounded/\blg", "remote": false, "resolvedType": "FLOAT", @@ -9782,7 +9781,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:44029:1609", - "key": "a858169fe3819d367984110ec1f524c959c08653", + "key": "14074d8b70f8ca3fe63fb75b1e8311e74677f4ea", "name": "UI/rounded/xl", "remote": false, "resolvedType": "FLOAT", @@ -9797,7 +9796,7 @@ "description": "1px\b", "hiddenFromPublishing": false, "id": "VariableID:44029:1610", - "key": "c85fc66823bfd8e60bd224130b8eb4b004e058c0", + "key": "979429454e773990dd21002e54a822c0b6adbcac", "name": "UI/sizing/px", "remote": false, "resolvedType": "FLOAT", @@ -9812,7 +9811,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:44029:1611", - "key": "a616cd43553e5514a115f49751a4c77eb2a211c7", + "key": "8e2e9664ba627af68ea1c787ce20dcde22b80983", "name": "UI/sizing/0,5", "remote": false, "resolvedType": "FLOAT", @@ -9827,7 +9826,7 @@ "description": "\b6px", "hiddenFromPublishing": false, "id": "VariableID:44029:1612", - "key": "1b09bcecbe121e5045891a4a6f63db7a2612d328", + "key": "b2b4bac01ed3327f3928b295171fea6b465b0266", "name": "UI/sizing/1,5", "remote": false, "resolvedType": "FLOAT", @@ -9842,7 +9841,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:44029:1613", - "key": "5f123703c85f5f9e6f4f95642065ea4e07884dc4", + "key": "c24d42699d33503ef9fa287c1b766b0b23018b11", "name": "UI/sizing/3,5", "remote": false, "resolvedType": "FLOAT", @@ -9857,7 +9856,7 @@ "description": "10px", "hiddenFromPublishing": false, "id": "VariableID:44029:1614", - "key": "925772939bb6f23fe9ba4bd494df4cb6fc493ba5", + "key": "28293260d3823ca9d8677cda874996b8a74e14ff", "name": "UI/sizing/2,5", "remote": false, "resolvedType": "FLOAT", @@ -9872,7 +9871,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1615", - "key": "db34f002a093b52cd7a995dea47630cd0a0d8654", + "key": "129fc9b991650e87b1a80cb52c7e53d9b0127902", "name": "UI/opacity/opacity-0", "remote": false, "resolvedType": "FLOAT", @@ -9887,7 +9886,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1616", - "key": "5c90b0ffa1ae2172163aec4516ef41c2bab15d95", + "key": "9db640f6f2f5a891e2a4b47ce5e148362bab65b0", "name": "UI/opacity/opacity-5", "remote": false, "resolvedType": "FLOAT", @@ -9902,7 +9901,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1617", - "key": "9d631d7a4911727f307bd74fc00bc3f5813d7b81", + "key": "78e9487d76f70b4c54dd439ec074e66e70f74f17", "name": "UI/opacity/opacity-2", "remote": false, "resolvedType": "FLOAT", @@ -9917,7 +9916,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1618", - "key": "3745df7a143412b4299853c96e12c823005f74de", + "key": "cf3381af07c8af7bba9fab1f4781e38c616f54a1", "name": "UI/opacity/opacity-10", "remote": false, "resolvedType": "FLOAT", @@ -9932,7 +9931,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1619", - "key": "84729bfacbd4bd3cd39c794f9561e585c656bdef", + "key": "1678e4e4a4c9de8e17aa93b50858f5beb1256759", "name": "UI/opacity/opacity-20", "remote": false, "resolvedType": "FLOAT", @@ -9947,7 +9946,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1620", - "key": "a9bba20c779184ac09aefbcbb51aa8f50fe252d7", + "key": "8737c211f43a33aacd75be628d4e75cd8a2382b3", "name": "UI/opacity/opacity-30", "remote": false, "resolvedType": "FLOAT", @@ -9962,7 +9961,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1621", - "key": "f8da438bd691630fe801a729ed17bc17bdf95dc8", + "key": "7822c17e5da0ffe5bc4285e1d30023226bac0c60", "name": "UI/opacity/opacity-50", "remote": false, "resolvedType": "FLOAT", @@ -9977,7 +9976,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1622", - "key": "90b7ea2bf33361cf684953b0b982248a98040d21", + "key": "10a777d6de433ba9124af77952a9e4eaf39477b8", "name": "UI/opacity/opacity-55", "remote": false, "resolvedType": "FLOAT", @@ -9992,7 +9991,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1623", - "key": "b1beba017840ad503e63a6549d835a5ccb6508f7", + "key": "88f795b9d03faec1d50aceb18ef56a7518b57c2a", "name": "UI/opacity/opacity-60", "remote": false, "resolvedType": "FLOAT", @@ -10007,7 +10006,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1624", - "key": "984114220a9d736124cbe24617c096fa7851f85f", + "key": "b8e9607c999da486342b6edc1b9b9042742038e9", "name": "UI/opacity/opacity-70", "remote": false, "resolvedType": "FLOAT", @@ -10022,7 +10021,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1625", - "key": "0cded7367e63b24f287e5028cb11caa76cc76b28", + "key": "622c67aa71992a150b97adb5c7a9cf0d242e10e1", "name": "UI/opacity/opacity-75", "remote": false, "resolvedType": "FLOAT", @@ -10037,7 +10036,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1626", - "key": "954d144fb59210abeb2b36fba5428a625516e974", + "key": "64f3e8bf909cd1f92fef683b7d154dd3ba705fa2", "name": "UI/opacity/opacity-80", "remote": false, "resolvedType": "FLOAT", @@ -10052,7 +10051,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1627", - "key": "febf3fe8dbab79a196d32f6e02cf52cbaf5cc958", + "key": "a721f8216ccb580767c16d80a665452ed49eedf7", "name": "UI/opacity/opacity-85", "remote": false, "resolvedType": "FLOAT", @@ -10067,7 +10066,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1628", - "key": "cdda8ff9532af9b2348fe00806395be89a5d8170", + "key": "55bbd77a9bd28ac31caa0c8ec1982330a84d9e51", "name": "UI/opacity/opacity-90", "remote": false, "resolvedType": "FLOAT", @@ -10082,7 +10081,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1629", - "key": "d4639689bb2d42aec36c732a300a657903a06bc8", + "key": "326416d4dadcb43dbeabc4d9a16e471d13c79593", "name": "UI/opacity/opacity-100", "remote": false, "resolvedType": "FLOAT", @@ -10097,7 +10096,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1630", - "key": "1f24bf2dfbbcd9320fae90e4d2ed86df3dcd662b", + "key": "3fde7fe56772cb1569e03e485fd7fef51bf6da9d", "name": "UI/font-weight/font-normal", "remote": false, "resolvedType": "STRING", @@ -10112,7 +10111,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1631", - "key": "ee0a849aefea03520551ea06bfb658acf6ae17fa", + "key": "098c8cb0d45b74657f6ee59b7dcb56135ef107d7", "name": "UI/font-weight/font-bold", "remote": false, "resolvedType": "STRING", @@ -10127,7 +10126,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1632", - "key": "b21ce22f7300abb3927049542304b99a2cd3093d", + "key": "f8696849b5756fc265fae87f1f7b13de54eaa300", "name": "VB/font-family/font-family-primary", "remote": false, "resolvedType": "STRING", @@ -10142,7 +10141,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1633", - "key": "383c10e60b9a54860a57eec7ae005d4d2b120e3e", + "key": "eaa9abc0c499407cea81d3e87fc2b013091be86e", "name": "utilities/opacity/0", "remote": false, "resolvedType": "FLOAT", @@ -10174,7 +10173,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1634", - "key": "5bb4887c51e5ac863a3c0730aa3b33fa16733bb7", + "key": "e6f6efabe80eb0ab85daaaef9ce7bae95a663f0c", "name": "utilities/opacity/5", "remote": false, "resolvedType": "FLOAT", @@ -10203,7 +10202,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1635", - "key": "2cea95611b9721cf4330adf9fe79e0beb285526c", + "key": "84585f8d2b110ef8819d34c4c7d0084271a9e958", "name": "utilities/opacity/10", "remote": false, "resolvedType": "FLOAT", @@ -10232,7 +10231,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1636", - "key": "b5d86f1b8c3fc540692801ea9d62e74fe35d4ab6", + "key": "d635152b20aa452751ca4a7955156fdfee351b50", "name": "utilities/opacity/20", "remote": false, "resolvedType": "FLOAT", @@ -10261,7 +10260,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1637", - "key": "667937d6c4d8785da051082b1acf287ae59d00f1", + "key": "aea7baea26c8631bc73b279e739ae2069d5093f6", "name": "utilities/opacity/30", "remote": false, "resolvedType": "FLOAT", @@ -10290,7 +10289,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1638", - "key": "d0533c7f01afe20c660d3cd178e3ddc05ac3d63d", + "key": "c3f476d1f81df6b81a486b644dfb2f4b2662ee99", "name": "utilities/opacity/50", "remote": false, "resolvedType": "FLOAT", @@ -10322,7 +10321,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1639", - "key": "b4274609b5fcf95d49bab517423c3a314be91abe", + "key": "7e51e0ab42d14f543a2625768e177420d47d5303", "name": "utilities/opacity/55", "remote": false, "resolvedType": "FLOAT", @@ -10351,7 +10350,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1640", - "key": "6ed06bf10888ce6de8880c9306f4dcec8b7dfbbd", + "key": "6d39b8775e2e2ad509d7f94d4269166e19987ec2", "name": "utilities/opacity/60", "remote": false, "resolvedType": "FLOAT", @@ -10383,7 +10382,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1641", - "key": "8b51dc2652fa333572f9ea96e6731761ef647e0e", + "key": "dc39e6dcba43b41605534cad8bd4bc71bcf87d29", "name": "utilities/opacity/70", "remote": false, "resolvedType": "FLOAT", @@ -10412,7 +10411,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1642", - "key": "bfe56115a4d1269f629af5c3ef2228d3a96c4df6", + "key": "46159233b2f638d6187048b4f273f0c5049cd2b9", "name": "utilities/opacity/75", "remote": false, "resolvedType": "FLOAT", @@ -10444,7 +10443,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1643", - "key": "5a91d694cca00565c83d2ec6168e2d30bae42f58", + "key": "4d9de493bd91e58ab8d8d6f9726d9f53cccad652", "name": "utilities/opacity/80", "remote": false, "resolvedType": "FLOAT", @@ -10476,7 +10475,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1644", - "key": "df82195d968ec9ae4f6007fc00d127a3329e359c", + "key": "c0e7cdf7e4603fd981fbca0097318a741a8efb7f", "name": "utilities/opacity/\b85", "remote": false, "resolvedType": "FLOAT", @@ -10505,7 +10504,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1645", - "key": "c8186a77fa342de5f11c995107cbc30d2596041b", + "key": "bcfe0813ef1851e89423f22825bba54653d5b70a", "name": "utilities/opacity/\b90", "remote": false, "resolvedType": "FLOAT", @@ -10537,7 +10536,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1646", - "key": "4c8fd5004d2366692e13b20828b5c4bab7a01c30", + "key": "ce80cee32d88f65332c719d48a67f1cece6a9090", "name": "utilities/opacity/\b100", "remote": false, "resolvedType": "FLOAT", @@ -10569,7 +10568,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:44029:1647", - "key": "683d39c931c9e24b425fef9d954eaf07f845a243", + "key": "f630a94d649e1f39c3238ab15d8ac6ca837f5100", "name": "utilities/sizing/2", "remote": false, "resolvedType": "FLOAT", @@ -10601,7 +10600,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:44029:1648", - "key": "f2084c82e4299e7c37adac1753a90e8ffe5b82cf", + "key": "6b739f1e3aa9655dbe35175e2acdee2318fb6da5", "name": "utilities/sizing/3", "remote": false, "resolvedType": "FLOAT", @@ -10633,7 +10632,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:44029:1649", - "key": "7eee5f0624d95e23f98b576b3f594c2f40d347fe", + "key": "f9df5a6165d907e022d201b2c6efc6412a6c9e32", "name": "utilities/sizing/4", "remote": false, "resolvedType": "FLOAT", @@ -10665,7 +10664,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:44029:1650", - "key": "f1a663cfd0ae6e12f4a7349fad5f4a560370f6d0", + "key": "0818b74f02e6e4ffec1ff93f02195d0fe2b548d6", "name": "utilities/sizing/5", "remote": false, "resolvedType": "FLOAT", @@ -10697,7 +10696,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:44029:1651", - "key": "fe7f5b89d0360d08d42b3f0d16d15ac398c57f72", + "key": "6f61155c45639e5b2b766aa65c06cf691eabee6e", "name": "utilities/sizing/6", "remote": false, "resolvedType": "FLOAT", @@ -10729,7 +10728,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:44029:1652", - "key": "b319eb47de41b21b324162395e2fc19b31d4a627", + "key": "ab6ab6f90593ec3841f58eb67e03317f302dde32", "name": "utilities/sizing/8", "remote": false, "resolvedType": "FLOAT", @@ -10761,7 +10760,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:44029:1653", - "key": "1420a6233392f2b9804c806813f57242054025b3", + "key": "6e72ee74355849fa80525929409879a65daaebee", "name": "utilities/sizing/10", "remote": false, "resolvedType": "FLOAT", @@ -10793,7 +10792,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:44029:1654", - "key": "8fafb4b9268aa10986aaa9c4514e186d6c37e70b", + "key": "1d7ef86412e2b4dffe455cc325cb2d284d3d9c62", "name": "utilities/sizing/12", "remote": false, "resolvedType": "FLOAT", @@ -10825,7 +10824,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:44029:1655", - "key": "cc136bb8146690a55b7fec332a52c380c5dda6a4", + "key": "278a5641b0df40649117aba41ffc17d4c8cee7e2", "name": "utilities/sizing/16", "remote": false, "resolvedType": "FLOAT", @@ -10857,7 +10856,7 @@ "description": "96px", "hiddenFromPublishing": false, "id": "VariableID:44029:1656", - "key": "b0de580aa9ded52e07daf9cc703e18ff6cc451fe", + "key": "77352023656d5434baf8d430d4b0a0b2d5d0ccda", "name": "utilities/sizing/24", "remote": false, "resolvedType": "FLOAT", @@ -10889,7 +10888,7 @@ "description": "10px", "hiddenFromPublishing": false, "id": "VariableID:44029:1657", - "key": "97edd14b13fbf725a2c017cf07898ce2708af518", + "key": "d84982c899e9c5d6ef6c4451fd5badc9c1ce2235", "name": "utilities/sizing/2,5", "remote": false, "resolvedType": "FLOAT", @@ -10921,7 +10920,7 @@ "description": "4px", "hiddenFromPublishing": false, "id": "VariableID:44029:1658", - "key": "ffe708cde413bc1244ab9c8ab3107f3686d3a4d4", + "key": "d21fc67f127ffad5529c451b76e747c4252d072a", "name": "utilities/spacing/1", "remote": false, "resolvedType": "FLOAT", @@ -10953,7 +10952,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:44029:1659", - "key": "58b36ac18c1e7046a9242f6e49aaee4e195b60f3", + "key": "45a1bae3e06e98b819764122a0807cfc8bbb9b00", "name": "utilities/spacing/2", "remote": false, "resolvedType": "FLOAT", @@ -10985,7 +10984,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:44029:1660", - "key": "4a770a63ae4053df17e4e8f25434881d52df6143", + "key": "107905365235871606a196e2ff8090413c618475", "name": "utilities/spacing/3", "remote": false, "resolvedType": "FLOAT", @@ -11017,7 +11016,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:44029:1661", - "key": "a8962328af59dfaec273be7b017fdd2aaadd6d8e", + "key": "be244003d0cde449ae27e7e2ed43dd42a77f61b7", "name": "utilities/spacing/4", "remote": false, "resolvedType": "FLOAT", @@ -11049,7 +11048,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:44029:1662", - "key": "eaaaca6a3dbef50ff9d19dbc0dfaa74fb82b4325", + "key": "a22b8c9ca0668e56371b7b6cff11fed71f9efd1d", "name": "utilities/spacing/6", "remote": false, "resolvedType": "FLOAT", @@ -11081,7 +11080,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:44029:1663", - "key": "fa83a30d69cf57ad06d2dece94e8803773c50c4f", + "key": "39b1007b35cddf50cfea0d3c6ce6e02779063c9e", "name": "utilities/spacing/8", "remote": false, "resolvedType": "FLOAT", @@ -11113,7 +11112,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:44029:1664", - "key": "30b90d7ebd30fdb602adea021361821945d19100", + "key": "cccbf4d7784c62e4c5fb74bf94849b2f692efaa7", "name": "utilities/spacing/10", "remote": false, "resolvedType": "FLOAT", @@ -11145,7 +11144,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:44029:1665", - "key": "d48060d8709c9894233e3eb253544c4a53b4b30b", + "key": "445d81bd946ef54846c37719b2c28268fba20d9b", "name": "utilities/spacing/12", "remote": false, "resolvedType": "FLOAT", @@ -11177,7 +11176,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:44029:1666", - "key": "eabdccb562ee753d9f7fad41a4b3bbed3addef48", + "key": "b97665d45cd0e15fab2982be222440a8114dec2c", "name": "utilities/spacing/16", "remote": false, "resolvedType": "FLOAT", @@ -11209,7 +11208,7 @@ "description": "80px", "hiddenFromPublishing": false, "id": "VariableID:44029:1667", - "key": "b93734847af2b8f91b49abef96ee041d2c63c1a3", + "key": "6299f7a2d33485058f854ea5bc3e293ad92a95a3", "name": "utilities/spacing/20", "remote": false, "resolvedType": "FLOAT", @@ -11241,7 +11240,7 @@ "description": "96px", "hiddenFromPublishing": false, "id": "VariableID:44029:1668", - "key": "0589bc9fb8ec360d688da787c00b61e7903da751", + "key": "822d68310f23844cc1b8ebd27e14b41bfbe0aaf5", "name": "utilities/spacing/24", "remote": false, "resolvedType": "FLOAT", @@ -11273,7 +11272,7 @@ "description": "128px", "hiddenFromPublishing": false, "id": "VariableID:44029:1669", - "key": "3ed72408334fcac16fd6b663210b46e6e2bde8aa", + "key": "83b6b870459f3fbefc246a01cbdee325138d5091", "name": "utilities/spacing/32", "remote": false, "resolvedType": "FLOAT", @@ -11305,7 +11304,7 @@ "description": "160px", "hiddenFromPublishing": false, "id": "VariableID:44029:1670", - "key": "f7668a5e28138d1acdfa103bb9d13afbd3dae22c", + "key": "2c15912d7bb3fb79be0d6020ec81c0cbc25740be", "name": "utilities/spacing/40", "remote": false, "resolvedType": "FLOAT", @@ -11337,7 +11336,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:44029:1671", - "key": "bfac2251a74dcc084d41166160de5c86c30da3e9", + "key": "638216e2c5bd0702b28f6c7a51bc4794b37face2", "name": "utilities/spacing/0,5", "remote": false, "resolvedType": "FLOAT", @@ -11369,7 +11368,7 @@ "description": "1px", "hiddenFromPublishing": false, "id": "VariableID:44029:1672", - "key": "e9da328ab6677a66b16de109dfae412420dd138d", + "key": "8c8c8e10fe5e85a456d80d7fc866f80675071376", "name": "utilities/spacing/0,25", "remote": false, "resolvedType": "FLOAT", @@ -11401,7 +11400,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1673", - "key": "772a621e47e68fcc3a30c3039fd783813a8fb783", + "key": "53a194cd9851871036f0edeee777a2f6dfb6e9c1", "name": "utilities/spacing/1,5", "remote": false, "resolvedType": "FLOAT", @@ -11433,7 +11432,7 @@ "description": "4px Default radius for buttons", "hiddenFromPublishing": false, "id": "VariableID:44029:1674", - "key": "58ecda55f99c80bd6d06db8b5ccd65c2eebee1bb", + "key": "d4709dedb538400cd65d5e9afa0ee6eb19f54b46", "name": "utilities/rounded/default", "remote": false, "resolvedType": "FLOAT", @@ -11465,7 +11464,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:44029:1675", - "key": "93a00025b40bf2bc2554fc2de8715692beb29c77", + "key": "17c7026d178c09d27ce1fb603e3ed1c07d4bc4fb", "name": "utilities/rounded/sm", "remote": false, "resolvedType": "FLOAT", @@ -11497,7 +11496,7 @@ "description": "6px Inner focus outline", "hiddenFromPublishing": false, "id": "VariableID:44029:1676", - "key": "a607ae13317daefc8b3f5e4e24e02a2544201470", + "key": "66bdf7ff2d85a713e9253614d4eefc759d135ceb", "name": "utilities/rounded/md", "remote": false, "resolvedType": "FLOAT", @@ -11529,7 +11528,7 @@ "description": "8px Outer focus outline", "hiddenFromPublishing": false, "id": "VariableID:44029:1677", - "key": "2be5caa70dfc6c968d51a3d30cc6c6ff44cc2c97", + "key": "6c40763b71d7919b53d7336ba1f9e334e1ca9665", "name": "utilities/rounded/lg", "remote": false, "resolvedType": "FLOAT", @@ -11561,7 +11560,7 @@ "description": "Radius for pill shape buttons", "hiddenFromPublishing": false, "id": "VariableID:44029:1678", - "key": "d2a091e7a616d0e0ff77f1fa1f0cfcb48674add0", + "key": "691b39e01de5eea6aea5902f31b1ce412c724fad", "name": "utilities/rounded/full", "remote": false, "resolvedType": "FLOAT", @@ -11593,7 +11592,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1679", - "key": "18fd1538958e858a5d695ab766fb7470224f151a", + "key": "b34c06f6d386abcbc00134f03406fb84d0f1fb29", "name": "utilities/rounded/none", "remote": false, "resolvedType": "FLOAT", @@ -11625,7 +11624,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1681", - "key": "5296b42824ec2d8dbde09004b2db22741a19d651", + "key": "0fd82dd015c469866a13986acf85213f0de7781a", "name": "utilities/border-width/2", "remote": false, "resolvedType": "FLOAT", @@ -11657,7 +11656,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1682", - "key": "4fa4856170db6e9499b449d8f53bc90a285160d6", + "key": "a1d8f6c5529e7da4104e4d8fac6c8bd0fcadef3a", "name": "utilities/border-width/4", "remote": false, "resolvedType": "FLOAT", @@ -11689,7 +11688,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1683", - "key": "53ec712cf503fc0b9caac867ba463bceab6023e4", + "key": "8506edf8435d6afa9ca9bff28ba8773ea5a639a3", "name": "utilities/border-width/6", "remote": false, "resolvedType": "FLOAT", @@ -11721,7 +11720,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1684", - "key": "2c1838958ee84d798570f50e7b889b4b02befcf7", + "key": "eb136d049f326fa54c6e167246ed2ad41d1ff115", "name": "utilities/border-width/default", "remote": false, "resolvedType": "FLOAT", @@ -11753,7 +11752,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1685", - "key": "44351a43dea67bf58b8a0f82f059f110e45a2403", + "key": "d4b37b365ccfd2760f5b84f323bed6cc4c540b0a", "name": "utilities/font-family/primary", "remote": false, "resolvedType": "STRING", @@ -11785,7 +11784,7 @@ "description": "Used for disabled state breadcrumb", "hiddenFromPublishing": false, "id": "VariableID:44032:68245", - "key": "416acf80e8b6c4c4313e5c91b9302384bb0574fd", + "key": "1085b71400b487a4428f521db8dd65cbc9e1d547", "name": "utilities/color/icon-fill/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -11817,7 +11816,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64020", - "key": "0435666c9142df463d32c03032b1d4418816f6a9", + "key": "7c16cf9956d3bb10b7f29ec67b56463f94d4236b", "name": "components/sd-button/--primary/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -11849,7 +11848,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64186", - "key": "94283be166214424e5d3e3afe115951ebdab61e6", + "key": "aee4db3a6b665581c4f1d456996f041dfe0b21e9", "name": "components/sd-button/--secondary/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -11881,7 +11880,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64197", - "key": "682ecb5034eafc91af16bddd53355a274e6f1d25", + "key": "8ce5ef0f81d677b65445868c636c98d54aa5505a", "name": "components/sd-button/--primary/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -11913,7 +11912,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64199", - "key": "1532bff55848290556483220dafb085c3ce94bbd", + "key": "086b29fd0c7d608f06dc484610e44702280a2d0a", "name": "components/sd-button/--secondary/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -11945,7 +11944,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64200", - "key": "4d91a7c432976e90e35a59f170607f6f24af3fab", + "key": "f7a683bfc1487780c9ee1dfa9b79cb0fbb4709ce", "name": "components/sd-button/--tertiary/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -11978,7 +11977,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44283:64315", - "key": "8233f063dad1eaf10c60ba7626cea178972f2c96", + "key": "76a616579a4463d3e8a0a53ddac6106ed84af529", "name": "components/sd-button/--secondary/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -12010,7 +12009,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44283:64318", - "key": "2fad624670ae2d4efac6934a0849ec2810cf66ef", + "key": "57f57731db4780aedf07d11d382a358fa4bee2ce", "name": "components/sd-button/--tertiary/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -12042,7 +12041,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44283:64319", - "key": "a8d6978d4130488041bf468fa8d37d7652214dcb", + "key": "35ccb02535b869e54ae1b221e7d0bbaeaeb36629", "name": "components/sd-button/--tertiary/--inverted/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -12074,7 +12073,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44283:66900", - "key": "8b5993f45b01109a82098526015e3c94e11686af", + "key": "d2b20d8fc3733dfb29f135275da12b3ef2535faf", "name": "components/sd-footnotes/--target/--inverted/color/background", "remote": false, "resolvedType": "COLOR", @@ -12106,7 +12105,7 @@ "description": "Used for sd-link & sd-interactive", "hiddenFromPublishing": false, "id": "VariableID:44294:66968", - "key": "3be4ea0f5988e5472c5de75edaefec5756d0ebc4", + "key": "7ab103b271853d11828571c254572387f160dab5", "name": "components/interactive/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -12138,7 +12137,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68046", - "key": "d08bfc219d7eb474d3dc048626ea3af2a689e689", + "key": "6fbd39626b9b92637de31ade8bf3c1c9b07c0d67", "name": "components/sd-button/--primary/--inverted/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -12170,7 +12169,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68048", - "key": "74587eab40c68392ca9ac3379a7a9c81d69e8668", + "key": "9cbb2d02298eb4a9c2c19b3ac4a7f70a4307de44", "name": "components/sd-button/--primary/--inverted/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -12202,7 +12201,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68555", - "key": "ed34a10ba635cec5b07f29489196304f91ef0192", + "key": "25977a4c2c31947da54a53fdc0f3b066d5c290f5", "name": "components/sd-button/--primary/--inverted/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -12234,7 +12233,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68556", - "key": "8349fb6f5585e388a30f4dfeaf654998afd88814", + "key": "399a8fcc44620ff84b32c7fa4bf70b7d3c99c702", "name": "components/sd-button/--primary/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -12266,7 +12265,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68558", - "key": "4dd2b0b62692d8813e428cecde4f9fba3ba5e4b7", + "key": "31a5d5222c7a2badc70e18ebcfe738206ac54cc9", "name": "components/sd-button/--primary/--inverted/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -12298,7 +12297,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44300:68643", - "key": "2b2a7d062cea648aeea2a7958d5ceae2eb3dffeb", + "key": "65a8aa4e4b62aa7c9d93986097ddf2058423317e", "name": "components/sd-button/--secondary/--inverted/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -12330,7 +12329,7 @@ "description": "sd-button's left right padding (except for icon-only & loading variant)", "hiddenFromPublishing": false, "id": "VariableID:44300:68678", - "key": "c7668982e4327809d75b6f644ce09b9c057efd42", + "key": "e008b4506970545e2858f69abab0b192a10dc12c", "name": "components/sd-button/padding-inline", "remote": false, "resolvedType": "FLOAT", @@ -12362,7 +12361,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44318:23033", - "key": "c316014ca3e508261999cfbd80a451c59f9a7c6a", + "key": "4a14a8798c292cfe193ea729b071d30bfff5c3e1", "name": "components/sd-flag/--neutral-500/color/background", "remote": false, "resolvedType": "COLOR", @@ -12396,7 +12395,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44318:24450", - "key": "c2672d2a40fc6194a6e6ddd906cbc09757d18411", + "key": "1953d85138da096ed84acc356147df3c9372fca3", "name": "_todo/sd-tag/--tmplt/--default/color/border", "remote": false, "resolvedType": "COLOR", @@ -12428,7 +12427,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44318:24451", - "key": "f8772f87320c7970375220fea98b7194fcd9c222", + "key": "ec1c1771d5f2994a3bccadb04aef1b5d4af292f3", "name": "_todo/sd-tag/--tmplt/--selected/color/border", "remote": false, "resolvedType": "COLOR", @@ -12460,7 +12459,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44318:24496", - "key": "8bf5bdd51205ea567412b3545463d3c6549f47f7", + "key": "32dc81414aeb4905c03a711b0b753178ad7fae64", "name": "_todo/sd-tag/--tmplt/--selected/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -12492,7 +12491,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:44318:2769", - "key": "ab43ea7323126647041e6205b942b01758adee50", + "key": "48b30c1e243642f0e7ff09821c21f56ab253bc39", "name": "utilities/sizing/20", "remote": false, "resolvedType": "FLOAT", @@ -12524,7 +12523,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4885", - "key": "e327aea8bf69a269f2ef39d22bd461c29dc232bf", + "key": "efb16e30a8a9067ce9d15a6b13fa9b484001f849", "name": "utilities/shadow/default/y", "remote": false, "resolvedType": "FLOAT", @@ -12544,7 +12543,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4886", - "key": "72fca02749cf7ed2365f7e17dccfa353b8bee9d9", + "key": "146f3a35d89b00e4ffdaca68eeb2691fa4943f21", "name": "utilities/shadow/default/blur", "remote": false, "resolvedType": "FLOAT", @@ -12564,7 +12563,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4887", - "key": "e2243654498452e1429dbb96bef6e035a8409fe7", + "key": "5b84d24f672900916d49fbf9ae9b63831a078311", "name": "utilities/shadow/sm/y", "remote": false, "resolvedType": "FLOAT", @@ -12584,7 +12583,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4888", - "key": "53ebd5900b32eca5936bfe3e4c2770fe4ee930ae", + "key": "d84e3ab099588a8364c978615ca3dc77b0378594", "name": "utilities/shadow/sm/spread", "remote": false, "resolvedType": "FLOAT", @@ -12604,7 +12603,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4889", - "key": "b3d797a08370fdf6648ea724ede86ba8f2e3e4d0", + "key": "7fc87a50f1ea70d1ea8b0a5a548691023a42693f", "name": "utilities/shadow/sm/x", "remote": false, "resolvedType": "FLOAT", @@ -12624,7 +12623,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4890", - "key": "1333753ceb5ad1b3bdb91048aecbf72fff09a01d", + "key": "759b1f005c98c2a3273954e83d2e91bda71fd311", "name": "utilities/shadow/sm/blur", "remote": false, "resolvedType": "FLOAT", @@ -12644,7 +12643,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5060", - "key": "68d37712bba9402bf219636e0faff2b35c080d4b", + "key": "1f8b01f05cfa31321e88e1793974a539abd5fccd", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/0%", "remote": false, "resolvedType": "COLOR", @@ -12684,7 +12683,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5061", - "key": "a924be2127f7e8e0d315aa651eeabed9e66c9b08", + "key": "3af6be35815282057f9d7925d23ee76e886dea8b", "name": "utilities/color/background/_gradient/neutral-800/40%", "remote": false, "resolvedType": "COLOR", @@ -12724,7 +12723,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5062", - "key": "2999411c17d2b7ba90647701f0f46a9111eed6f9", + "key": "fdb74ceaef7d486f266021cf69391abc80b4dd48", "name": "utilities/color/background/_gradient/neutral-800/0%", "remote": false, "resolvedType": "COLOR", @@ -12764,7 +12763,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5063", - "key": "f1692902f0642838e5164e365bd72ac65b5c37c5", + "key": "37f24e81afb386283b1cadf543fbfd32c99146d3", "name": "utilities/color/background/_gradient/neutral-800/10%", "remote": false, "resolvedType": "COLOR", @@ -12804,7 +12803,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5064", - "key": "6673d22c7becf96ba913ba59a097e7e1eea2661c", + "key": "5950d82765ccd95455a31d94a08ca68f9b5292cd", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/60%", "remote": false, "resolvedType": "COLOR", @@ -12844,7 +12843,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5065", - "key": "5a1fdd4f9cd4e6b0c625897e9a9b415a0cfce5ed", + "key": "3e4966cf2df5417b93c3327b435f38d92a9790c1", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/5%", "remote": false, "resolvedType": "COLOR", @@ -12884,7 +12883,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5066", - "key": "c2baf881c2e89a2cea39279acd5afdf465341d3f", + "key": "285d1b283a167b07bb8a44c6165852fc078a2d0c", "name": "utilities/color/background/_gradient/components/informational/gradient/--primary-800/background/color/60%", "remote": false, "resolvedType": "COLOR", @@ -12924,7 +12923,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5067", - "key": "895ee44ca5f7fe9155c003c7511aa3b03537a690", + "key": "c61275a6e79736352c5c7973f472ee481004cc02", "name": "utilities/color/background/_gradient/components/informational/gradient/--primary-800/background/color/75%", "remote": false, "resolvedType": "COLOR", @@ -12964,7 +12963,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5068", - "key": "e5819af607078e586d958efe5cce0bea76ff36b4", + "key": "65305b0d7e12918bdc2c52e2f5383f6cdd7bac43", "name": "utilities/color/background/_gradient/components/informational/gradient/--primary-800/background/color/0%", "remote": false, "resolvedType": "COLOR", @@ -13004,7 +13003,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5069", - "key": "2367e3796270849165a3f1c0a28a58b4ed850ed8", + "key": "febece3832a1ceb16d013a9e44aa555a7bf3a9cb", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/75%", "remote": false, "resolvedType": "COLOR", @@ -13044,7 +13043,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5070", - "key": "3f1ece7b42d8bc40e3b851a56e5ef90d01d2464a", + "key": "a3f462e5c4f87eb06c13c5b1cfe020267115fc0d", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/80%", "remote": false, "resolvedType": "COLOR", @@ -13084,7 +13083,7 @@ "description": "Deprecated?", "hiddenFromPublishing": true, "id": "VariableID:44612:686", - "key": "9a71c448fff6af60964c1229705111224c8a9311", + "key": "2d5c160bc74ccfde75ae9d2c6e3dd7255596bcad", "name": "components/sd-header/color/_shadow", "remote": false, "resolvedType": "COLOR", @@ -13124,7 +13123,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44625:20357", - "key": "3d6bfc22cd185cb090bc02ac74b7dbe8492d47eb", + "key": "8dd82451a5329fee24211a0dd50533d683209672", "name": "components/sd-button/--primary/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -13156,7 +13155,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44650:19862", - "key": "53f25b711ebedd9ad4d5d6406fa8bc84eb890e17", + "key": "6739f6a0fcbe0a1306bb4b48d44c869a294a53b6", "name": "components/sd-tag/--selected/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -13190,7 +13189,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44650:36908", - "key": "79f91bcd0fa9cdf20924888444d6bba657d46129", + "key": "cf67bd90cc7b472aadd474a683d34b530810e295", "name": "components/sd-brandshape/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -13226,7 +13225,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44650:37065", - "key": "f9c2fcb520eb54a00955413b7a27c509eee65b7f", + "key": "6342f2f9e82014695c658d35bde1c629b30eb803", "name": "components/sd-brandshape/--neutral-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -13262,7 +13261,7 @@ "description": "Used for overlays", "hiddenFromPublishing": false, "id": "VariableID:44677:46587", - "key": "bde2c32d8f089dcbb3b949f3e31c1c72417130b2", + "key": "775e4d10889cae71573303b04bee751b14e7e497", "name": "components/overlay/color/background", "remote": false, "resolvedType": "COLOR", @@ -13302,7 +13301,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44762:16901", - "key": "39054ad3d36e489b1af47dc56777aa9da0127049", + "key": "53d43cf740406c0c26217cf784a5d4bf61a541d1", "name": "components/sd-button/--primary/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -13334,7 +13333,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44837:15833", - "key": "367731e0706593feb90e47c9a32a37a00b1bfdba", + "key": "fde333e00596ed6f139c1c1a28386b3c8878bac3", "name": "components/informational/gradient/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -13366,7 +13365,7 @@ "description": "code only", "hiddenFromPublishing": false, "id": "VariableID:44837:7261", - "key": "6b93f5022ad920452a9daf22fdb2cfaf6ceaf6a2", + "key": "e3f42edc6b205e0fc08d3369c4f5b45e01820680", "name": "components/informational/gradient/--primary-800/color/background", "remote": false, "resolvedType": "COLOR", @@ -13402,7 +13401,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:20780", - "key": "66ad837fe03a51cc08066f828b69a59cb279d908", + "key": "28c4b97217478aa38d5e73197f9f4567e5302291", "name": "components/sd-button/--size/md/font-size", "remote": false, "resolvedType": "FLOAT", @@ -13434,7 +13433,7 @@ "description": "Top bottom padding for sd-button md variant", "hiddenFromPublishing": false, "id": "VariableID:44883:24608", - "key": "53025e58a5dce1d54a578224df34f3c2abd87157", + "key": "287cff68bec7f2c09e35dd6aa5356434675d56aa", "name": "components/sd-button/--size/md/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -13467,7 +13466,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:24906", - "key": "673b64ebc71624e7eebae53adac9f41f281f6399", + "key": "4162a621f09dc643a5a50b52beb6b58b3b9e2cf8", "name": "components/sd-button/--size/md/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -13499,7 +13498,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:47306", - "key": "84563b1e5370867f275872050421b1bed1a8f461", + "key": "49b32f2d7b20d94e792f306722d632e7343afa12", "name": "VB/status/success", "remote": false, "resolvedType": "COLOR", @@ -13519,7 +13518,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:47307", - "key": "aefa125c14a3d91c5db3b883e3bdb3cd0c1b6352", + "key": "c73dd25a8952d74f31fa711e976b8516b5e284c3", "name": "VB/status/error", "remote": false, "resolvedType": "COLOR", @@ -13539,7 +13538,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:47308", - "key": "00091d553aa14801dc457e9c5511d2c28d75610d", + "key": "997058e84d530591c306aad7021e3fb1b23f09de", "name": "VB/status/warning", "remote": false, "resolvedType": "COLOR", @@ -13559,7 +13558,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19938", - "key": "b77d8c571254efc3de757ae3ff0ba3552aac5a35", + "key": "947a56eadb3c4a8c37c5037840506cb688edb40a", "name": "VB/vermillion/50", "remote": false, "resolvedType": "COLOR", @@ -13579,7 +13578,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19939", - "key": "d26d3e6db462cbf084d3a46a1e61a110d7f96a12", + "key": "08eb847391204883693c286a2f09755489805329", "name": "VB/vermillion/100", "remote": false, "resolvedType": "COLOR", @@ -13599,7 +13598,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19940", - "key": "f6ea3e8a3f9fb1b741b51a1d4ece63d802d334be", + "key": "b4e4fe55116959378393b831fabb54f7254c29a7", "name": "VB/vermillion/200", "remote": false, "resolvedType": "COLOR", @@ -13619,7 +13618,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19941", - "key": "93436d6d930a7578307e7acb53686d62af316516", + "key": "965406f60b81e55def39fecfec2175121d8761aa", "name": "VB/vermillion/300", "remote": false, "resolvedType": "COLOR", @@ -13639,7 +13638,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19942", - "key": "5f6ee878c2b4e1fed42176ee6be800e4e2238893", + "key": "0d81b0168821c4f0f08842f429c32e68102b748e", "name": "VB/vermillion/400", "remote": false, "resolvedType": "COLOR", @@ -13659,7 +13658,7 @@ "description": "Generated with https://www.tints.dev/palette/v1:cnVieXxGMzVFMDF8NTAwfHB8NXwtNHwxM3w5Mnxt", "hiddenFromPublishing": false, "id": "VariableID:44917:19943", - "key": "f8e4e9c9cec4c4daf286af3d7e445a6b45805d43", + "key": "d2b43292ad970b1b1a3a7b829eb96d60fcacf201", "name": "VB/vermillion/500", "remote": false, "resolvedType": "COLOR", @@ -13679,7 +13678,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19944", - "key": "872e051bfaed1bc8d370f5b53df7ae33b88621a3", + "key": "a04bf4d213ad5e01bd69d342385735f9ba703fd2", "name": "VB/vermillion/600", "remote": false, "resolvedType": "COLOR", @@ -13699,7 +13698,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19945", - "key": "6c31e19db9642cfcbdb53b20b361832866773245", + "key": "389bf7b1ab0883df3cb7928352c0dac455f6f353", "name": "VB/vermillion/700", "remote": false, "resolvedType": "COLOR", @@ -13719,7 +13718,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19946", - "key": "39a1854943a598822d36907669ced7f63706abee", + "key": "72d24c2067494638daa828b0bc12eada9cf954a7", "name": "VB/vermillion/800", "remote": false, "resolvedType": "COLOR", @@ -13739,7 +13738,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19947", - "key": "93ee2e8c0fd4e7ae60253365e264a96eec654bc1", + "key": "c973de69eab0a51cee9fbbbe60449714b0b8859f", "name": "VB/vermillion/900", "remote": false, "resolvedType": "COLOR", @@ -13759,7 +13758,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19948", - "key": "055e3d19a0369eae5b2da79c9e0af12749fbb34c", + "key": "a4ca6c5c4fa017dd1456c5293028e816f4d1389d", "name": "VB/vermillion/950", "remote": false, "resolvedType": "COLOR", @@ -13779,7 +13778,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20144", - "key": "e507329761136a8651a0a4884169900a2d0c5301", + "key": "e4cd5d1f44e76d5588ef6b7cd63f9e3534949ddf", "name": "VB/black", "remote": false, "resolvedType": "COLOR", @@ -13799,7 +13798,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20145", - "key": "3f8a7030fd5c96a310616e3dae01ed942b67ef54", + "key": "990fb9c4ce55cd9860a48a1a2587de7379c74671", "name": "VB/grey/620", "remote": false, "resolvedType": "COLOR", @@ -13819,7 +13818,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20154", - "key": "769ec913b39e4bc88b0003cfc84deb3302c5399b", + "key": "5db147f99547fa7ae2c61bc821512293e2938353", "name": "VB/white/default", "remote": false, "resolvedType": "COLOR", @@ -13839,7 +13838,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20155", - "key": "2746484b1919a8647ce7c4160473b3c58ba028ba", + "key": "54d8f6d9db9bbed7a3e6fa33fe31d060be4243cd", "name": "VB/status/success-bg-alternative", "remote": false, "resolvedType": "COLOR", @@ -13859,7 +13858,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20156", - "key": "2accd5a40f512b1c6691b4c6fd24e7adcafd7c0f", + "key": "7a2a752a899d8bf49643b52f12951c91b891bc1d", "name": "VB/status/error-bg", "remote": false, "resolvedType": "COLOR", @@ -13879,7 +13878,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20158", - "key": "0f176ac52e1bf875ae5ca836fa04919fcbec6442", + "key": "659212f171deeeb1328b08d64f9d3e1d6e4f5b46", "name": "VB/status/warning-bg", "remote": false, "resolvedType": "COLOR", @@ -13899,7 +13898,7 @@ "description": "", "hiddenFromPublishing": true, "id": "VariableID:44921:10563", - "key": "fefdb7faf5bb4837b5b4392faf241aded2d830ad", + "key": "e5f4bc1f5a86ad9dffa6bf0e907a6755a27a189b", "name": "components/sd-button/--size/lg/icon/height", "remote": false, "resolvedType": "FLOAT", @@ -13931,7 +13930,7 @@ "description": "F5F7F9 100%", "hiddenFromPublishing": false, "id": "VariableID:44921:14699", - "key": "4e6343d1db5b180a84b3c9b352b4ebaf9146162f", + "key": "735fcb74246dea97f97e56fc798a810ffb935b3a", "name": "VB/grey/50", "remote": false, "resolvedType": "COLOR", @@ -13951,7 +13950,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14700", - "key": "1da3acf0da0f0e380eee327d2a96cc6a51f4733d", + "key": "d2916ee1dcfdf5c18fb9595fbc2832c1cfb89c46", "name": "VB/grey/100", "remote": false, "resolvedType": "COLOR", @@ -13971,7 +13970,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14701", - "key": "4681388cd58c89c2099cf894e628de44dd52d7bf", + "key": "88efc5b6bd08d487430ef9de4e13ead5240200dd", "name": "VB/grey/200", "remote": false, "resolvedType": "COLOR", @@ -13991,7 +13990,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14702", - "key": "d3d3ecb4ef00a5427fef94f74e013e96b7511e20", + "key": "9cc6b7e08c539b1c0c4b2adfe27faad2303e10d6", "name": "VB/grey/300", "remote": false, "resolvedType": "COLOR", @@ -14011,7 +14010,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14703", - "key": "be35708967e8cd600807046f78b65b1be6216963", + "key": "0a0e5aa620abc5a59213a5659341cd496c5c8ade", "name": "VB/grey/400", "remote": false, "resolvedType": "COLOR", @@ -14031,7 +14030,7 @@ "description": "disabled", "hiddenFromPublishing": false, "id": "VariableID:44921:14704", - "key": "18e588eaf9f14e4c264ddeb6c79bfde85ab26853", + "key": "b1b7a19b872602f3d58aaf1e86b7c9652e368ab5", "name": "VB/grey/500", "remote": false, "resolvedType": "COLOR", @@ -14051,7 +14050,7 @@ "description": "foreground-secondary-text", "hiddenFromPublishing": false, "id": "VariableID:44921:14705", - "key": "e971357eff1f8cf9aec4b60315ad53a01cfd0ff3", + "key": "b16719a6ecfe0a5c4c9569c3fcd0fa809794ebe9", "name": "VB/grey/600", "remote": false, "resolvedType": "COLOR", @@ -14071,7 +14070,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14706", - "key": "21f2c9c54aa170cd50df87361712c6e43fcabad7", + "key": "b451e725016ca955fee4ce969357ea7ca017bbb4", "name": "VB/grey/700", "remote": false, "resolvedType": "COLOR", @@ -14091,7 +14090,7 @@ "description": "foreground-text", "hiddenFromPublishing": false, "id": "VariableID:44921:14707", - "key": "01b5264b838e6376bb6ceda94a375e412d612e22", + "key": "fc7fe2691aa1f3d34ec3aaeca4d752421c4e4612", "name": "VB/grey/800", "remote": false, "resolvedType": "COLOR", @@ -14111,7 +14110,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14810", - "key": "6b810164d53db9bce49c23990f60bb9ac399ccf2", + "key": "63a1e9594583c043fc3229b0e984e912efb36620", "name": "components/sd-accordion/color/text", "remote": false, "resolvedType": "COLOR", @@ -14143,7 +14142,7 @@ "description": "Is this used in code?", "hiddenFromPublishing": false, "id": "VariableID:44921:21016", - "key": "98cf8e3405192006d5780d54ac052501a5b65537", + "key": "929621b97dc088c4d0bd82239eecdca27dd51276", "name": "components/sd-header/padding-bottom", "remote": false, "resolvedType": "FLOAT", @@ -14166,7 +14165,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:22299", - "key": "a23e3082c2eb51d3f1b7227b3a7a1ce2a5ad003d", + "key": "e30ffbb7c3ab0919cca10fb36b195403be92e950", "name": "components/sd-accordion/__indicator/color", "remote": false, "resolvedType": "COLOR", @@ -14202,7 +14201,7 @@ "description": "Top bottom padding for sd-accordion ", "hiddenFromPublishing": false, "id": "VariableID:44921:22300", - "key": "f934de952b6a096f61d39e64225e71340cf85d86", + "key": "d1ecce552a8e266bbc4edf79b8598149e440feb6", "name": "components/sd-accordion/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -14231,7 +14230,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:22302", - "key": "17cecfb61b241d6673861ce1f2f5871e028635c0", + "key": "f861db5e6d60fd31ea91a6ccc83d22025e3dd3d5", "name": "components/sd-accordion/border-width", "remote": false, "resolvedType": "FLOAT", @@ -14263,7 +14262,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:4592", - "key": "34a49cf650b7dfd4198c46642a7bd42beb294bc4", + "key": "94e39aa52faf3303dbfd1454a693f02fd7789d45", "name": "components/sd-button/--size/lg/font-size", "remote": false, "resolvedType": "FLOAT", @@ -14295,7 +14294,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:4593", - "key": "54c382abeb770183f80c0e5b1181d52e268e68dc", + "key": "fb3118610bd63f6251f32c7bb5105cff1ae4173a", "name": "components/sd-button/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -14327,7 +14326,7 @@ "description": "Top bottom padding for sd-button lg variant", "hiddenFromPublishing": false, "id": "VariableID:44921:4594", - "key": "b7bb9ce6d8bddcbaa222385894f9d5a05c5ec3ca", + "key": "fb4096cdda55d1472f86844369a69559e5f51025", "name": "components/sd-button/--size/lg/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -14359,7 +14358,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44953:13157", - "key": "fdce783c15f325ab956c1efb350cfef9aa8c6094", + "key": "d953a08c78a4e3de3ed66ff7d633805402e7023a", "name": "components/sd-button/font-weight", "remote": false, "resolvedType": "STRING", @@ -14391,7 +14390,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44953:15244", - "key": "2afae66c503f7454ee6b89b0f13ac53022bb9249", + "key": "30bd23926bd57835eb59a7b62404c6cfe55f6856", "name": "utilities/font-weight/normal", "remote": false, "resolvedType": "STRING", @@ -14423,7 +14422,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44953:15245", - "key": "922ae7ea2be12e8302e698b50d0ecc8cdd13ab25", + "key": "577c98d84094736eaccaa165aa0a862af2a92f1c", "name": "utilities/font-weight/bold", "remote": false, "resolvedType": "STRING", @@ -14455,7 +14454,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44966:21201", - "key": "895d2018af06fd205f3ccb2333ddafdf79c43c38", + "key": "e2934440b1e5de4619dca2abdc96fe06cc82ce5d", "name": "theme/_icon-set", "remote": false, "resolvedType": "STRING", @@ -14475,7 +14474,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44973:32108", - "key": "33866e42dc184500341e969bad13d4fe1ccfdc6c", + "key": "34c08a8bceb7645f6e9af10518e24637a3247af2", "name": "theme/name", "remote": false, "resolvedType": "STRING", @@ -14495,7 +14494,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:30581", - "key": "7952c40fa7ba1d81b760f2a7df3723cde60dae0b", + "key": "f936bc1e3f1354e27be57f4e14c4aea123d98347", "name": "components/navigable/__current-indicator/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -14521,7 +14520,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:30582", - "key": "583f7739cd589b59ad52a7bc07e8d60b42cfb5b3", + "key": "bcab72c5c17fc0b9eaf64c4295e2cb2f3ae60671", "name": "components/navigable/__current-indicator/height", "remote": false, "resolvedType": "FLOAT", @@ -14547,7 +14546,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:30944", - "key": "1f1f4e46eca4ee433f5207ba0b9bb4e13764924a", + "key": "38dc0696014ed676340167e7963b7d398cc54f55", "name": "components/sd-navigation-item/color/text", "remote": false, "resolvedType": "COLOR", @@ -14579,7 +14578,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:35870", - "key": "216d04fce558fdbd38cd140742b850bf2d8d7bee", + "key": "f14c9d447b13873d1dc241d39ade1cb6e8f8933c", "name": "components/navigable/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -14605,7 +14604,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:36471", - "key": "e5221329810aef3fdbebf47d3c2b2b9eeb24b56a", + "key": "c4f1c94d09ce7754a04eade38f29bcc607feac69", "name": "components/navigable/font-size", "remote": false, "resolvedType": "FLOAT", @@ -14637,7 +14636,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45046:31063", - "key": "5051d340ead5757cde6a6aed1f8bb4d5ec2dd98e", + "key": "17351c96552b943d9f574d44826fd106d9404992", "name": "utilities/shadow/default/x", "remote": false, "resolvedType": "FLOAT", @@ -14657,7 +14656,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45046:31064", - "key": "506fc1ac74372a1c12452458ce43040e831d1b42", + "key": "78277e1e03342b0302e563fe1eca67437a3f9193", "name": "utilities/shadow/default/spread", "remote": false, "resolvedType": "FLOAT", @@ -14677,7 +14676,7 @@ "description": "Used for tooltip", "hiddenFromPublishing": false, "id": "VariableID:45046:31066", - "key": "3ad91dacdeb7996202b86705e4ed80ed138a6410", + "key": "797d46f37b97aff156f7625149e19123ec70ffaa", "name": "utilities/shadow/sm/color", "remote": false, "resolvedType": "COLOR", @@ -14711,7 +14710,7 @@ "description": "Used in: sd-tab, sd-navigation-item and sd-menu", "hiddenFromPublishing": false, "id": "VariableID:45046:52299", - "key": "ad5361c9b2562b03259295fe10c251a23f362f4f", + "key": "3c26ec398c2019a3ec45f0b844354bb271e5f86f", "name": "components/navigable/_docs", "remote": false, "resolvedType": "STRING", @@ -14729,7 +14728,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45293:4199", - "key": "587dc63257c6bef391f59a4a7aaa61b0ac704831", + "key": "76774c4b771494de44a88166a539b48af0fe45cc", "name": "components/navigable/__current-indicator/width", "remote": false, "resolvedType": "FLOAT", @@ -14755,7 +14754,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45365:12253", - "key": "7721f6fd3c910b51ea52b385d663ea23560a5ba0", + "key": "56b53fc6c8fd85de96a0820a4049ecd76962c5a4", "name": "_internal/slot", "remote": false, "resolvedType": "COLOR", @@ -14795,7 +14794,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46172:9194", - "key": "19b032df5d640bd4146c280f228667c28eb6d220", + "key": "9c312370dcdad5fd04c61ef2305d7da1aed40dc0", "name": "VB/azure/50", "remote": false, "resolvedType": "COLOR", @@ -14817,7 +14816,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46374:83079", - "key": "73b4b5e3440a7258c5875c1166adad53fda7b050", + "key": "ef3fe7885fbd9c6b5f16ed71d420b0ffd918abde", "name": "components/form-control/--invalid/color/background", "remote": false, "resolvedType": "COLOR", @@ -14849,7 +14848,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:72148", - "key": "44a6aaa87cc2da272be84c2bc82b73636d368101", + "key": "fe83e52c08dd39dd0c20bdc5df4d58a767b9d924", "name": "components/sd-badge/--blue/--inverted/color/background", "remote": false, "resolvedType": "COLOR", @@ -14881,7 +14880,7 @@ "description": "Used in both sd-badge and sd-status-badge", "hiddenFromPublishing": false, "id": "VariableID:46386:74301", - "key": "5d8f70657453abca21e763bd6acc49b16c62befc", + "key": "6467dcc638929b8d55dda116d3c51b5a3def734f", "name": "components/sd-badge/--red/color/background", "remote": false, "resolvedType": "COLOR", @@ -14913,7 +14912,7 @@ "description": "Used in both sd-badge and sd-status-badge", "hiddenFromPublishing": false, "id": "VariableID:46386:74302", - "key": "a6c2ab4271a14a7069aff07c8d4dff798834d360", + "key": "029b94cda682269059c0e8862ea2e811c58d4b18", "name": "components/sd-badge/--green/color/background", "remote": false, "resolvedType": "COLOR", @@ -14945,7 +14944,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74303", - "key": "4177fd647a5137e14f009e09652bb82040e2d3ff", + "key": "927b0b8137c3d2041df9f8219352c94103e3742e", "name": "components/sd-badge/--blue/--inverted/color/text", "remote": false, "resolvedType": "COLOR", @@ -14977,7 +14976,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74311", - "key": "1d02a1cca00f996fd7fc4758ee4ca25d56011b79", + "key": "15b704b1cbaac3bd51c73f574d8a1730002538fc", "name": "components/sd-badge/--green/color/--inverted/background", "remote": false, "resolvedType": "COLOR", @@ -15009,7 +15008,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74312", - "key": "19f93c44a594a6c132d8af0dc55d1ae6f8ccf551", + "key": "26d5ee17dfb0bcfbc4c9dae5e28d8bb90ae937f6", "name": "components/sd-badge/--green/color/--inverted/text", "remote": false, "resolvedType": "COLOR", @@ -15041,7 +15040,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74313", - "key": "6aa0311309a7ead00f33c51fc558229dfc879a78", + "key": "03a842fd5d9b54fdc26d0e8e41bded045403b281", "name": "components/sd-badge/--red/--inverted/background", "remote": false, "resolvedType": "COLOR", @@ -15073,7 +15072,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74314", - "key": "ff0f2d1fd7c1ee36c0ca9e1c350b556a3a48c4df", + "key": "1aba283b0a4c063679b9f1b76253422172c82cd8", "name": "components/sd-badge/--red/--inverted/text", "remote": false, "resolvedType": "COLOR", @@ -15105,7 +15104,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:77408", - "key": "f0364d1283e14aa5d1c578fcff271189cc8c0c68", + "key": "ac635f460d1b17c24a9f648f85b15467f0f1fee2", "name": "components/sd-radio-button-group/border-width", "remote": false, "resolvedType": "FLOAT", @@ -15137,7 +15136,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:77409", - "key": "b65698d1c1b0d68561ab2c20bdd24d4c30927808", + "key": "c24f95c1c73f9d297f2d47b6b913eb8041cd5016", "name": "components/sd-radio-button-group/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -15169,7 +15168,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:80458", - "key": "8632c12925ab0004aa7736836e4cb1165ec0af1c", + "key": "882009c8628bceda5c930e5ce1bdfd6cf8e7f8a0", "name": "components/sd-radio-button/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -15201,7 +15200,7 @@ "description": "Top bottom left right padding for the sd-radio-button-group", "hiddenFromPublishing": false, "id": "VariableID:46386:80499", - "key": "712a5289ca0d96c17b4d2fd23e122a20c3ff485f", + "key": "84cae37b3cc7d7644d1dc7b59cb844f391e5c9e2", "name": "components/sd-radio-button-group/padding", "remote": false, "resolvedType": "FLOAT", @@ -15224,7 +15223,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101271", - "key": "b4392177a41cedd5d566bc6eb8a0df5e107bbcdf", + "key": "42f26cbfa66ba948551ffcd2e793037d7b6263e8", "name": "components/sd-tag/--selected/border-width", "remote": false, "resolvedType": "FLOAT", @@ -15250,7 +15249,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46396:101273", - "key": "cfe7a7a9ba7056a635ed13d3d26c3fd7f9c58f99", + "key": "897ff10b034637e7bb7c73dcf6315513b61c8b85", "name": "components/sd-tag/--default/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -15288,7 +15287,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101274", - "key": "bead117aa25b85452097a9b5d115f6dd7be1fdc6", + "key": "526d492a4ecb10f50c89d3a7930e0e7171dd0018", "name": "components/sd-tag/--selected/--default/color/border", "remote": false, "resolvedType": "COLOR", @@ -15324,7 +15323,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101306", - "key": "d3cb6ba45983e3db552c42498a843497d2852685", + "key": "0862ff5e07ee76fdeb3b60bcee192cfd1f4ea371", "name": "components/sd-tag/--selected/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -15356,7 +15355,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101307", - "key": "dcfb5e744b2ff20cf379d15f5a82ce6ba33b0898", + "key": "571015578e2374efc4c4a3cc94bcf37edc2640f7", "name": "components/sd-tag/--selected/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -15390,7 +15389,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101308", - "key": "1d1643614c245cbe05c083ddf328d5e2289e2fdd", + "key": "a55c69da14e7e9e09b598f8677dd005ad343204a", "name": "components/sd-tag/--selected/--hover/color/border", "remote": false, "resolvedType": "COLOR", @@ -15426,7 +15425,7 @@ "description": "selected hover state", "hiddenFromPublishing": false, "id": "VariableID:46396:101311", - "key": "d34a190548e08db150edf802df74cc7eaac265cf", + "key": "539384dd767368836ddd4ac84ddde3999fe2f61a", "name": "VB/azure/250", "remote": false, "resolvedType": "COLOR", @@ -15448,7 +15447,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:82803", - "key": "3b276d272453cdefc37ef9e7c3e5f2256d58c37f", + "key": "7d046e2302892daeb8a161c685a4f5e7beece493", "name": "components/sd-tooltip/color/background", "remote": false, "resolvedType": "COLOR", @@ -15480,7 +15479,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:82804", - "key": "e62f9cd40a44f18bdd04a79a9e6e90d1188574d8", + "key": "fabff43973ad35d3b2caad45edd0ed4bc068f4cd", "name": "components/sd-tooltip/color/text", "remote": false, "resolvedType": "COLOR", @@ -15512,7 +15511,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:91135", - "key": "7fd4e04599a15ef3f248e647314abdc74a5deb97", + "key": "bd2d42faf1d4287856cc36cc5f7284c5f4d1d97f", "name": "components/sd-tag/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -15545,7 +15544,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:91136", - "key": "53d1baa3273634f81c73c6d99098319b587e14a3", + "key": "5f904b95dd71e7e1bda4acd3f83f752a533c7646", "name": "components/sd-tag/font-weight", "remote": false, "resolvedType": "STRING", @@ -15577,7 +15576,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:107779", - "key": "7f578ee54d90b015b51542ca865d0376064983a9", + "key": "5c484ffe23ff5039685312cb13ade63a4f3aabc7", "name": "components/sd-notification/--error/color/background", "remote": false, "resolvedType": "COLOR", @@ -15609,7 +15608,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:107780", - "key": "9acf634a5ac7284b93f113494dc4c4e3e1328adb", + "key": "ffe498529b16a2ebf5eec81b8ebbee7d63962f12", "name": "components/sd-notification/--warning/color/background", "remote": false, "resolvedType": "COLOR", @@ -15641,7 +15640,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:107781", - "key": "d8ec04d337a725f0eaec1834dbfd3456f66454c1", + "key": "61c9758cd0433f839d2cb7a8e1ff1ce059a34cd0", "name": "components/sd-notification/--success/color/background", "remote": false, "resolvedType": "COLOR", @@ -15673,7 +15672,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:107782", - "key": "5c0a0b89b4f87a126340639f9daafe8038b344fa", + "key": "8615455c95b66b2604cde06a1d8a2658ce783da2", "name": "VB/status/success-bg", "remote": false, "resolvedType": "COLOR", @@ -15693,7 +15692,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:107783", - "key": "9beaeb33b3740aaf577ea7708e651b1fe434c66e", + "key": "a88fd17259968a699ffe97e2eb09c54382c9d057", "name": "components/sd-notification/--info/color/background", "remote": false, "resolvedType": "COLOR", @@ -15725,7 +15724,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:53949", - "key": "0af883d8d77e057b3bff8bbfe51d262304ce29a2", + "key": "e618ff15c605b37459f08b8958aa37a7ba21b3ee", "name": "components/sd-range/scale-ticks/color/text", "remote": false, "resolvedType": "COLOR", @@ -15757,7 +15756,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:68803", - "key": "38870ef505058fe10122c442c526a1f1d6a5ae7e", + "key": "c4c02f95b4eb470537d3aa251d045aba92770843", "name": "components/sd-flag/--neutral-200/color/background", "remote": false, "resolvedType": "COLOR", @@ -15791,7 +15790,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:68806", - "key": "1f3ad37e1f65b6289d6f9762de1ef587e443c19e", + "key": "5abe962a5a252ca5a97250c81d57457d2d85933a", "name": "components/sd-flag/--neutral-200/color/border", "remote": false, "resolvedType": "COLOR", @@ -15829,7 +15828,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:68807", - "key": "30c27bc8d55682d83323f973c3d0566d2fcb00b2", + "key": "b9ba8210ba0449f4ae1471863f8ca828b1826dae", "name": "components/sd-flag/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -15861,7 +15860,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70191", - "key": "c4a9ae29432b315587a95ba4dc3a8258a06bc1a8", + "key": "fc061333195db37191b62dbd9c9b84967ee08d78", "name": "components/sd-flag/--neutral-500/color/border", "remote": false, "resolvedType": "COLOR", @@ -15899,7 +15898,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70202", - "key": "1d41381bac7ac3911ec46798418290a32cf4f111", + "key": "aeb26c5ea8c53aa6df2532ca483bb60de35a7d49", "name": "VB/status/neutral-blue", "remote": false, "resolvedType": "COLOR", @@ -15919,7 +15918,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70203", - "key": "68a67e0cba19b12bb38d4b8707ac10bf8c5ba555", + "key": "5b3636381b6ddb88a7b9d99213091fc56ec15689", "name": "VB/status/neutral-blue-bg", "remote": false, "resolvedType": "COLOR", @@ -15939,7 +15938,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70204", - "key": "6ab33cfd9e24ee48b15d7edfb2b0d363f1991b39", + "key": "d7a2406f81e2c2d28ba431397dcc8753ef0982bc", "name": "components/sd-flag/--neutral-300/color/background", "remote": false, "resolvedType": "COLOR", @@ -15973,7 +15972,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70205", - "key": "afa9271dc471f2e8dbc27fc0e45dce5e5c6978dc", + "key": "5a1fbbeeb6e78308ba5af2a1aa5eadb6fd5a9a68", "name": "components/sd-flag/--neutral-300/color/border", "remote": false, "resolvedType": "COLOR", @@ -16011,7 +16010,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:70206", - "key": "448d03f03d1400733f554a88f10577c5e9045e92", + "key": "56502a3612c12cd85531e60e172c4737e5d5ef10", "name": "components/sd-flag/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -16045,7 +16044,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70207", - "key": "1b45280020bd26be9331b6d42b4fe18a6c921242", + "key": "db00f99ef748175b30bb6965137928ed45136719", "name": "components/sd-flag/--white/color/border", "remote": false, "resolvedType": "COLOR", @@ -16083,7 +16082,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70208", - "key": "f5711019c53dbd78db5002278bcd5abb7da229a3", + "key": "da968b6170091eaa87196f26afdc6647216e80ed", "name": "VB/status/neutral-grey-bg", "remote": false, "resolvedType": "COLOR", @@ -16103,7 +16102,7 @@ "description": "disabled", "hiddenFromPublishing": false, "id": "VariableID:46408:96677", - "key": "ac7a69cb4fbcbca87ea05df84349346b50f6a8e9", + "key": "842f6c13e29fb5f27992384b9ecc6a3852d56f68", "name": "VB/grey/450", "remote": false, "resolvedType": "COLOR", @@ -16123,7 +16122,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46434:259677", - "key": "5bd785eb4823bb5420c259cb052c63ff4479e0f7", + "key": "ea24af56ad2b3d67c9415bbde1344194c529be39", "name": "components/sd-chip/--primary-200/color/background", "remote": false, "resolvedType": "COLOR", @@ -16157,7 +16156,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259678", - "key": "c7db3cbd4276a4b014b98217af7711ed0e070c23", + "key": "35cb80d754f50c2582d8b655e90a4127157241a4", "name": "components/sd-chip/--primary-200/color/border", "remote": false, "resolvedType": "COLOR", @@ -16195,7 +16194,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259679", - "key": "0ad6f54bd33db76b2f160f88f56e55e8825937a1", + "key": "b5ce2afd8250f95e2d57fbd8dcbce9ca82addf6f", "name": "components/sd-chip/--primary-300/color/background", "remote": false, "resolvedType": "COLOR", @@ -16229,7 +16228,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259680", - "key": "271ea70c9c4c5ce8aeac2cde2c9ff1e9d52a7cf6", + "key": "c4834ead364b3f9f50587cd8aa9e720e04484679", "name": "components/sd-chip/--primary-300/color/border", "remote": false, "resolvedType": "COLOR", @@ -16267,7 +16266,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259681", - "key": "7a7002bb69bb0be39c2698986a5bff9476e44afb", + "key": "fe25cec833de438add0dd5e4c6d52d72fdfa3d76", "name": "components/sd-chip/--primary-500/color/background", "remote": false, "resolvedType": "COLOR", @@ -16301,7 +16300,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259682", - "key": "b64338e2f967fb600505daaf7d7c586ce42529df", + "key": "40fae326952e4c4c82b17f56bafe5145d6ad83c3", "name": "components/sd-chip/--primary-500/color/border", "remote": false, "resolvedType": "COLOR", @@ -16339,7 +16338,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259683", - "key": "ee8905495f669863daa5f928b3c4c9a787bb6955", + "key": "6cae24a1412bb26f85f69a2d736d00565a969651", "name": "components/sd-chip/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -16371,7 +16370,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46434:259685", - "key": "7b359c23a38cf915535aeedea5815ec131d07b32", + "key": "473287e8b49c1b4795dd10cd4c9c9e93a91d8d09", "name": "components/sd-chip/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -16405,7 +16404,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259686", - "key": "a7b7423b75fa22870a006f5afcc11303b5480c2a", + "key": "291f95f6b9f35cd2a33f2f93fd068404039631ba", "name": "components/sd-chip/--white/color/border", "remote": false, "resolvedType": "COLOR", @@ -16443,7 +16442,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259782", - "key": "09692af74aa5c2d0e860960df8d1c5a28dbd1e87", + "key": "6ad4bc68bcc7332fdc835d9002592b4f29a445a3", "name": "components/sd-chip/--primary-500/color/text", "remote": false, "resolvedType": "COLOR", @@ -16475,7 +16474,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46434:304476", - "key": "1f4007cf25448084a77fa88b36e63b70ac3fc3e8", + "key": "e530cff0ac283cd5e18aa8994e4fc1e204513274", "name": "components/sd-radio/--checked/--default/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -16507,7 +16506,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:46434:304477", - "key": "0ec060fc2d53db0d7bb837669d5fb2a68f10a927", + "key": "4a646ecf23ede2e9bd820c9ab775767ebdccceff", "name": "components/sd-radio/--checked/--hover/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -16539,7 +16538,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:46434:304499", - "key": "e6992ceb6e212044640f118bd33926aa31a471f0", + "key": "eb4900ede88cdef6f59fecec333b04a2c621a6b7", "name": "components/sd-radio/--default/--invalid/color/background", "remote": false, "resolvedType": "COLOR", @@ -16571,7 +16570,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46434:304642", - "key": "e0254a56b49b431076027a1a68aae3aa25377f23", + "key": "76226d25f2ba25f3c8ae79e1e0ccdb0e295aee33", "name": "components/sd-radio/--checked/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -16603,7 +16602,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46434:304643", - "key": "e29a762daf0b0d87369f9fb61f3c95f5d65afd67", + "key": "05ae08995dfb2bd1858fdfc1a364416ab2f8eb17", "name": "components/sd-radio/--checked/--invalid/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -16635,7 +16634,7 @@ "description": "Used for error messages, invalid states", "hiddenFromPublishing": false, "id": "VariableID:46434:304644", - "key": "426a953bbe643ce0e7bbe2516f681f578fe82832", + "key": "5a5d8c75bfae4f730304c5c6fe6f0a25c79181a9", "name": "components/sd-radio/--checked/--invalid/--default/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -16667,7 +16666,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46434:305759", - "key": "f4a8f4a7c2c3472b317b38f11e31e7742b4e7b9f", + "key": "55eea7821e826afa87462d3a46d872018d9e4c22", "name": "components/sd-radio/--checked/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -16699,7 +16698,7 @@ "description": "Used for hover interaction invalid form elements\n", "hiddenFromPublishing": false, "id": "VariableID:46434:305760", - "key": "83b041f68b31e6983dedfe1d2d04159d018b102f", + "key": "9b4a75355eeb35dc9feec809d3a1a424b0a5b443", "name": "components/sd-radio/--checked/--invalid/--hover/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -16731,7 +16730,7 @@ "description": "Used for inverted dividers", "hiddenFromPublishing": false, "id": "VariableID:46434:306253", - "key": "871bbe61251cd2dddb97daa99d9c094aebcd5531", + "key": "4b21b7059e2750477374713306a483572ea1fbe8", "name": "components/sd-audio/__slide-bar/--inverted/color/background", "remote": false, "resolvedType": "COLOR", @@ -16767,7 +16766,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:307157", - "key": "998e1a613e2312e3c242b004819e214d6b3a55e0", + "key": "2043df7e17a139a6b1125fe5d88a450815b5821e", "name": "utilities/color/error/250", "remote": false, "resolvedType": "COLOR", @@ -16797,7 +16796,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:307158", - "key": "f53c5d046feb3de0d7831eaed42fa7580b486360", + "key": "ebd417a622ecaded913e038e59e9d5aec85ab917", "name": "utilities/color/error/500", "remote": false, "resolvedType": "COLOR", @@ -16827,7 +16826,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:310776", - "key": "4257ecbd74186403e74003084ecf07e4f2a01d60", + "key": "c3fc8e464b10af1ef844ad15641f8bb51d3d16a3", "name": "components/sd-radio/border-width", "remote": false, "resolvedType": "FLOAT", @@ -16859,7 +16858,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46547:87699", - "key": "e86e6e2adb7b63dcfb9e09f55c6d769baeb5f6a3", + "key": "f89b404fb3797335ec7c3f126ea86529df941d8e", "name": "components/sd-step/__tail/border-width", "remote": false, "resolvedType": "FLOAT", @@ -16891,7 +16890,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46547:89332", - "key": "56c298b758c00221d2b43f03237dbc73a1c769a3", + "key": "187d0f8d599dbf569bb50b0938febed0ef21888d", "name": "components/sd-step/color/text", "remote": false, "resolvedType": "COLOR", @@ -16923,7 +16922,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46550:33336", - "key": "13a2f9da81cc9e9f62f52b62d793d536aa074d44", + "key": "4bef73c28b0e8f5c078b3d707ea27281478f60e4", "name": "components/sd-step/__circle/border-width", "remote": false, "resolvedType": "FLOAT", @@ -16955,7 +16954,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46550:34530", - "key": "95b4ad5ba3e79afa16c453a8f09084e4968590e5", + "key": "edf6457f32e0b45d3912fd0fe47a24c752e61e70", "name": "components/sd-map-marker/--cluster/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -16987,7 +16986,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46552:34531", - "key": "18feb9b3b9ab84db7ece79900d975066aeb8d5d2", + "key": "7aa6cfafb66211be849837ccf704f38d896c375d", "name": "components/sd-map-marker/--cluster/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17019,7 +17018,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46581:61953", - "key": "96463d0b27199769fdf8870e2b81f58338de2f7f", + "key": "74b6d78ae05b7277b7ef0ce4173c3c074775ce07", "name": "components/sd-headline/--3xl-onwards/color/text", "remote": false, "resolvedType": "COLOR", @@ -17051,7 +17050,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46588:15143", - "key": "6abee2d2c9f66be66830eef978cedd5c8a61aea7", + "key": "fee12b32ec41fe401910ea842d755464886119d8", "name": "components/sd-video/--play-button/color/background", "remote": false, "resolvedType": "COLOR", @@ -17083,7 +17082,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46590:15143", - "key": "0553a81d6c78b55a8caa60ea4e252fd2ac83ec80", + "key": "980e81f79ac6ad3d7be5f1b6a8851cb3ce60cd56", "name": "components/sd-video/_description/color/text", "remote": false, "resolvedType": "COLOR", @@ -17115,7 +17114,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46741:3641", - "key": "2bb5858dd6cde8cc1ab0104561451faee6771a5e", + "key": "27f9510d53200ac95ee0f0d1983fa730d9a16cf3", "name": "components/sd-quickfact/--expandable/color/text", "remote": false, "resolvedType": "COLOR", @@ -17147,7 +17146,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46782:21016", - "key": "3b1fb660ea3fd6897c2bd85821dae7f0943947b7", + "key": "c8d63a473045e0181bf663dd668830c5d8e9c4bf", "name": "components/sd-teaser-media/--primary-100/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17183,7 +17182,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46782:21017", - "key": "4673d4fddb26bce8ef94c55b78f5a3a120ac8cdf", + "key": "2f86335125df20a2cb1885292c88b251c1176cca", "name": "components/sd-teaser-media/--neutral-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -17219,7 +17218,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46782:21018", - "key": "fa914d61e43e560502aeb94b0a90856375ed8ba7", + "key": "20c2041d5d42a33f7918b541552436fd9b9bbee4", "name": "components/sd-teaser-media/--neutral-100/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17255,7 +17254,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46785:21019", - "key": "2d5427984c7903db1529ff2853fd63a111624ff6", + "key": "927df4531f56320b62b9f32ed9be0da314d45c2d", "name": "components/sd-teaser/--neutral-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -17289,7 +17288,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46785:21047", - "key": "98595513d9451a4862e0e4e30042457865844060", + "key": "c582dced97cf6ce911bb294e2ad6eca9ebd649eb", "name": "components/sd-teaser/--primary-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -17323,7 +17322,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46785:21048", - "key": "ca0545c28485a55f1e65f6bfe37f626bf17cdd31", + "key": "a4e77c63c10cad7598b4d33c0475b5ccc488cee8", "name": "components/sd-teaser/--neutral-400/color/border", "remote": false, "resolvedType": "COLOR", @@ -17355,7 +17354,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46790:20333", - "key": "dd067be269e6fcc8eae8c0cbd1cdf5cec5ea95b2", + "key": "1f93c0c0adb4bf8d5eda03e83fd1f0d708dac9c4", "name": "components/sd-carousel/__pager-dot/border-width", "remote": false, "resolvedType": "FLOAT", @@ -17387,7 +17386,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46790:57690", - "key": "5aaa46d265fec9f29ffe5ae384cda074504dbda5", + "key": "555a690a9062e3611ea337dfc05d214068b203e5", "name": "components/sd-checkbox/border-width", "remote": false, "resolvedType": "FLOAT", @@ -17419,7 +17418,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46825:8941", - "key": "fb4a7539e303315942ba11a02b03f4dfaf8d1ca2", + "key": "c3aa5d7892d06b183c52fa61e28bef709bd44b34", "name": "components/sd-tab/color/border", "remote": false, "resolvedType": "COLOR", @@ -17451,7 +17450,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46841:8934", - "key": "3248ddd11ffa500b553bc293e23c399d223e5387", + "key": "4edf537f9a0a6ae853e5f0a98ce04d7dc41d150a", "name": "components/sd-switch/color/text", "remote": false, "resolvedType": "COLOR", @@ -17483,7 +17482,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46841:9198", - "key": "b674cd0a19132ccd3e6acdd499573daa33d62fdc", + "key": "d7759eed77ee248b83dceaff00d487fcbd9911b2", "name": "components/sd-switch/--unchecked/color/border", "remote": false, "resolvedType": "COLOR", @@ -17515,7 +17514,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46841:9202", - "key": "9571a41c27753e4a95221881e8d1abc5591c407a", + "key": "41b87137f8be1b0ef5f8a8044d308351b1a8a99a", "name": "components/sd-switch/--unchecked/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -17547,7 +17546,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46841:9203", - "key": "7e84cd9f6fe17be2dd282facb1dd740b096ad3af", + "key": "beeb51eb4d46a344cf6334206e03f4a9b9981eb6", "name": "components/sd-switch/--checked/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17579,7 +17578,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46864:40268", - "key": "980ea2188b38a06df92c0c7d31021e10d0bca00f", + "key": "63bd6e9da33a5343caeab3fe000708f69f4ae938", "name": "components/sd-video/--play-button/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -17611,7 +17610,7 @@ "description": "Used for inverted dividers", "hiddenFromPublishing": false, "id": "VariableID:46871:10801", - "key": "c6da12fdca665a36c7fa4005371507da1a31c7bb", + "key": "0eb840dfd3a22c7b6f023ee57b352c3b8d81abbe", "name": "components/sd-divider/--Inverted/color/border", "remote": false, "resolvedType": "COLOR", @@ -17647,7 +17646,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:46871:68824", - "key": "25f951808c5afee7e9b38908ad6e336b33882b9e", + "key": "9693fdefc825aac6df80eb660484994e84523026", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/20%", "remote": false, "resolvedType": "COLOR", @@ -17687,7 +17686,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:46871:68825", - "key": "122f2527b80823ab21f613300d9f81cc74498e1a", + "key": "ebde0ca198584d0a24a9ffcdea523231e9f16582", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/50%", "remote": false, "resolvedType": "COLOR", @@ -17727,7 +17726,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46871:963", - "key": "bd693a6a3880a37d996e895424d88395363bbe7d", + "key": "86dec003cb67ab7067e5cbca73588de77a1cd3b4", "name": "components/sd-carousel/--active/color/border", "remote": false, "resolvedType": "COLOR", @@ -17759,7 +17758,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46893:49686", - "key": "ba5be695590be931a416f726db743c94baf868e3", + "key": "3c7f9fdc11d9430b5894d77aa014377cb62da711", "name": "components/sd-menu-item/color/text", "remote": false, "resolvedType": "COLOR", @@ -17791,7 +17790,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46893:50283", - "key": "086e8b9d2403382c3511f2e46b26367db4afa9d9", + "key": "5344eec1b29a57e0a40cf486852d9dcdfc55d9d3", "name": "components/sd-menu-item/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -17823,7 +17822,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46893:50284", - "key": "4787b955816d34111a126e9d7464e4e88687b700", + "key": "cb80543d8e3053a1c3dd580276643bc41fdd858d", "name": "components/sd-menu-item/--disabled/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -17857,7 +17856,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46893:50285", - "key": "52ae41d809ccb2af489b1e98840069bea2706b6c", + "key": "f852c1e2a95523bf803434d79e187fc647f540c0", "name": "components/sd-menu-item/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -17891,7 +17890,7 @@ "description": "Used for text and icon fill", "hiddenFromPublishing": false, "id": "VariableID:46937:80691", - "key": "57277df9a88fa649d23d6bfd0defdf493477ec06", + "key": "ff91e5494b3997a219451279b2bd70650e959e12", "name": "components/sd-radio-button/color/text", "remote": false, "resolvedType": "COLOR", @@ -17924,7 +17923,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46938:18800", - "key": "1557de1cb66d3854999edd93ff338b6c3ee733c1", + "key": "17853189245947ab8971ef9a60894112213fdea3", "name": "components/sd-navigation-item/color/_icon", "remote": false, "resolvedType": "COLOR", @@ -17956,7 +17955,7 @@ "description": "Used for sd-chip, sd-badge", "hiddenFromPublishing": false, "id": "VariableID:46961:115232", - "key": "a53e5f818b67b9eb67240980e6bb7b194fc8f96e", + "key": "ec7774c847504622d93c05656b9e7c8af0b385bc", "name": "components/sd-button/--secondary/--inverted/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17988,7 +17987,7 @@ "description": "Used for sd-chip, sd-badge", "hiddenFromPublishing": false, "id": "VariableID:46961:122725", - "key": "49d972a7ca35b2e28759cefaa1b35827bad08f1b", + "key": "a587865482b2e36c58cfde3b736bc29b2c6d939e", "name": "components/sd-button/--tertiary/--inverted/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -18020,7 +18019,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:46961:99748", - "key": "6c2da52036ab662bc98b0da63b538f422e836e69", + "key": "baf4394ee33c3727b426e3bf08baa89cd5d8e09a", "name": "components/sd-badge/--inverted/color/border", "remote": false, "resolvedType": "COLOR", @@ -18052,7 +18051,7 @@ "description": "Used for checkbox, switch", "hiddenFromPublishing": false, "id": "VariableID:46971:17841", - "key": "964b78b68f055e8453d0914dc347b51d998c4c2c", + "key": "585227908993bcdca48e108bb729dd7a4a04e904", "name": "components/sd-button/--cta/--inverted/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -18084,7 +18083,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46977:27416", - "key": "2a4ed80d39505cd00d933dd7f453476ab754954b", + "key": "2c224683e57806edd56ba201afcd418d6b5bc1bd", "name": "components/sd-button/--cta/--inverted/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -18116,7 +18115,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46977:27419", - "key": "b972efdcd3ccef771aca42a8c3d77e11beaf790c", + "key": "53c97bf3ed105c10ae7d47de4fb6ef67760cc34f", "name": "components/sd-button/--inverted/--disabled/color/border", "remote": false, "resolvedType": "COLOR", @@ -18148,7 +18147,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46977:27421", - "key": "34ce1fa88f608433af290503af50cfc56b1b0b11", + "key": "943c2dbca370a08dfc95a269abd0497ef6d189e3", "name": "components/sd-button/--inverted/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -18180,7 +18179,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46977:29580", - "key": "597ffb963eb2fd411702abeb5236ffa94975bccd", + "key": "4ced59e9bc662e5b1c805b2fb7de81063b42b33a", "name": "components/sd-button/--cta/--inverted/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -18212,7 +18211,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46977:29581", - "key": "5441924212f30b61c5bad63d3165faa66979d5ac", + "key": "59e5ffdbcaea8aa6d07534b658c6f337139f4d54", "name": "components/sd-button/--cta/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -18244,7 +18243,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:46977:29583", - "key": "eba54cfb755255fd0765746d860d0eb056b52bd1", + "key": "6d1e88f657f599211a1e237259a88626991731f5", "name": "components/sd-button/--cta/--inverted/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -18276,7 +18275,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46977:29585", - "key": "49ec3a7bd3f29be8e4a20177dc4ce9d0e57b1722", + "key": "b3e7713509e5f19745ed41a919ff62caafbbb8ef", "name": "components/sd-button/--inverted/--disabled/color/background", "remote": false, "resolvedType": "COLOR", @@ -18308,7 +18307,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46989:18467", - "key": "f69b48759b70dfb666c13885ffb3ed8fb30b35f1", + "key": "fde8a07f700d1b92ebca9188691b4d92769e9ca5", "name": "components/sd-button/--cta/--inverted/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -18340,7 +18339,7 @@ "description": "Primary brand color for text", "hiddenFromPublishing": false, "id": "VariableID:46998:24287", - "key": "1bb528619ea808261ae81cab6f75a77776e04998", + "key": "e637e901e3a1ca3db6819199184d22039a935017", "name": "components/sd-radio-button/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -18376,7 +18375,7 @@ "description": "Used for text and icon fill", "hiddenFromPublishing": false, "id": "VariableID:46998:24289", - "key": "18edcadf3d44b0b36dfc19c3540d46899397837e", + "key": "20747bef6de69520b1435220890c7c3b1c4c75b5", "name": "components/sd-radio-button/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -18408,7 +18407,7 @@ "description": "Used for sd-link & sd-interactive", "hiddenFromPublishing": false, "id": "VariableID:47031:407", - "key": "f0c8140bd86187192d092adab3dbcfb0452e2107", + "key": "ab33e0301ff17cbe87514462d6a6402d33f96457", "name": "components/interactive/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -18440,7 +18439,7 @@ "description": "Used for label ", "hiddenFromPublishing": false, "id": "VariableID:47174:79210", - "key": "edc6b65f42e6f6838bbdd14f5bbe3dc6fb3280ad", + "key": "b3f16fee5fbfee9e0e4a00672611947f57febcdf", "name": "components/form-control/color/text", "remote": false, "resolvedType": "COLOR", @@ -18472,7 +18471,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47208:17564", - "key": "83c666a4da306fa8bb5046d18f5e9cd9a9b38f1f", + "key": "68ee3272a573cfa4cc49531226e22f3bf08db6ab", "name": "components/sd-tag/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -18504,7 +18503,7 @@ "description": "Used for font weight inside sd-tag, sd-tab, sd-navigation-item & sd-radio-button", "hiddenFromPublishing": false, "id": "VariableID:47208:26542", - "key": "2b3d1bd29f766b4b650b58904ec7f1c8184e3fd4", + "key": "61a7bfd54a2fac700d9ca183c80b86e34e437487", "name": "components/choice-control/font-weight", "remote": false, "resolvedType": "STRING", @@ -18537,7 +18536,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47226:13296", - "key": "25c000f972295855808c8799dde4df831c806b1f", + "key": "8de3dede0b07fb1316393ad015e4e2183349c334", "name": "components/sd-range/__bar/border-width", "remote": false, "resolvedType": "FLOAT", @@ -18569,7 +18568,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:47226:13297", - "key": "4d81c03401835c66a5a7f259681934d5f60762f8", + "key": "10b8dabb1771c2f3635b3778f807f5934dfd24e9", "name": "utilities/sizing/1", "remote": false, "resolvedType": "FLOAT", @@ -18601,7 +18600,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:47226:13298", - "key": "17a7137a8f62b1571be5bdcb8ce28495032b919c", + "key": "1fd4ffd49dc938141bbe91c8b73aba4f6734130f", "name": "utilities/sizing/0,5", "remote": false, "resolvedType": "FLOAT", @@ -18633,7 +18632,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:47333:16976", - "key": "715af9c2dfee99b157c1abb071a43d4de623603a", + "key": "a7730e2935005cdc8e2486c2ff70a1f33a68f192", "name": "components/sd-button/--tertiary/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -18665,7 +18664,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47674:18801", - "key": "0883333a0e2a86525c6ce616109a55caee394bd1", + "key": "67ecf81c13f846349ecc9841e82cfaae8b07892d", "name": "components/form-control/--filled/__floating-label/color/text", "remote": false, "resolvedType": "COLOR", @@ -18697,7 +18696,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8448", - "key": "6261225fb6e0aaf44e3d50bece3eed5a26615083", + "key": "e72346d3a0a51848b503962a79cb7d66db1805b8", "name": "KID/accent/100", "remote": false, "resolvedType": "COLOR", @@ -18717,7 +18716,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8449", - "key": "076e8a740d48fa685fb6f2acbce05b150f8f175b", + "key": "261d286b32c67e401cd5d86e28156ff6177f2e59", "name": "KID/accent/200", "remote": false, "resolvedType": "COLOR", @@ -18737,7 +18736,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8450", - "key": "f8c562b3d9f32546b9e0184529fd2b86cd6351b6", + "key": "334973d168cbcd2fc0d8295a7e7fb9267c07da1b", "name": "KID/accent/300", "remote": false, "resolvedType": "COLOR", @@ -18757,7 +18756,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8451", - "key": "cc2906961e849b94563efb08fc92178962691299", + "key": "3a0de7ae8f09cb9dade5898ce2948a8148656c9f", "name": "KID/accent/400", "remote": false, "resolvedType": "COLOR", @@ -18777,7 +18776,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8452", - "key": "a5fd3350279aeffea9498829b647d3b246b91d2e", + "key": "8956d88489f3cf58df7eeecfd7af05a7fe4d0d85", "name": "KID/accent/500", "remote": false, "resolvedType": "COLOR", @@ -18797,7 +18796,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8453", - "key": "b483c8a5d312cecadaf64ad7150fd40000ee2f72", + "key": "734f41506343c0bb379c17df17c34e447d1d6e55", "name": "KID/accent/600", "remote": false, "resolvedType": "COLOR", @@ -18817,7 +18816,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8454", - "key": "d8ca0670cb1ff71b61058f5250e91f47df830914", + "key": "055536c2e6975ad70f92f94a8c970f0c58bd92fd", "name": "KID/accent/700", "remote": false, "resolvedType": "COLOR", @@ -18837,7 +18836,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8455", - "key": "59aeb349ba138f5e58d09276a00b085fc3944209", + "key": "2b4d735ba899283e9b2a4f79514350ea14451423", "name": "KID/accent/800", "remote": false, "resolvedType": "COLOR", @@ -18857,7 +18856,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8456", - "key": "6884f2a76888482e5fb721de7e978ea76fa95276", + "key": "3db9296a010a7747e6a567cbdfa15532854a598f", "name": "KID/accent/900", "remote": false, "resolvedType": "COLOR", @@ -18877,7 +18876,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8457", - "key": "18a38c60d0df5d8f184a3e01976b738179206097", + "key": "8d8e04936d50dc114860b353effcf280e89b1003", "name": "KID/accent/default", "remote": false, "resolvedType": "COLOR", @@ -18895,7 +18894,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8458", - "key": "3fe82f5581de076bcc089972d2c2df1720ba74ff", + "key": "3fcc66f7c05a49ef79d991b6f933a59ebd4bd0e9", "name": "KID/primary/100", "remote": false, "resolvedType": "COLOR", @@ -18915,7 +18914,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8459", - "key": "a0f436e99d50739202ae8dfcb41c2170cf4a4f98", + "key": "cd11d90a5840cf73d1b4a19deaabd567293f925c", "name": "KID/primary/200", "remote": false, "resolvedType": "COLOR", @@ -18935,7 +18934,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8460", - "key": "23eb70cba4eb3eef954bef2974cd9987471bc158", + "key": "c733506e745bb980ae338d026abac332a90ecbb3", "name": "KID/primary/300", "remote": false, "resolvedType": "COLOR", @@ -18955,7 +18954,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8461", - "key": "945be6ac148ed114778534290fc9259b3e6a3276", + "key": "df1d097e0a517b332b8d08d162c61b380fa96408", "name": "KID/primary/400", "remote": false, "resolvedType": "COLOR", @@ -18975,7 +18974,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8462", - "key": "a551a53e2bdfac4a33555df8e405f2480413c2e4", + "key": "3e7c50385e6219abfdcafb8a1dc3fd2b36e717b2", "name": "KID/primary/500", "remote": false, "resolvedType": "COLOR", @@ -18995,7 +18994,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8464", - "key": "8922a0761ef535b35a5188ff8b220dd905970337", + "key": "1fb17c927484843de11784a46ffa71d94dcf4122", "name": "KID/primary/600", "remote": false, "resolvedType": "COLOR", @@ -19015,7 +19014,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8465", - "key": "71e2815ef17e916b5c8c105c40fe4cd18db24063", + "key": "53344436f69d57e0ffe8c7ff5cee6d20bf7e8028", "name": "KID/primary/700", "remote": false, "resolvedType": "COLOR", @@ -19035,7 +19034,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8466", - "key": "7a5c0c9bf55a861afe0aa9a76004a793be4e47ee", + "key": "d0c064d29dd24d3600decd5bd944269fa71c71c0", "name": "KID/primary/800", "remote": false, "resolvedType": "COLOR", @@ -19055,7 +19054,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8467", - "key": "b9d0341d8b6f15ba55c9bd48b9bb76a5ca86fb69", + "key": "7e12b72e204b5bd1c0a58a05a798306121d04892", "name": "KID/primary/900", "remote": false, "resolvedType": "COLOR", @@ -19075,7 +19074,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8468", - "key": "4158feb3e4a68aced883828b48895a8be9450201", + "key": "0b73695a6b2e72cdd92fe4b3fdad084cd7f9542b", "name": "KID/primary/default", "remote": false, "resolvedType": "COLOR", @@ -19093,7 +19092,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8470", - "key": "f0b89a374a600cef7a77865114c1e3e31f962384", + "key": "4e7496b8d3a38d73e2af77c418ca8b4d8f1515dd", "name": "KID/black", "remote": false, "resolvedType": "COLOR", @@ -19111,7 +19110,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8477", - "key": "982f90a3e48189a04705eac09f900b0c04cfa25d", + "key": "dde9bbde7ed41722c0cf0fe1691688db986b1e81", "name": "KID/white/default", "remote": false, "resolvedType": "COLOR", @@ -19131,7 +19130,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8488", - "key": "9b0e8685b66693881e0e7f6803abb9705af662f4", + "key": "3772e9f1fc3436dc59e1705d045cab75ff359ad7", "name": "KID/white", "remote": false, "resolvedType": "COLOR", @@ -19153,7 +19152,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8519", - "key": "e37033107e59c97e19edbf9de9c29f453b1b5457", + "key": "df879f5e6f714f612dc7c8fb851435f3009e5298", "name": "KID/font-family/font-family-primary", "remote": false, "resolvedType": "STRING", @@ -19168,7 +19167,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8520", - "key": "c78b2380998bd4a2bad42f109a8c404c98189dc8", + "key": "488d4410b2fc6409037bd1fd4ac29b230acf90f6", "name": "KID/status/success", "remote": false, "resolvedType": "COLOR", @@ -19188,7 +19187,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8522", - "key": "21b981ef0d8eae9a1432c15bce057bc451f8677a", + "key": "d725e4e7f8f4918678391feffc25a82b1384d368", "name": "KID/status/error", "remote": false, "resolvedType": "COLOR", @@ -19208,7 +19207,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8523", - "key": "d19ef63fe3fc6d75e32a4b4fb24e37e0ef0bd43a", + "key": "c56782e50d97598621be0a8dddaaeebce09a5dca", "name": "KID/status/warning", "remote": false, "resolvedType": "COLOR", @@ -19228,7 +19227,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8524", - "key": "dbca8bbd43d11fa2426309e71eedbf19d62ca2be", + "key": "cf272ac24e0ed5f19d1afcc92b77b63b3fc80293", "name": "KID/status/warning-bg", "remote": false, "resolvedType": "COLOR", @@ -19248,7 +19247,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8525", - "key": "299908e13c55d11c555fe78b7b4b3d6afce84ef7", + "key": "d8f0d37f016e9d68a7a3972ee976d2eb725429c0", "name": "KID/status/success-bg", "remote": false, "resolvedType": "COLOR", @@ -19268,7 +19267,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8526", - "key": "63b8ea6175fc4877fcd82cf7753f0a59a032235f", + "key": "b1700aa427b52e0bc37f2710b32787971166cd10", "name": "KID/status/error-bg", "remote": false, "resolvedType": "COLOR", @@ -19288,7 +19287,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8527", - "key": "0e056efd76b47be04f1f43ac8c2b334cb1148f8d", + "key": "048a2ec44a31323249b5ba963be7b8da74a6f318", "name": "KID/status/neutral-blue", "remote": false, "resolvedType": "COLOR", @@ -19308,7 +19307,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8528", - "key": "b69ca3a3b2cdee2200b36293b88981c2575c8f2e", + "key": "ded6bb315360ed02dd968a5ea9faa51cea543c9d", "name": "KID/status/neutral-blue-bg", "remote": false, "resolvedType": "COLOR", @@ -19328,7 +19327,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8529", - "key": "351cc3f067fda6b3b45069d9f73f3dbd91caf89a", + "key": "e7521dc2631bed803024ddfe107bc6e7d87c279d", "name": "KID/status/neutral-grey-bg", "remote": false, "resolvedType": "COLOR", @@ -19348,7 +19347,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8532", - "key": "ec8b763ff0952cb17f7674549bbb62b5d3baebf0", + "key": "c53a8fb6a87e9b2f341f47ea4887b0bea61a5733", "name": "KID/neutral/200", "remote": false, "resolvedType": "COLOR", @@ -19368,7 +19367,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8533", - "key": "32067fecda3a29f370dc73b6a0a0e6e4a190a172", + "key": "762e75c601247bb9e5b2c6cfb199b49debf22b19", "name": "KID/neutral/300", "remote": false, "resolvedType": "COLOR", @@ -19388,7 +19387,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8534", - "key": "04a312d74c8e97bbdbef4300f68d313d39f3c9a3", + "key": "dc59c700e9195d53d64023ca28e4156c12ec0439", "name": "KID/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -19408,7 +19407,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8536", - "key": "31691332287071eed167ca364577d955337aaba8", + "key": "b8250f0ebd7ec2735272167724a5a63fe3d157c9", "name": "KID/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -19428,7 +19427,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8537", - "key": "96a52a3e5805bba47d566c5e097d9f2e636ebd6f", + "key": "d8a21153ead3a5a3ed51245b2bb1a13528b6d20a", "name": "KID/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -19448,7 +19447,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8538", - "key": "9abcf4b80cfab985e5caacfeb1dce0681877279c", + "key": "16836cdd7391260ff38576e10692f13f55ec1f6b", "name": "KID/neutral/700", "remote": false, "resolvedType": "COLOR", @@ -19468,7 +19467,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8539", - "key": "9bb3e882900792130125faeb48a33ec75484c174", + "key": "62e86707407173829c28c63db80f466ccc64d057", "name": "KID/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -19489,7 +19488,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47728:7235", - "key": "e9ca5d7a72deac58f9d3260975d4d600cdc29d88", + "key": "01d93ea09dab9dfcaf3bb3866d33099976d298db", "name": "components/sd-link/color/--hover/icon", "remote": false, "resolvedType": "COLOR", @@ -19522,7 +19521,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47728:7237", - "key": "2c66d006864ac7428f879080a09f278e064da240", + "key": "091d9e9ca162f43275e55159cc38a6f31cb22ac7", "name": "components/sd-link/color/--none/icon", "remote": false, "resolvedType": "COLOR", @@ -19555,7 +19554,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47728:7239", - "key": "76d9622a37b995534583f98b8837da086aa2f2eb", + "key": "e10b32b493f63af0c24215bf39b9018afcff01be", "name": "components/sd-link/color/--pressed/icon", "remote": false, "resolvedType": "COLOR", @@ -19587,7 +19586,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47735:23876", - "key": "1335de4bb45e157adddfcad8cd38f513909f9461", + "key": "fada6e43fb1b6113d0ce935454a5736f87fa583f", "name": "components/sd-datepicker/__date-item/--hover/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -19621,7 +19620,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47735:23878", - "key": "125267cbd512697ecfa40b571b58dab538f8d56a", + "key": "000b9318e00275fe70be07eafc71dd3be44ec318", "name": "components/sd-datepicker/__date-item/--hover/--prev-next/color/background", "remote": false, "resolvedType": "COLOR", @@ -19655,7 +19654,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47735:23879", - "key": "ddb1a0f30043c0f972ceaf8186fc2f912407040d", + "key": "412d17559b99cc89d10e70d86df06e3d7e9c271e", "name": "components/sd-datepicker/__date-item/--selected/color/text", "remote": false, "resolvedType": "COLOR", @@ -19687,7 +19686,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47735:23880", - "key": "9376d98c1d22e1a77225571edf53304da73f546a", + "key": "3c69bc434d682c172e590c35edeb8d3c61832db6", "name": "components/sd-datepicker/__date-item/--hover/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -19719,7 +19718,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47737:23882", - "key": "b7b1215a318701bb01c81b93a158a8fbf1e3c279", + "key": "e56ce367b620090d3b91a4f756ced1f6606eb532", "name": "components/sd-datepicker/__date-item/--hover/--prev-next/color/text", "remote": false, "resolvedType": "COLOR", @@ -19751,7 +19750,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:193767", - "key": "f0a7fe270cbf5defa822478245e953ab26001be5", + "key": "dd9030a123bec8e9a32b70de752390b2f163b64c", "name": "components/sd-button/--size/sm/font-size", "remote": false, "resolvedType": "FLOAT", @@ -19784,7 +19783,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:193768", - "key": "64855c5804f1b83ef2609eeccee6c6b1d7690a88", + "key": "5ac07bc61a729c12bfac84c5f373ddb7a25c92bc", "name": "components/sd-button/--size/sm/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -19816,7 +19815,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:193769", - "key": "66ca2536dc9887e6829964f5e9defbf1c4c1aa2e", + "key": "86db688528cd7a0b99933804d819cf0c50c6f6ee", "name": "components/sd-button/--size/sm/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -19836,7 +19835,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:27980", - "key": "13d08fcc63fc2e88bcde67addc8d99b9ccb51656", + "key": "6ca38fa6a132a863d9f1faecf6b6a3ce5a171761", "name": "KID/neutral/900", "remote": false, "resolvedType": "COLOR", @@ -19856,7 +19855,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:27982", - "key": "94856da0bcb0d2328c6ca3e17531324d9e9d605c", + "key": "0a854087442dd901bd318102568b24e379816051", "name": "KID/creme", "remote": false, "resolvedType": "COLOR", @@ -19878,7 +19877,7 @@ "description": "400", "hiddenFromPublishing": false, "id": "VariableID:47805:4778", - "key": "b7ec7218511cadd98a47787779bcbe150d3e6fb9", + "key": "873b8acc1fc8847d5c4fdd68ac18f0f920fbc167", "name": "KID/font-weight/font-normal", "remote": false, "resolvedType": "STRING", @@ -19893,7 +19892,7 @@ "description": "500", "hiddenFromPublishing": false, "id": "VariableID:47805:4779", - "key": "8bb388c58cd7166725231a88a3c60c8d1071a340", + "key": "c8d372d9b9ca897e36ca117dae659e5f42568b1d", "name": "KID/font-weight/font-semibold", "remote": false, "resolvedType": "STRING", @@ -19908,7 +19907,7 @@ "description": "600", "hiddenFromPublishing": false, "id": "VariableID:47805:4780", - "key": "476914c5b0e3767ed6390a1aa75012e3fb126c01", + "key": "473a0511840389f38e7795d46e8f078eb08312fb", "name": "KID/font-weight/font-bold", "remote": false, "resolvedType": "STRING", @@ -19923,7 +19922,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:47829:633", - "key": "4d539e78048673ef59e2c86a8c7720d5c45523f0", + "key": "295d90478bb287dc16f8d3ae5efbed0b802ce1a5", "name": "utilities/spacing/14", "remote": false, "resolvedType": "FLOAT", @@ -19955,7 +19954,7 @@ "description": "border radius 4px", "hiddenFromPublishing": false, "id": "VariableID:47829:638", - "key": "c8c4ff6d4b671d73f49b778f5a07ae86d1584193", + "key": "c9ef81fc3b3087f670936bba940be1c195894483", "name": "KID/rounded/sm", "remote": false, "resolvedType": "FLOAT", @@ -19970,7 +19969,7 @@ "description": "border radius 8px", "hiddenFromPublishing": false, "id": "VariableID:47829:639", - "key": "4177cf0ae9d923aa6e727ef4a96718ab0b551e46", + "key": "037cc2e9dc5e37b346a9b6e3fe0829831c0d931e", "name": "KID/rounded/md", "remote": false, "resolvedType": "FLOAT", @@ -19985,7 +19984,7 @@ "description": "border radius 16px", "hiddenFromPublishing": false, "id": "VariableID:47829:640", - "key": "232a45b0562136f172afc6446084c1149e8152f0", + "key": "863ed104d74a814dfb754bcd086251f28c884c54", "name": "KID/rounded/\blg", "remote": false, "resolvedType": "FLOAT", @@ -20000,7 +19999,7 @@ "description": "border radius 999px", "hiddenFromPublishing": false, "id": "VariableID:47829:641", - "key": "b4263330c01bae41ac824a2524b91011c2765a4f", + "key": "215ae0d570d37f05d420c11632b90f57af6b65b7", "name": "KID/rounded/full", "remote": false, "resolvedType": "FLOAT", @@ -20015,7 +20014,7 @@ "description": "opacity 50%", "hiddenFromPublishing": false, "id": "VariableID:47829:657", - "key": "bcb823fbc4dbbf0e32d6d9df4dad3af966b197d7", + "key": "893c15bbb9f242072b378f38c011a8da92b20405", "name": "KID/opacity/opacity-50", "remote": false, "resolvedType": "FLOAT", @@ -20030,7 +20029,7 @@ "description": "opacity 60%", "hiddenFromPublishing": false, "id": "VariableID:47829:659", - "key": "d44d14daac9a703f8002915b120e8afe4de2881e", + "key": "fbca600e7adb98fe63ba14fb80f82576dc169130", "name": "KID/opacity/opacity-60", "remote": false, "resolvedType": "FLOAT", @@ -20045,7 +20044,7 @@ "description": "opacity 100%", "hiddenFromPublishing": false, "id": "VariableID:47829:665", - "key": "ebe407d492e5794d65918861b32c5eb65175f4a3", + "key": "b08ca4fbbce44af47e0dcdb1dd0fd33eef052584", "name": "KID/opacity/opacity-100", "remote": false, "resolvedType": "FLOAT", @@ -20060,7 +20059,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47833:10802", - "key": "4b78e833084686355e55b709ba8697738f0fdf7b", + "key": "06614177c0933d0c8be8d0f124f5a22709619245", "name": "font-semibold", "remote": false, "resolvedType": "STRING", @@ -20075,7 +20074,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47835:23074", - "key": "0f884d2a2b999a3d258eb6d1a7b973bd85019716", + "key": "73e9b1b6f712ba3d76d799089bb47444010dd401", "name": "VB/font-weight/font-normal", "remote": false, "resolvedType": "STRING", @@ -20090,7 +20089,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47835:23075", - "key": "1ba6f0eca63c5ba0767dd8e1029cc125057603d5", + "key": "3b7ea64b1026d84fc4b725c77902a68ee93bf7f1", "name": "VB/font-weight/font-bold", "remote": false, "resolvedType": "STRING", @@ -20105,7 +20104,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:47858:29969", - "key": "71eb8a063c3ff68bc9b7fe5a4e2a1ba76e6a4a05", + "key": "ae4e13bd049798f2de4b89814053d4d91df61aa0", "name": "components/sd-button/--primary/--inverted/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -20137,7 +20136,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47877:97571", - "key": "0b632f9c4d27267fdde6dbe4e8c3a6c37e8f4555", + "key": "b4df5dd733ceb5491e7f936820027cd13fe893ff", "name": "utilities/text/xs", "remote": false, "resolvedType": "FLOAT", @@ -20157,7 +20156,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:47899:14901", - "key": "83094fb166d8a05466dc951cff86f248b4eadc4d", + "key": "3233d817b2238821b747909cc8d81086a8a8877f", "name": "text-xs", "remote": false, "resolvedType": "FLOAT", @@ -20172,7 +20171,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5274", - "key": "d1d51f2452a5b29723d48194dd7070cbdfd1bf3c", + "key": "32d9782ec602d3edeae944c5ff8eb38bea43a7d2", "name": "utilities/text/sm", "remote": false, "resolvedType": "FLOAT", @@ -20192,7 +20191,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5276", - "key": "ee22f525b19cb4c2cb9d2ae61d2ff356139bd2d1", + "key": "f5191c0e02fdfb3a921b1a516187574a29e76e0c", "name": "utilities/text/base", "remote": false, "resolvedType": "FLOAT", @@ -20212,7 +20211,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5277", - "key": "7429c259a0cac802a8b1562f3b4e31f2a4b9e76e", + "key": "e8efa08f67f259ee71b40b6a3fa8ec9f3d3d680b", "name": "utilities/text/lg", "remote": false, "resolvedType": "FLOAT", @@ -20232,7 +20231,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5278", - "key": "eb29951e41b502759b4a66808981445483368b01", + "key": "5f6bc2d979e16422655e9bd77e48adfc13f61c59", "name": "utilities/text/xl", "remote": false, "resolvedType": "FLOAT", @@ -20252,7 +20251,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5279", - "key": "464f5716f5336298339b9b38a205c79e9744fe3c", + "key": "872a6921837f903c5013dff04c1551fade84e697", "name": "utilities/text/2xl", "remote": false, "resolvedType": "FLOAT", @@ -20272,7 +20271,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5280", - "key": "9e97d6f86a4eaf4aaf51e1d833b88879971cdab7", + "key": "6a4b245a12f419686898776da078d5a6d3b7e512", "name": "utilities/text/3xl", "remote": false, "resolvedType": "FLOAT", @@ -20292,7 +20291,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5281", - "key": "58c0faad1b6efecc4a72d2d58d49f8badd9b1def", + "key": "4f49d7c5499c117a1023515dc2374006eab92f09", "name": "utilities/text/4xl", "remote": false, "resolvedType": "FLOAT", @@ -20312,7 +20311,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47958:17170", - "key": "161b9f3c666c5cf3b4b576a60df9258ac2ba3dff", + "key": "648b9fdc2ddb6584de9395749af6ef9fa3953676", "name": "_todo/components/sd-radio/--size/lg/__icon", "remote": false, "resolvedType": "FLOAT", @@ -20344,7 +20343,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47958:21546", - "key": "aa88fdb53aa2f67d34cf468a392fd359b967ec3a", + "key": "f74d1baa717fd2196d3b7169b07c06307ca20243", "name": "_todo/components/sd-checkbox/--size/lg/__icon", "remote": false, "resolvedType": "FLOAT", @@ -20376,7 +20375,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47961:6096", - "key": "516b6e94d13bc05becf68dd7fdb75cf67dbae74e", + "key": "783979fecbccbc91d79e7f80a91e5f1c4a32ac54", "name": "components/sd-tag/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -20416,7 +20415,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47961:6198", - "key": "7464e3ab2b5ceb69eb0b13e54feb12b33879ffcd", + "key": "8445fabbdb7ab2854e71f2214c90d7c6f866ab4d", "name": "components/sd-tag/--default/color/border", "remote": false, "resolvedType": "COLOR", @@ -20450,7 +20449,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47961:6310", - "key": "53ebe60e95943ff63bc2ddaa34fc23d20fb45644", + "key": "035caf7177bd0b83d8aff6cfb68d60afde95254f", "name": "components/sd-tag/--size/lg/font-size", "remote": false, "resolvedType": "FLOAT", @@ -20482,7 +20481,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47961:6311", - "key": "f5ce8c5f2fe843c563b49093d6f5d6f18ed0622e", + "key": "1fd01b3fb750d4e25205445d0401d7bd0f5d4ade", "name": "components/sd-tag/--size/sm/font-size", "remote": false, "resolvedType": "FLOAT", @@ -20514,7 +20513,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48046:4669", - "key": "16b33e8c79e80349b0064cb5aca554ae786c3ce4", + "key": "fffa04e1313dd3742befe1e1f829ad6db24fb458", "name": "components/sd-input/--size/_label/font-size", "remote": false, "resolvedType": "FLOAT", @@ -20546,7 +20545,7 @@ "description": "Used for font weight inside sd-chip & sd-flag", "hiddenFromPublishing": false, "id": "VariableID:48127:24317", - "key": "8c0d606814a41cd2f1d789032a8c607fc857254f", + "key": "cad6529fdd61c343627efc535018085e364e6289", "name": "components/marker/font-weight", "remote": false, "resolvedType": "STRING", @@ -20578,7 +20577,7 @@ "description": "Used for sd-chip & sd-flag", "hiddenFromPublishing": false, "id": "VariableID:48127:24325", - "key": "511c93053111f1371c820e6df1436ce0004890c0", + "key": "04b3e3bc2a97e454f1e82137b6fe51291157c157", "name": "components/marker/border-width", "remote": false, "resolvedType": "FLOAT", @@ -20604,7 +20603,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48150:71089", - "key": "7f1ad5c83a91bc0fdb55f8ac4be9e7ac76011405", + "key": "b92e36c9d23a8390565522b517f1324ef1d979e6", "name": "KID/white/600", "remote": false, "resolvedType": "COLOR", @@ -20624,7 +20623,7 @@ "description": "Used for sd-chip & sd-flag", "hiddenFromPublishing": false, "id": "VariableID:48150:71090", - "key": "6ab9c7cea4b85a9f8612943db040422c5c23cdd0", + "key": "11a0e3b7dfa640617e1306c0cbb7fb6b2311cdf2", "name": "components/marker/font-size", "remote": false, "resolvedType": "FLOAT", @@ -20656,7 +20655,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:92347", - "key": "d000b979ffc85e62d6647e72b9b877416fd52f4c", + "key": "45e67809569623e1ea07352dd5570589667eb246", "name": "components/sd-combobox/__tag/border-width", "remote": false, "resolvedType": "FLOAT", @@ -20688,7 +20687,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96150", - "key": "2c79ada7ede996beb35dcbdf9c19e399fe0d1891", + "key": "54cbf0916b5bdb412aa0ac89fe5c3a24c67412a0", "name": "utilities/leading/3", "remote": false, "resolvedType": "FLOAT", @@ -20708,7 +20707,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96151", - "key": "51780144ad8dc1f251b29a21a587fa698d43bf99", + "key": "5404a231cd9d68890ca3cb8622fd84417006e3df", "name": "utilities/leading/4", "remote": false, "resolvedType": "FLOAT", @@ -20728,7 +20727,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96153", - "key": "b5d1a950191bcfbeed49d7f674054c15d6f2c41b", + "key": "e3ec06a0f9cc6289cc77bbce1694f20e8555b25c", "name": "utilities/leading/6", "remote": false, "resolvedType": "FLOAT", @@ -20748,7 +20747,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96154", - "key": "58508cdc7fd5b9ab52feab058e4555601868abc0", + "key": "546ee89346a98ddb5a6ad7788c150e0899697613", "name": "utilities/leading/7", "remote": false, "resolvedType": "FLOAT", @@ -20768,7 +20767,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96155", - "key": "e0d9f7a4640b16190379b5c539a05f2c75866f40", + "key": "1d505ffeff941aa15a8b03529a75d0e4f1a04798", "name": "utilities/leading/8", "remote": false, "resolvedType": "FLOAT", @@ -20788,7 +20787,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96156", - "key": "ca05b09d654f5c1c3f1ffe1d3cf85a9cbc7db836", + "key": "0c2173c203f8c8eb930c8a50e39abd67b8b9d7cf", "name": "utilities/leading/8,5", "remote": false, "resolvedType": "FLOAT", @@ -20808,7 +20807,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96200", - "key": "80558a74833ecac8a59d1955c06fccb884e86a3b", + "key": "d00f7f8dba99f0aa85fc30fc2ba5f50f9a660029", "name": "utilities/leading/5", "remote": false, "resolvedType": "FLOAT", @@ -20828,7 +20827,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96201", - "key": "899626d25589dab8a72537ccb928c16676f0efe0", + "key": "f90d0e1fd51049bfb18a8fd2b03f405bc2710c5f", "name": "utilities/leading/9", "remote": false, "resolvedType": "FLOAT", @@ -20848,7 +20847,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96202", - "key": "3bdda014480ca3a8220f2290aeec50a4da184371", + "key": "1a6cada4ff92d09200fca7feb5d80e3ec2ac1892", "name": "utilities/leading/9,5", "remote": false, "resolvedType": "FLOAT", @@ -20868,7 +20867,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96203", - "key": "48cae44f93d8f27e4688ebe4771cf4e4a1f12f54", + "key": "b5be7f298df72de776d6fdd34670c33cda741944", "name": "utilities/leading/12", "remote": false, "resolvedType": "FLOAT", @@ -20888,7 +20887,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96204", - "key": "ef18a510beef52e51740e1f645ed945ad88972cd", + "key": "1eb8165ee91fc5419f49b278ebf5fe17a8bca637", "name": "utilities/leading/15", "remote": false, "resolvedType": "FLOAT", @@ -20908,7 +20907,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96205", - "key": "088e826713f0f2a39317666d44a2a97726893ce0", + "key": "9c7e3074c0e729cef02a45fe9923d779ca58c808", "name": "utilities/leading/4,5", "remote": false, "resolvedType": "FLOAT", @@ -20928,7 +20927,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48719:115820", - "key": "d8f5bd23b9a902b5837b5d05f35a2fa6b4c095cb", + "key": "9e3d2caf038a310be8b4092c0a99779f8a111e32", "name": "components/sd-header/__underline/height", "remote": false, "resolvedType": "FLOAT", @@ -20960,7 +20959,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48719:115873", - "key": "d8f6cea69457861343035c8c35c2bee5c32e621b", + "key": "9bcce826aa3e438083086ef81742b204326493a1", "name": "components/sd-header/__underline/color/background", "remote": false, "resolvedType": "COLOR", @@ -20998,7 +20997,7 @@ "description": "color has same luminance as step 100", "hiddenFromPublishing": false, "id": "VariableID:48719:123821", - "key": "54751d2d4fac82072aec382c03198c78c794575b", + "key": "9bf56d6fbc62925e2fb216890299b9e4cfe4018e", "name": "VB/azure/200", "remote": false, "resolvedType": "COLOR", @@ -21018,7 +21017,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:48719:146279", - "key": "2588b651396eb9e29853110bc04f19606db6a7e6", + "key": "e7db641241c29b2329ca44197d4422dde1d6ddf8", "name": "utilities/sizing/0,25", "remote": false, "resolvedType": "FLOAT", @@ -21050,7 +21049,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:49052:101", - "key": "43abe8ef0c4011336185c53f5309f188961d1dd5", + "key": "4cf849c7994759cd13f49c5ad27f91009d8a9988", "name": "components/sd-carousel/__pager-dot/--inverted/background", "remote": false, "resolvedType": "COLOR", @@ -21082,7 +21081,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:49052:102", - "key": "e504fccedad3e57c10a0336e021855ceaf7f6be6", + "key": "3a06b916e28d9fdcc2052e7e9e8ab84b162ecd9a", "name": "components/sd-carousel/__pager-dot/background", "remote": false, "resolvedType": "COLOR", @@ -21114,7 +21113,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:49052:103", - "key": "6185cd4057510a3799f6fb326aeb4972c00794d9", + "key": "3fdfaa9c20e968a4e857589a77b18fa6ca71db52", "name": "components/sd-carousel/__pager-dot/--inverted/border", "remote": false, "resolvedType": "COLOR", @@ -21146,7 +21145,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:49052:1122", - "key": "8fc507e744dfda22aede4b78055c4d38a0de19eb", + "key": "195aa23c33fd687059918c78eca8d08cad89b061", "name": "components/sd-carousel/__pager-dot/--inverted/--hovered/background", "remote": false, "resolvedType": "COLOR", @@ -21178,7 +21177,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49052:99", - "key": "13329e99180fb9541efd8a69845d044ca4cf4299", + "key": "1db556a27e570009f990b89d215547f5ba898d55", "name": "components/sd-breadcrumb/__separator/--current/color", "remote": false, "resolvedType": "COLOR", @@ -21210,7 +21209,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49063:51818", - "key": "2b8468d4ddbacb5a9c6011d75437b753028dcfcd", + "key": "ffa086180d3a8c1dc7130c711e20c0d9e2adb2f2", "name": "components/sd-map-marker/--main/color/background", "remote": false, "resolvedType": "COLOR", @@ -21242,7 +21241,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:49398:69", - "key": "9f7eeb4b5db94423c57d1a8365895c4be7acec52", + "key": "d477bade19b81121f527275e7b594ed7b5106eec", "name": "components/sd-skeleton/color", "remote": false, "resolvedType": "COLOR", @@ -21276,7 +21275,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49425:37983", - "key": "fce2a5e8d422454b2fa02b97530725276f64c8cd", + "key": "efbfc07c45d112ac851b88513655d0a79b2f6885", "name": "components/sd-badge/--blue/color/background", "remote": false, "resolvedType": "COLOR", @@ -21308,7 +21307,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49594:14770", - "key": "6922d135858a43d7ac0e49fa05f1034c7a68545e", + "key": "3e00d0e0296ead1cbe36ff360924ac9016b22553", "name": "components/sd-teaser/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -21331,7 +21330,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49594:15491", - "key": "f23e49ffeec577f8f767d12acd1062fdac587715", + "key": "8ad278dfdebc179f5f522f263fa6115ccf220149", "name": "_internal/slot-inverted", "remote": false, "resolvedType": "COLOR", @@ -21371,7 +21370,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49844:13867", - "key": "eccafe6416f70ba9b6ad2bbe4351543dba4dbda2", + "key": "2e2feb5136ece6d56f93dfd115c27fa7e9cdcaa5", "name": "components/sd-pagination/--inverted/border", "remote": false, "resolvedType": "COLOR", @@ -21403,7 +21402,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49844:13952", - "key": "7c873ce67905fe2729636269bdf814210a043e7f", + "key": "456b09eee1fa7be2ad542ce42b0e0b3867b27ac0", "name": "components/sd-pagination/--default/border", "remote": false, "resolvedType": "COLOR", @@ -21435,7 +21434,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49857:86584", - "key": "945c3cc8b883eb541ece2882a4e94bd7f52238b2", + "key": "2591821b3c6f2fa3e3cda22bacd6e03a83fa4554", "name": "components/form-control/__listbox/border-bottom-left-radius", "remote": false, "resolvedType": "FLOAT", @@ -21467,7 +21466,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49895:3480", - "key": "4b70bcef2ec579a0c6c853434abd8fd13442e80c", + "key": "36b47af4de8948c51b7e4038e0615c50269a9f8e", "name": "KID/white/400", "remote": false, "resolvedType": "COLOR", @@ -21487,7 +21486,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49895:3481", - "key": "29f5b0bbd98666e183d50c3eff1d5c3f7b45b42e", + "key": "7285f2248776fef388095fb7b5b1894838edfa7d", "name": "KID/white/100", "remote": false, "resolvedType": "COLOR", @@ -21507,7 +21506,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49895:3482", - "key": "82ed3f9745761bc775ac85a7598f706f9c5fe933", + "key": "c3bb8446ec05c59c8bcd1ae0234be8cdfbd485b4", "name": "KID/white/20", "remote": false, "resolvedType": "COLOR", @@ -21527,7 +21526,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49895:3483", - "key": "0409e5aaf177622b2c3fbf65c6903be65b426326", + "key": "da092fdf4aa051877b1218b6a640c8b62957efa1", "name": "KID/white/840", "remote": false, "resolvedType": "COLOR", @@ -21548,7 +21547,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:49909:7223", - "key": "1add6dfcb2b9bf8d2d6aeb486e203519a7aee938", + "key": "7feebbdb31930944156fda4a98ba31231d925b50", "name": "components/sd-notification/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -21580,7 +21579,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:49909:7224", - "key": "4f7507afc21d35823730ad961de1414588d9f0c8", + "key": "1f92866568118aab773d7f8d0dff69c0bd2b66c6", "name": "components/sd-notification/color/border", "remote": false, "resolvedType": "COLOR", @@ -21612,7 +21611,7 @@ "description": "this is used instead of #ECEFF1 because in Theme the utilities.neutral.100 white 50% creates a bug that can't be fixed and the core KID neutral 100 wasn't used anywhere", "hiddenFromPublishing": false, "id": "VariableID:50186:1502", - "key": "80f88dfe75bd50d0c806f75be23a02110e1ec24f", + "key": "8f140bcd2c5604e8a69703960d14edd61407488b", "name": "KID/neutral/100", "remote": false, "resolvedType": "COLOR", @@ -21632,7 +21631,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:50186:1503", - "key": "59c09f05f0aeb263892117d6be3190a74b45388a", + "key": "be960ae9e91e168d7a568463550f991b2faca4a3", "name": "KID/white/500", "remote": false, "resolvedType": "COLOR", @@ -21652,7 +21651,7 @@ "description": "Default background color. Used for sd-chip, sd-flag, sd-container. NOTE: kid value should be reference to kid.white.600, had to be removed due to a bug that blocked fetching tokens in code.", "hiddenFromPublishing": false, "id": "VariableID:50243:25341", - "key": "e922c96fa6f90bb05af67f26c973e2521bf53931", + "key": "5222d853d2db9d841fc15a15ca709c1c1c189079", "name": "components/sd-dropdown/color/background", "remote": false, "resolvedType": "COLOR", @@ -21686,7 +21685,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:50346:24618", - "key": "c60990bd0605bca6350d4a5135910c69b4c92a58", + "key": "311fe0abf3bdef8f9208ac434330d3a57347c944", "name": "components/sd-datepicker/__date-item/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -21718,7 +21717,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:50348:22930", - "key": "d68cf84a217d3d8902c0de0e0ced6fdb68256313", + "key": "fc99ffb3dcb523dbcc85874d19004afe6946e940", "name": "components/sd-datepicker/__date-item/--current/font-weight", "remote": false, "resolvedType": "STRING", @@ -21750,7 +21749,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:50578:36839", - "key": "4d753f67515e156ddea30f0395df4680bcc4a266", + "key": "19b575b17f78a3ac8982c327beaa04c2f13c3623", "name": "components/sd-carousel/--active/--inverted/color/border", "remote": false, "resolvedType": "COLOR", @@ -21782,7 +21781,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:50578:41688", - "key": "398ca879a16d6fee3e58eb45d85ab6ab510c718a", + "key": "b45157cdc7270f01228a31ed3379380b3d64bb2b", "name": "components/sd-button/--secondary/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -21814,7 +21813,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:50578:56661", - "key": "84421ecb190ca6657bed904cc10205edbfd6d4c0", + "key": "363f9b605782f45947262ef58b4bc01ece9e4766", "name": "components/sd-button/--tertiary/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -21846,7 +21845,7 @@ "description": "Used for buttons, inverted focus state", "hiddenFromPublishing": false, "id": "VariableID:50578:56662", - "key": "71fed5e54a17c5c2a3849a524cc3d8868410e4ee", + "key": "bb163b900809c30c7f3896e9faa3e6028a44352a", "name": "components/sd-button/--secondary/--inverted/color/border", "remote": false, "resolvedType": "COLOR", @@ -21878,7 +21877,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:50587:4943", - "key": "eb5475987ba555d0f8b71ec183a60888b13eeb32", + "key": "5977c6f1ea55f615c970a37aec9f01e827fa83da", "name": "components/sd-button/--secondary/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -21910,7 +21909,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:50587:4944", - "key": "91fb7c15d41b86424240304880563a3094ca4fba", + "key": "3c19551cc72d67044ef4feb93ae2e31ce3c10f4c", "name": "components/sd-button/--tertiary/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -21942,7 +21941,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:50635:19389", - "key": "69becfe26cfe301d0daff4ee19c324858afd73e8", + "key": "d0523683e1615b047ff6f179200936cebdab4cdf", "name": "components/sd-accordion-group/_gap", "remote": false, "resolvedType": "FLOAT", @@ -21962,7 +21961,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:50635:19390", - "key": "6cf1be3e3c99a187c67dd3b9f9fd86ebed6060a2", + "key": "f3809a9e1fffb675e642afd8c8bad613c5935ee8", "name": "components/sd-accordion/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -21994,7 +21993,7 @@ "description": "Used for inverted dividers", "hiddenFromPublishing": false, "id": "VariableID:50635:23474", - "key": "ac3271308f16281ee3a0306a2ab20b95424bad58", + "key": "7549cf91b5cdd368ae321adbaf1d622c5c7f95cc", "name": "components/sd-audio/__track-bar/--inverted/color/background", "remote": false, "resolvedType": "COLOR", @@ -22026,7 +22025,7 @@ "description": "Used for sd-flag", "hiddenFromPublishing": false, "id": "VariableID:51502:42739", - "key": "1e13a5a35958a64f51f509d975638c6f7ffffa4e", + "key": "81e7124049fcc71d82ce4bc5067e486b07889200", "name": "components/sd-tab/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -22058,7 +22057,7 @@ "description": "Used for tooltip", "hiddenFromPublishing": false, "id": "VariableID:51573:9921", - "key": "5a7b1dad37e557fefb57170f18d9ca7bc93fcaba", + "key": "e0cea1b0e4b3e15f7e97a9a36e61dd4bfeded39b", "name": "utilities/shadow/xs/color", "remote": false, "resolvedType": "COLOR", @@ -22092,7 +22091,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51596:1602", - "key": "c47a42143b96e0db4c5873715848e33f3a9e28f9", + "key": "269ab104a4bcd0a53bedc6a56edf00bdcc5143e8", "name": "utilities/shadow/xs/x", "remote": false, "resolvedType": "FLOAT", @@ -22112,7 +22111,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51596:1603", - "key": "89086664c7656a92ba27c5b95a446e1870c2324d", + "key": "acc7461f7034a61008ef9af5850b4db50e0cff2a", "name": "utilities/shadow/xs/y", "remote": false, "resolvedType": "FLOAT", @@ -22132,7 +22131,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51596:1604", - "key": "8985dc8a314ddc66f32b6f3b52401e8cdc1aa719", + "key": "48950ced2837782c273d5bebf1096451073d7631", "name": "utilities/shadow/xs/blur", "remote": false, "resolvedType": "FLOAT", @@ -22152,7 +22151,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51596:1605", - "key": "87e412be799411579ec11ae51fd03775a50fe048", + "key": "52bf5e1f5453816bc70f1431f77b8c98da9d3182", "name": "utilities/shadow/xs/spread", "remote": false, "resolvedType": "FLOAT", @@ -22172,7 +22171,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51964:11322", - "key": "761eefface9e3fc4358934b1cf9d66ccbddb543e", + "key": "16a20b3514da7712680209a6da67f752079b67f3", "name": "components/sd-map-marker/--cluster/color/text", "remote": false, "resolvedType": "COLOR", @@ -22204,7 +22203,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:51964:11323", - "key": "2f4de2751eb680a6f4dd726ab18e0eb67125d605", + "key": "5693c8255cff3d130efc2fabdb67b81b3b692a25", "name": "components/sd-map-marker/--pin/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -22236,7 +22235,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51974:11364", - "key": "84fcb296c4a1725b38c3c658edef7ceab75f231f", + "key": "6d45679c53b610c80f26416890f1cf331ed040ca", "name": "components/sd-map-marker/--pin/color/text", "remote": false, "resolvedType": "COLOR", @@ -22268,7 +22267,7 @@ "description": "Used for disabled state", "hiddenFromPublishing": false, "id": "VariableID:53463:2694", - "key": "0a1ba39182383e5868387c9b477e3bb8f643024d", + "key": "8e069cbced9b56b2d8b993e9e6b1829e97c26897", "name": "components/sd-tag/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -22300,7 +22299,7 @@ "description": "Used for teaser, audio (wave animation)\n", "hiddenFromPublishing": false, "id": "VariableID:53591:1805", - "key": "9c081ca1805d08706ba2b9308b63bb1d60ffbe23", + "key": "959fbbbfee2a78e0d05dc46786db329a9fcff780", "name": "components/sd-teaser-media/--white/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -22340,7 +22339,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:53591:1806", - "key": "0bf89b06c3b15e3edddd9cdcf2d6cf2b96869f82", + "key": "1ff2fd900a566c897896210eaf0af70bc6b85602", "name": "components/sd-teaser-media/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -22380,7 +22379,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:53592:5039", - "key": "6fe60a1fb375ae644f7696e10e3c7eaecf3eb96b", + "key": "1747a47d8f346920fc73a2ce475d125f9a2050f3", "name": "components/sd-teaser-media/--primary-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -22420,7 +22419,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:54289:8163", - "key": "0cce87f21cb8d7a78329bb1636563a23689b5545", + "key": "a7035d2693003c57a6d52ac256d15f168dee134c", "name": "components/sd-button/border-width", "remote": false, "resolvedType": "FLOAT", @@ -22452,7 +22451,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:54294:16226", - "key": "1d2bc32f6e5d7765373c1f9c2b1be0dfbea7538c", + "key": "6e85fe51942a38eef5998bfe109a685aaf37edaa", "name": "components/sd-button/--secondary/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -22484,7 +22483,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:54294:21759", - "key": "0bb832d9580d3fcb1a18e8a8566e929cc01b4de5", + "key": "a01c738e84ccddb814535058a3c6b494ead71422", "name": "components/sd-button/--tertiary/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -22516,7 +22515,7 @@ "description": "Inverted icon color", "hiddenFromPublishing": true, "id": "VariableID:54294:28373", - "key": "655a04e0a317c8d8010d437a5e4fd685321d30ed", + "key": "177aff3c298b8b9d6101eabbf39f35b2d0fbc0bd", "name": "components/sd-button/--secondary/--inverted/color/text", "remote": false, "resolvedType": "COLOR", @@ -22548,7 +22547,7 @@ "description": "Inverted icon color", "hiddenFromPublishing": true, "id": "VariableID:54294:28374", - "key": "8580ccd9fd53cf415f612b587be1400a653ec850", + "key": "e2c1682cacd3f0ddd9eb307c809aaec940950a67", "name": "components/sd-button/--tertiary/--inverted/color/text", "remote": false, "resolvedType": "COLOR", @@ -22580,7 +22579,7 @@ "description": "Used for inverted hover interaction button label", "hiddenFromPublishing": false, "id": "VariableID:54294:28375", - "key": "17612807493b94788f891d60236e0041da9d0e05", + "key": "8080de34f607fdb18fb3f5a7d56c4936d3df6876", "name": "components/sd-button/--secondary/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -22612,7 +22611,7 @@ "description": "Used for inverted hover interaction text link and inverted pressed interaction button label", "hiddenFromPublishing": false, "id": "VariableID:54294:28378", - "key": "d81f5377079f5b628a0faad3c887227e46c2f7a6", + "key": "914b47c8fe4f2aa2ab0ebc4c3adaee3d07352bc3", "name": "components/sd-button/--secondary/--inverted/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -22644,7 +22643,7 @@ "description": "Used for inverted hover interaction text link and inverted pressed interaction button label", "hiddenFromPublishing": false, "id": "VariableID:54294:28379", - "key": "2deabaf03225299d0dc4003172ce07a73fc60097", + "key": "ed55eff4790c49ca87e33704085f82ec0829889a", "name": "components/sd-button/--tertiary/--inverted/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -22676,7 +22675,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:54572:8960", - "key": "07d585565856d362d7331ab9fd43442bd0e7369a", + "key": "9e19a3c7498b183a03c7651eb06f5b474ee6956d", "name": "utilities/spacing/2,5", "remote": false, "resolvedType": "FLOAT", @@ -22708,7 +22707,7 @@ "description": "Used for icon-only and loading variant", "hiddenFromPublishing": false, "id": "VariableID:54634:38690", - "key": "813d64ec0bec18b8d6a0b0558fb11080478d454b", + "key": "26b5b532c5ac38c531d87184384f0fac93cf7469", "name": "components/sd-button/--size/lg/min-height", "remote": false, "resolvedType": "FLOAT", @@ -22734,7 +22733,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:54634:38691", - "key": "7f50ec0c8795bf86499b3b48bc1646e21a61c3c5", + "key": "4bde27cc88cdfc3a73749535372ab1931e30d670", "name": "components/sd-button/--size/md/min-height", "remote": false, "resolvedType": "FLOAT", @@ -22760,7 +22759,7 @@ "description": "dev only!", "hiddenFromPublishing": false, "id": "VariableID:54687:83305", - "key": "5a8584455a22dce18a0f191f39e5e2c201b08ff8", + "key": "53c2b244c2582aa6c8f193c400949b7ba5419910", "name": "components/sd-button/--secondary/--size/lg/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -22780,7 +22779,7 @@ "description": "dev only!", "hiddenFromPublishing": false, "id": "VariableID:54687:83306", - "key": "dfbd86a137834d1605cbc418bade69d7204920bf", + "key": "cd02e23c6ff872312fb7dd7afcdd99b69157c8f5", "name": "components/sd-button/--secondary/padding-inline", "remote": false, "resolvedType": "FLOAT", @@ -22800,7 +22799,7 @@ "description": "dev only!", "hiddenFromPublishing": false, "id": "VariableID:54687:83307", - "key": "6626ec5eeef9e4ec16fce3b55d6a8b4877db2d81", + "key": "97bc1daa83cdd3b0cc928868b64796767604d94b", "name": "components/sd-button/--secondary/--size/md/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -22820,7 +22819,7 @@ "description": "dev only!", "hiddenFromPublishing": false, "id": "VariableID:54687:83308", - "key": "7cf3d23fdef8a888ce67c6a105ae7eef5bf1cd16", + "key": "2d707b8f9ba9bffc10c8319119dc89042e0d8a01", "name": "components/sd-button/--secondary/--size/sm/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -22840,7 +22839,7 @@ "description": "Used inside panel summary layer of sd-accordion to accommodate the border", "hiddenFromPublishing": false, "id": "VariableID:54698:83323", - "key": "d6f588b612c9a81fcdabb9d4c1b4a8dda932232f", + "key": "43313b81de6c95dc482f9e6f53022ae90d24e5e0", "name": "components/sd-accordion/_panel-padding", "remote": false, "resolvedType": "FLOAT", @@ -22860,7 +22859,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:56149:47181", - "key": "9149d1403471d7acc9695be760aadd1cd2812f32", + "key": "1faaeba0640d4663ac6ca2fb99e2537b82ead689", "name": "components/sd-notification/__duration-indicator/color/background", "remote": false, "resolvedType": "COLOR", @@ -22892,7 +22891,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:56342:50645", - "key": "b8657816183d6128be7de843807eebc1dcde86b9", + "key": "62a64ee239decc43f627c7100254e5cd3aaabfde", "name": "components/sd-datepicker/__date-item/--hover/--default/color/border", "remote": false, "resolvedType": "COLOR", @@ -22924,7 +22923,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:56886:2865", - "key": "16ed3fe51f8b99a95418cd4fed498405286dcaf2", + "key": "2228f34e3b2b50d4b969b53a2dfd4f1726aeefc0", "name": "components/sd-datepicker/__date-item/--selected/color/background", "remote": false, "resolvedType": "COLOR", @@ -22956,7 +22955,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:56886:3301", - "key": "33559d17b3b8a52555642b7a19c6c2ae832b03a0", + "key": "dd4a6459f1cfca8699a97b86d88717e7614a6929", "name": "components/sd-datepicker/__date-item/--selected/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -22988,7 +22987,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:56886:3304", - "key": "4d3a27349287ffd6c2ba210f941909047ff2d1c0", + "key": "4e53fe10422a283380e3844e3c32f349f3690577", "name": "components/sd-datepicker/__date-item/--range/color/background", "remote": false, "resolvedType": "COLOR", @@ -23020,7 +23019,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:56886:3305", - "key": "cca6ad731ccbfdf372e4ba420a74e1d538190cdc", + "key": "8a27f221cd0b2270f2f95b3f951874bc88bfe44b", "name": "components/sd-datepicker/__date-item/--current/color/text", "remote": false, "resolvedType": "COLOR", @@ -23052,7 +23051,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58369:1926", - "key": "48241eef9939e50b89365834d843103bba622ab0", + "key": "6fecbadc508908c47a0d99f98ba15357fe5ce166", "name": "components/form-control/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -23084,7 +23083,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58369:2052", - "key": "d20d77fb31131d8f7399f0e6e5dba46784582bcc", + "key": "7015d5b4785cc3ab48dc751aac4eedb9708d6f66", "name": "components/form-control/__listbox/border-bottom-right-radius", "remote": false, "resolvedType": "FLOAT", @@ -23116,7 +23115,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58369:2053", - "key": "3302c76587fac1cb11242b012745be7d07d5bb14", + "key": "ef85d54966dc7ef02067a02488d6d07047e8301d", "name": "components/form-control/__listbox/border-top-left-radius", "remote": false, "resolvedType": "FLOAT", @@ -23148,7 +23147,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58369:2054", - "key": "f0520bfdc9b960ee49240be20ec195598abd8729", + "key": "73489fce1a5c4421180454da38a7379ca5ace921", "name": "components/form-control/__listbox/border-top-right-radius", "remote": false, "resolvedType": "FLOAT", @@ -23180,7 +23179,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58379:2055", - "key": "a8a9050d605ad94537aeed32b7d777423cef3b61", + "key": "cdb0f185eee730abacb43ddf66a8d2d4a0c3157d", "name": "utilities/shadow/listbox/x", "remote": false, "resolvedType": "FLOAT", @@ -23200,7 +23199,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58379:2056", - "key": "b78b234a806fc04061fb92a126f4b215ddb76dbb", + "key": "1d0cc139de4a7322c7de47ab7c722c7d5ef29139", "name": "utilities/shadow/listbox/y", "remote": false, "resolvedType": "FLOAT", @@ -23220,7 +23219,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58379:2057", - "key": "b3110d9f19f72ecaf7b1b0bce6be197c07577183", + "key": "68f649ebec5d1f73d14477d8e05e1eec133d3ddb", "name": "utilities/shadow/listbox/blur", "remote": false, "resolvedType": "FLOAT", @@ -23240,7 +23239,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58379:2058", - "key": "19d390556382736b1296ee94d9adf7aba8612896", + "key": "79853dcdb228a36b0c567da62bc4cd6bf739b856", "name": "utilities/shadow/listbox/spread", "remote": false, "resolvedType": "FLOAT", @@ -23260,7 +23259,7 @@ "description": "Used for tooltip", "hiddenFromPublishing": false, "id": "VariableID:58379:2059", - "key": "4447ccf4c52e6c3e4bcdfc9f81f11a654ba6f71c", + "key": "648a06eb522b52b8c11bd58fde73dfd7be7d652d", "name": "utilities/shadow/listbox/color", "remote": false, "resolvedType": "COLOR", @@ -23300,7 +23299,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58406:745", - "key": "05762e2523a486deb18397a9422772fb589732bc", + "key": "094b66589400aa0544ef98c2c01554694d0a668f", "name": "components/sd-tab/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -23332,7 +23331,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58454:1127", - "key": "afb0e6ac9df6286b23630799a87697f38a05ff59", + "key": "caa722c031b2cf426134ac8fff5015913f47bf73", "name": "components/sd-tab/color/text", "remote": false, "resolvedType": "COLOR", @@ -23364,7 +23363,7 @@ "description": "Used for inverted hover interaction button label", "hiddenFromPublishing": false, "id": "VariableID:58786:17900", - "key": "ffb52f489627e2248b251f61a52537b44239d8b8", + "key": "fbc894c21f65396b9c7734eb70c5156f8dc3467a", "name": "components/sd-button/--primary/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -23396,7 +23395,7 @@ "description": "Inverted icon color", "hiddenFromPublishing": false, "id": "VariableID:59049:1633", - "key": "bf69795ac9d9ec27f0e00832fc5bec8e213b5392", + "key": "e8510e81fdaaccabdebf34204b6a6b7245a91519", "name": "components/sd-map-marker/--pin/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -23428,7 +23427,7 @@ "description": "opacity 50%", "hiddenFromPublishing": false, "id": "VariableID:59189:1633", - "key": "4e38686e0c4ac50a7cf892c49266b681dd618955", + "key": "1ff14a008749fd51daeef86b1169d30891367e4a", "name": "KID/opacity/opacity-0", "remote": false, "resolvedType": "FLOAT", @@ -23438,92 +23437,12 @@ }, "variableCollectionId": "VariableCollectionId:42952:95" }, - "VariableID:60954:2037": { - "codeSyntax": {}, - "description": "", - "hiddenFromPublishing": false, - "id": "VariableID:60954:2037", - "key": "e0c6b213f00d2528a78f012b3b58ae4b8b820f3b", - "name": "components/sd-brandshape/color/background/_transparent/white|80", - "remote": false, - "resolvedType": "COLOR", - "scopes": [ - "ALL_SCOPES" - ], - "valuesByMode": { - "43174:13": { - "a": 0.800000011920929, - "b": 1, - "g": 1, - "r": 1 - }, - "43174:14": { - "a": 0.800000011920929, - "b": 0.5568627715110779, - "g": 0.2078431397676468, - "r": 0 - }, - "44883:0": { - "a": 0, - "b": 1, - "g": 1, - "r": 1 - }, - "47719:0": { - "a": 0, - "b": 1, - "g": 1, - "r": 1 - } - }, - "variableCollectionId": "VariableCollectionId:43174:55999" - }, - "VariableID:60954:2038": { - "codeSyntax": {}, - "description": "", - "hiddenFromPublishing": false, - "id": "VariableID:60954:2038", - "key": "ef74dcaf8581afeea8960aebadfc79b847301e6e", - "name": "components/sd-brandshape/color/background/_transparent/primary|80", - "remote": false, - "resolvedType": "COLOR", - "scopes": [ - "ALL_SCOPES" - ], - "valuesByMode": { - "43174:13": { - "a": 0.800000011920929, - "b": 0.5568627715110779, - "g": 0.2078431397676468, - "r": 0 - }, - "43174:14": { - "a": 0.800000011920929, - "b": 0.5568627715110779, - "g": 0.2078431397676468, - "r": 0 - }, - "44883:0": { - "a": 0, - "b": 1, - "g": 1, - "r": 1 - }, - "47719:0": { - "a": 0, - "b": 1, - "g": 1, - "r": 1 - } - }, - "variableCollectionId": "VariableCollectionId:43174:55999" - }, "VariableID:60954:2090": { "codeSyntax": {}, "description": "", "hiddenFromPublishing": false, "id": "VariableID:60954:2090", - "key": "1db1f4fafa5696a3c23df561f9b5a263ac6c13d5", + "key": "76f64f8504bb1db4156fd87a3faa5b5e4a148685", "name": "components/sd-brandshape/color/border/white/default", "remote": false, "resolvedType": "COLOR", @@ -23559,7 +23478,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:60954:2091", - "key": "3a1f269e220a3c36e8f4b33d2645a28eb1e2e777", + "key": "c86bc9ceff91caee45d2ef0ff3f17a0db462aec7", "name": "components/sd-brandshape/--primary/color/background", "remote": false, "resolvedType": "COLOR", @@ -23595,7 +23514,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:60954:2092", - "key": "e0d874bd9910ec6815f170227b2bf708e2b83f18", + "key": "bf89f6ecca4928881d274af1d7b2aa67844a7993", "name": "components/sd-brandshape/--primary/color/border", "remote": false, "resolvedType": "COLOR", @@ -23631,7 +23550,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:60954:2093", - "key": "a935726c1df1b5c26864d7be99cb23043e49e80a", + "key": "bc929c9c81c3301c5fbbafcd2994147324f1590d", "name": "components/sd-brandshape/_internal/slot", "remote": false, "resolvedType": "COLOR", @@ -23671,7 +23590,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:60954:2094", - "key": "ab73d3ca1d96b144156c2eae052df7a1bf84f5e3", + "key": "073938a11ca245b622c70084b961a8f2cd11d630", "name": "components/sd-brandshape/_internal/slot-inverted", "remote": false, "resolvedType": "COLOR", @@ -23711,7 +23630,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:61410:123911", - "key": "8bf9476d565200e1ad8b747cdc42224caaf0a88b", + "key": "0cd2356d15b1fbabb8a8b9c4b8f88415d318553e", "name": "components/sd-header/__shadow/height", "remote": false, "resolvedType": "FLOAT", @@ -23743,7 +23662,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:61410:123912", - "key": "fcd689ad07750cf56fe5f877588d8f159556cbf0", + "key": "47b5d5c8f66f434a3d5dcb281d97f81f76f749c8", "name": "utilities/sizing/0", "remote": false, "resolvedType": "FLOAT", @@ -23775,7 +23694,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:61428:123952", - "key": "22db758af94bd352571994a0ff5bce93935059c6", + "key": "cd68a4d4377ceee2bd3cf7888d3d00d48745b2c4", "name": "components/sd-button/--size/md/--icon/only/padding-inline", "remote": false, "resolvedType": "FLOAT", @@ -23807,7 +23726,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:62032:3036", - "key": "4ac10987f7ca1567cddf6decc4db0ae5c5818a04", + "key": "ea409a41f75278fc2b06308a2c7b0101e9d2259d", "name": "components/sd-brandshape/--white/80/color/background", "remote": false, "resolvedType": "COLOR", @@ -23847,7 +23766,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:62032:3037", - "key": "69a1c38627068d290a73e4c8d4516be6f5a33db6", + "key": "f8521dd4cf25621117c17e1468bb22625188e2f0", "name": "components/sd-brandshape/--primary/80/color/background", "remote": false, "resolvedType": "COLOR", @@ -23881,6 +23800,38 @@ } }, "variableCollectionId": "VariableCollectionId:43174:55999" + }, + "VariableID:62435:796": { + "codeSyntax": {}, + "description": "Used for step group xs", + "hiddenFromPublishing": false, + "id": "VariableID:62435:796", + "key": "29b4281567dab365d9db6fe476ee3588371cc4b3", + "name": "utilities/color/border/neutral/700", + "remote": false, + "resolvedType": "COLOR", + "scopes": [ + "ALL_SCOPES" + ], + "valuesByMode": { + "43174:13": { + "id": "VariableID:43979:220", + "type": "VARIABLE_ALIAS" + }, + "43174:14": { + "id": "VariableID:43979:196", + "type": "VARIABLE_ALIAS" + }, + "44883:0": { + "id": "VariableID:43979:220", + "type": "VARIABLE_ALIAS" + }, + "47719:0": { + "id": "VariableID:43979:220", + "type": "VARIABLE_ALIAS" + } + }, + "variableCollectionId": "VariableCollectionId:43174:55999" } } } \ No newline at end of file diff --git a/packages/tokens/themes/kid/kid.css b/packages/tokens/themes/kid/kid.css index feb6c6da0c..93ab14db32 100644 --- a/packages/tokens/themes/kid/kid.css +++ b/packages/tokens/themes/kid/kid.css @@ -166,6 +166,7 @@ --sd-color-border-neutral-400: var(--sd-color-neutral-400); --sd-color-border-neutral-500: var(--sd-color-neutral-400); --sd-color-border-neutral-600: var(--sd-color-neutral-600); + --sd-color-border-neutral-700: var(--sd-color-neutral-700); --sd-color-border-neutral-800: var(--sd-color-neutral-800); --sd-color-border-primary-100: var(--sd-color-neutral-100); --sd-color-border-primary-200: var(--sd-color-neutral-200); diff --git a/packages/tokens/themes/tailwind.css b/packages/tokens/themes/tailwind.css index 710e42135d..4fa4221872 100644 --- a/packages/tokens/themes/tailwind.css +++ b/packages/tokens/themes/tailwind.css @@ -51,6 +51,7 @@ --border-color-neutral-400: rgba(var(--sd-color-border-neutral-400)); --border-color-neutral-500: rgba(var(--sd-color-border-neutral-500)); --border-color-neutral-600: rgba(var(--sd-color-border-neutral-600)); + --border-color-neutral-700: rgba(var(--sd-color-border-neutral-700)); --border-color-neutral-800: rgba(var(--sd-color-border-neutral-800)); --border-color-primary-100: rgba(var(--sd-color-border-primary-100)); --border-color-primary-200: rgba(var(--sd-color-border-primary-200)); diff --git a/packages/tokens/themes/ui-dark/ui-dark.css b/packages/tokens/themes/ui-dark/ui-dark.css index ee0e689786..2108e8ef84 100644 --- a/packages/tokens/themes/ui-dark/ui-dark.css +++ b/packages/tokens/themes/ui-dark/ui-dark.css @@ -166,6 +166,7 @@ --sd-color-border-neutral-400: var(--sd-color-primary-400); --sd-color-border-neutral-500: var(--sd-color-neutral-600); --sd-color-border-neutral-600: var(--sd-color-neutral-600); + --sd-color-border-neutral-700: var(--sd-color-primary-400); --sd-color-border-neutral-800: var(--sd-color-white); --sd-color-border-primary-100: var(--sd-color-primary-100); --sd-color-border-primary-200: var(--sd-color-primary-200); diff --git a/packages/tokens/themes/ui-light/ui-light.css b/packages/tokens/themes/ui-light/ui-light.css index 93c12546f6..83e630bcc3 100644 --- a/packages/tokens/themes/ui-light/ui-light.css +++ b/packages/tokens/themes/ui-light/ui-light.css @@ -166,6 +166,7 @@ --sd-color-border-neutral-400: var(--sd-color-neutral-400); --sd-color-border-neutral-500: var(--sd-color-neutral-500); --sd-color-border-neutral-600: var(--sd-color-neutral-600); + --sd-color-border-neutral-700: var(--sd-color-neutral-700); --sd-color-border-neutral-800: var(--sd-color-neutral-800); --sd-color-border-primary-100: var(--sd-color-primary-100); --sd-color-border-primary-200: var(--sd-color-primary-200); diff --git a/packages/tokens/themes/vb/vb.css b/packages/tokens/themes/vb/vb.css index 79dc42d683..4dbf1745c7 100644 --- a/packages/tokens/themes/vb/vb.css +++ b/packages/tokens/themes/vb/vb.css @@ -166,6 +166,7 @@ --sd-color-border-neutral-400: var(--sd-color-neutral-500); --sd-color-border-neutral-500: var(--sd-color-neutral-500); --sd-color-border-neutral-600: var(--sd-color-neutral-800); + --sd-color-border-neutral-700: var(--sd-color-neutral-700); --sd-color-border-neutral-800: var(--sd-color-neutral-800); --sd-color-border-primary-100: var(--sd-color-primary-100); --sd-color-border-primary-200: var(--sd-color-primary-200); From de6a6b1ce5796e415027175640791f8404349e45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Mon, 27 Apr 2026 12:46:12 +0100 Subject: [PATCH 11/12] chore: updated changesets --- .changeset/every-beans-search.md | 5 +++++ .changeset/sparkly-wombats-dig.md | 5 +++++ .changeset/thirty-carpets-joke.md | 1 - 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .changeset/every-beans-search.md create mode 100644 .changeset/sparkly-wombats-dig.md diff --git a/.changeset/every-beans-search.md b/.changeset/every-beans-search.md new file mode 100644 index 0000000000..ea17184838 --- /dev/null +++ b/.changeset/every-beans-search.md @@ -0,0 +1,5 @@ +--- +'@solid-design-system/docs': minor +--- + +Added new documentation for `xs` size variant in `sd-step` and `sd-step-group`, including new template for `sd-step-group` using `xs` size variant. diff --git a/.changeset/sparkly-wombats-dig.md b/.changeset/sparkly-wombats-dig.md new file mode 100644 index 0000000000..e1adde62fc --- /dev/null +++ b/.changeset/sparkly-wombats-dig.md @@ -0,0 +1,5 @@ +--- +'@solid-design-system/tokens': minor +--- + +Added new ` --sd-color-border-neutral-700` variable. diff --git a/.changeset/thirty-carpets-joke.md b/.changeset/thirty-carpets-joke.md index d87471cdfa..94a8701f9a 100644 --- a/.changeset/thirty-carpets-joke.md +++ b/.changeset/thirty-carpets-joke.md @@ -1,6 +1,5 @@ --- '@solid-design-system/components': minor -'@solid-design-system/docs': minor --- Added new `xs` size variant for `sd-step` and `sd-step-group`. This variant is only available with vertical `orientation` and if this attribute is not set, the component will not be rendered. From ac60c32ac177d5a206dffe3d8db8e10b3396ca9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 28 Apr 2026 17:00:53 +0100 Subject: [PATCH 12/12] fix: address design comments --- packages/components/src/components/step/step.ts | 2 +- packages/docs/src/stories/templates/step-group.stories.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/src/components/step/step.ts b/packages/components/src/components/step/step.ts index 728ac2851b..6d0ca67f27 100644 --- a/packages/components/src/components/step/step.ts +++ b/packages/components/src/components/step/step.ts @@ -326,7 +326,7 @@ export default class SdStep extends SolidElement { this.orientation === 'horizontal' ? 'text-center w-40' : 'text-left', this.disabled && 'text-neutral-500', this.waiting && 'text-neutral-700', - this.notInteractive ? 'ml-2' : 'mr-4' + this.notInteractive ? (this.size === 'xs' ? 'ml-0' : 'ml-2') : 'mr-4' )} >
html`