From ce392625fcbb5aa4f535bc07d7c5b75d37405562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Mon, 30 Mar 2026 16:49:29 +0100 Subject: [PATCH 01/20] feat: add info for theme restriction --- .../src/stories/components/brandshape.mdx | 2 ++ .../stories/components/brandshape.stories.ts | 24 +++++++++++++++++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/packages/docs/src/stories/components/brandshape.mdx b/packages/docs/src/stories/components/brandshape.mdx index 82e09c0f30..f31affa2ae 100644 --- a/packages/docs/src/stories/components/brandshape.mdx +++ b/packages/docs/src/stories/components/brandshape.mdx @@ -14,6 +14,8 @@ export const links = { export const content = ` # Brandshape +Please notice that this component is only available for themes UI Light and UI Dark + Used as a container with brand character that visually emphasizes the content. diff --git a/packages/docs/src/stories/components/brandshape.stories.ts b/packages/docs/src/stories/components/brandshape.stories.ts index 2dc39a22ea..73a316bc00 100644 --- a/packages/docs/src/stories/components/brandshape.stories.ts +++ b/packages/docs/src/stories/components/brandshape.stories.ts @@ -25,6 +25,12 @@ function getShapeCombinations(arr: string[]) { const shapes = getShapeCombinations(JSON.parse(argTypes['shapes'].defaultValue.replace(/'/g, '"'))); +/** + * + * Please notice that this component is only available for themes UI Light and UI Dark + * + */ + export default { title: 'Components/sd-brandshape', tags: ['!dev', 'autodocs'], @@ -55,7 +61,21 @@ export default { ...argTypes['shapes'], options: shapes } - } + }, + decorators: [ + (story: () => typeof html) => html` + + ${story()} + ` + ] }; export const Default = { @@ -98,7 +118,7 @@ export const Variant = { -
+
Default slot
From 2a3051237edb69a8e375ba6cb6fd6e751457b159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Mon, 30 Mar 2026 16:55:59 +0100 Subject: [PATCH 02/20] feat: restrict brandshape by theme --- .../src/components/brandshape/brandshape.ts | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/components/src/components/brandshape/brandshape.ts b/packages/components/src/components/brandshape/brandshape.ts index 2fd0aee7c3..064a7e37c1 100644 --- a/packages/components/src/components/brandshape/brandshape.ts +++ b/packages/components/src/components/brandshape/brandshape.ts @@ -146,9 +146,9 @@ export default class SdBrandshape extends SolidElement { part="shape-middle" class=${cx( { - 'neutral-100': 'bg-neutral-100', - primary: 'bg-primary', - white: 'bg-white', + 'neutral-100': 'sd-brandshape--neutral-100-color-background', + primary: 'sd-brandshape--primary-color-background', + white: 'sd-brandshape--white-color-background', 'border-white': 'bg-transparent', 'border-primary': 'bg-transparent', image: 'bg-transparent' @@ -176,9 +176,9 @@ export default class SdBrandshape extends SolidElement { return html`
Date: Tue, 31 Mar 2026 15:12:11 +0100 Subject: [PATCH 03/20] feat: test ignore a11y tests on specific themes --- packages/docs/.storybook/preview.js | 14 +++++++++++++- .../stories/components/brandshape.test.stories.ts | 10 +++++++++- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/packages/docs/.storybook/preview.js b/packages/docs/.storybook/preview.js index 49b7316761..639aa9514a 100644 --- a/packages/docs/.storybook/preview.js +++ b/packages/docs/.storybook/preview.js @@ -7,6 +7,7 @@ import { withThemeByClassName } from './addons/with-theme.js'; import { storybookUtilities } from '../scripts/storybook/helper.js'; import docsCodepenEnhancer from '../scripts/storybook/docs-codepen-enhancer.js'; import { themes, allModes, DEFAULT_THEME } from './modes.js'; +import { html } from 'lit-html'; const theme = withThemeByClassName({ defaultTheme: DEFAULT_THEME, @@ -16,8 +17,19 @@ const theme = withThemeByClassName({ }, {}) }); +const withA11yThemeGuard = (Story, context) => { + const ignoreThemeList = context.parameters?.a11y?.config?.ignoreThemeList; + const currentTheme = context.globals?.theme; + + if (ignoreThemeList?.includes(currentTheme)) { + return html`
${Story()}
`; + } + + return Story(); +}; + export const preview = { - decorators: [theme], + decorators: [theme, withA11yThemeGuard], parameters: { chromatic: { disableSnapshot: true, diff --git a/packages/docs/src/stories/components/brandshape.test.stories.ts b/packages/docs/src/stories/components/brandshape.test.stories.ts index 3ee0ca8b6c..69183c6433 100644 --- a/packages/docs/src/stories/components/brandshape.test.stories.ts +++ b/packages/docs/src/stories/components/brandshape.test.stories.ts @@ -20,7 +20,15 @@ export default { title: 'Components/sd-brandshape/Screenshots: sd-brandshape', component: 'sd-brandshape', tags: ['!autodocs'], - parameters: { ...parameters, controls: { disable: true } }, + parameters: { + ...parameters, + controls: { disable: true }, + a11y: { + config: { + ignoreThemeList: ['VB Ultra', 'Kid Starter'] + } + } + }, args: overrideArgs([ { type: 'slot', From af056c3dc431b8a04cda303156ec481023de9a08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 31 Mar 2026 15:27:30 +0100 Subject: [PATCH 04/20] feat: test theme restriction a11y test --- packages/docs/.storybook/test-runner.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index ce9f40abed..8c9f034cd7 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -20,6 +20,12 @@ const config: TestRunnerConfig = { await new Promise(resolve => setTimeout(resolve, 200)); const story = await getStoryContext(page, context); + const ignoredThemes = story.parameters?.a11y?.config?.ignoreThemeList as string[] | undefined; + const currentTheme = story.parameters?.theme; + + if (ignoredThemes?.includes(currentTheme || '')) { + return; + } const ignoredRules = story.parameters?.a11y?.config?.rules From 7a1a5ed1849332ef2b12d283ebd45e3f7968e8c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 31 Mar 2026 15:45:47 +0100 Subject: [PATCH 05/20] feat: test --- packages/docs/.storybook/test-runner.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index 8c9f034cd7..e0b69b99c7 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -3,6 +3,7 @@ import { createHtmlReport } from 'axe-html-reporter'; import { injectAxe, getViolations, configureAxe } from 'axe-playwright'; import assert from 'assert'; import pc from 'picocolors'; +import { themes } from './modes'; /* * See https://storybook.js.org/docs/writing-tests/test-runner#test-hook-api @@ -21,9 +22,12 @@ const config: TestRunnerConfig = { const story = await getStoryContext(page, context); const ignoredThemes = story.parameters?.a11y?.config?.ignoreThemeList as string[] | undefined; - const currentTheme = story.parameters?.theme; + const currentThemeClass = await page.evaluate(() => { + return Array.from(document.body.classList).find(cls => cls.startsWith('sd-theme-')); + }); + const currentTheme = themes.find(theme => theme.id === currentThemeClass)?.name; - if (ignoredThemes?.includes(currentTheme || '')) { + if (ignoredThemes?.includes(currentTheme ?? '')) { return; } From da3a4c5b84890a30db74e0c0f24963798a06b56e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 31 Mar 2026 16:14:58 +0100 Subject: [PATCH 06/20] feat: test --- packages/docs/.storybook/test-runner.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index e0b69b99c7..66c220363f 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -3,7 +3,7 @@ import { createHtmlReport } from 'axe-html-reporter'; import { injectAxe, getViolations, configureAxe } from 'axe-playwright'; import assert from 'assert'; import pc from 'picocolors'; -import { themes } from './modes'; +import { themes } from './modes.js'; /* * See https://storybook.js.org/docs/writing-tests/test-runner#test-hook-api @@ -25,9 +25,9 @@ const config: TestRunnerConfig = { const currentThemeClass = await page.evaluate(() => { return Array.from(document.body.classList).find(cls => cls.startsWith('sd-theme-')); }); - const currentTheme = themes.find(theme => theme.id === currentThemeClass)?.name; + const currentTheme = themes.find(theme => theme.id === currentThemeClass); - if (ignoredThemes?.includes(currentTheme ?? '')) { + if (ignoredThemes?.includes(currentTheme?.name || '')) { return; } From 1785216e8f1bfa88e01f4632a14214a5b2410ec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 31 Mar 2026 16:31:25 +0100 Subject: [PATCH 07/20] feat: test --- packages/docs/.storybook/test-runner.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index 66c220363f..57c5c01d49 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -23,7 +23,8 @@ const config: TestRunnerConfig = { const story = await getStoryContext(page, context); const ignoredThemes = story.parameters?.a11y?.config?.ignoreThemeList as string[] | undefined; const currentThemeClass = await page.evaluate(() => { - return Array.from(document.body.classList).find(cls => cls.startsWith('sd-theme-')); + const el = document.querySelector('.sb-show-main') ?? document.body; + return Array.from(el.classList).find(cls => cls.startsWith('sd-theme-')); }); const currentTheme = themes.find(theme => theme.id === currentThemeClass); From e6bd6f23415c66809d2b15d19d4c4d00cab3a930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 31 Mar 2026 17:13:31 +0100 Subject: [PATCH 08/20] feat: test --- packages/docs/.storybook/test-runner.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index 57c5c01d49..e1c5ed7bc8 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -1,4 +1,5 @@ import { getStoryContext, type TestRunnerConfig } from '@storybook/test-runner'; +import { SkipTestError } from '@storybook/test-runner'; import { createHtmlReport } from 'axe-html-reporter'; import { injectAxe, getViolations, configureAxe } from 'axe-playwright'; import assert from 'assert'; @@ -29,7 +30,7 @@ const config: TestRunnerConfig = { const currentTheme = themes.find(theme => theme.id === currentThemeClass); if (ignoredThemes?.includes(currentTheme?.name || '')) { - return; + throw new SkipTestError(`Theme "${currentTheme?.name}" is ignored for accessibility tests`); } const ignoredRules = From ebccaeba46b9f350169d0d3245ba7452dd93db41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 31 Mar 2026 17:22:04 +0100 Subject: [PATCH 09/20] feat: test --- packages/docs/.storybook/test-runner.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index e1c5ed7bc8..f4e1e2ecc6 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -1,5 +1,4 @@ import { getStoryContext, type TestRunnerConfig } from '@storybook/test-runner'; -import { SkipTestError } from '@storybook/test-runner'; import { createHtmlReport } from 'axe-html-reporter'; import { injectAxe, getViolations, configureAxe } from 'axe-playwright'; import assert from 'assert'; @@ -30,7 +29,7 @@ const config: TestRunnerConfig = { const currentTheme = themes.find(theme => theme.id === currentThemeClass); if (ignoredThemes?.includes(currentTheme?.name || '')) { - throw new SkipTestError(`Theme "${currentTheme?.name}" is ignored for accessibility tests`); + throw new Error(`SKIP Theme "${currentTheme?.name}" ignored for a11y tests`); } const ignoredRules = From f18bd27531d7783468811eba05108e555c8012bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Thu, 2 Apr 2026 10:36:20 +0100 Subject: [PATCH 10/20] feat: test --- packages/docs/.storybook/preview.js | 18 ++++++++++++------ packages/docs/.storybook/test-runner.ts | 11 ----------- 2 files changed, 12 insertions(+), 17 deletions(-) diff --git a/packages/docs/.storybook/preview.js b/packages/docs/.storybook/preview.js index 639aa9514a..f0488be5ef 100644 --- a/packages/docs/.storybook/preview.js +++ b/packages/docs/.storybook/preview.js @@ -17,19 +17,25 @@ const theme = withThemeByClassName({ }, {}) }); -const withA11yThemeGuard = (Story, context) => { - const ignoreThemeList = context.parameters?.a11y?.config?.ignoreThemeList; +const withA11yGuard = (StoryFn, context) => { + const ignoredThemes = context.parameters?.a11y?.config?.ignoreThemeList; const currentTheme = context.globals?.theme; - if (ignoreThemeList?.includes(currentTheme)) { - return html`
${Story()}
`; + const isIgnored = ignoredThemes?.includes(currentTheme); + + if (isIgnored) { + // Add tag so the test runner skips this story entirely + context.tags = [...(context.tags || []), 'skip-playwright']; + + // Hide the story in Storybook UI (optional) + return html`
${StoryFn()}
`; } - return Story(); + return StoryFn(); }; export const preview = { - decorators: [theme, withA11yThemeGuard], + decorators: [theme, withA11yGuard], parameters: { chromatic: { disableSnapshot: true, diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index f4e1e2ecc6..ce9f40abed 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -3,7 +3,6 @@ import { createHtmlReport } from 'axe-html-reporter'; import { injectAxe, getViolations, configureAxe } from 'axe-playwright'; import assert from 'assert'; import pc from 'picocolors'; -import { themes } from './modes.js'; /* * See https://storybook.js.org/docs/writing-tests/test-runner#test-hook-api @@ -21,16 +20,6 @@ const config: TestRunnerConfig = { await new Promise(resolve => setTimeout(resolve, 200)); const story = await getStoryContext(page, context); - const ignoredThemes = story.parameters?.a11y?.config?.ignoreThemeList as string[] | undefined; - const currentThemeClass = await page.evaluate(() => { - const el = document.querySelector('.sb-show-main') ?? document.body; - return Array.from(el.classList).find(cls => cls.startsWith('sd-theme-')); - }); - const currentTheme = themes.find(theme => theme.id === currentThemeClass); - - if (ignoredThemes?.includes(currentTheme?.name || '')) { - throw new Error(`SKIP Theme "${currentTheme?.name}" ignored for a11y tests`); - } const ignoredRules = story.parameters?.a11y?.config?.rules From 380cd29df2aa2b24bf08112d8875e6315aabe3ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Thu, 2 Apr 2026 10:54:30 +0100 Subject: [PATCH 11/20] feat: test --- packages/docs/.storybook/preview.js | 18 ++++++------------ packages/docs/.storybook/test-runner.ts | 11 ++++++++++- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/packages/docs/.storybook/preview.js b/packages/docs/.storybook/preview.js index f0488be5ef..639aa9514a 100644 --- a/packages/docs/.storybook/preview.js +++ b/packages/docs/.storybook/preview.js @@ -17,25 +17,19 @@ const theme = withThemeByClassName({ }, {}) }); -const withA11yGuard = (StoryFn, context) => { - const ignoredThemes = context.parameters?.a11y?.config?.ignoreThemeList; +const withA11yThemeGuard = (Story, context) => { + const ignoreThemeList = context.parameters?.a11y?.config?.ignoreThemeList; const currentTheme = context.globals?.theme; - const isIgnored = ignoredThemes?.includes(currentTheme); - - if (isIgnored) { - // Add tag so the test runner skips this story entirely - context.tags = [...(context.tags || []), 'skip-playwright']; - - // Hide the story in Storybook UI (optional) - return html`
${StoryFn()}
`; + if (ignoreThemeList?.includes(currentTheme)) { + return html`
${Story()}
`; } - return StoryFn(); + return Story(); }; export const preview = { - decorators: [theme, withA11yGuard], + decorators: [theme, withA11yThemeGuard], parameters: { chromatic: { disableSnapshot: true, diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index ce9f40abed..f0f5fd8433 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -12,7 +12,16 @@ const config: TestRunnerConfig = { tags: { exclude: ['skip-playwright'] }, - async preVisit(page) { + async preVisit(page, context) { + const story = await getStoryContext(page, context); + const ignored = story.parameters?.a11y?.config?.ignoreThemeList; + const currentTheme = context.globals?.theme; + + if (ignored?.includes(currentTheme)) { + context.tags = [...(context.tags || []), 'skip-playwright']; + return; + } + await injectAxe(page); }, async postVisit(page, context) { From 40b3fbd28a3dbf7a782f14c7f29bc1f6f2fa3b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Thu, 2 Apr 2026 11:26:20 +0100 Subject: [PATCH 12/20] feat: test --- packages/docs/.storybook/test-runner.ts | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index f0f5fd8433..e980fb5831 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -12,16 +12,7 @@ const config: TestRunnerConfig = { tags: { exclude: ['skip-playwright'] }, - async preVisit(page, context) { - const story = await getStoryContext(page, context); - const ignored = story.parameters?.a11y?.config?.ignoreThemeList; - const currentTheme = context.globals?.theme; - - if (ignored?.includes(currentTheme)) { - context.tags = [...(context.tags || []), 'skip-playwright']; - return; - } - + async preVisit(page) { await injectAxe(page); }, async postVisit(page, context) { @@ -30,6 +21,12 @@ const config: TestRunnerConfig = { const story = await getStoryContext(page, context); + const ignored = story.parameters?.a11y?.config?.ignoreThemeList; + const currentTheme = context.globals?.theme; + if (ignored?.includes(currentTheme)) { + return; + } + const ignoredRules = story.parameters?.a11y?.config?.rules ?.filter(rule => rule.enabled === false) From 933fe0a77f439f8c33c4b02266898ba1d0d02832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Thu, 2 Apr 2026 11:41:44 +0100 Subject: [PATCH 13/20] chore: revert changes --- packages/docs/.storybook/preview.js | 13 +------------ packages/docs/.storybook/test-runner.ts | 6 ------ .../stories/components/brandshape.test.stories.ts | 7 ++++++- 3 files changed, 7 insertions(+), 19 deletions(-) diff --git a/packages/docs/.storybook/preview.js b/packages/docs/.storybook/preview.js index 639aa9514a..9fdac98d47 100644 --- a/packages/docs/.storybook/preview.js +++ b/packages/docs/.storybook/preview.js @@ -17,19 +17,8 @@ const theme = withThemeByClassName({ }, {}) }); -const withA11yThemeGuard = (Story, context) => { - const ignoreThemeList = context.parameters?.a11y?.config?.ignoreThemeList; - const currentTheme = context.globals?.theme; - - if (ignoreThemeList?.includes(currentTheme)) { - return html`
${Story()}
`; - } - - return Story(); -}; - export const preview = { - decorators: [theme, withA11yThemeGuard], + decorators: [theme], parameters: { chromatic: { disableSnapshot: true, diff --git a/packages/docs/.storybook/test-runner.ts b/packages/docs/.storybook/test-runner.ts index e980fb5831..ce9f40abed 100644 --- a/packages/docs/.storybook/test-runner.ts +++ b/packages/docs/.storybook/test-runner.ts @@ -21,12 +21,6 @@ const config: TestRunnerConfig = { const story = await getStoryContext(page, context); - const ignored = story.parameters?.a11y?.config?.ignoreThemeList; - const currentTheme = context.globals?.theme; - if (ignored?.includes(currentTheme)) { - return; - } - const ignoredRules = story.parameters?.a11y?.config?.rules ?.filter(rule => rule.enabled === false) diff --git a/packages/docs/src/stories/components/brandshape.test.stories.ts b/packages/docs/src/stories/components/brandshape.test.stories.ts index 69183c6433..8b73320b6b 100644 --- a/packages/docs/src/stories/components/brandshape.test.stories.ts +++ b/packages/docs/src/stories/components/brandshape.test.stories.ts @@ -25,7 +25,12 @@ export default { controls: { disable: true }, a11y: { config: { - ignoreThemeList: ['VB Ultra', 'Kid Starter'] + rules: [ + { + id: 'color-contrast', + enabled: false + } + ] } } }, From c751e8435b524dde1a5ec4510c5cbd8b083411af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Thu, 2 Apr 2026 12:08:41 +0100 Subject: [PATCH 14/20] chore: cleanup --- packages/docs/.storybook/preview.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/docs/.storybook/preview.js b/packages/docs/.storybook/preview.js index 9fdac98d47..49b7316761 100644 --- a/packages/docs/.storybook/preview.js +++ b/packages/docs/.storybook/preview.js @@ -7,7 +7,6 @@ import { withThemeByClassName } from './addons/with-theme.js'; import { storybookUtilities } from '../scripts/storybook/helper.js'; import docsCodepenEnhancer from '../scripts/storybook/docs-codepen-enhancer.js'; import { themes, allModes, DEFAULT_THEME } from './modes.js'; -import { html } from 'lit-html'; const theme = withThemeByClassName({ defaultTheme: DEFAULT_THEME, From 2271f9d499abc14d400cebe1dfb4cd7fcbcd04bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Thu, 2 Apr 2026 12:10:26 +0100 Subject: [PATCH 15/20] chore: test hiding slot --- .../components/brandshape.test.stories.ts | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/packages/docs/src/stories/components/brandshape.test.stories.ts b/packages/docs/src/stories/components/brandshape.test.stories.ts index 8b73320b6b..5181d64d48 100644 --- a/packages/docs/src/stories/components/brandshape.test.stories.ts +++ b/packages/docs/src/stories/components/brandshape.test.stories.ts @@ -22,17 +22,7 @@ export default { tags: ['!autodocs'], parameters: { ...parameters, - controls: { disable: true }, - a11y: { - config: { - rules: [ - { - id: 'color-contrast', - enabled: false - } - ] - } - } + controls: { disable: true } }, args: overrideArgs([ { @@ -54,7 +44,17 @@ export default { ...argTypes['shapes-attr'], control: 'text' } - } + }, + decorators: [ + (story: () => typeof html) => html` + + ${story()} + ` + ] }; const increaseColumnWidth = (): ConstantDefinition => { From 9927019587a1f31cd5847e8ea1b9cf045082bdcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Thu, 2 Apr 2026 12:16:57 +0100 Subject: [PATCH 16/20] feat: disabled color contrast tests --- .../src/stories/components/brandshape.test.stories.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/docs/src/stories/components/brandshape.test.stories.ts b/packages/docs/src/stories/components/brandshape.test.stories.ts index 5181d64d48..9fac9309a9 100644 --- a/packages/docs/src/stories/components/brandshape.test.stories.ts +++ b/packages/docs/src/stories/components/brandshape.test.stories.ts @@ -22,6 +22,16 @@ export default { tags: ['!autodocs'], parameters: { ...parameters, + a11y: { + config: { + rules: [ + { + id: 'color-contrast', + enabled: false + } + ] + } + }, controls: { disable: true } }, args: overrideArgs([ From fb7f87a982eb32f8130d8c2f3e2954b8b5e12be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Mon, 13 Apr 2026 12:29:08 +0100 Subject: [PATCH 17/20] feat: add updated variables and tokens --- .../output/figma-variables.json | 248 +- .../src/figma-variables/variableTokens.json | 2139 ++++++++++------- packages/tokens/themes/components.css | 20 + packages/tokens/themes/kid/kid.css | 9 +- packages/tokens/themes/ui-dark/ui-dark.css | 5 + packages/tokens/themes/ui-light/ui-light.css | 5 + packages/tokens/themes/vb/vb.css | 9 +- 7 files changed, 1540 insertions(+), 895 deletions(-) diff --git a/packages/tokens/src/figma-variables/output/figma-variables.json b/packages/tokens/src/figma-variables/output/figma-variables.json index 7f9572d8a9..ec39f57240 100644 --- a/packages/tokens/src/figma-variables/output/figma-variables.json +++ b/packages/tokens/src/figma-variables/output/figma-variables.json @@ -3984,6 +3984,14 @@ }, "sd-brandshape": { "--white": { + "80": { + "color": { + "background": { + "type": "color", + "value": "rgba(255, 255, 255, 0.80)" + } + } + }, "color": { "background": { "type": "color", @@ -3998,6 +4006,58 @@ "value": "{ui-light.utilities.color.background.neutral.100}" } } + }, + "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": { + "type": "color", + "value": "{ui-light.utilities.color.white.default}" + } + } + } + }, + "--primary": { + "80": { + "color": { + "background": { + "type": "color", + "value": "rgba(0, 53, 142, 0.80)" + } + } + }, + "color": { + "background": { + "type": "color", + "value": "{ui-light.utilities.color.primary.default}" + }, + "border": { + "type": "color", + "value": "{ui-light.utilities.color.primary.default}" + } + } + }, + "_internal": { + "slot": { + "type": "color", + "value": "#62359b" + }, + "slot-inverted": { + "type": "color", + "value": "#ccb6f1" + } } }, "overlay": { @@ -7305,6 +7365,14 @@ }, "sd-brandshape": { "--white": { + "80": { + "color": { + "background": { + "type": "color", + "value": "rgba(0, 53, 142, 0.80)" + } + } + }, "color": { "background": { "type": "color", @@ -7319,6 +7387,58 @@ "value": "{ui-dark.utilities.color.background.neutral.100}" } } + }, + "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": { + "type": "color", + "value": "{ui-dark.utilities.color.primary.900}" + } + } + } + }, + "--primary": { + "80": { + "color": { + "background": { + "type": "color", + "value": "rgba(0, 53, 142, 0.80)" + } + } + }, + "color": { + "background": { + "type": "color", + "value": "{ui-dark.utilities.color.primary.default}" + }, + "border": { + "type": "color", + "value": "{ui-dark.utilities.color.white.default}" + } + } + }, + "_internal": { + "slot": { + "type": "color", + "value": "#ccb6f1" + }, + "slot-inverted": { + "type": "color", + "value": "#ccb6f1" + } } }, "overlay": { @@ -10626,10 +10746,18 @@ }, "sd-brandshape": { "--white": { + "80": { + "color": { + "background": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + } + } + }, "color": { "background": { "type": "color", - "value": "{vb.utilities.color.background.white.default}" + "value": "rgba(255, 255, 255, 0.00)" } } }, @@ -10637,9 +10765,61 @@ "color": { "background": { "type": "color", - "value": "{vb.utilities.color.background.neutral.100}" + "value": "rgba(255, 255, 255, 0.00)" + } + } + }, + "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": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + } + } + } + }, + "--primary": { + "80": { + "color": { + "background": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + } + } + }, + "color": { + "background": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + }, + "border": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" } } + }, + "_internal": { + "slot": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + }, + "slot-inverted": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + } } }, "overlay": { @@ -13947,10 +14127,18 @@ }, "sd-brandshape": { "--white": { + "80": { + "color": { + "background": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + } + } + }, "color": { "background": { "type": "color", - "value": "{kid.utilities.color.background.white.default}" + "value": "rgba(255, 255, 255, 0.00)" } } }, @@ -13958,9 +14146,61 @@ "color": { "background": { "type": "color", - "value": "{kid.utilities.color.background.neutral.100}" + "value": "rgba(255, 255, 255, 0.00)" + } + } + }, + "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": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + } + } + } + }, + "--primary": { + "80": { + "color": { + "background": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + } + } + }, + "color": { + "background": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + }, + "border": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" } } + }, + "_internal": { + "slot": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + }, + "slot-inverted": { + "type": "color", + "value": "rgba(255, 255, 255, 0.00)" + } } }, "overlay": { diff --git a/packages/tokens/src/figma-variables/variableTokens.json b/packages/tokens/src/figma-variables/variableTokens.json index 63cb818f8e..b5b80e8d47 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": "7e3d7e1162a6e6b8cb0c75eb6e6a75558c7fa5c3", + "key": "48bb21caa4a10703bdc5b149fd9be658bb426da7", "modes": [ { "modeId": "43138:0", @@ -185,8 +185,8 @@ "VariableID:43927:5024", "VariableID:43927:5025", "VariableID:43927:5026", - "VariableID:43927:5038", "VariableID:43927:5027", + "VariableID:43927:5038", "VariableID:43979:190", "VariableID:44917:19938", "VariableID:44917:19939", @@ -377,7 +377,7 @@ "hiddenFromPublishing": false, "id": "VariableCollectionId:43174:55999", "isExtension": false, - "key": "afa5ddd2c41d917d64144628d52a58a502b0a57b", + "key": "7ef31232d8e9abe898b6626cc84a4bc633788c04", "modes": [ { "modeId": "43174:13", @@ -488,9 +488,11 @@ "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", @@ -720,7 +722,14 @@ "VariableID:46386:74313", "VariableID:46386:74314", "VariableID:44650:36908", + "VariableID:62032:3036", + "VariableID:62032:3037", + "VariableID:60954:2091", + "VariableID:60954:2092", + "VariableID:60954:2090", "VariableID:44650:37065", + "VariableID:60954:2093", + "VariableID:60954:2094", "VariableID:44023:39692", "VariableID:49052:99", "VariableID:44953:13157", @@ -743,10 +752,10 @@ "VariableID:44883:20780", "VariableID:44883:24906", "VariableID:44883:24608", - "VariableID:47783:193767", "VariableID:54634:38691", - "VariableID:47783:193768", + "VariableID:47783:193767", "VariableID:61428:123952", + "VariableID:47783:193768", "VariableID:47783:193769", "VariableID:46871:963", "VariableID:49052:102", @@ -927,7 +936,7 @@ "description": "low value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:171", - "key": "31a28786f4f603caed15957653c7caa6773a3fcd", + "key": "dab6a6e1b4aa050304ef678a31086f3b1e7fe7ac", "name": "cerulean", "remote": false, "resolvedType": "COLOR", @@ -947,7 +956,7 @@ "description": "moderate value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:172", - "key": "cb9f4a316184374d81dab14f3c1f558914137769", + "key": "98cb6ea86e13d24b0058ac30772a691dcfb9b6c0", "name": "emerald", "remote": false, "resolvedType": "COLOR", @@ -967,7 +976,7 @@ "description": "increased value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:173", - "key": "df1760e0bd3afbfacac02f7a513e37d43ac33ba6", + "key": "368f7bb626ffc6c4811adde0eb5e949a7c9c12d9", "name": "lemon", "remote": false, "resolvedType": "COLOR", @@ -987,7 +996,7 @@ "description": "high value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:174", - "key": "48ccf2fedafb66169daec96f29263bad33338154", + "key": "753da39c953b647b674309c7f4d5eba55e6d1abe", "name": "orange", "remote": false, "resolvedType": "COLOR", @@ -1007,7 +1016,7 @@ "description": "very high value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:42952:175", - "key": "305a1e07b39de4412090ea32c673249d5ce5a868", + "key": "82bdc55903421fbb863d17acb3535184122ee091", "name": "brightred", "remote": false, "resolvedType": "COLOR", @@ -1027,7 +1036,7 @@ "description": "white", "hiddenFromPublishing": false, "id": "VariableID:42952:176", - "key": "72b0f3ace0239eed16b431103d339d2fce26bdce", + "key": "7d0fc0ff842aa1255656a663b6a73c1c0b112703", "name": "white", "remote": false, "resolvedType": "COLOR", @@ -1047,7 +1056,7 @@ "description": "black", "hiddenFromPublishing": false, "id": "VariableID:42952:177", - "key": "a42c89c0dd4704f0649eaa4bf162e9af76071951", + "key": "f525237ae6fefab6fe6eab50020147f1803f946f", "name": "black", "remote": false, "resolvedType": "COLOR", @@ -1067,7 +1076,7 @@ "description": "\b0px", "hiddenFromPublishing": false, "id": "VariableID:43138:1914", - "key": "3216e2fdced75f46e21b4e6b15b3dd98ab810a18", + "key": "823affe124bddf3ab50ffb22a6b823e62cdf5a01", "name": "sizing", "remote": false, "resolvedType": "FLOAT", @@ -1082,7 +1091,7 @@ "description": "4px", "hiddenFromPublishing": false, "id": "VariableID:43138:1915", - "key": "04699b287631e8cd4c72c6e9d22a2a68eed09eb3", + "key": "c74ec160f163a7e268f6532f7d340c7b04eaf593", "name": "1", "remote": false, "resolvedType": "FLOAT", @@ -1097,7 +1106,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:43138:1916", - "key": "f6a385bb9d08e07d785188d15e1fc24ac9fb3429", + "key": "847ed61e47adbf0da3187fa70fa0907bd6c05f00", "name": "2", "remote": false, "resolvedType": "FLOAT", @@ -1112,7 +1121,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:43138:1917", - "key": "16a22fda2e4d1cf3543b87d19cfc6282ccfa90a1", + "key": "2ad12f0578d528e67e993466ddebf095db48d0bb", "name": "3", "remote": false, "resolvedType": "FLOAT", @@ -1127,7 +1136,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:43138:1918", - "key": "69fe6016c41f851e24a17c73951d5c3b1fb407de", + "key": "d6e3b2a0ecdc462ad2233b63efcac801b056da51", "name": "4", "remote": false, "resolvedType": "FLOAT", @@ -1142,7 +1151,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:43138:1919", - "key": "1b59e2d0d8e5bdbaa1a47a19f1c63ee5b334aea6", + "key": "fb5ecb427b8fe00b88f944aa7cc26b9a737a2b93", "name": "5", "remote": false, "resolvedType": "FLOAT", @@ -1157,7 +1166,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:43138:1920", - "key": "14ac477a0ebbd04e95e34ce4b3662fcf16806fce", + "key": "0ba3c1d3797bac3556aeafd255e14ea16a715311", "name": "6", "remote": false, "resolvedType": "FLOAT", @@ -1172,7 +1181,7 @@ "description": "28px", "hiddenFromPublishing": false, "id": "VariableID:43138:1921", - "key": "faf124b319ba7aecb47a23cec4fa1c9902159ddd", + "key": "43ea3edcdf3bb07e17f5ceb37183ac600b00ab58", "name": "7", "remote": false, "resolvedType": "FLOAT", @@ -1187,7 +1196,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:43138:1922", - "key": "36d7ccbe70b870672f451ec382d6550c6d9e170c", + "key": "9bf923516eb20cb57ef9c7cb6bd831cc397b9361", "name": "8", "remote": false, "resolvedType": "FLOAT", @@ -1202,7 +1211,7 @@ "description": "36px", "hiddenFromPublishing": false, "id": "VariableID:43138:1923", - "key": "95e07e8e7769b7a936c39341ac52a6ea1b94e44a", + "key": "5fc2ccfb98d797f9c09f89d4fa280ed77cc8f578", "name": "9", "remote": false, "resolvedType": "FLOAT", @@ -1217,7 +1226,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:43138:1924", - "key": "7ed1d4e4a1507a78f87ae384508bcc522d9ee5b6", + "key": "07f1a186bc8dcd052232c1b32032da482af0c66d", "name": "10", "remote": false, "resolvedType": "FLOAT", @@ -1232,7 +1241,7 @@ "description": "44px", "hiddenFromPublishing": false, "id": "VariableID:43138:1925", - "key": "5025ed9eb182526f391a34e12eb30c0610d09032", + "key": "82bf3a9ea2173c0427aafbeadad5196b09e5b00f", "name": "11", "remote": false, "resolvedType": "FLOAT", @@ -1247,7 +1256,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:43138:1926", - "key": "710e17843964f39ae16a2431d70637bb6c5ec98b", + "key": "e0bff632c0cb7bc941a1bfd14c1c4f289c0505d8", "name": "12", "remote": false, "resolvedType": "FLOAT", @@ -1262,7 +1271,7 @@ "description": "56px", "hiddenFromPublishing": false, "id": "VariableID:43138:1927", - "key": "e3dcf8a58456aaf283bf9b18e889a1faf8a71058", + "key": "00eeb79f4b59ea2224e525d87b4e9aee8cc25eb8", "name": "14", "remote": false, "resolvedType": "FLOAT", @@ -1277,7 +1286,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:43138:1928", - "key": "45d03843345ca7171840c71c6fb10d42eefed910", + "key": "b1c42128b465288bbc5bf60debe0a9fa559e9670", "name": "16", "remote": false, "resolvedType": "FLOAT", @@ -1292,7 +1301,7 @@ "description": "80px", "hiddenFromPublishing": false, "id": "VariableID:43138:1929", - "key": "39f81189d44e8ce2d1a30914d1e9c997831a4180", + "key": "931eea7eea55bf4e795525cf12658e26f68c12d4", "name": "20", "remote": false, "resolvedType": "FLOAT", @@ -1307,7 +1316,7 @@ "description": "96px", "hiddenFromPublishing": false, "id": "VariableID:43138:1930", - "key": "cfa91e5609d74bc9b47c58a9d99143017c129d39", + "key": "ecdeb3d7f17a7f277d51d9ac4521b778c26f7c3a", "name": "24", "remote": false, "resolvedType": "FLOAT", @@ -1322,7 +1331,7 @@ "description": "112px", "hiddenFromPublishing": false, "id": "VariableID:43138:1931", - "key": "b2cd5102aec8a300ad436cfbe871545275d8ee38", + "key": "50e9407c0e84a3eacfb9fb00e0b7f5b2df007833", "name": "28", "remote": false, "resolvedType": "FLOAT", @@ -1337,7 +1346,7 @@ "description": "128px", "hiddenFromPublishing": false, "id": "VariableID:43138:1932", - "key": "ac168d5031b411a9acc9ed1e69053c52e0670c19", + "key": "ef99cebc7b4af4d7d79728251f308f7366d46ba2", "name": "32", "remote": false, "resolvedType": "FLOAT", @@ -1352,7 +1361,7 @@ "description": "144px", "hiddenFromPublishing": false, "id": "VariableID:43138:1933", - "key": "6ea4332fa0bc6180f6605121cd08e3cab3519394", + "key": "158e8291d776fc106af574c3ba7ad47eb93f9867", "name": "36", "remote": false, "resolvedType": "FLOAT", @@ -1367,7 +1376,7 @@ "description": "160px", "hiddenFromPublishing": false, "id": "VariableID:43138:1934", - "key": "51638d227317f80cf9f818675e6cc78d372b1918", + "key": "f30c7c880bd9ce89b2dbfeb429c79dc232e750a2", "name": "40", "remote": false, "resolvedType": "FLOAT", @@ -1382,7 +1391,7 @@ "description": "176px", "hiddenFromPublishing": false, "id": "VariableID:43138:1935", - "key": "2a157b3d8dab7bb2168ca7d476670e554895d47c", + "key": "5a16e3383d6aaa72b41478b2baeaee604c9938e8", "name": "44", "remote": false, "resolvedType": "FLOAT", @@ -1397,7 +1406,7 @@ "description": "208px", "hiddenFromPublishing": false, "id": "VariableID:43138:1936", - "key": "5ab812f466d8c2d8c00aa1848ee2317e9093addf", + "key": "c78874de408428822424fe1b38dc8093c91207c0", "name": "52", "remote": false, "resolvedType": "FLOAT", @@ -1412,7 +1421,7 @@ "description": "224px", "hiddenFromPublishing": false, "id": "VariableID:43138:1937", - "key": "409ae72f5e358ed486882dbc119c9a8ed95919fb", + "key": "d34afb08aa085101ece373bf8ad5059cd8733847", "name": "56", "remote": false, "resolvedType": "FLOAT", @@ -1427,7 +1436,7 @@ "description": "256px", "hiddenFromPublishing": false, "id": "VariableID:43138:1938", - "key": "abe04ab1fe705bcf6097d0445ab3f58bb201ca1e", + "key": "14def7a72bb80dc52d54b6c0a5b9fbc55acce36b", "name": "64", "remote": false, "resolvedType": "FLOAT", @@ -1442,7 +1451,7 @@ "description": "288px", "hiddenFromPublishing": false, "id": "VariableID:43138:1939", - "key": "d274c127e3eeb20dc82e23e71e5057e39bc63944", + "key": "cac4d7ddd4e9ee11053790f475a95497b9c2838b", "name": "72", "remote": false, "resolvedType": "FLOAT", @@ -1457,7 +1466,7 @@ "description": "320px", "hiddenFromPublishing": false, "id": "VariableID:43138:1940", - "key": "21c0d4409ccdf3a63eb7ba7788e128b8a4009845", + "key": "dde55c7a65480e7eb6bcfd049f250f408f30c468", "name": "80", "remote": false, "resolvedType": "FLOAT", @@ -1472,7 +1481,7 @@ "description": "384px", "hiddenFromPublishing": false, "id": "VariableID:43138:1941", - "key": "0b6392ce86b14d2f654d435b27a82c9acb0ce95b", + "key": "343bb53c9d7cdf821cb495dc9c8095c9c2486172", "name": "96", "remote": false, "resolvedType": "FLOAT", @@ -1487,7 +1496,7 @@ "description": "1px\b", "hiddenFromPublishing": false, "id": "VariableID:43138:1942", - "key": "cdd0687109356e06e0d5d2cbe80357b93b0226f3", + "key": "4f37b63048259fdde99bda2bf0d1caced61d2d35", "name": "px", "remote": false, "resolvedType": "FLOAT", @@ -1502,7 +1511,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:43138:1943", - "key": "1512c812f193bdf3075c7e6a2ef2e279fd7925ab", + "key": "6701d73f419c3be6e4b1bebc83852f02bae4f44b", "name": "0,5", "remote": false, "resolvedType": "FLOAT", @@ -1517,7 +1526,7 @@ "description": "\b6px", "hiddenFromPublishing": false, "id": "VariableID:43138:1944", - "key": "6c2146880cd856b63dca26ccc5b40484fc281d49", + "key": "fed198a30f71247e3685c3af722e899df8f24a69", "name": "1,5", "remote": false, "resolvedType": "FLOAT", @@ -1532,7 +1541,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:43138:1945", - "key": "daf049ad4d6c87138eec49bff42264662c270751", + "key": "f7501ae96e258bd606de5cb9e12af4c516e0e2d3", "name": "3,5", "remote": false, "resolvedType": "FLOAT", @@ -1547,7 +1556,7 @@ "description": "10px", "hiddenFromPublishing": false, "id": "VariableID:43138:1946", - "key": "f6e71f47dbaee6354b6a506ccadab9f9b2e47d8a", + "key": "8dcc25489ddb112f7f9ab1a17831c5aa9d20479d", "name": "2,5", "remote": false, "resolvedType": "FLOAT", @@ -1562,7 +1571,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1947", - "key": "7b90939a3491af86a77fb1610f9e155868b039e5", + "key": "ade1feb3a9823d1320adbabcd0e3b28e0bc37459", "name": "opacity-0", "remote": false, "resolvedType": "FLOAT", @@ -1577,7 +1586,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1948", - "key": "ebf755ab9b291ea74e05aeebbba2d11fa5ec3101", + "key": "369ef32ce0337338a928c5740a817f901e8a7df1", "name": "opacity-5", "remote": false, "resolvedType": "FLOAT", @@ -1592,7 +1601,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1949", - "key": "0e1b4bf54f46096a4e6dd2e638375bf0cc17fa76", + "key": "efb6fc0d58b8794403254bcb987cb802ddd1ac8f", "name": "opacity-10", "remote": false, "resolvedType": "FLOAT", @@ -1607,7 +1616,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1950", - "key": "058cc2fae507a04cb6402d02479270124fa68747", + "key": "8c042926e4051c0c3d119122a154a36e57ca53c8", "name": "opacity-20", "remote": false, "resolvedType": "FLOAT", @@ -1622,7 +1631,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1951", - "key": "4304162272093a0e444f70c75ea185f9f7be6c53", + "key": "fa0a58258e6872db1127bdeca4540b78a2542163", "name": "opacity-30", "remote": false, "resolvedType": "FLOAT", @@ -1637,7 +1646,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1952", - "key": "9c25364068160a56e311e3a7a84bc565c2741fb0", + "key": "ba52f52ad34e9b9d5e63868fa377c0c836898003", "name": "opacity-50", "remote": false, "resolvedType": "FLOAT", @@ -1652,7 +1661,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1953", - "key": "ebc7d9f965590380cab788768ffa6e6b5f914fc3", + "key": "42a4df837b9fcf571e58b804a4ec7079e36993d4", "name": "opacity-55", "remote": false, "resolvedType": "FLOAT", @@ -1667,7 +1676,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1954", - "key": "5f2a27f5ce55a1c3003367458ee54c74d2348ec1", + "key": "b55a760e488e6bd44ff839e4830070b0fe6db071", "name": "opacity-60", "remote": false, "resolvedType": "FLOAT", @@ -1682,7 +1691,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1955", - "key": "c2172b0685f6c2a5b54cd285761594660bda0280", + "key": "bcfb25fe8b0c723fa7c79aa4bfbd9983c18dfbd9", "name": "opacity-70", "remote": false, "resolvedType": "FLOAT", @@ -1697,7 +1706,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1956", - "key": "f1e01f15e3b8e8cdca86818bcb325d8eca2b8d40", + "key": "aa33739ca5b3a01a6d723f7184cb8ad8a2273fb3", "name": "opacity-75", "remote": false, "resolvedType": "FLOAT", @@ -1712,7 +1721,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1957", - "key": "797ccf6a63a5a2988e840483f4944077728f08c3", + "key": "7f424616e48d5c81228ff7570eecab4d465aa159", "name": "opacity-80", "remote": false, "resolvedType": "FLOAT", @@ -1727,7 +1736,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1958", - "key": "abc72d5e4baad7733042e9bddff24d2534f2246e", + "key": "4f5d0fa982494556994cf92d5f2a91e584c9c557", "name": "opacity-85", "remote": false, "resolvedType": "FLOAT", @@ -1742,7 +1751,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1959", - "key": "a0b57a5c5e2f574583c0ac5733f217c84552feeb", + "key": "41308ca4011b3551fd78cb3d87abaf93c57f28ae", "name": "opacity-90", "remote": false, "resolvedType": "FLOAT", @@ -1757,7 +1766,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43138:1960", - "key": "106d0c1ea3303ff9dd5e13002b7d85b46f53067c", + "key": "8cffbd2706ba8d1bd6384ce30765e0b9635643e7", "name": "opacity-1", "remote": false, "resolvedType": "FLOAT", @@ -1772,7 +1781,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43174:55601", - "key": "65e7cbb526c01ca9dbcfab8b607157ed4fbb73f3", + "key": "2fb659c9ac9a1e4069555c48a5393e9bd242cbff", "name": "opacity-2", "remote": false, "resolvedType": "FLOAT", @@ -1787,7 +1796,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:43343:15190", - "key": "b6a598c20934f3910dbabfd30926ddb2807d8fb1", + "key": "0977d93d3b3e3c473ac263a58bc60e146289e879", "name": "text-sm", "remote": false, "resolvedType": "FLOAT", @@ -1802,7 +1811,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:43343:15191", - "key": "8eb0c982a7ffbafb4f25ed769b04e336d14bb6a9", + "key": "e10fa44176cb46bf315cc7fcc86b1553f2fa46ce", "name": "text-base", "remote": false, "resolvedType": "FLOAT", @@ -1817,7 +1826,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:43343:15192", - "key": "5f7c63193980b6ceb306bb8e0af5b804dcf0c2a0", + "key": "bc029bae7fcac8bd62534734d20449c4a8cb861e", "name": "text-lg", "remote": false, "resolvedType": "FLOAT", @@ -1832,7 +1841,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:43343:15193", - "key": "0a145478e7ea417f0611f2eb900ad948491dfed1", + "key": "4115ec8aefb138d2181a308154bc5e1f9a057734", "name": "text-xl", "remote": false, "resolvedType": "FLOAT", @@ -1847,7 +1856,7 @@ "description": "28px", "hiddenFromPublishing": false, "id": "VariableID:43343:15194", - "key": "44886f2c15b496dac1c8363ffba80ce652f5daf0", + "key": "e1ee5064705832b21cedd2f99d6e139c2f8520fc", "name": "text-2xl", "remote": false, "resolvedType": "FLOAT", @@ -1862,7 +1871,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:43343:15195", - "key": "dd9d8dce8b2a6564e81e24c4196b50ae85b17161", + "key": "2fd9755ac787681f6c4eb9a548a58f586e180aca", "name": "text-3xl", "remote": false, "resolvedType": "FLOAT", @@ -1877,7 +1886,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:43343:15196", - "key": "8c00cdfeb30be519b27909768191b8abd60a4a5c", + "key": "43fb2fceb406103076931ad70d80924296701828", "name": "text-4xl", "remote": false, "resolvedType": "FLOAT", @@ -1892,7 +1901,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15197", - "key": "6534e99dcecacba2260ae855cb409fd7d13cee6b", + "key": "2988fdc6408e1affea3444d5f62fef5d610ec903", "name": "border-0", "remote": false, "resolvedType": "FLOAT", @@ -1907,7 +1916,7 @@ "description": "Default border width", "hiddenFromPublishing": false, "id": "VariableID:43343:15198", - "key": "9ae88ef31c3e733b457190acc71f7639eff571d9", + "key": "2f276e59e755c0ee0dff69511d4b4af377634345", "name": "border", "remote": false, "resolvedType": "FLOAT", @@ -1922,7 +1931,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15199", - "key": "6cc4ff5264ac08060383eede97747fbb699fccef", + "key": "bb52d3fc593ef1eab8474e6d8ddf5bf754fcb480", "name": "border-2", "remote": false, "resolvedType": "FLOAT", @@ -1937,7 +1946,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15200", - "key": "c29aff98e931c258749a0a50144542de583cd52d", + "key": "242687a0de38c3ccd89a9fa2abc9f9c6bc699853", "name": "border-4", "remote": false, "resolvedType": "FLOAT", @@ -1952,7 +1961,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15201", - "key": "4c6e3af3083fbbf1c813185bec1c6626d44a6210", + "key": "d6c2432b31ed585ffd487aef4c38792a745f3f50", "name": "border-6", "remote": false, "resolvedType": "FLOAT", @@ -1967,7 +1976,7 @@ "description": "For pill buttons / shapes", "hiddenFromPublishing": false, "id": "VariableID:43343:15202", - "key": "54b7042191aa1f7591c227e75ff4ce3b3b99ee64", + "key": "bbe45ec82e22732354b84ab1741cdf21e67db526", "name": "rounded-full", "remote": false, "resolvedType": "FLOAT", @@ -1982,7 +1991,7 @@ "description": "For pill buttons / shapes", "hiddenFromPublishing": false, "id": "VariableID:43343:15203", - "key": "227505a00e2a13989915d7ecc6980d4787fbafff", + "key": "e59f7920da969eefceec566916448179446a6091", "name": "rounded", "remote": false, "resolvedType": "FLOAT", @@ -1997,7 +2006,7 @@ "description": "No rounding", "hiddenFromPublishing": false, "id": "VariableID:43343:15204", - "key": "6775efb013bab52703100ab848d4e9597be75869", + "key": "ce1ae56c4b4a72249190710d0a58d36d94480930", "name": "rounded-none", "remote": false, "resolvedType": "FLOAT", @@ -2012,7 +2021,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:43343:15205", - "key": "5415e5ae980706b99ad30d747f3983b16ac16daf", + "key": "bda76dc556307bc6de5f37054d1158510d78b100", "name": "rounded-sm", "remote": false, "resolvedType": "FLOAT", @@ -2027,7 +2036,7 @@ "description": "6px", "hiddenFromPublishing": false, "id": "VariableID:43343:15206", - "key": "c84bbe1aabc31bf4250bc905e2b99d1e1e80ba64", + "key": "b1bf0095ca5be364c6f9cbfb094978882d8b9ef3", "name": "rounded-md", "remote": false, "resolvedType": "FLOAT", @@ -2042,7 +2051,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:43343:15207", - "key": "9fe30294095750b45c0c54149a2348047d80d286", + "key": "d99669524b858f55f033176195dd1774e9a44fc4", "name": "rounded-\blg", "remote": false, "resolvedType": "FLOAT", @@ -2057,7 +2066,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:43343:15208", - "key": "55bbe6014384b3a5a080cdf652dfe780e6cf1305", + "key": "b2928f099c6357afff3156ea90df4a11955d2ec9", "name": "rounded-xl", "remote": false, "resolvedType": "FLOAT", @@ -2072,7 +2081,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15209", - "key": "04304b1da58f06e33888fb70fad7f1eab5fcba10", + "key": "8276712f091be5fa2bde77b3635a26c04a2aa05f", "name": "font-normal", "remote": false, "resolvedType": "STRING", @@ -2087,7 +2096,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:15210", - "key": "3597e93590b1f68561f766abe6837dbf59056d14", + "key": "07234b01c34641854f2c4f698415873d8a302d4b", "name": "font-bold", "remote": false, "resolvedType": "STRING", @@ -2103,7 +2112,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43343:16783", - "key": "8a82d885476e2cbde7b3f64aaafde2725a346a25", + "key": "11ae0a8ed74efb08580da4f8ada4483ed92e299d", "name": "sd-button/border-width", "remote": false, "resolvedType": "FLOAT", @@ -2135,7 +2144,7 @@ "description": "Used for text 3xl, mobile text 4xl (size: 32, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21080", - "key": "443a9aa8d05a036cb52a61e81ea4d504865679dc", + "key": "c2f14ea1700feb443fa7be3a9a92885fda51b973", "name": "leading-9,5", "remote": false, "resolvedType": "FLOAT", @@ -2150,7 +2159,7 @@ "description": "Used for mobile text lg (size: 20, line-height: 150%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21081", - "key": "0149ae570463ed9718119164c8878737beff5086", + "key": "b2dc56a73ca1aa96ff39c63864fc92b8180278be", "name": "leading-8", "remote": false, "resolvedType": "FLOAT", @@ -2165,7 +2174,7 @@ "description": "Used for text base (size: 16, line-height: 150%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21082", - "key": "20c32e94e53b3f4f7a2f390d99797e18a494bd08", + "key": "db26ea351de57200282303dc79528ba0bc402e5e", "name": "leading-9", "remote": false, "resolvedType": "FLOAT", @@ -2180,7 +2189,7 @@ "description": "Used for text 3xl (size: 32, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21083", - "key": "903e3581c536b181fe51ddcba6c34174403e2373", + "key": "67f3fa0943fd05ceea7f2aa8454c5333c5ddf120", "name": "leading-12", "remote": false, "resolvedType": "FLOAT", @@ -2195,7 +2204,7 @@ "description": "Used for text xl (size: 24, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21084", - "key": "0eb3e6b197e8edbb8b4d7849a4cd9b5ebecdc0ad", + "key": "713782b16ddf64e85cbc7f6d8e7a75eec07e3cda", "name": "leading-7", "remote": false, "resolvedType": "FLOAT", @@ -2210,7 +2219,7 @@ "description": "Used for text base (size: 16, line-height: 150%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21085", - "key": "869ee3e5e24e053d94816c381acab0dfd99b8fde", + "key": "7fa6395182b6b0d32606c3a8e1766590d7d67f6b", "name": "leading-6", "remote": false, "resolvedType": "FLOAT", @@ -2225,7 +2234,7 @@ "description": "Used for text sm (size: 14, line-height: 150%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21086", - "key": "e2cba5bd5f69b406346c7023f367091e3fadb8b8", + "key": "4004ea7120264475fe5e96002fdd17a321f87669", "name": "leading-5", "remote": false, "resolvedType": "FLOAT", @@ -2240,7 +2249,7 @@ "description": "Used for text base compact (size: 16, line-height: 100%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21090", - "key": "8233d7aa904dafb6cd5c14b22ef329aba8e8237a", + "key": "3d381b79c90c31fd4db4f87f2a45cf32eff03b5f", "name": "leading-4", "remote": false, "resolvedType": "FLOAT", @@ -2255,7 +2264,7 @@ "description": "Used for text xl, mobile text 3xl (size: 28, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21094", - "key": "3f51fa1b629a73c71e89ca3a94c4a877b81fdba7", + "key": "c96b9c3aeddba4ca8241362cdda5bff0ee73fade", "name": "leading-8,5", "remote": false, "resolvedType": "FLOAT", @@ -2270,7 +2279,7 @@ "description": "Used for text sm compact (size: 14, line-height: 100%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21095", - "key": "877dfa15d7dd68288cab492a17575cdeb2bf6cd9", + "key": "badb0d7d2550d6af733fbca1269fc4600393a8e8", "name": "leading-3", "remote": false, "resolvedType": "FLOAT", @@ -2285,7 +2294,7 @@ "description": "Used for text 4xl (size: 40, line-height: 120%)", "hiddenFromPublishing": true, "id": "VariableID:43343:21096", - "key": "c66b5c52ae606c66c3b570101fb3e30ed28267f8", + "key": "e72f977dcbe9c31e6fe34ebea2c8c7db2d94ef39", "name": "leading-15", "remote": false, "resolvedType": "FLOAT", @@ -2300,7 +2309,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43372:21097", - "key": "b71da6e5af9861a8cb02fabe7928a516c1d4b75d", + "key": "be922632cb37f7c97fdd31831f206e5154bff478", "name": "letter-spacing-none", "remote": false, "resolvedType": "FLOAT", @@ -2316,7 +2325,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43372:21101", - "key": "5589c2e90102cce9643ebf8158e51090326b7a13", + "key": "b3c2459d45726f7f77999e91b4b417f721b1cd7b", "name": "sd-button/letter-spacing", "remote": false, "resolvedType": "FLOAT", @@ -2349,7 +2358,7 @@ "description": "Inverted background color (light mode)\nUsed for button", "hiddenFromPublishing": false, "id": "VariableID:43373:35292", - "key": "e607bd4835efae093a68c3e4b6d131766f04997d", + "key": "d2fabbb103bf2fe101c6b5d3b1c7e78c4851e961", "name": "background/primary", "remote": false, "resolvedType": "COLOR", @@ -2381,7 +2390,7 @@ "description": "Default background color. Used for sd-chip, sd-flag, sd-container", "hiddenFromPublishing": false, "id": "VariableID:43373:35293", - "key": "626ac213e1fd4e4901a5d1f8d79d668c6c820e79", + "key": "b9ab9686cc49b25f369caf906c79ba4331c727fe", "name": "utilities/color/background/white/default", "remote": false, "resolvedType": "COLOR", @@ -2413,7 +2422,7 @@ "description": "Form field read only. Used for sd-container", "hiddenFromPublishing": false, "id": "VariableID:43373:35301", - "key": "6b04cca2d732fca28cd547b8424944bd34c3b372", + "key": "3392ee628eee04df8fe51728c1aa7a268c1fcba8", "name": "utilities/color/background/neutral/100", "remote": false, "resolvedType": "COLOR", @@ -2445,7 +2454,7 @@ "description": "Used for sd-flag", "hiddenFromPublishing": false, "id": "VariableID:43373:35302", - "key": "5c796f360506dc3462d2743c7898a44f6253ad4b", + "key": "4a710d378b5935d655af5f1f491ef1241f6c1a9b", "name": "utilities/color/background/neutral/200", "remote": false, "resolvedType": "COLOR", @@ -2477,7 +2486,7 @@ "description": "Used for sd-flag ", "hiddenFromPublishing": false, "id": "VariableID:43373:35303", - "key": "95055cece97b6e1cc5bc3516636377be0ead43ca", + "key": "78df114948da75ac36565a4cd874f3bf607c2ff4", "name": "utilities/color/background/neutral/300", "remote": false, "resolvedType": "COLOR", @@ -2509,7 +2518,7 @@ "description": "Used for sd-flag ", "hiddenFromPublishing": false, "id": "VariableID:43373:35304", - "key": "b411507c4eff86348db226521b242f245d13b47a", + "key": "8a0ae2bfc1bd10e64f7e791c09a7d097fa099505", "name": "utilities/color/background/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -2541,7 +2550,7 @@ "description": "Used for disabled state ", "hiddenFromPublishing": false, "id": "VariableID:43373:35305", - "key": "a74c6363e86a013f8e8263c2e22152c45c531f30", + "key": "0ad4f0bb3298050a488615db9058c0fb31c4f901", "name": "utilities/color/background/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -2573,7 +2582,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43373:35306", - "key": "2431a69febb9831724e093ca1cc8d70a04a80adf", + "key": "005313ca9a659878ef7f222bc507c0230e521344", "name": "utilities/color/background/success/default", "remote": false, "resolvedType": "COLOR", @@ -2605,7 +2614,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43373:35307", - "key": "bd56beadff129eb17715c293f10da6979ddf7077", + "key": "39d7a4d735adebad8dec149705e8b41f83db0129", "name": "utilities/color/background/error/default", "remote": false, "resolvedType": "COLOR", @@ -2637,7 +2646,7 @@ "description": "Used for hover interaction invalid form elements", "hiddenFromPublishing": false, "id": "VariableID:43373:35308", - "key": "43b52d70f4ca26c76350d11d12317f074e6919c9", + "key": "3e7812a14d72d5d3743e4167095a0fe134c00923", "name": "utilities/color/background/error/400", "remote": false, "resolvedType": "COLOR", @@ -2669,7 +2678,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35309", - "key": "7799cab9b7babd36c6f88ad82d109969e0f6b273", + "key": "4c14e288821674dcc60879562ec7bbd309a768c0", "name": "utilities/color/background/_transparent/primary-100|80", "remote": false, "resolvedType": "COLOR", @@ -2709,7 +2718,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35310", - "key": "aed191bb6eb4b221cc16ee481c638cf8cce5fc00", + "key": "10021cdf677120ec8afbec18662d34e81d705cbd", "name": "utilities/color/background/_transparent/primary-100|90", "remote": false, "resolvedType": "COLOR", @@ -2749,7 +2758,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35311", - "key": "25c46287eed9c87cee55138321bbafaf3bc748e8", + "key": "39f2ed3d4ca72a9594b61c1e857e4476a18efd65", "name": "utilities/color/background/_transparent/neutral-100|80", "remote": false, "resolvedType": "COLOR", @@ -2789,7 +2798,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35312", - "key": "1acfa60f1301499e875765e6417b677cb246b033", + "key": "d54c45f7da9e9d5b3431b3e6087447131dc2904b", "name": "utilities/color/background/_transparent/neutral-100|90", "remote": false, "resolvedType": "COLOR", @@ -2829,7 +2838,7 @@ "description": "Used for teaser, audio (wave animation)\n", "hiddenFromPublishing": false, "id": "VariableID:43373:35313", - "key": "e852879639d0c6e0934f7d8f6f63a30ccb984b3b", + "key": "b58252a053e0584b88689d5156c6494a4ec2b8c7", "name": "utilities/color/background/_transparent/white|90", "remote": false, "resolvedType": "COLOR", @@ -2869,7 +2878,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43373:35314", - "key": "9b20c89b17362fe82bc91c93648fb32cfc7da35d", + "key": "c306d6537df70672dff20ac1b921517218ed2a32", "name": "utilities/color/background/_transparent/white|80", "remote": false, "resolvedType": "COLOR", @@ -2910,7 +2919,7 @@ "description": "Primary brand color for text", "hiddenFromPublishing": false, "id": "VariableID:43373:35315", - "key": "1b86ccc59982dd66eb735879a7369ad3bf110c6f", + "key": "f48fac2558c85d046235017963e1ac7ec3d749ad", "name": "text/primary", "remote": false, "resolvedType": "COLOR", @@ -2943,7 +2952,7 @@ "description": "Inverted text color", "hiddenFromPublishing": false, "id": "VariableID:43373:35316", - "key": "6b511f53991ed54521d8a14024fb506d4f18a5ae", + "key": "2bf6e2475750d9b43f74d7ed7e7b73a26951d130", "name": "text/white", "remote": false, "resolvedType": "COLOR", @@ -2976,7 +2985,7 @@ "description": "4px", "hiddenFromPublishing": false, "id": "VariableID:43373:35401", - "key": "15801c15ddfce77a4343e7a57ab38ba5195994e7", + "key": "0a2a6280c171805e4bfb5ce4985e82d9a7cefe38", "name": "spacing/1", "remote": false, "resolvedType": "FLOAT", @@ -3009,7 +3018,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:43373:35402", - "key": "90bbb50ba95358b5d1ad2c90c4873d9d5d198bf2", + "key": "359e0af37680f91dda07c54c47a91f9e148d597d", "name": "spacing/2", "remote": false, "resolvedType": "FLOAT", @@ -3042,7 +3051,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:43373:35403", - "key": "1bff7330e3fa24781a787cd00c939076d75217a1", + "key": "0e1a2351a90058f4907dbd945a497357d0da2d7d", "name": "spacing/3", "remote": false, "resolvedType": "FLOAT", @@ -3075,7 +3084,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:43373:35404", - "key": "2eb06d4b66537143cb22a28828e704d7e8df16b8", + "key": "c9883145eb48e40cd1f72dd2c340a10e69e6e843", "name": "spacing/4", "remote": false, "resolvedType": "FLOAT", @@ -3108,7 +3117,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:43373:35414", - "key": "691c14f318e4f0a304dafca15c1603d03656780f", + "key": "82ac4a076128fc58a93f696bb2e869d3b383f8c0", "name": "spacing/0,5", "remote": false, "resolvedType": "FLOAT", @@ -3141,7 +3150,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:43373:35418", - "key": "c10b6252d772229d9bf89e97d563a5fcc6c41ddd", + "key": "dc102ab9afbb9105f4b56d0efc611da900b5c205", "name": "sizing/3", "remote": false, "resolvedType": "FLOAT", @@ -3174,7 +3183,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:43373:35419", - "key": "ec7a096d9a4b1a64f107350e7ea037f7f5d46dc6", + "key": "657738ebfdc0cdb32ec4535a6b28dc80c72063d0", "name": "sizing/4", "remote": false, "resolvedType": "FLOAT", @@ -3207,7 +3216,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:43373:35420", - "key": "36d39f1e4a8efcd0d79fdf5d331df839fbfc9cfe", + "key": "942192e4fc1204bd7d3f56bab2c4c1d66a907bee", "name": "sizing/5", "remote": false, "resolvedType": "FLOAT", @@ -3240,7 +3249,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:43373:35421", - "key": "04ddaafdfc15792090a707be4b360c2a1f67ff99", + "key": "845eb90822e5d392ae067799d1b2f3375db6d1b8", "name": "sizing/6", "remote": false, "resolvedType": "FLOAT", @@ -3273,7 +3282,7 @@ "description": "10px", "hiddenFromPublishing": false, "id": "VariableID:43373:35427", - "key": "1fa9d95c8d6193b3ab86ac17838fc5e6a9e70098", + "key": "1e9d8415c0e6d8493ee5e4d3a6a22d0d6ac7db88", "name": "sizing/2,5", "remote": false, "resolvedType": "FLOAT", @@ -3306,7 +3315,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43373:35437", - "key": "fc65b6e98f6ab371a5cde903a0acbc723f623038", + "key": "63a0a32a724c19887b117deca787a9a70b9badde", "name": "border-width/default", "remote": false, "resolvedType": "FLOAT", @@ -3338,7 +3347,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43373:35452", - "key": "1dab9e3e52f9fe3c60232729a4ed1387f8479946", + "key": "abda98a854bd53fe135e66bac29e6170ca62677f", "name": "UI/font-family/font-family-primary", "remote": false, "resolvedType": "STRING", @@ -3353,7 +3362,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4947", - "key": "7f5b0f1b9f5b0b8c65924797a0709a251525946e", + "key": "a0fcd198a2585ec89ae178bdbdc094975439ba29", "name": "UI/blue/100", "remote": false, "resolvedType": "COLOR", @@ -3373,7 +3382,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4948", - "key": "ee9e711e54f647d51ead192e626cb7c00295284f", + "key": "a47e78805c54906ab9c276b9c6aec1ac9971daab", "name": "UI/blue/200", "remote": false, "resolvedType": "COLOR", @@ -3393,7 +3402,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4949", - "key": "215fb82b5c2232370dad71e18896fcebb0880edb", + "key": "9d0dbb326d485683568726266bd137c8f870211d", "name": "UI/blue/300", "remote": false, "resolvedType": "COLOR", @@ -3413,7 +3422,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4950", - "key": "4f41ba210a080fb935b6308402a502656cdce359", + "key": "1df4c93aceb343da02588fa63b2a7e814b5a5102", "name": "UI/blue/400", "remote": false, "resolvedType": "COLOR", @@ -3433,7 +3442,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4951", - "key": "a33281de00b6575b0c52d3a62c41cf9112fbf8ba", + "key": "27880441acce29bf2de42f7fe9a62c150f558bb8", "name": "UI/blue/500", "remote": false, "resolvedType": "COLOR", @@ -3453,7 +3462,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4952", - "key": "e8c7d9e0f1ada14907021d7111248b75ffb5228b", + "key": "b543f9d97b1b0edc08df8af4642509eda9b1314f", "name": "UI/blue/600", "remote": false, "resolvedType": "COLOR", @@ -3473,7 +3482,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4953", - "key": "9cae38a2e8c375debe570334c91c7757dc00fdf3", + "key": "842591776d52f234de816130e8d393354d78cc00", "name": "UI/blue/700", "remote": false, "resolvedType": "COLOR", @@ -3493,7 +3502,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4954", - "key": "abb3373a50bc117ba90bbcdc899911663b99b675", + "key": "93657cf5c409c734835cc8825f3979dd4b9b6dd0", "name": "UI/blue/750", "remote": false, "resolvedType": "COLOR", @@ -3513,7 +3522,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4955", - "key": "b0a7c07d303db1be1360436b030b4043b4995356", + "key": "28ae85894046634773e294ef6201f8cf379d5b7d", "name": "UI/blue/800", "remote": false, "resolvedType": "COLOR", @@ -3533,7 +3542,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4956", - "key": "2ddf8c4594180290731a293f11de92fc17d45d20", + "key": "1358671231153e3bdd24fa84d042cc686f5d77ac", "name": "UI/blue/900", "remote": false, "resolvedType": "COLOR", @@ -3553,7 +3562,7 @@ "description": "blue-default", "hiddenFromPublishing": false, "id": "VariableID:43927:4957", - "key": "73c4b50fa5e4261fc9cb7a352b8d1f12b6b29dee", + "key": "625aed0f12ddc4eeca5f3d6dcb8384aed3f38f0e", "name": "UI/blue/default", "remote": false, "resolvedType": "COLOR", @@ -3571,7 +3580,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4958", - "key": "bcca91defb7698b3ad3054c72a1ce018f3134fb5", + "key": "5c7ff423926bb84346bea59446c97168c9ac6779", "name": "UI/green/100", "remote": false, "resolvedType": "COLOR", @@ -3591,7 +3600,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4959", - "key": "e38b42efcf568670e1227b79b7f30c7941da2071", + "key": "b9434930c3e2cf3f3203d365fbddc09de8c8a1c8", "name": "UI/green/200", "remote": false, "resolvedType": "COLOR", @@ -3611,7 +3620,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4960", - "key": "96375237e717deb264522909bdf5adbe16fd0c80", + "key": "213b11535212596a8dc45aacf3ef26bb3aa1c542", "name": "UI/green/300", "remote": false, "resolvedType": "COLOR", @@ -3631,7 +3640,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4961", - "key": "05bdbbeeeb829880e507c1b723761bca06e2fa29", + "key": "795205515fc0efb129d25425a3f901799e6ad5a9", "name": "UI/green/400", "remote": false, "resolvedType": "COLOR", @@ -3651,7 +3660,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4962", - "key": "79e1299cc9e15b23a2cbfc9aead08b07ef7fc45a", + "key": "678e7a6a4dedc7cfb5732974f83f3729abe9ff1d", "name": "UI/green/500", "remote": false, "resolvedType": "COLOR", @@ -3671,7 +3680,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4963", - "key": "7709662751752f0254ee838ace692e2b09d450f0", + "key": "c85c1f847d05a0bb01b4ebc9c945af00a68bec2d", "name": "UI/green/550", "remote": false, "resolvedType": "COLOR", @@ -3691,7 +3700,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4964", - "key": "29b48bc8a043a5df966c8453fd2f5be7bb0fe2ad", + "key": "f9807758f8f90c98b45e1af769f2f171818aa0d0", "name": "UI/green/600", "remote": false, "resolvedType": "COLOR", @@ -3711,7 +3720,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4965", - "key": "7f0df4e1dbcf175e95796f7f8f2e235512693eeb", + "key": "49c319c72dda9a0ae945ccbd7ed43d3ca8b53d48", "name": "UI/green/700", "remote": false, "resolvedType": "COLOR", @@ -3731,7 +3740,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4966", - "key": "47d128d95df72566d55131ad0c7b3aa64caf3b92", + "key": "c35ca5815e9e69e3e0c4b8d85cbb83e0c974e64f", "name": "UI/green/800", "remote": false, "resolvedType": "COLOR", @@ -3751,7 +3760,7 @@ "description": "green-default", "hiddenFromPublishing": false, "id": "VariableID:43927:4967", - "key": "7098798c736c1dd000f51b20b5f6038ee96c585a", + "key": "6a853772d730481fdcf52d46db4ea71dde8fd3cd", "name": "UI/green/default", "remote": false, "resolvedType": "COLOR", @@ -3769,7 +3778,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4968", - "key": "619018e69826fa8447aded66a91211ffc1de67ee", + "key": "30bc12b0395633f1eb55cedb3d9ed5b317b316c4", "name": "UI/grey/100", "remote": false, "resolvedType": "COLOR", @@ -3789,7 +3798,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4969", - "key": "79f37ee7c35a471268eaca8961e73d58c2cfe336", + "key": "b9f9041e5e76b7399b8b80d8bf9679e1d291a77f", "name": "UI/grey/200", "remote": false, "resolvedType": "COLOR", @@ -3809,7 +3818,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4970", - "key": "72f29d01fd01b044022d2f290d37cc968724c409", + "key": "3c9ed45d1b1216344fc0bd2613bd579c57329afa", "name": "UI/grey/300", "remote": false, "resolvedType": "COLOR", @@ -3829,7 +3838,7 @@ "description": "grey-400", "hiddenFromPublishing": false, "id": "VariableID:43927:4971", - "key": "12dca6f88ea3d8dcb3941894aa8c5e42cc9f3602", + "key": "52fdd005e88cc85fb2c11bbad92dd8d9ca460ada", "name": "UI/grey/400", "remote": false, "resolvedType": "COLOR", @@ -3849,7 +3858,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4972", - "key": "5c3e92fe322f3a0a0345ed2bbcf20f129061b387", + "key": "ee0f6a7a931a61cb76ef7dc9311c91a88f4309e2", "name": "UI/grey/500", "remote": false, "resolvedType": "COLOR", @@ -3869,7 +3878,7 @@ "description": "grey-600", "hiddenFromPublishing": false, "id": "VariableID:43927:4973", - "key": "5a02419f9d44fc6510e7a53dde75a103d197e271", + "key": "8ffda14b2d053ec4bcbafaf607fd4c9d94f849a8", "name": "UI/grey/600", "remote": false, "resolvedType": "COLOR", @@ -3889,7 +3898,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4974", - "key": "123ff33fcecf5495426898d14a3bdc57a6ae6f8c", + "key": "4cefecdb4d973e2870333e1cb9545b0e758bb99c", "name": "UI/grey/700", "remote": false, "resolvedType": "COLOR", @@ -3909,7 +3918,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4975", - "key": "eb1f9b2725c4c5207e143e8452a6c024136b85e5", + "key": "64fa7e4783c6972bc1221fbadcb69ada39c61f20", "name": "UI/grey/800", "remote": false, "resolvedType": "COLOR", @@ -3929,7 +3938,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4976", - "key": "2bb97dc836bf6316751dc4c2e5c2bbe8bad2c668", + "key": "682159ff0a2c7761498ca45d2e0fd44b09296856", "name": "UI/teal/100", "remote": false, "resolvedType": "COLOR", @@ -3949,7 +3958,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4977", - "key": "ede1f4750730a6333b36c9b62f71401f2ccbf13e", + "key": "19f1412d80c67dd2e5328fbc4e380387d76b76c8", "name": "UI/teal/200", "remote": false, "resolvedType": "COLOR", @@ -3969,7 +3978,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4978", - "key": "bbd630fdc726884379fe3b93e51119dd9aa11ad6", + "key": "97697eb3fdb675deaecb1fdfb937cd55cfb00436", "name": "UI/teal/300", "remote": false, "resolvedType": "COLOR", @@ -3989,7 +3998,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4979", - "key": "5004071b3f6d2391ac18da2e52759a15e17caed5", + "key": "1273eb0ec70bfdee0166d9110316647ba0ef9726", "name": "UI/teal/400", "remote": false, "resolvedType": "COLOR", @@ -4009,7 +4018,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4980", - "key": "5dd583a1a531b1e46f09456a6ec9442c2cef6c50", + "key": "0c87e261e3ae4745a6fb63654878e221d3e87cf8", "name": "UI/teal/500", "remote": false, "resolvedType": "COLOR", @@ -4029,7 +4038,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4981", - "key": "8ca7f928f0c1b8ffa552fdc4fcd0e088f26eb80d", + "key": "888f06d705c8cceff4b1acda2f2742d57228e0fa", "name": "UI/teal/600", "remote": false, "resolvedType": "COLOR", @@ -4049,7 +4058,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4982", - "key": "2a6dcb25c64116196c6b5fcc008b660921cfecff", + "key": "93df1233ce301a8b4cf35987c0d368a36549c6af", "name": "UI/teal/700", "remote": false, "resolvedType": "COLOR", @@ -4069,7 +4078,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4983", - "key": "ecb00ce2643a9ad0d5922b15eb43759497beb8b2", + "key": "d98cd3d61b998648b93f69c538695e050d1933e3", "name": "UI/teal/800", "remote": false, "resolvedType": "COLOR", @@ -4089,7 +4098,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4984", - "key": "2e4d13439393b5d80a6708690dce1f67866b6659", + "key": "314e8e1b6a26da8999799bc01cd4140880f26568", "name": "UI/yellow/100", "remote": false, "resolvedType": "COLOR", @@ -4109,7 +4118,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4985", - "key": "b5b26f848506e01887ffed4defd8c3767615fddd", + "key": "85b3c2d7cf821cdb2cb5684508d2a9b2bac663e1", "name": "UI/yellow/200", "remote": false, "resolvedType": "COLOR", @@ -4129,7 +4138,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4986", - "key": "bf0a9d5190fdbb74bf0b7988870d2f482a400677", + "key": "27dad3221a1d793e0edbd5049f63a8d9a1da4e78", "name": "UI/yellow/300", "remote": false, "resolvedType": "COLOR", @@ -4149,7 +4158,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4987", - "key": "76b8c161ae222b23d5e73f0bcf47024e87056b10", + "key": "7274ecf65e39a49bf9e4509c32424ffca391afef", "name": "UI/yellow/400", "remote": false, "resolvedType": "COLOR", @@ -4169,7 +4178,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4988", - "key": "bd435fe1ed1fa125f40a519da1aa346da4024a0d", + "key": "5d9249a86f9f427c109469e7d4484d6c9b3e943d", "name": "UI/yellow/500", "remote": false, "resolvedType": "COLOR", @@ -4189,7 +4198,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4989", - "key": "ed73cc3638249a1cdc57c75a37fc42a681671153", + "key": "9bb601555cd6c9cb0b45d3a1f315e1becc2e4158", "name": "UI/yellow/600", "remote": false, "resolvedType": "COLOR", @@ -4209,7 +4218,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4990", - "key": "ebeec19fe479373def6f76263dd036875aa0e79d", + "key": "80388f18babbb356446a8e24cf4b7a08c388dc12", "name": "UI/yellow/650", "remote": false, "resolvedType": "COLOR", @@ -4229,7 +4238,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4991", - "key": "94e3085da9f0012cacca0a9f3259c97e4955b005", + "key": "1144b019e677d3c393919b96fa1e767e4ab6fda4", "name": "UI/yellow/700", "remote": false, "resolvedType": "COLOR", @@ -4249,7 +4258,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4992", - "key": "7561b24fe7bbcee28ca52f456d505304a9770266", + "key": "bedf5b447b3aae988a71cf1deb6de11af18e69a1", "name": "UI/yellow/800", "remote": false, "resolvedType": "COLOR", @@ -4269,7 +4278,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4993", - "key": "f57ff7ee71abcb5570a2ca4712e6a773986b2578", + "key": "2acb9b560a50b5d94e8cf16938a627ce8abf3ab0", "name": "UI/lightblue/100", "remote": false, "resolvedType": "COLOR", @@ -4289,7 +4298,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4994", - "key": "3eb9523442c747e27fc698fa8278c8a1e5c90d47", + "key": "40302ed75e9cbad88a2425f303ddf6a5d63fa718", "name": "UI/lightblue/200", "remote": false, "resolvedType": "COLOR", @@ -4309,7 +4318,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4995", - "key": "2883a818ff5ca0f16d2ba23dd8ee4266ca70c6b4", + "key": "dc87c3a6e5826ea6c06429c8b9094f288ff614dd", "name": "UI/lightblue/300", "remote": false, "resolvedType": "COLOR", @@ -4329,7 +4338,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4996", - "key": "099d14ff07b4947c7a24f34a680d3228b8f7fda5", + "key": "931963b71fdc2801e8a458957506ef46c8d10b97", "name": "UI/lightblue/400", "remote": false, "resolvedType": "COLOR", @@ -4349,7 +4358,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4997", - "key": "2b3d7ac1309e16e8256ea96f853080c42f8a381f", + "key": "931bcdd741da2ac72a760ce510c982de0838a7f7", "name": "UI/lightblue/500", "remote": false, "resolvedType": "COLOR", @@ -4369,7 +4378,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4998", - "key": "34f7a33c3d01eaf4cc3d01f23af44fa51a0851cf", + "key": "e6af6c410bc27b36849d50ef05b61321ba441950", "name": "UI/lightblue/600", "remote": false, "resolvedType": "COLOR", @@ -4389,7 +4398,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:4999", - "key": "89d2d3d5c7671fe1a0612c29a3a83af20e5e6a96", + "key": "47a37439b5127c887b1912ea5c6c8c13e87dd05a", "name": "UI/lightblue/700", "remote": false, "resolvedType": "COLOR", @@ -4409,7 +4418,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5000", - "key": "982d547da477e17629d4c650d3e5c38bfac56d9d", + "key": "2fe0d05f14c7d5c95c5d3c1055ef1c15dfd0dd2b", "name": "UI/lightblue/800", "remote": false, "resolvedType": "COLOR", @@ -4429,7 +4438,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5001", - "key": "7306b5e70e95926343b5bde3d1a2a8a86ca46ddd", + "key": "05c24497383f6176bc4eb82bdcf46204a2d669f9", "name": "UI/violet/100", "remote": false, "resolvedType": "COLOR", @@ -4449,7 +4458,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5002", - "key": "26dbfc6cb9ab15e9c244b8de07c009d6ae02af72", + "key": "8e744b88f7d2443e96431658b3a6ae347b775c18", "name": "UI/violet/200", "remote": false, "resolvedType": "COLOR", @@ -4469,7 +4478,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5003", - "key": "e883495efca79f59181c95df7164bdddcf5a59f6", + "key": "d4cf7b0509b57be1dea7a6845189f09ad80e30d0", "name": "UI/violet/300", "remote": false, "resolvedType": "COLOR", @@ -4489,7 +4498,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5004", - "key": "48000ed011ca372de77b31a475ef8fd64f67634a", + "key": "bd018e1334cb97b0949067b455f7fd73db86ccb2", "name": "UI/violet/400", "remote": false, "resolvedType": "COLOR", @@ -4509,7 +4518,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5005", - "key": "8b48312950672b468d9e0024dd6831ecb8246b86", + "key": "2597686a3e8b6ddcf399ff648183e089d725c57e", "name": "UI/violet/500", "remote": false, "resolvedType": "COLOR", @@ -4529,7 +4538,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5006", - "key": "cb9cc6b2ee90287180fb1f9ef54f5e1fd4201b3c", + "key": "a9fbef7a057bada71f3c5d57e455085242985db3", "name": "UI/violet/600", "remote": false, "resolvedType": "COLOR", @@ -4549,7 +4558,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5007", - "key": "f9234beb69bc6ceda506efb29cc005906afa325c", + "key": "b2fe3c5941b2f443b7d7161ba3a002e8fd93c6c1", "name": "UI/violet/700", "remote": false, "resolvedType": "COLOR", @@ -4569,7 +4578,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5008", - "key": "ff0875e01de7cc74c7b0d70c02cf52bf0a483a2f", + "key": "ec3c38995703149226243453d4602e302cb50069", "name": "UI/violet/800", "remote": false, "resolvedType": "COLOR", @@ -4589,7 +4598,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5009", - "key": "0a77adee1bde0cf8202b9d8077ed9e885f1d98a9", + "key": "14d1f64ad3e332cd261fb5251454acdeba11e727", "name": "UI/lightgreen/100", "remote": false, "resolvedType": "COLOR", @@ -4609,7 +4618,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5010", - "key": "6108917e0d188f17a3eba4b059ed70406e1802da", + "key": "169f016cad100d0579147ae215ba6ab242e334de", "name": "UI/lightgreen/200", "remote": false, "resolvedType": "COLOR", @@ -4629,7 +4638,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5011", - "key": "bff49eeaca591e532f63341ae28ee0341a4527ce", + "key": "aabf6c864d1fef279a495be18de04a6884562cd1", "name": "UI/lightgreen/300", "remote": false, "resolvedType": "COLOR", @@ -4649,7 +4658,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5012", - "key": "94677bb89aaed0e8dde527a1574e7f6534a9510e", + "key": "32680cc3d2faba056762779c38e67c004c84b268", "name": "UI/lightgreen/400", "remote": false, "resolvedType": "COLOR", @@ -4669,7 +4678,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5013", - "key": "d1a111e06b2b1f8b228af2688cb6d1b5930fe2cb", + "key": "20bf01ab2f90eb2034263f26e33c6b2c343d808b", "name": "UI/lightgreen/500", "remote": false, "resolvedType": "COLOR", @@ -4689,7 +4698,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5014", - "key": "2c8cac63ec37fd9f679f13147570fc4b73de0c23", + "key": "d893916b85df4fe5a6ace404d8180c885ad84102", "name": "UI/lightgreen/600", "remote": false, "resolvedType": "COLOR", @@ -4709,7 +4718,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5015", - "key": "6840e454b7dc5c19e270192a31267019246a2325", + "key": "7b844ba4d3e60cb24d24e9264cc8d111dec388e0", "name": "UI/lightgreen/700", "remote": false, "resolvedType": "COLOR", @@ -4729,7 +4738,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5016", - "key": "64552c4c7b84d5084e9ce618c7a149fdd77ad407", + "key": "0b401b9c72a538c8b2f9c8598cd4176d3c9c7fbc", "name": "UI/lightgreen/800", "remote": false, "resolvedType": "COLOR", @@ -4749,7 +4758,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5017", - "key": "2166dd91f9a99ddb1bded699e3bf3b2da7f47ed6", + "key": "882198605b672958ae500085a394c0c24f7af16f", "name": "UI/red/250", "remote": false, "resolvedType": "COLOR", @@ -4769,7 +4778,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5018", - "key": "5b4c1b55930e02760ce78f6b7d71c6b135b89d5f", + "key": "43f606e66382df642c82ad00263da7e6b9c3ee2c", "name": "UI/red/300", "remote": false, "resolvedType": "COLOR", @@ -4789,7 +4798,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5019", - "key": "a2edb69a55aa03cc5f670330e51a9a536be02f16", + "key": "65aaf37e56358a52dc33aa25731e038afadb45ee", "name": "UI/red/400", "remote": false, "resolvedType": "COLOR", @@ -4809,7 +4818,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5020", - "key": "2c11761514dbaa7a8652b4b4f10c9e72523b875a", + "key": "2ae2cfdd359363e917e1f17fbd60a4a43e002d1e", "name": "UI/red/500", "remote": false, "resolvedType": "COLOR", @@ -4829,7 +4838,7 @@ "description": "low value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5021", - "key": "81c853a75b58b56050b2cdf799bf354794502410", + "key": "c66338afc1c51fe5bfff1e969e4ce8031296e5a3", "name": "UI/cerulean", "remote": false, "resolvedType": "COLOR", @@ -4849,7 +4858,7 @@ "description": "moderate value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5022", - "key": "0b315bc37f9c8e2e3215781be7f3fe5cf0aab37d", + "key": "eeb6999a95210b2b66ea81b4ef20fc02de0683ff", "name": "UI/emerald", "remote": false, "resolvedType": "COLOR", @@ -4869,7 +4878,7 @@ "description": "increased value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5023", - "key": "a4df049f89f12f02a8ae35c65d6c100d2ac635a9", + "key": "476fd9a3752db9c6c8835d85a680c4f0be1fe2af", "name": "UI/lemon", "remote": false, "resolvedType": "COLOR", @@ -4889,7 +4898,7 @@ "description": "high value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5024", - "key": "fc28d236cbb4dc7696786833d28006e07b3b300c", + "key": "b79d821a3e3a61d4e9bbeb71ab437fcc08f43d00", "name": "UI/orange", "remote": false, "resolvedType": "COLOR", @@ -4909,7 +4918,7 @@ "description": "very high value fluctuation", "hiddenFromPublishing": false, "id": "VariableID:43927:5025", - "key": "35b07899d14b75e59ca41644ce8a16af829eaad5", + "key": "95dd22c19a485f3ea7a2e65c8e5bf2127ef0204c", "name": "UI/brightred", "remote": false, "resolvedType": "COLOR", @@ -4929,7 +4938,7 @@ "description": "white", "hiddenFromPublishing": false, "id": "VariableID:43927:5026", - "key": "9e7a24f9b0a87bab27d9f6fdf9aa6e285553b37a", + "key": "f13ce9980a7e6fe09bcf0b5b4bca71a6a7a0a060", "name": "UI/white", "remote": false, "resolvedType": "COLOR", @@ -4949,7 +4958,7 @@ "description": "black", "hiddenFromPublishing": false, "id": "VariableID:43927:5027", - "key": "7926c733102900f04eacc6ec5562e4658d1b702b", + "key": "95031fcaa5564cb24ee3337bea45db4c7f605b2c", "name": "UI/black", "remote": false, "resolvedType": "COLOR", @@ -4969,7 +4978,7 @@ "description": "color has same luminance as step 100", "hiddenFromPublishing": false, "id": "VariableID:43927:5029", - "key": "ad8178a4c4920dfd34a7a51e99507091cd2c61e8", + "key": "a3d6361be3c0a95f82b0bc431ae031adc834218c", "name": "VB/azure/100", "remote": false, "resolvedType": "COLOR", @@ -4989,7 +4998,7 @@ "description": "used for tag selected hover", "hiddenFromPublishing": false, "id": "VariableID:43927:5030", - "key": "b357fbb18b45fc6f22f3810ac18e5f0dda07d3c9", + "key": "e8c7cf217b92c0f710e2a4e024c8b934fe6ce963", "name": "VB/azure/300", "remote": false, "resolvedType": "COLOR", @@ -5009,7 +5018,7 @@ "description": "color has same luminance as step 100", "hiddenFromPublishing": false, "id": "VariableID:43927:5031", - "key": "8cf17c6f6cf276ebd1816f8dc49249a3d141c139", + "key": "b2e655a7af43c690e1d157944b82ee2e9f27e75e", "name": "VB/azure/400", "remote": false, "resolvedType": "COLOR", @@ -5029,7 +5038,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5032", - "key": "8e4c910ea6824b30e820c574655b588cd88d5c81", + "key": "a6ca06d8879a3c28aafe3e4e32296c6153186358", "name": "VB/azure/500", "remote": false, "resolvedType": "COLOR", @@ -5049,7 +5058,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5033", - "key": "627e0722cbf5a39454c83558cfeecd99d0c1d471", + "key": "d4e878a423dd4e383eb8922155f560e0c353db1e", "name": "VB/azure/550", "remote": false, "resolvedType": "COLOR", @@ -5069,7 +5078,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5034", - "key": "075e7b2a42522e5e91bf69e650f9c352b7462f06", + "key": "bf868623d3f90df13cfb74d7e24c9d2ff74f350f", "name": "VB/azure/600", "remote": false, "resolvedType": "COLOR", @@ -5089,7 +5098,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5035", - "key": "e07d929388f47df5291376a191d3d025fa88b09b", + "key": "12309452ceb081ea1d9978fd170a13845115121f", "name": "VB/azure/650", "remote": false, "resolvedType": "COLOR", @@ -5109,7 +5118,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5036", - "key": "212a98f0a1ae6c6320b49a4043ecfb2a60185e2d", + "key": "e486d2354c485c7f88f2cebd3030c5f49df082a7", "name": "VB/azure/750", "remote": false, "resolvedType": "COLOR", @@ -5129,7 +5138,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5037", - "key": "d8aed472076399958e6adbdc40b90136a090a972", + "key": "b6279ec367ea147be4eecc42751b48b294ab9941", "name": "VB/azure/800", "remote": false, "resolvedType": "COLOR", @@ -5149,7 +5158,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43927:5038", - "key": "ed81d18d173528ad4b1c5e3ead12cc8bc7dcfd6d", + "key": "7188d752f4d8b8cfc3e231cc68f1e9cf8fd2b45c", "name": "VB/azure/default", "remote": false, "resolvedType": "COLOR", @@ -5167,7 +5176,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:187", - "key": "3064f15a8396806fa979825f89ccb004511f0e10", + "key": "5af7ff0c1bc8db8be94fe82001e5780cd66dabd4", "name": "VB/azure/900", "remote": false, "resolvedType": "COLOR", @@ -5187,7 +5196,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:189", - "key": "f15b7c02defa516ca5b16e0afdd7a9f65b6f0ac5", + "key": "00415e16ffd78bdb34a85493f3e62920d812ca2f", "name": "VB/vermillion/550", "remote": false, "resolvedType": "COLOR", @@ -5207,7 +5216,7 @@ "description": "green-default", "hiddenFromPublishing": false, "id": "VariableID:43979:190", - "key": "f8f5e2fed98a2c075d765beff9a3fbe5b37451ca", + "key": "0d6a6502fe7025e955164b3dda2750a0d8933995", "name": "VB/vermillion/default", "remote": false, "resolvedType": "COLOR", @@ -5225,7 +5234,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:193", - "key": "e09bfc00496bdd3a6e3902f47f4c6dc44ee752bb", + "key": "871d92c58a86c6cf530a20e0c11d33abaf6091cc", "name": "utilities/color/primary/100", "remote": false, "resolvedType": "COLOR", @@ -5255,7 +5264,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:194", - "key": "be53bfa6ccdda3b8b7104f530f7d596037f236b2", + "key": "523dfdc711346eb1018c5dc5389966c76dbbdad4", "name": "utilities/color/primary/200", "remote": false, "resolvedType": "COLOR", @@ -5285,7 +5294,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:195", - "key": "4e197d766d6ac6e9c7e5e58d93bbed93147d6934", + "key": "7b3557fc80934534aa6374f7e9dd0859f26f2a15", "name": "utilities/color/primary/300", "remote": false, "resolvedType": "COLOR", @@ -5315,7 +5324,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:196", - "key": "4841231ba6fc339a3e4f0d4ecf3df1fb4cc2cbb0", + "key": "08d04a7f62e52953a9f174444bfe9c1fafb6f691", "name": "utilities/color/primary/400", "remote": false, "resolvedType": "COLOR", @@ -5345,7 +5354,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:197", - "key": "aaea895d4e46a5efcebc6ac9fcf1f071162fc25f", + "key": "2be1ddcd0736da3c252728cfd84d4e191c61bda1", "name": "utilities/color/primary/500", "remote": false, "resolvedType": "COLOR", @@ -5375,7 +5384,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:198", - "key": "bcb1b213bbc3bfab7e464d71c26b00bb4a433e52", + "key": "c14dfbcaba6ea2f6f56c266ed1faf041954eb5b7", "name": "utilities/color/primary/600", "remote": false, "resolvedType": "COLOR", @@ -5407,7 +5416,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:199", - "key": "9a7a23e59cfe8acb9dcd89d0714b81af45eb13a8", + "key": "d321e0090b13a40f324e07fb669f32e5207c465c", "name": "utilities/color/primary/700", "remote": false, "resolvedType": "COLOR", @@ -5437,7 +5446,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:200", - "key": "4b22378fcb18d5fc1f25d72eb20b05161724f09a", + "key": "d55fd6b835aa8caf6af0ea5d76e35a33e9edf1a7", "name": "utilities/color/primary/750", "remote": false, "resolvedType": "COLOR", @@ -5467,7 +5476,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:201", - "key": "399ce67f5b75ff4f2088011e43129c05117b9961", + "key": "08b7f25d9f7b7bb0b57eba73dad64045ca451c43", "name": "utilities/color/primary/800", "remote": false, "resolvedType": "COLOR", @@ -5497,7 +5506,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:202", - "key": "3e3c8e3a2f4e832c0b4c13d9542e416cc00b06a9", + "key": "8fe3c5b185b9909cecb908499822bfc2a41b3c06", "name": "utilities/color/primary/900", "remote": false, "resolvedType": "COLOR", @@ -5527,7 +5536,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:203", - "key": "02e8d0edb806027286b90f53a594c7d3bd9b84ae", + "key": "084095f8ee69fab6cd9763ed3b7c1a277c8df309", "name": "utilities/color/primary/default", "remote": false, "resolvedType": "COLOR", @@ -5557,7 +5566,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:204", - "key": "09ecdb4054bec44c2cd67756e9a61ec603997e4a", + "key": "ebc82c1965f6f63de76565becce730224c184476", "name": "utilities/color/accent/100", "remote": false, "resolvedType": "COLOR", @@ -5587,7 +5596,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:205", - "key": "ad75fd0294da9c546588f3db1920ff5cd2a5b86a", + "key": "a0456a0c4f37bc7dd123f55ee01ea293b03af958", "name": "utilities/color/accent/200", "remote": false, "resolvedType": "COLOR", @@ -5617,7 +5626,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:206", - "key": "51fe40caa806b22cfbaf1154c38b7e2b98672a0a", + "key": "6344fbdd8f7051163c90f9378d753bef258e6f35", "name": "utilities/color/accent/300", "remote": false, "resolvedType": "COLOR", @@ -5647,7 +5656,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:207", - "key": "83b4cc6f8f1830d53588611ba8b7fb868b1ce0b8", + "key": "2ffbb01a979f1c753553a42ec5d9a456c70b1a12", "name": "utilities/color/accent/400", "remote": false, "resolvedType": "COLOR", @@ -5677,7 +5686,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:208", - "key": "ba8478128d82dc29fbeedca96caff697472927a7", + "key": "7be255af4bbb417fbd5f4cdeb7e1fdc8e42bc505", "name": "utilities/color/accent/500", "remote": false, "resolvedType": "COLOR", @@ -5707,7 +5716,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:209", - "key": "7e86cccf757342605e0b0cbdd28e9f1797843e42", + "key": "bc12262fc8ef9446376e6ab98b4cc4a90287736c", "name": "utilities/color/accent/550", "remote": false, "resolvedType": "COLOR", @@ -5737,7 +5746,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:210", - "key": "ebbbdc440a4cbf85de3873b8b062d261268d02ce", + "key": "4e7031eabf20226b3a7f23c35813bb05d768c67f", "name": "utilities/color/accent/600", "remote": false, "resolvedType": "COLOR", @@ -5767,7 +5776,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:211", - "key": "b8a459a0fe020227198d14e75ea22b3d69d0f8c5", + "key": "d57d4f6c191044d9a55605049ab83a04dfb140ac", "name": "utilities/color/accent/700", "remote": false, "resolvedType": "COLOR", @@ -5797,7 +5806,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:212", - "key": "fb814ff4e4b4273a168aa69464c016e30f82d8e4", + "key": "32b182e322beece97e9fa77e8bc708d61042c338", "name": "utilities/color/accent/800", "remote": false, "resolvedType": "COLOR", @@ -5827,7 +5836,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:213", - "key": "55fb21b07d1b9adc48d42e3464be91ab272b74fd", + "key": "be151c1d5732c23fa9cd27b1d8b67b8546536985", "name": "utilities/color/accent/default", "remote": false, "resolvedType": "COLOR", @@ -5857,7 +5866,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:214", - "key": "309867147969aced864d987adf2d64aa3bb268fd", + "key": "c2719e2232ad0071ec77e6c62056080427d92685", "name": "utilities/color/neutral/100", "remote": false, "resolvedType": "COLOR", @@ -5887,7 +5896,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:215", - "key": "eb42987ebffb22321629f51ee2b6249851bd14ec", + "key": "a164ded2fad939f9250a7b0b1220fe502b28e3ac", "name": "utilities/color/neutral/200", "remote": false, "resolvedType": "COLOR", @@ -5917,7 +5926,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:216", - "key": "1c2fffab4a220dc502a3b7430cc7b0f5678af9c5", + "key": "ec138825375524b2e4c110562188167834911d53", "name": "utilities/color/neutral/300", "remote": false, "resolvedType": "COLOR", @@ -5947,7 +5956,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:217", - "key": "2b13199beb0d0c4c9339595572b636fb31e1588f", + "key": "0a0ac1b18d3a80470c8944cb775ee3bbd48b7807", "name": "utilities/color/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -5977,7 +5986,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:218", - "key": "f00ace4044a81bf897c94ae9dc9fde82ef39b008", + "key": "96811b278917730688592024adbb7b90c9af4a62", "name": "utilities/color/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -6007,7 +6016,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:219", - "key": "3164a7557f40a4c3d0dec7ae6aef81c17fb2280c", + "key": "29eb798ba2bc540012f9da546f5a1d5564248aa9", "name": "utilities/color/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -6037,7 +6046,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:220", - "key": "22067b46a0864d80b752fff8e12a90dda0af3e97", + "key": "3352090d518d9fb8c1010e476a67b3e4ee583cbd", "name": "utilities/color/neutral/700", "remote": false, "resolvedType": "COLOR", @@ -6067,7 +6076,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:221", - "key": "62381a06207bdf7fe13ec0c8381f45145d8693f5", + "key": "921747a4041e9f669730b0efc02ad5eece2d86ce", "name": "utilities/color/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -6097,7 +6106,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:222", - "key": "737b9997186c07321de53a88936913609fce99d7", + "key": "9d41a86301227a3725aee059dcfa6fc13871f00c", "name": "utilities/color/error/300", "remote": false, "resolvedType": "COLOR", @@ -6127,7 +6136,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:223", - "key": "6e857651aa1eeb11a9c500cf8d672c9f9cada4de", + "key": "ba81d2968b48879a1c9c7902f2f40bab75b70b49", "name": "utilities/color/error/400", "remote": false, "resolvedType": "COLOR", @@ -6157,7 +6166,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:224", - "key": "a883007121660cc94cf6ef39aa0fc5fc385bc380", + "key": "daafe583c6dca90f3a543fd34a065efeca4a542f", "name": "utilities/color/success/default", "remote": false, "resolvedType": "COLOR", @@ -6187,7 +6196,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:225", - "key": "0487f8ceaccf5ca660efe8695602c036a64d655c", + "key": "cf2a079c911b3f4d722aae0d72c107c7586d8c3f", "name": "utilities/color/black/default", "remote": false, "resolvedType": "COLOR", @@ -6217,7 +6226,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:43979:227", - "key": "4acfd3932bd293190f7a12a63af1aa43339da008", + "key": "049a79d4ea42a14d0fc5994e9b55e3c767579640", "name": "utilities/color/white/default", "remote": false, "resolvedType": "COLOR", @@ -6247,7 +6256,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:229", - "key": "d3d2d8add95ccc2a314510490ab9e973d2798e99", + "key": "7d581bfe4848ed0cc9a3e639e2a2139d74fccb9c", "name": "utilities/color/risk/low", "remote": false, "resolvedType": "COLOR", @@ -6277,7 +6286,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:230", - "key": "79b2564e3da522b56f4222c3afab64194b587e19", + "key": "d19bc32b2c1749d82e3957b0dd841686ca19b1b2", "name": "utilities/color/risk/moderate", "remote": false, "resolvedType": "COLOR", @@ -6307,7 +6316,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:231", - "key": "095471ad5e2e75e8cbc10a8ed6fd30c9f52274c5", + "key": "f394d635e9c522a073806ae07b7ee567577dca04", "name": "utilities/color/risk/increased", "remote": false, "resolvedType": "COLOR", @@ -6337,7 +6346,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:232", - "key": "856a343aaa73360e0db9d901f14e70c3f4a192f4", + "key": "2e99d7eadc7f884469cc4d252ffc53b1c5e430ff", "name": "utilities/color/risk/high", "remote": false, "resolvedType": "COLOR", @@ -6367,7 +6376,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:233", - "key": "04d78dd356ca73bfa87eb8a1f9477e814411a43e", + "key": "eef6ca3abf325df379a2600d5ad8cb9e36021aa6", "name": "utilities/color/risk/veryhigh", "remote": false, "resolvedType": "COLOR", @@ -6397,7 +6406,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:234", - "key": "689e56866506f9cb0737cbeddc705f9663d9fc7a", + "key": "762eb86eb577d81119c43eb390d5c877ee96cc90", "name": "utilities/color/info/default", "remote": false, "resolvedType": "COLOR", @@ -6427,7 +6436,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:235", - "key": "8aac4afb70a742d5d0edb99fed733830db4447f7", + "key": "0f3f3fe0c4a84d430d8c0143a408cbf3d5c63e18", "name": "utilities/color/warning/default", "remote": false, "resolvedType": "COLOR", @@ -6457,7 +6466,7 @@ "description": "Used for inverted hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:236", - "key": "962e9483262eea599b28d4a435c32193b6ce8e4c", + "key": "639c44624996e7b5ca0b814d0e6ab2995f8b91d6", "name": "utilities/color/icon-fill/primary/100", "remote": false, "resolvedType": "COLOR", @@ -6489,7 +6498,7 @@ "description": "Used for inverted pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:237", - "key": "ac45f2fe9c065f560601ea702484d2c55ad7defe", + "key": "cb63a4f55fb6982f92b48229fc41fbb639129967", "name": "utilities/color/icon-fill/primary/200", "remote": false, "resolvedType": "COLOR", @@ -6521,7 +6530,7 @@ "description": "Used for inverted pressed interaction in text link", "hiddenFromPublishing": false, "id": "VariableID:43979:238", - "key": "b2a1c3aae94653db66dc78c27591a45a7bffeb76", + "key": "4c6b9f1067d040e8247fcc2a3fbf77f32dbbf228", "name": "utilities/color/icon-fill/primary/400", "remote": false, "resolvedType": "COLOR", @@ -6557,7 +6566,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:239", - "key": "d4964e06c83b146512420f7d22dbc4f99da1d334", + "key": "b3e30505f66acf0200931482d7e016daee2a19f4", "name": "utilities/color/icon-fill/primary/500", "remote": false, "resolvedType": "COLOR", @@ -6589,7 +6598,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:240", - "key": "1fc9fbe1181ff9df0cc6dd3a7bb48819874f68f9", + "key": "c1f45a098096ed905a86d867c2fffb70303988d6", "name": "utilities/color/icon-fill/primary/800", "remote": false, "resolvedType": "COLOR", @@ -6621,7 +6630,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:43979:241", - "key": "0646819632394993d4f8eddea092a7eb6278be45", + "key": "864bb2082fed35f475e0245b03c618d4ad85d953", "name": "utilities/color/icon-fill/primary/default", "remote": false, "resolvedType": "COLOR", @@ -6653,7 +6662,7 @@ "description": "Inverted icon color", "hiddenFromPublishing": false, "id": "VariableID:43979:242", - "key": "1a634ef580e3a011dd2c517849882eeafa2e451b", + "key": "0f28138f0863e7598b6e06500487728c859930b9", "name": "utilities/color/icon-fill/white/default", "remote": false, "resolvedType": "COLOR", @@ -6685,7 +6694,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:244", - "key": "fb426623c07ff78dc90870828b804c62fe926134", + "key": "b8565932998c9e7c2433a9489c7631286ea819b6", "name": "utilities/color/icon-fill/accent/550", "remote": false, "resolvedType": "COLOR", @@ -6717,7 +6726,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:43979:245", - "key": "1e4f3776111b01da4de14477592e1e7375fec56b", + "key": "7442d680a6752e0df8ab0c9da42e4c99371785a5", "name": "utilities/color/icon-fill/accent/default", "remote": false, "resolvedType": "COLOR", @@ -6749,7 +6758,7 @@ "description": "Used for disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:246", - "key": "9505d6312d1e2e9ef0cdddc5e0da8abbabf94809", + "key": "b361bbaa5c224284cd0c9795baa2db2ee3804162", "name": "utilities/color/icon-fill/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -6781,7 +6790,7 @@ "description": "Used for inverted disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:247", - "key": "9b96dad67466abde49956bc2b5a5e09c68bc1be2", + "key": "3da08c8313ce1cd555f0132107c0896eb9dee71c", "name": "utilities/color/icon-fill/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -6817,7 +6826,7 @@ "description": "Used for switch, clearable", "hiddenFromPublishing": false, "id": "VariableID:43979:248", - "key": "09aba09c88bde2ae9cca118f3b312c15efd578a5", + "key": "ac63712e480397dbd9151be819ab1193f8ac894f", "name": "utilities/color/icon-fill/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -6849,7 +6858,7 @@ "description": "Used for success messages, valid states", "hiddenFromPublishing": false, "id": "VariableID:43979:249", - "key": "c43f5d98604e9cd858518c3f737b8144fa1c53e3", + "key": "ce10285a2a1f39cd4e05baffc31b7092de37521b", "name": "utilities/color/icon-fill/success/default", "remote": false, "resolvedType": "COLOR", @@ -6881,7 +6890,7 @@ "description": "Used for hover interaction invalid form elements\n", "hiddenFromPublishing": false, "id": "VariableID:43979:250", - "key": "c39c07afa1f5c66e7a2e4fc45211ac93e2c4c20c", + "key": "e0cbff02e31caf68d7d7d098a0da9cd9fea68b45", "name": "utilities/color/icon-fill/error/400", "remote": false, "resolvedType": "COLOR", @@ -6913,7 +6922,7 @@ "description": "Used for error messages, invalid states", "hiddenFromPublishing": false, "id": "VariableID:43979:251", - "key": "f4b1c9a60d4616ed9e09cb22c7c001fa6f92bb5a", + "key": "6bb1ae1380f3ce3518beab8c0982fffddcef418e", "name": "utilities/color/error/default", "remote": false, "resolvedType": "COLOR", @@ -6943,7 +6952,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:43979:252", - "key": "3edfe8a468fefa303e53028d0b46983bfaae02ee", + "key": "a22313663e6ca79bde9ea51bcb3c8c55ec493dde", "name": "utilities/color/border/primary/default", "remote": false, "resolvedType": "COLOR", @@ -6975,7 +6984,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:253", - "key": "b97ed86ccc500b5d277e91f60a1d980a446abd84", + "key": "b93e5b83241956bdbd32ea96f9f2f49da2a52919", "name": "utilities/color/border/accent/550", "remote": false, "resolvedType": "COLOR", @@ -7007,7 +7016,7 @@ "description": "Default border color. \nUsed for sd-divider, teaser, table cell, ... sd-container,", "hiddenFromPublishing": false, "id": "VariableID:43979:254", - "key": "8e4c7fdd18f39c9ae1a5f2cc69f0e990f51dc901", + "key": "376ac7ad02c6fe642e8d09a01d2810dd860a286c", "name": "utilities/color/border/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -7039,7 +7048,7 @@ "description": "Used for form fields, switch, radio, checkbox", "hiddenFromPublishing": false, "id": "VariableID:43979:255", - "key": "402c1211bcb098a0a3ebabc4ce87ef4d72487ebc", + "key": "034a1f97e751c0c42523d28cf9a68ce9afb28713", "name": "utilities/color/border/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -7071,7 +7080,7 @@ "description": "Used for valid form fields\n", "hiddenFromPublishing": false, "id": "VariableID:43979:256", - "key": "f0f7463047766b0c219d8c4f381ab1d6546d5fec", + "key": "02b59ad396345a2910b55d11f1c2cd8a38f0a851", "name": "utilities/color/border/success/default", "remote": false, "resolvedType": "COLOR", @@ -7103,7 +7112,7 @@ "description": "Used for hover interaction invalid form elements", "hiddenFromPublishing": false, "id": "VariableID:43979:257", - "key": "ee303d00b86505b9525a84ea691a28c7d5d24697", + "key": "038e6ae879b1bc6b7c15b18452f5cefa5e7f5862", "name": "utilities/color/border/error/400", "remote": false, "resolvedType": "COLOR", @@ -7135,7 +7144,7 @@ "description": "Used for invalid form fields", "hiddenFromPublishing": false, "id": "VariableID:43979:258", - "key": "592145d7a7025b381514515e03514be9736e9a95", + "key": "6a2d10adf1ba81438d38f2ab5822e9702bce6f52", "name": "utilities/color/border/error/default", "remote": false, "resolvedType": "COLOR", @@ -7167,7 +7176,7 @@ "description": "Used for sd-container", "hiddenFromPublishing": false, "id": "VariableID:43979:259", - "key": "87b3a570f0727cc9916ab158ddfb6230ad8d6494", + "key": "c3e66a17c589643f3bfd56a950d5a99cf2ab5834", "name": "utilities/color/background/primary/100", "remote": false, "resolvedType": "COLOR", @@ -7199,7 +7208,7 @@ "description": "Used for sd-chip", "hiddenFromPublishing": false, "id": "VariableID:43979:260", - "key": "3edfdbf233551f6213b62d5a5502c2da769e5e01", + "key": "dc44e65cd2c5cc2a53f6a60d70c186e12b5797c0", "name": "utilities/color/background/primary/200", "remote": false, "resolvedType": "COLOR", @@ -7231,7 +7240,7 @@ "description": "Used for sd-chip", "hiddenFromPublishing": false, "id": "VariableID:43979:261", - "key": "bafc13463a52e799561bf1a97372d6f4d6f57689", + "key": "b802c03c5a8b5c34d83af28f44b4cc0593a8765c", "name": "utilities/color/background/primary/300", "remote": false, "resolvedType": "COLOR", @@ -7263,7 +7272,7 @@ "description": "Used for sd-chip, sd-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:262", - "key": "f3a47026e933703e8f086aff75e394d735eaa0e9", + "key": "8742ed6f671ee6434307b0f726a26efae8017da3", "name": "utilities/color/background/primary/500", "remote": false, "resolvedType": "COLOR", @@ -7295,7 +7304,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:263", - "key": "3e62c168462ce8402b0a5a37f9d5676e565b49b4", + "key": "a4ef589efe36a91a1d5113b7f6345fed74073d09", "name": "utilities/color/background/primary/800", "remote": false, "resolvedType": "COLOR", @@ -7327,7 +7336,7 @@ "description": "Inverted background color (light mode)\nUsed for button", "hiddenFromPublishing": false, "id": "VariableID:43979:264", - "key": "71df8c9347f3c44d19dc1596b842c4f760bb1253", + "key": "713161b1bea209e71fece24ef82ce771366409d7", "name": "utilities/color/background/primary/default", "remote": false, "resolvedType": "COLOR", @@ -7359,7 +7368,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:265", - "key": "2a8a3b23083288f0b5298dbc17d9f04b7e434795", + "key": "988a63474bbe668e30037900ba434d7f43c07949", "name": "utilities/color/background/accent/550", "remote": false, "resolvedType": "COLOR", @@ -7391,7 +7400,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:266", - "key": "6d27dfbb8b4a4dab6ad309423b72ade6bd44ef3c", + "key": "94747cfdd60ed733a82f3b88f42b6cc2a20604e3", "name": "utilities/color/background/info/default", "remote": false, "resolvedType": "COLOR", @@ -7423,7 +7432,7 @@ "description": "Used for notification, status-badge", "hiddenFromPublishing": false, "id": "VariableID:43979:267", - "key": "c030f2493b8247eb8486ffd184d395146e2c54e1", + "key": "f6a06b0e48ae1dc6ec2aab400a3d180f3aa56a1e", "name": "utilities/color/background/warning/default", "remote": false, "resolvedType": "COLOR", @@ -7455,7 +7464,7 @@ "description": "Used for inverted hover interaction text link and inverted pressed interaction button label", "hiddenFromPublishing": false, "id": "VariableID:43979:268", - "key": "067432c2f0fef4643eb7c341b336ba7cf6f2c2a0", + "key": "b19615adba98963c1a3b35fca2b0029adb745d7a", "name": "utilities/color/text/primary/200", "remote": false, "resolvedType": "COLOR", @@ -7487,7 +7496,7 @@ "description": "Additional text inverted color", "hiddenFromPublishing": false, "id": "VariableID:43979:269", - "key": "5ebc55b0788de67c67d250345fe7538c9f0aaf55", + "key": "fb63701d256bac04885f8fecc95e8b66861f3622", "name": "utilities/color/text/primary/400", "remote": false, "resolvedType": "COLOR", @@ -7523,7 +7532,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:270", - "key": "5c83c488eb586ab212ab12c636897420b1733315", + "key": "ca61056f78ba2b3da09f0752f60100cc4a20af26", "name": "utilities/color/text/primary/500", "remote": false, "resolvedType": "COLOR", @@ -7555,7 +7564,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:271", - "key": "93a9077e97e47f15079ae56acc94ded2aeaa6aef", + "key": "43312b7f4b70dcd4f1d77d7033202948062dffc2", "name": "utilities/color/text/primary/800", "remote": false, "resolvedType": "COLOR", @@ -7587,7 +7596,7 @@ "description": "Primary brand color for text", "hiddenFromPublishing": false, "id": "VariableID:43979:272", - "key": "f99f4016cca349031db3e706b2e66689c895c6a8", + "key": "71e57a6ed04d9ed3d75b5c936fb82e0b70d08fbb", "name": "utilities/color/text/primary/default", "remote": false, "resolvedType": "COLOR", @@ -7619,7 +7628,7 @@ "description": "Inverted text color", "hiddenFromPublishing": false, "id": "VariableID:43979:273", - "key": "ae480eb23e647e2f07292cc63c0d32cd98f885ae", + "key": "4060a0ab4ab0372453a34b8af28dff6300a34805", "name": "utilities/color/text/white/default", "remote": false, "resolvedType": "COLOR", @@ -7652,7 +7661,7 @@ "description": "Unchanged in dark mode", "hiddenFromPublishing": false, "id": "VariableID:43979:274", - "key": "70b9f744ad60838d7abf13df3c8b4449f9b817fc", + "key": "fe10896058e823ff05d8692b1462300529a879ca", "name": "utilities/color/text/white/default-constant", "remote": false, "resolvedType": "COLOR", @@ -7684,7 +7693,7 @@ "description": "Default text color", "hiddenFromPublishing": false, "id": "VariableID:43979:275", - "key": "5c07ef2a85bc84ed76a8f42cb824d74e38fabe1c", + "key": "3e470d32d9f1eee6ae3de88e3ce5dcc0458dedd1", "name": "utilities/color/text/black/default", "remote": false, "resolvedType": "COLOR", @@ -7716,7 +7725,7 @@ "description": "Used for disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:277", - "key": "9a8778b0a1478148a86de3c82921bb23e9ef3f6e", + "key": "4ace1fc8084e1ff4ff52e30094ae018a0d53532f", "name": "utilities/color/text/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -7748,7 +7757,7 @@ "description": "Additional text color, Breadcrumb item current and Video descriotion #100, 62%", "hiddenFromPublishing": false, "id": "VariableID:43979:278", - "key": "2923653711354221ca67050a3daee82c5b017651", + "key": "6f5781c7413c2409b10b951b6a14981f2e00ce1b", "name": "utilities/color/text/neutral/700", "remote": false, "resolvedType": "COLOR", @@ -7780,7 +7789,7 @@ "description": "Used to display negative performance values", "hiddenFromPublishing": false, "id": "VariableID:43979:279", - "key": "392614a382fe18ee57942e20dba6e67595bc7a97", + "key": "1fd1fdac868797d6753fe7aef1bacb28fbb09401", "name": "utilities/color/text/error/default", "remote": false, "resolvedType": "COLOR", @@ -7812,7 +7821,7 @@ "description": "Used to display positive performance values", "hiddenFromPublishing": false, "id": "VariableID:43979:280", - "key": "d5d4536a66117d6a0279337798fe9632dea9d8f1", + "key": "4902d4fe9b4959af945186333ea662dce0c5c6b2", "name": "utilities/color/text/success/default", "remote": false, "resolvedType": "COLOR", @@ -7844,7 +7853,7 @@ "description": "Used for hover interaction (dark mode)", "hiddenFromPublishing": false, "id": "VariableID:43979:281", - "key": "fee4020a9af6576d97d65ec6ed51646d3b12253b", + "key": "dca50a18b721384e8627c6a345b0500bdbc4c507", "name": "utilities/color/border/primary/500", "remote": false, "resolvedType": "COLOR", @@ -7876,7 +7885,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:282", - "key": "65d4df15124b4037032795fd7915ec1762def2c7", + "key": "90d1ca66e4c59d77d2ccd304454e1cfe66342f2a", "name": "utilities/color/border/primary/800", "remote": false, "resolvedType": "COLOR", @@ -7908,7 +7917,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:283", - "key": "10df804ce1b315cd938c30199da1982d6ab5ae46", + "key": "5b6d1c3b0dce04c63deee93787bf2656814cf9f0", "name": "utilities/color/icon-fill/risk/low", "remote": false, "resolvedType": "COLOR", @@ -7940,7 +7949,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:284", - "key": "82c9f7bd18c02356c989039481ddac349680177f", + "key": "0cc388499154f370fb356931264db817852d1293", "name": "utilities/color/icon-fill/risk/moderate", "remote": false, "resolvedType": "COLOR", @@ -7972,7 +7981,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:285", - "key": "dc2e19539e410835157fe9a8d25d6b4de2350f0c", + "key": "f69da6e4ddbe2f8f2ab1624d517e34a1f7c17d0d", "name": "utilities/color/icon-fill/risk/increased", "remote": false, "resolvedType": "COLOR", @@ -8004,7 +8013,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:286", - "key": "5566a63a049f2467a06e18f7ec8f6f4d96824245", + "key": "95049a514d39de8fc6b463c60bca7c39543386ba", "name": "utilities/color/icon-fill/risk/high", "remote": false, "resolvedType": "COLOR", @@ -8036,7 +8045,7 @@ "description": "Exclusively for marking fonds", "hiddenFromPublishing": false, "id": "VariableID:43979:287", - "key": "0c5c691724b74c92f5360dad61f1bc345c1f1b0a", + "key": "b6205be06acd30ff9cc2b690b10703c16da8332a", "name": "utilities/color/icon-fill/risk/veryhigh", "remote": false, "resolvedType": "COLOR", @@ -8068,7 +8077,7 @@ "description": "Used for inverted hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:288", - "key": "f8494ade78133eaf908b2b849a7e0e5161684ec0", + "key": "22378a1c8b987272f5167eec5c5ac72fa718d548", "name": "utilities/color/border/primary/100", "remote": false, "resolvedType": "COLOR", @@ -8100,7 +8109,7 @@ "description": "Used for inverted pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:289", - "key": "e3ce876c904b6361756c9b582caa4699fd6e5032", + "key": "29e5c36eb4ab81f7596e6f3752d9471535482949", "name": "utilities/color/border/primary/200", "remote": false, "resolvedType": "COLOR", @@ -8132,7 +8141,7 @@ "description": "Used for inverted dividers", "hiddenFromPublishing": false, "id": "VariableID:43979:290", - "key": "cd975085d31cb49051d52ffd97320b069bb3e6e7", + "key": "388084b083c66f9d9abe18d60370c228975b6306", "name": "utilities/color/border/primary/400", "remote": false, "resolvedType": "COLOR", @@ -8164,7 +8173,7 @@ "description": "Used for buttons, inverted focus state", "hiddenFromPublishing": false, "id": "VariableID:43979:293", - "key": "b7dab54dbb2d7274bd65a1857321ee411c77e489", + "key": "b411b139c7707674db8754c767414103160f4c22", "name": "utilities/color/border/white/default", "remote": false, "resolvedType": "COLOR", @@ -8196,7 +8205,7 @@ "description": "Used to highlight active/selected elements\n", "hiddenFromPublishing": false, "id": "VariableID:43979:294", - "key": "0f8c347c8fb62a24be94d3f6f063c2432959735e", + "key": "54ed95642bef58a9f0373d367f663d8dd3f2154a", "name": "utilities/color/border/accent/default", "remote": false, "resolvedType": "COLOR", @@ -8228,7 +8237,7 @@ "description": "Used for disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:295", - "key": "f613a16ae05947aea9ec6a5f4ebc4c45d6f6b9b0", + "key": "0f8c3aa75f6b24a4d9fa52b959db1a393c65fc62", "name": "utilities/color/border/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -8260,7 +8269,7 @@ "description": "Used for inverted disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:296", - "key": "9e30f258b2c0f0d2629c53c221c4751ed64863e0", + "key": "1fb8a04c3039eb428b8569fc869ad2f95dee5672", "name": "utilities/color/border/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -8292,7 +8301,7 @@ "description": "Used for inverted hover interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:299", - "key": "ab2f825f91eb7ba2f11568b0190b442732b829b1", + "key": "98ca14ec8386f7d47fb2031caa94ca1347714ce5", "name": "utilities/color/background/accent/300", "remote": false, "resolvedType": "COLOR", @@ -8324,7 +8333,7 @@ "description": "Used for cta background", "hiddenFromPublishing": false, "id": "VariableID:43979:300", - "key": "3ad1768298970cc2426092705b32478a787c2fbf", + "key": "fcdb6bc876c960a3972da4ca506c62f14a3f6b00", "name": "utilities/color/background/accent/500", "remote": false, "resolvedType": "COLOR", @@ -8356,7 +8365,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:43979:301", - "key": "084563e826fc6be5c3794ea355813abf7ddb8841", + "key": "21ef4255467c8ee9d3f381f609712aaf4164d6d9", "name": "utilities/color/background/accent/700", "remote": false, "resolvedType": "COLOR", @@ -8388,7 +8397,7 @@ "description": "Used for checkbox, switch", "hiddenFromPublishing": false, "id": "VariableID:43979:302", - "key": "b99bc39562a3eabb5dda9348b3277cf4bf02cdce", + "key": "c64a5d5139a71b86c0527a6b8cbe5487d5bf6aad", "name": "utilities/color/background/accent/default", "remote": false, "resolvedType": "COLOR", @@ -8420,7 +8429,7 @@ "description": "Used for inverted disabled state ", "hiddenFromPublishing": false, "id": "VariableID:43979:303", - "key": "a69d6cd23db786e44506eb9da42ea6d2f1b7957a", + "key": "7295476d48ceec4b060d9a1370cf3f314da58b4d", "name": "utilities/color/background/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -8452,7 +8461,7 @@ "description": "Used for badge", "hiddenFromPublishing": false, "id": "VariableID:43979:304", - "key": "daa3d6328760539153fc3f45647ad145bafce298", + "key": "e78d1111f785ba1b603e1e8f95c826b4c92ac0f0", "name": "utilities/color/background/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -8484,7 +8493,7 @@ "description": "Used for audio (wave animation)", "hiddenFromPublishing": false, "id": "VariableID:43979:305", - "key": "5dd1b70f30143dfd4f26ce27b4f8d6783e46bf07", + "key": "f70e52bbd223f0896caa97b0e78e33354187d260", "name": "utilities/color/background/_transparent/primary|10", "remote": false, "resolvedType": "COLOR", @@ -8524,7 +8533,7 @@ "description": "Used for map-marker", "hiddenFromPublishing": false, "id": "VariableID:43979:306", - "key": "bebac26c4057a9c15063ebdb15ca92ded3156233", + "key": "33509adb18bf121f022a120db5258645fca018d6", "name": "utilities/color/background/_transparent/primary|30", "remote": false, "resolvedType": "COLOR", @@ -8564,7 +8573,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43979:307", - "key": "632a16c24ef4de601aef85a91a7c6efd7bb5477a", + "key": "4f80cc75f43c2ed18bb35264cc9f17824224eaff", "name": "utilities/color/background/_transparent/primary|80", "remote": false, "resolvedType": "COLOR", @@ -8604,7 +8613,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:43979:308", - "key": "61808306a9bf578e0d2fcb5cd411e734c15568b7", + "key": "83b16b775fe4d3fb66edc5c9eca9aced5069b3a1", "name": "utilities/color/background/_transparent/primary|90", "remote": false, "resolvedType": "COLOR", @@ -8644,7 +8653,7 @@ "description": "Used for audio (wave animation inverted)", "hiddenFromPublishing": false, "id": "VariableID:43979:309", - "key": "9e2ac87cfc9b625ccb2f3a1421b4c90c35db0baa", + "key": "5e696d972de326b3fc3f9610e26fa3eb38d1c4cb", "name": "utilities/color/background/_transparent/white|20", "remote": false, "resolvedType": "COLOR", @@ -8684,7 +8693,7 @@ "description": "Used for overlays", "hiddenFromPublishing": false, "id": "VariableID:43979:310", - "key": "f05eaf7c336301818c4c860724325ce161632001", + "key": "5fe8ec6a4372ec3f8e20dca6079a4ec8c45cf3d6", "name": "utilities/color/background/_transparent/primary-800|90", "remote": false, "resolvedType": "COLOR", @@ -8724,7 +8733,7 @@ "description": "Used for inverted hover interaction button label", "hiddenFromPublishing": false, "id": "VariableID:43979:311", - "key": "d822c045f36b95a41595a331c15f2c6c1f911fd2", + "key": "51e16d3cd8480deaebb0c4ca32a42369c84b0fe7", "name": "utilities/color/text/primary/100", "remote": false, "resolvedType": "COLOR", @@ -8756,7 +8765,7 @@ "description": "Used for inverted hover interaction button label", "hiddenFromPublishing": false, "id": "VariableID:43979:312", - "key": "dcab778e98006e62c2f9bcca63d4ad4c9ca91101", + "key": "967eec86f918a58187dd529399184ae238a11c5c", "name": "utilities/color/text/accent/default", "remote": false, "resolvedType": "COLOR", @@ -8788,7 +8797,7 @@ "description": "Used for inverted disabled state", "hiddenFromPublishing": false, "id": "VariableID:43979:313", - "key": "953d346b31ed015fa8c7220ba926e57982c73399", + "key": "8a481b8cce5b47160d59cd4d272d04306e6cc656", "name": "utilities/color/text/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -8822,7 +8831,7 @@ "description": "Used for tooltip", "hiddenFromPublishing": false, "id": "VariableID:43979:314", - "key": "aedd4ad70357f8bbc63c882a23df069eb9c4285d", + "key": "d4139d796f0a150931530d67985df31b63bae1ae", "name": "utilities/shadow/default/color", "remote": false, "resolvedType": "COLOR", @@ -8862,7 +8871,7 @@ "description": "Used for error messages, invalid states", "hiddenFromPublishing": false, "id": "VariableID:43979:493", - "key": "bcf7064923787b6a9ecda8d6df80d79f15ba76f9", + "key": "21989266f261e412e9b68a20b491678283c14e5f", "name": "utilities/color/icon-fill/error/default", "remote": false, "resolvedType": "COLOR", @@ -8894,7 +8903,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:39692", - "key": "bfa8c9a392544ac39d4762960737f1365e8b781f", + "key": "26c88d345b8e7bbfdc92bceb00c6e4e293b4503a", "name": "components/sd-breadcrumb/__separator/color", "remote": false, "resolvedType": "COLOR", @@ -8926,7 +8935,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:39695", - "key": "0bd6e7b7ff86c905754340f7a254ce504fa1e82d", + "key": "10963fee5698f83c6a3aa683180f3909a6616378", "name": "components/sd-header/color/background", "remote": false, "resolvedType": "COLOR", @@ -8958,7 +8967,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:39696", - "key": "e4e3c39bf189e942cb10e2152bdc59b5daa6c8bd", + "key": "eabb04070909fa9334d790ba739a79126031171b", "name": "components/sd-tag/--selected/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -8990,7 +8999,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:39698", - "key": "888c121b1c70c0e412c8cdd87797339f20c5cf34", + "key": "1544746768e81956ac80517cb050cf5694fbbb52", "name": "components/form-control/color/border", "remote": false, "resolvedType": "COLOR", @@ -9022,7 +9031,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44023:41070", - "key": "a5b086c155047b1c3811d0e00ff0711c7ab0c74c", + "key": "0d76b77e33d5a58373ea8c9f826831a3e346a929", "name": "components/panel/color/border", "remote": false, "resolvedType": "COLOR", @@ -9060,7 +9069,7 @@ "description": "\b0px", "hiddenFromPublishing": false, "id": "VariableID:44029:1552", - "key": "e5c5db0ad392ca25d4dd017613e8aebb8dddc7b2", + "key": "7c477f855cf4ae45769f707923db412d8845b3a7", "name": "UI/sizing/0", "remote": false, "resolvedType": "FLOAT", @@ -9075,7 +9084,7 @@ "description": "4px", "hiddenFromPublishing": false, "id": "VariableID:44029:1553", - "key": "2c2b1f28d9451785f54e1f2e4401f34a49992197", + "key": "f1ce12c532bbaca0537046783dcc1dff1e1838f5", "name": "UI/sizing/1", "remote": false, "resolvedType": "FLOAT", @@ -9090,7 +9099,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:44029:1554", - "key": "a5091f77c67a853826850a993fb65ca1dac7aabd", + "key": "72877b5fa4fe283cfb7bd780ea3f5acd0c303fd9", "name": "UI/sizing/2", "remote": false, "resolvedType": "FLOAT", @@ -9105,7 +9114,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:44029:1555", - "key": "1dcbb4e13f7e0ac3e36df59f40e2092b9f37884c", + "key": "fbc64dad97f00c032fcbaa11dfa42ac789294a03", "name": "UI/sizing/3", "remote": false, "resolvedType": "FLOAT", @@ -9120,7 +9129,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:44029:1556", - "key": "81a9505d7d7285444b72a568fe193cc7d91be13c", + "key": "c0777e26fd0dadfc11a79e04d92ece890a14e504", "name": "UI/sizing/4", "remote": false, "resolvedType": "FLOAT", @@ -9135,7 +9144,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:44029:1557", - "key": "8e92aceb1c4456311eab953d3908e8f6e807bd79", + "key": "d767ffa2e169e9badde43edec5da3fb8d60e9871", "name": "UI/sizing/5", "remote": false, "resolvedType": "FLOAT", @@ -9150,7 +9159,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:44029:1558", - "key": "b7307b6070ea656577a557c288fbf034df78444a", + "key": "ac2ff8bbd33cd291d85f5a37e30c904a74f97d6e", "name": "UI/sizing/6", "remote": false, "resolvedType": "FLOAT", @@ -9165,7 +9174,7 @@ "description": "28px", "hiddenFromPublishing": false, "id": "VariableID:44029:1559", - "key": "ffd712f618fb057ea76fda336b51943bb8255621", + "key": "d1081ff26110330c57ae4dfb395f23d37575b5e7", "name": "UI/sizing/7", "remote": false, "resolvedType": "FLOAT", @@ -9180,7 +9189,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:44029:1560", - "key": "ec62c4bb2c8c10f5b0ef28e852ba3bc2e84d86f6", + "key": "60798c7cc2be0a08ba7bae05c22e43ced0d72a0e", "name": "UI/sizing/8", "remote": false, "resolvedType": "FLOAT", @@ -9195,7 +9204,7 @@ "description": "36px", "hiddenFromPublishing": false, "id": "VariableID:44029:1561", - "key": "f6ee32c97782f6294b5f2a6acce831b90a0e5560", + "key": "c5e8a584d4dc89553662e1ea644ed962818ea510", "name": "UI/sizing/9", "remote": false, "resolvedType": "FLOAT", @@ -9210,7 +9219,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:44029:1562", - "key": "a59a82bfce5a30a467daa61ad0c8f15360d40492", + "key": "33f8472f7af8cdd6fb54270164b4a51c08647d57", "name": "UI/sizing/10", "remote": false, "resolvedType": "FLOAT", @@ -9225,7 +9234,7 @@ "description": "44px", "hiddenFromPublishing": false, "id": "VariableID:44029:1563", - "key": "57b22c3947e16e85f59b857a7384dc0966d6db73", + "key": "acca30343f6cb99738923474f49a328ff39df729", "name": "UI/sizing/11", "remote": false, "resolvedType": "FLOAT", @@ -9240,7 +9249,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:44029:1564", - "key": "bc9952989a89c9426389a7319ae7f494d07b4e6e", + "key": "72c3517453ef54308beb009f01f6ef47e64e4614", "name": "UI/sizing/12", "remote": false, "resolvedType": "FLOAT", @@ -9255,7 +9264,7 @@ "description": "56px", "hiddenFromPublishing": false, "id": "VariableID:44029:1565", - "key": "319d9dacb17e72bf426c956d070c5b608dacbe73", + "key": "75a9260ea45bcbd00536930c02272accb59af8f0", "name": "UI/sizing/14", "remote": false, "resolvedType": "FLOAT", @@ -9270,7 +9279,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:44029:1566", - "key": "a1494d57d4f18658bd7bca39852be628898f86f9", + "key": "9a6143526077ff470b5f8efb0819d227f9d91eac", "name": "UI/sizing/16", "remote": false, "resolvedType": "FLOAT", @@ -9285,7 +9294,7 @@ "description": "80px", "hiddenFromPublishing": false, "id": "VariableID:44029:1567", - "key": "7b25789acf2117b767ec91d398ee35aabdc0ccfd", + "key": "a7be5fcf21995e6e77d75fc7a6a2436b969e1722", "name": "UI/sizing/20", "remote": false, "resolvedType": "FLOAT", @@ -9300,7 +9309,7 @@ "description": "96px", "hiddenFromPublishing": false, "id": "VariableID:44029:1568", - "key": "ba711f2d37fbdae8419625e4e0223966f3067a30", + "key": "9a04569e881405a36ae58f304242fb60837c212a", "name": "UI/sizing/24", "remote": false, "resolvedType": "FLOAT", @@ -9315,7 +9324,7 @@ "description": "112px", "hiddenFromPublishing": false, "id": "VariableID:44029:1569", - "key": "4e7f8769faa2003229832b2f652c79a8c7d79b1b", + "key": "a0f6d90b83f1bd9d657a117d94e9ada0cebc2905", "name": "UI/sizing/28", "remote": false, "resolvedType": "FLOAT", @@ -9330,7 +9339,7 @@ "description": "128px", "hiddenFromPublishing": false, "id": "VariableID:44029:1570", - "key": "08335bc1f79329ce36c6dfa01140438ea4875a78", + "key": "ad9b0baea8731ed1e31e8f1c680e75cbc9ba32c2", "name": "UI/sizing/32", "remote": false, "resolvedType": "FLOAT", @@ -9345,7 +9354,7 @@ "description": "144px", "hiddenFromPublishing": false, "id": "VariableID:44029:1571", - "key": "de8da0883c94e330834d8dd72d9c7692d6f3eb4d", + "key": "fedc249ada7b936d4d8bfdf96fda56da12cad887", "name": "UI/sizing/36", "remote": false, "resolvedType": "FLOAT", @@ -9360,7 +9369,7 @@ "description": "160px", "hiddenFromPublishing": false, "id": "VariableID:44029:1572", - "key": "8f8cd40fb83b4041c4c7a57343899839235b7dcf", + "key": "faebe3ad9cbb59013bf6276d876e4b598a5a785c", "name": "UI/sizing/40", "remote": false, "resolvedType": "FLOAT", @@ -9375,7 +9384,7 @@ "description": "176px", "hiddenFromPublishing": false, "id": "VariableID:44029:1573", - "key": "0db980b0d57c79f9b7859684fdc8b054437ad717", + "key": "d33b6178540db5afcd4c51946fb361136d68870f", "name": "UI/sizing/44", "remote": false, "resolvedType": "FLOAT", @@ -9390,7 +9399,7 @@ "description": "208px", "hiddenFromPublishing": false, "id": "VariableID:44029:1574", - "key": "ee677a09262cc4d9cab3f6c6c2e29e350fa24f20", + "key": "660ba5bcdab8ee53a2c1ddbbfde01c6c9d517a1f", "name": "UI/sizing/52", "remote": false, "resolvedType": "FLOAT", @@ -9405,7 +9414,7 @@ "description": "224px", "hiddenFromPublishing": false, "id": "VariableID:44029:1575", - "key": "bad128d1cf42322511ad0eaf6aeb191292db0934", + "key": "29916bbd596a2dafb92b7b5a713f0085cff64484", "name": "UI/sizing/56", "remote": false, "resolvedType": "FLOAT", @@ -9420,7 +9429,7 @@ "description": "256px", "hiddenFromPublishing": false, "id": "VariableID:44029:1576", - "key": "c147c92c2da99b6c9513c201721c6a91fed7b4ef", + "key": "b1b3350eb61f97e72006ffe005b8a24f4607cc4c", "name": "UI/sizing/64", "remote": false, "resolvedType": "FLOAT", @@ -9435,7 +9444,7 @@ "description": "288px", "hiddenFromPublishing": false, "id": "VariableID:44029:1577", - "key": "742ad520d073708af3de230000152d7411210faf", + "key": "7f8e32caecc487908926c5875aceb175e03f2a2f", "name": "UI/sizing/72", "remote": false, "resolvedType": "FLOAT", @@ -9450,7 +9459,7 @@ "description": "320px", "hiddenFromPublishing": false, "id": "VariableID:44029:1578", - "key": "5ad621d3ae1f3e78b984db81a5b5303900bae222", + "key": "e8f5d5eabd765ce6fd37b6a32f7faba093aad8ac", "name": "UI/sizing/80", "remote": false, "resolvedType": "FLOAT", @@ -9465,7 +9474,7 @@ "description": "384px", "hiddenFromPublishing": false, "id": "VariableID:44029:1579", - "key": "711a2abd24c147789e235890693ce59e41e63e85", + "key": "ffd081ae049be3e14263103afb9bdc3e6520d524", "name": "UI/sizing/96", "remote": false, "resolvedType": "FLOAT", @@ -9481,7 +9490,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:44029:1580", - "key": "1d4a59408ca790a07edbd75f463d571e7907de27", + "key": "cc1e7f9807b09bb99742f0828e0880793ce5965d", "name": "UI/text/sm", "remote": false, "resolvedType": "FLOAT", @@ -9497,7 +9506,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:44029:1581", - "key": "53e028c439df989d4c8bfda1ed5f8844dc88c88f", + "key": "a191a66d99f604389d3b2a114ec1767165de13dd", "name": "UI/text/base", "remote": false, "resolvedType": "FLOAT", @@ -9513,7 +9522,7 @@ "description": "Used for text sm compact (size: 14, line-height: 100%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1587", - "key": "932fa9b67b3ebe95e1312c3544572b06262ed50d", + "key": "dc7b6417953ac25a291a8ff319934529ee1284b4", "name": "UI/leading/3", "remote": false, "resolvedType": "FLOAT", @@ -9529,7 +9538,7 @@ "description": "Used for text sm (size: 14, line-height: 150%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1589", - "key": "53e35fce1e75d9f51dd6ad952ece1ce384da5fdb", + "key": "5c547212a892f596b06ed8dd09559480acbfa3ae", "name": "UI/leading/5", "remote": false, "resolvedType": "FLOAT", @@ -9545,7 +9554,7 @@ "description": "Used for text base (size: 16, line-height: 150%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1590", - "key": "f3bc6900d5ecfd801851b8febb76a34d32a39270", + "key": "c4d66578b823b30a20e16762d200287394355650", "name": "UI/leading/6", "remote": false, "resolvedType": "FLOAT", @@ -9561,7 +9570,7 @@ "description": "Used for mobile text lg (size: 20, line-height: 150%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1592", - "key": "f5a1fc81d367fce4434c324af61b56f06720e914", + "key": "c0cf288ed7523531945e8b973b3135102e318997", "name": "UI/leading/8", "remote": false, "resolvedType": "FLOAT", @@ -9577,7 +9586,7 @@ "description": "Used for text base (size: 16, line-height: 150%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1594", - "key": "0dca595518114be9573c32ca1713efe0b5b28287", + "key": "6833d3ac75c1e7df1be1ff43d2e294cae2e8a684", "name": "UI/leading/9", "remote": false, "resolvedType": "FLOAT", @@ -9593,7 +9602,7 @@ "description": "Used for text 3xl, mobile text 4xl (size: 32, line-height: 120%)", "hiddenFromPublishing": false, "id": "VariableID:44029:1595", - "key": "c19881cfc5eb87ca3824d9079ce78f2dbc0aac3d", + "key": "41e953b7294f4ee26784a1edbaafab1670ee4ea2", "name": "UI/leading/9,5", "remote": false, "resolvedType": "FLOAT", @@ -9608,7 +9617,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1598", - "key": "fd4c1d8e1c1ad21cb8684ada2e19a28ded27e408", + "key": "379d025544e8ecd0eb02553e61dddfa240daaa17", "name": "UI/border/border-0", "remote": false, "resolvedType": "FLOAT", @@ -9623,7 +9632,7 @@ "description": "Default border width", "hiddenFromPublishing": false, "id": "VariableID:44029:1599", - "key": "c47b5d19257f4d350fdc867957a2f42976a3b289", + "key": "0f6095d019315a87dd0974516beefbe613098a5b", "name": "UI/border/border", "remote": false, "resolvedType": "FLOAT", @@ -9638,7 +9647,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1600", - "key": "bf5491b01b1cc68ffdadad03f99ae7b349a917b7", + "key": "f0e992b47d5841d0d3c90f4db9e5afe4d99d49ec", "name": "UI/border/border-2", "remote": false, "resolvedType": "FLOAT", @@ -9653,7 +9662,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1601", - "key": "1b6bc43adb5dc0598ef6b258e8941676148f2ba1", + "key": "410e01622732636ef59903d9fc1bb5897016c397", "name": "UI/border/border-4", "remote": false, "resolvedType": "FLOAT", @@ -9668,7 +9677,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1602", - "key": "1faa72dfd5c7c3d6f2a269c478a4f585c5a23018", + "key": "f0ecde5ce317b8bf1b554bf64ae0f8ab36f7fbf7", "name": "UI/border/border-6", "remote": false, "resolvedType": "FLOAT", @@ -9683,7 +9692,7 @@ "description": "For pill buttons / shapes", "hiddenFromPublishing": false, "id": "VariableID:44029:1603", - "key": "eadcda80e43c5897fbbc257cade9de8f3c7dca24", + "key": "61c53f8221aebf6c16ac055de72f184d963176cf", "name": "UI/rounded/full", "remote": false, "resolvedType": "FLOAT", @@ -9698,7 +9707,7 @@ "description": "For pill buttons / shapes", "hiddenFromPublishing": false, "id": "VariableID:44029:1604", - "key": "a7382b4972316c9a4d00edfde2d774101aeefa9f", + "key": "e37c6960c80264ed6bc72c73837d88e80273f7d2", "name": "UI/rounded/default", "remote": false, "resolvedType": "FLOAT", @@ -9713,7 +9722,7 @@ "description": "No rounding", "hiddenFromPublishing": false, "id": "VariableID:44029:1605", - "key": "313c5fef17c6bce1d9e60ab0a2f87706362b7e2f", + "key": "e40289c64fc6db6c827080183c1300d727bec67a", "name": "UI/rounded/none", "remote": false, "resolvedType": "FLOAT", @@ -9728,7 +9737,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:44029:1606", - "key": "4de835ca59980687954af8902cf33a37627aad84", + "key": "78e43473af538a6f995b7d839ef73444fdfc5db2", "name": "UI/rounded/sm", "remote": false, "resolvedType": "FLOAT", @@ -9743,7 +9752,7 @@ "description": "6px", "hiddenFromPublishing": false, "id": "VariableID:44029:1607", - "key": "1cdbe4833402b4792bf7adef9e4bbb591b710aa8", + "key": "264d71252d2057a06ebf9c28eaf7833dc3e5fd65", "name": "UI/rounded/md", "remote": false, "resolvedType": "FLOAT", @@ -9758,7 +9767,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:44029:1608", - "key": "e489d09135b02cbc4392cd11d0956319f94922e0", + "key": "5cc51f361038532b3f2da80498976897fbf3847d", "name": "UI/rounded/\blg", "remote": false, "resolvedType": "FLOAT", @@ -9773,7 +9782,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:44029:1609", - "key": "14074d8b70f8ca3fe63fb75b1e8311e74677f4ea", + "key": "a858169fe3819d367984110ec1f524c959c08653", "name": "UI/rounded/xl", "remote": false, "resolvedType": "FLOAT", @@ -9788,7 +9797,7 @@ "description": "1px\b", "hiddenFromPublishing": false, "id": "VariableID:44029:1610", - "key": "979429454e773990dd21002e54a822c0b6adbcac", + "key": "c85fc66823bfd8e60bd224130b8eb4b004e058c0", "name": "UI/sizing/px", "remote": false, "resolvedType": "FLOAT", @@ -9803,7 +9812,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:44029:1611", - "key": "8e2e9664ba627af68ea1c787ce20dcde22b80983", + "key": "a616cd43553e5514a115f49751a4c77eb2a211c7", "name": "UI/sizing/0,5", "remote": false, "resolvedType": "FLOAT", @@ -9818,7 +9827,7 @@ "description": "\b6px", "hiddenFromPublishing": false, "id": "VariableID:44029:1612", - "key": "b2b4bac01ed3327f3928b295171fea6b465b0266", + "key": "1b09bcecbe121e5045891a4a6f63db7a2612d328", "name": "UI/sizing/1,5", "remote": false, "resolvedType": "FLOAT", @@ -9833,7 +9842,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:44029:1613", - "key": "c24d42699d33503ef9fa287c1b766b0b23018b11", + "key": "5f123703c85f5f9e6f4f95642065ea4e07884dc4", "name": "UI/sizing/3,5", "remote": false, "resolvedType": "FLOAT", @@ -9848,7 +9857,7 @@ "description": "10px", "hiddenFromPublishing": false, "id": "VariableID:44029:1614", - "key": "28293260d3823ca9d8677cda874996b8a74e14ff", + "key": "925772939bb6f23fe9ba4bd494df4cb6fc493ba5", "name": "UI/sizing/2,5", "remote": false, "resolvedType": "FLOAT", @@ -9863,7 +9872,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1615", - "key": "129fc9b991650e87b1a80cb52c7e53d9b0127902", + "key": "db34f002a093b52cd7a995dea47630cd0a0d8654", "name": "UI/opacity/opacity-0", "remote": false, "resolvedType": "FLOAT", @@ -9878,7 +9887,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1616", - "key": "9db640f6f2f5a891e2a4b47ce5e148362bab65b0", + "key": "5c90b0ffa1ae2172163aec4516ef41c2bab15d95", "name": "UI/opacity/opacity-5", "remote": false, "resolvedType": "FLOAT", @@ -9893,7 +9902,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1617", - "key": "78e9487d76f70b4c54dd439ec074e66e70f74f17", + "key": "9d631d7a4911727f307bd74fc00bc3f5813d7b81", "name": "UI/opacity/opacity-2", "remote": false, "resolvedType": "FLOAT", @@ -9908,7 +9917,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1618", - "key": "cf3381af07c8af7bba9fab1f4781e38c616f54a1", + "key": "3745df7a143412b4299853c96e12c823005f74de", "name": "UI/opacity/opacity-10", "remote": false, "resolvedType": "FLOAT", @@ -9923,7 +9932,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1619", - "key": "1678e4e4a4c9de8e17aa93b50858f5beb1256759", + "key": "84729bfacbd4bd3cd39c794f9561e585c656bdef", "name": "UI/opacity/opacity-20", "remote": false, "resolvedType": "FLOAT", @@ -9938,7 +9947,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1620", - "key": "8737c211f43a33aacd75be628d4e75cd8a2382b3", + "key": "a9bba20c779184ac09aefbcbb51aa8f50fe252d7", "name": "UI/opacity/opacity-30", "remote": false, "resolvedType": "FLOAT", @@ -9953,7 +9962,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1621", - "key": "7822c17e5da0ffe5bc4285e1d30023226bac0c60", + "key": "f8da438bd691630fe801a729ed17bc17bdf95dc8", "name": "UI/opacity/opacity-50", "remote": false, "resolvedType": "FLOAT", @@ -9968,7 +9977,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1622", - "key": "10a777d6de433ba9124af77952a9e4eaf39477b8", + "key": "90b7ea2bf33361cf684953b0b982248a98040d21", "name": "UI/opacity/opacity-55", "remote": false, "resolvedType": "FLOAT", @@ -9983,7 +9992,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1623", - "key": "88f795b9d03faec1d50aceb18ef56a7518b57c2a", + "key": "b1beba017840ad503e63a6549d835a5ccb6508f7", "name": "UI/opacity/opacity-60", "remote": false, "resolvedType": "FLOAT", @@ -9998,7 +10007,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1624", - "key": "b8e9607c999da486342b6edc1b9b9042742038e9", + "key": "984114220a9d736124cbe24617c096fa7851f85f", "name": "UI/opacity/opacity-70", "remote": false, "resolvedType": "FLOAT", @@ -10013,7 +10022,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1625", - "key": "622c67aa71992a150b97adb5c7a9cf0d242e10e1", + "key": "0cded7367e63b24f287e5028cb11caa76cc76b28", "name": "UI/opacity/opacity-75", "remote": false, "resolvedType": "FLOAT", @@ -10028,7 +10037,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1626", - "key": "64f3e8bf909cd1f92fef683b7d154dd3ba705fa2", + "key": "954d144fb59210abeb2b36fba5428a625516e974", "name": "UI/opacity/opacity-80", "remote": false, "resolvedType": "FLOAT", @@ -10043,7 +10052,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1627", - "key": "a721f8216ccb580767c16d80a665452ed49eedf7", + "key": "febf3fe8dbab79a196d32f6e02cf52cbaf5cc958", "name": "UI/opacity/opacity-85", "remote": false, "resolvedType": "FLOAT", @@ -10058,7 +10067,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1628", - "key": "55bbd77a9bd28ac31caa0c8ec1982330a84d9e51", + "key": "cdda8ff9532af9b2348fe00806395be89a5d8170", "name": "UI/opacity/opacity-90", "remote": false, "resolvedType": "FLOAT", @@ -10073,7 +10082,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1629", - "key": "326416d4dadcb43dbeabc4d9a16e471d13c79593", + "key": "d4639689bb2d42aec36c732a300a657903a06bc8", "name": "UI/opacity/opacity-100", "remote": false, "resolvedType": "FLOAT", @@ -10088,7 +10097,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1630", - "key": "3fde7fe56772cb1569e03e485fd7fef51bf6da9d", + "key": "1f24bf2dfbbcd9320fae90e4d2ed86df3dcd662b", "name": "UI/font-weight/font-normal", "remote": false, "resolvedType": "STRING", @@ -10103,7 +10112,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1631", - "key": "098c8cb0d45b74657f6ee59b7dcb56135ef107d7", + "key": "ee0a849aefea03520551ea06bfb658acf6ae17fa", "name": "UI/font-weight/font-bold", "remote": false, "resolvedType": "STRING", @@ -10118,7 +10127,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1632", - "key": "f8696849b5756fc265fae87f1f7b13de54eaa300", + "key": "b21ce22f7300abb3927049542304b99a2cd3093d", "name": "VB/font-family/font-family-primary", "remote": false, "resolvedType": "STRING", @@ -10133,7 +10142,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1633", - "key": "eaa9abc0c499407cea81d3e87fc2b013091be86e", + "key": "383c10e60b9a54860a57eec7ae005d4d2b120e3e", "name": "utilities/opacity/0", "remote": false, "resolvedType": "FLOAT", @@ -10165,7 +10174,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1634", - "key": "e6f6efabe80eb0ab85daaaef9ce7bae95a663f0c", + "key": "5bb4887c51e5ac863a3c0730aa3b33fa16733bb7", "name": "utilities/opacity/5", "remote": false, "resolvedType": "FLOAT", @@ -10194,7 +10203,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1635", - "key": "84585f8d2b110ef8819d34c4c7d0084271a9e958", + "key": "2cea95611b9721cf4330adf9fe79e0beb285526c", "name": "utilities/opacity/10", "remote": false, "resolvedType": "FLOAT", @@ -10223,7 +10232,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1636", - "key": "d635152b20aa452751ca4a7955156fdfee351b50", + "key": "b5d86f1b8c3fc540692801ea9d62e74fe35d4ab6", "name": "utilities/opacity/20", "remote": false, "resolvedType": "FLOAT", @@ -10252,7 +10261,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1637", - "key": "aea7baea26c8631bc73b279e739ae2069d5093f6", + "key": "667937d6c4d8785da051082b1acf287ae59d00f1", "name": "utilities/opacity/30", "remote": false, "resolvedType": "FLOAT", @@ -10281,7 +10290,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1638", - "key": "c3f476d1f81df6b81a486b644dfb2f4b2662ee99", + "key": "d0533c7f01afe20c660d3cd178e3ddc05ac3d63d", "name": "utilities/opacity/50", "remote": false, "resolvedType": "FLOAT", @@ -10313,7 +10322,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1639", - "key": "7e51e0ab42d14f543a2625768e177420d47d5303", + "key": "b4274609b5fcf95d49bab517423c3a314be91abe", "name": "utilities/opacity/55", "remote": false, "resolvedType": "FLOAT", @@ -10342,7 +10351,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1640", - "key": "6d39b8775e2e2ad509d7f94d4269166e19987ec2", + "key": "6ed06bf10888ce6de8880c9306f4dcec8b7dfbbd", "name": "utilities/opacity/60", "remote": false, "resolvedType": "FLOAT", @@ -10374,7 +10383,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1641", - "key": "dc39e6dcba43b41605534cad8bd4bc71bcf87d29", + "key": "8b51dc2652fa333572f9ea96e6731761ef647e0e", "name": "utilities/opacity/70", "remote": false, "resolvedType": "FLOAT", @@ -10403,7 +10412,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1642", - "key": "46159233b2f638d6187048b4f273f0c5049cd2b9", + "key": "bfe56115a4d1269f629af5c3ef2228d3a96c4df6", "name": "utilities/opacity/75", "remote": false, "resolvedType": "FLOAT", @@ -10435,7 +10444,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1643", - "key": "4d9de493bd91e58ab8d8d6f9726d9f53cccad652", + "key": "5a91d694cca00565c83d2ec6168e2d30bae42f58", "name": "utilities/opacity/80", "remote": false, "resolvedType": "FLOAT", @@ -10467,7 +10476,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1644", - "key": "c0e7cdf7e4603fd981fbca0097318a741a8efb7f", + "key": "df82195d968ec9ae4f6007fc00d127a3329e359c", "name": "utilities/opacity/\b85", "remote": false, "resolvedType": "FLOAT", @@ -10496,7 +10505,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1645", - "key": "bcfe0813ef1851e89423f22825bba54653d5b70a", + "key": "c8186a77fa342de5f11c995107cbc30d2596041b", "name": "utilities/opacity/\b90", "remote": false, "resolvedType": "FLOAT", @@ -10528,7 +10537,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1646", - "key": "ce80cee32d88f65332c719d48a67f1cece6a9090", + "key": "4c8fd5004d2366692e13b20828b5c4bab7a01c30", "name": "utilities/opacity/\b100", "remote": false, "resolvedType": "FLOAT", @@ -10560,7 +10569,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:44029:1647", - "key": "f630a94d649e1f39c3238ab15d8ac6ca837f5100", + "key": "683d39c931c9e24b425fef9d954eaf07f845a243", "name": "utilities/sizing/2", "remote": false, "resolvedType": "FLOAT", @@ -10592,7 +10601,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:44029:1648", - "key": "6b739f1e3aa9655dbe35175e2acdee2318fb6da5", + "key": "f2084c82e4299e7c37adac1753a90e8ffe5b82cf", "name": "utilities/sizing/3", "remote": false, "resolvedType": "FLOAT", @@ -10624,7 +10633,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:44029:1649", - "key": "f9df5a6165d907e022d201b2c6efc6412a6c9e32", + "key": "7eee5f0624d95e23f98b576b3f594c2f40d347fe", "name": "utilities/sizing/4", "remote": false, "resolvedType": "FLOAT", @@ -10656,7 +10665,7 @@ "description": "20px", "hiddenFromPublishing": false, "id": "VariableID:44029:1650", - "key": "0818b74f02e6e4ffec1ff93f02195d0fe2b548d6", + "key": "f1a663cfd0ae6e12f4a7349fad5f4a560370f6d0", "name": "utilities/sizing/5", "remote": false, "resolvedType": "FLOAT", @@ -10688,7 +10697,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:44029:1651", - "key": "6f61155c45639e5b2b766aa65c06cf691eabee6e", + "key": "fe7f5b89d0360d08d42b3f0d16d15ac398c57f72", "name": "utilities/sizing/6", "remote": false, "resolvedType": "FLOAT", @@ -10720,7 +10729,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:44029:1652", - "key": "ab6ab6f90593ec3841f58eb67e03317f302dde32", + "key": "b319eb47de41b21b324162395e2fc19b31d4a627", "name": "utilities/sizing/8", "remote": false, "resolvedType": "FLOAT", @@ -10752,7 +10761,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:44029:1653", - "key": "6e72ee74355849fa80525929409879a65daaebee", + "key": "1420a6233392f2b9804c806813f57242054025b3", "name": "utilities/sizing/10", "remote": false, "resolvedType": "FLOAT", @@ -10784,7 +10793,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:44029:1654", - "key": "1d7ef86412e2b4dffe455cc325cb2d284d3d9c62", + "key": "8fafb4b9268aa10986aaa9c4514e186d6c37e70b", "name": "utilities/sizing/12", "remote": false, "resolvedType": "FLOAT", @@ -10816,7 +10825,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:44029:1655", - "key": "278a5641b0df40649117aba41ffc17d4c8cee7e2", + "key": "cc136bb8146690a55b7fec332a52c380c5dda6a4", "name": "utilities/sizing/16", "remote": false, "resolvedType": "FLOAT", @@ -10848,7 +10857,7 @@ "description": "96px", "hiddenFromPublishing": false, "id": "VariableID:44029:1656", - "key": "77352023656d5434baf8d430d4b0a0b2d5d0ccda", + "key": "b0de580aa9ded52e07daf9cc703e18ff6cc451fe", "name": "utilities/sizing/24", "remote": false, "resolvedType": "FLOAT", @@ -10880,7 +10889,7 @@ "description": "10px", "hiddenFromPublishing": false, "id": "VariableID:44029:1657", - "key": "d84982c899e9c5d6ef6c4451fd5badc9c1ce2235", + "key": "97edd14b13fbf725a2c017cf07898ce2708af518", "name": "utilities/sizing/2,5", "remote": false, "resolvedType": "FLOAT", @@ -10912,7 +10921,7 @@ "description": "4px", "hiddenFromPublishing": false, "id": "VariableID:44029:1658", - "key": "d21fc67f127ffad5529c451b76e747c4252d072a", + "key": "ffe708cde413bc1244ab9c8ab3107f3686d3a4d4", "name": "utilities/spacing/1", "remote": false, "resolvedType": "FLOAT", @@ -10944,7 +10953,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:44029:1659", - "key": "45a1bae3e06e98b819764122a0807cfc8bbb9b00", + "key": "58b36ac18c1e7046a9242f6e49aaee4e195b60f3", "name": "utilities/spacing/2", "remote": false, "resolvedType": "FLOAT", @@ -10976,7 +10985,7 @@ "description": "12px", "hiddenFromPublishing": false, "id": "VariableID:44029:1660", - "key": "107905365235871606a196e2ff8090413c618475", + "key": "4a770a63ae4053df17e4e8f25434881d52df6143", "name": "utilities/spacing/3", "remote": false, "resolvedType": "FLOAT", @@ -11008,7 +11017,7 @@ "description": "16px", "hiddenFromPublishing": false, "id": "VariableID:44029:1661", - "key": "be244003d0cde449ae27e7e2ed43dd42a77f61b7", + "key": "a8962328af59dfaec273be7b017fdd2aaadd6d8e", "name": "utilities/spacing/4", "remote": false, "resolvedType": "FLOAT", @@ -11040,7 +11049,7 @@ "description": "24px", "hiddenFromPublishing": false, "id": "VariableID:44029:1662", - "key": "a22b8c9ca0668e56371b7b6cff11fed71f9efd1d", + "key": "eaaaca6a3dbef50ff9d19dbc0dfaa74fb82b4325", "name": "utilities/spacing/6", "remote": false, "resolvedType": "FLOAT", @@ -11072,7 +11081,7 @@ "description": "32px", "hiddenFromPublishing": false, "id": "VariableID:44029:1663", - "key": "39b1007b35cddf50cfea0d3c6ce6e02779063c9e", + "key": "fa83a30d69cf57ad06d2dece94e8803773c50c4f", "name": "utilities/spacing/8", "remote": false, "resolvedType": "FLOAT", @@ -11104,7 +11113,7 @@ "description": "40px", "hiddenFromPublishing": false, "id": "VariableID:44029:1664", - "key": "cccbf4d7784c62e4c5fb74bf94849b2f692efaa7", + "key": "30b90d7ebd30fdb602adea021361821945d19100", "name": "utilities/spacing/10", "remote": false, "resolvedType": "FLOAT", @@ -11136,7 +11145,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:44029:1665", - "key": "445d81bd946ef54846c37719b2c28268fba20d9b", + "key": "d48060d8709c9894233e3eb253544c4a53b4b30b", "name": "utilities/spacing/12", "remote": false, "resolvedType": "FLOAT", @@ -11168,7 +11177,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:44029:1666", - "key": "b97665d45cd0e15fab2982be222440a8114dec2c", + "key": "eabdccb562ee753d9f7fad41a4b3bbed3addef48", "name": "utilities/spacing/16", "remote": false, "resolvedType": "FLOAT", @@ -11200,7 +11209,7 @@ "description": "80px", "hiddenFromPublishing": false, "id": "VariableID:44029:1667", - "key": "6299f7a2d33485058f854ea5bc3e293ad92a95a3", + "key": "b93734847af2b8f91b49abef96ee041d2c63c1a3", "name": "utilities/spacing/20", "remote": false, "resolvedType": "FLOAT", @@ -11232,7 +11241,7 @@ "description": "96px", "hiddenFromPublishing": false, "id": "VariableID:44029:1668", - "key": "822d68310f23844cc1b8ebd27e14b41bfbe0aaf5", + "key": "0589bc9fb8ec360d688da787c00b61e7903da751", "name": "utilities/spacing/24", "remote": false, "resolvedType": "FLOAT", @@ -11264,7 +11273,7 @@ "description": "128px", "hiddenFromPublishing": false, "id": "VariableID:44029:1669", - "key": "83b6b870459f3fbefc246a01cbdee325138d5091", + "key": "3ed72408334fcac16fd6b663210b46e6e2bde8aa", "name": "utilities/spacing/32", "remote": false, "resolvedType": "FLOAT", @@ -11296,7 +11305,7 @@ "description": "160px", "hiddenFromPublishing": false, "id": "VariableID:44029:1670", - "key": "2c15912d7bb3fb79be0d6020ec81c0cbc25740be", + "key": "f7668a5e28138d1acdfa103bb9d13afbd3dae22c", "name": "utilities/spacing/40", "remote": false, "resolvedType": "FLOAT", @@ -11328,7 +11337,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:44029:1671", - "key": "638216e2c5bd0702b28f6c7a51bc4794b37face2", + "key": "bfac2251a74dcc084d41166160de5c86c30da3e9", "name": "utilities/spacing/0,5", "remote": false, "resolvedType": "FLOAT", @@ -11360,7 +11369,7 @@ "description": "1px", "hiddenFromPublishing": false, "id": "VariableID:44029:1672", - "key": "8c8c8e10fe5e85a456d80d7fc866f80675071376", + "key": "e9da328ab6677a66b16de109dfae412420dd138d", "name": "utilities/spacing/0,25", "remote": false, "resolvedType": "FLOAT", @@ -11392,7 +11401,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1673", - "key": "53a194cd9851871036f0edeee777a2f6dfb6e9c1", + "key": "772a621e47e68fcc3a30c3039fd783813a8fb783", "name": "utilities/spacing/1,5", "remote": false, "resolvedType": "FLOAT", @@ -11424,7 +11433,7 @@ "description": "4px Default radius for buttons", "hiddenFromPublishing": false, "id": "VariableID:44029:1674", - "key": "d4709dedb538400cd65d5e9afa0ee6eb19f54b46", + "key": "58ecda55f99c80bd6d06db8b5ccd65c2eebee1bb", "name": "utilities/rounded/default", "remote": false, "resolvedType": "FLOAT", @@ -11456,7 +11465,7 @@ "description": "2px", "hiddenFromPublishing": false, "id": "VariableID:44029:1675", - "key": "17c7026d178c09d27ce1fb603e3ed1c07d4bc4fb", + "key": "93a00025b40bf2bc2554fc2de8715692beb29c77", "name": "utilities/rounded/sm", "remote": false, "resolvedType": "FLOAT", @@ -11488,7 +11497,7 @@ "description": "6px Inner focus outline", "hiddenFromPublishing": false, "id": "VariableID:44029:1676", - "key": "66bdf7ff2d85a713e9253614d4eefc759d135ceb", + "key": "a607ae13317daefc8b3f5e4e24e02a2544201470", "name": "utilities/rounded/md", "remote": false, "resolvedType": "FLOAT", @@ -11520,7 +11529,7 @@ "description": "8px Outer focus outline", "hiddenFromPublishing": false, "id": "VariableID:44029:1677", - "key": "6c40763b71d7919b53d7336ba1f9e334e1ca9665", + "key": "2be5caa70dfc6c968d51a3d30cc6c6ff44cc2c97", "name": "utilities/rounded/lg", "remote": false, "resolvedType": "FLOAT", @@ -11552,7 +11561,7 @@ "description": "Radius for pill shape buttons", "hiddenFromPublishing": false, "id": "VariableID:44029:1678", - "key": "691b39e01de5eea6aea5902f31b1ce412c724fad", + "key": "d2a091e7a616d0e0ff77f1fa1f0cfcb48674add0", "name": "utilities/rounded/full", "remote": false, "resolvedType": "FLOAT", @@ -11584,7 +11593,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1679", - "key": "b34c06f6d386abcbc00134f03406fb84d0f1fb29", + "key": "18fd1538958e858a5d695ab766fb7470224f151a", "name": "utilities/rounded/none", "remote": false, "resolvedType": "FLOAT", @@ -11616,7 +11625,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1681", - "key": "0fd82dd015c469866a13986acf85213f0de7781a", + "key": "5296b42824ec2d8dbde09004b2db22741a19d651", "name": "utilities/border-width/2", "remote": false, "resolvedType": "FLOAT", @@ -11648,7 +11657,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1682", - "key": "a1d8f6c5529e7da4104e4d8fac6c8bd0fcadef3a", + "key": "4fa4856170db6e9499b449d8f53bc90a285160d6", "name": "utilities/border-width/4", "remote": false, "resolvedType": "FLOAT", @@ -11680,7 +11689,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1683", - "key": "8506edf8435d6afa9ca9bff28ba8773ea5a639a3", + "key": "53ec712cf503fc0b9caac867ba463bceab6023e4", "name": "utilities/border-width/6", "remote": false, "resolvedType": "FLOAT", @@ -11712,7 +11721,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1684", - "key": "eb136d049f326fa54c6e167246ed2ad41d1ff115", + "key": "2c1838958ee84d798570f50e7b889b4b02befcf7", "name": "utilities/border-width/default", "remote": false, "resolvedType": "FLOAT", @@ -11744,7 +11753,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44029:1685", - "key": "d4b37b365ccfd2760f5b84f323bed6cc4c540b0a", + "key": "44351a43dea67bf58b8a0f82f059f110e45a2403", "name": "utilities/font-family/primary", "remote": false, "resolvedType": "STRING", @@ -11776,7 +11785,7 @@ "description": "Used for disabled state breadcrumb", "hiddenFromPublishing": false, "id": "VariableID:44032:68245", - "key": "1085b71400b487a4428f521db8dd65cbc9e1d547", + "key": "416acf80e8b6c4c4313e5c91b9302384bb0574fd", "name": "utilities/color/icon-fill/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -11808,7 +11817,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64020", - "key": "7c16cf9956d3bb10b7f29ec67b56463f94d4236b", + "key": "0435666c9142df463d32c03032b1d4418816f6a9", "name": "components/sd-button/--primary/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -11840,7 +11849,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64186", - "key": "aee4db3a6b665581c4f1d456996f041dfe0b21e9", + "key": "94283be166214424e5d3e3afe115951ebdab61e6", "name": "components/sd-button/--secondary/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -11872,7 +11881,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64197", - "key": "8ce5ef0f81d677b65445868c636c98d54aa5505a", + "key": "682ecb5034eafc91af16bddd53355a274e6f1d25", "name": "components/sd-button/--primary/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -11904,7 +11913,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64199", - "key": "086b29fd0c7d608f06dc484610e44702280a2d0a", + "key": "1532bff55848290556483220dafb085c3ce94bbd", "name": "components/sd-button/--secondary/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -11936,7 +11945,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44271:64200", - "key": "f7a683bfc1487780c9ee1dfa9b79cb0fbb4709ce", + "key": "4d91a7c432976e90e35a59f170607f6f24af3fab", "name": "components/sd-button/--tertiary/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -11969,7 +11978,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44283:64315", - "key": "76a616579a4463d3e8a0a53ddac6106ed84af529", + "key": "8233f063dad1eaf10c60ba7626cea178972f2c96", "name": "components/sd-button/--secondary/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -12001,7 +12010,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44283:64318", - "key": "57f57731db4780aedf07d11d382a358fa4bee2ce", + "key": "2fad624670ae2d4efac6934a0849ec2810cf66ef", "name": "components/sd-button/--tertiary/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -12033,7 +12042,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44283:64319", - "key": "35ccb02535b869e54ae1b221e7d0bbaeaeb36629", + "key": "a8d6978d4130488041bf468fa8d37d7652214dcb", "name": "components/sd-button/--tertiary/--inverted/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -12065,7 +12074,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44283:66900", - "key": "d2b20d8fc3733dfb29f135275da12b3ef2535faf", + "key": "8b5993f45b01109a82098526015e3c94e11686af", "name": "components/sd-footnotes/--target/--inverted/color/background", "remote": false, "resolvedType": "COLOR", @@ -12097,7 +12106,7 @@ "description": "Used for sd-link & sd-interactive", "hiddenFromPublishing": false, "id": "VariableID:44294:66968", - "key": "7ab103b271853d11828571c254572387f160dab5", + "key": "3be4ea0f5988e5472c5de75edaefec5756d0ebc4", "name": "components/interactive/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -12129,7 +12138,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68046", - "key": "6fbd39626b9b92637de31ade8bf3c1c9b07c0d67", + "key": "d08bfc219d7eb474d3dc048626ea3af2a689e689", "name": "components/sd-button/--primary/--inverted/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -12161,7 +12170,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68048", - "key": "9cbb2d02298eb4a9c2c19b3ac4a7f70a4307de44", + "key": "74587eab40c68392ca9ac3379a7a9c81d69e8668", "name": "components/sd-button/--primary/--inverted/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -12193,7 +12202,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68555", - "key": "25977a4c2c31947da54a53fdc0f3b066d5c290f5", + "key": "ed34a10ba635cec5b07f29489196304f91ef0192", "name": "components/sd-button/--primary/--inverted/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -12225,7 +12234,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68556", - "key": "399a8fcc44620ff84b32c7fa4bf70b7d3c99c702", + "key": "8349fb6f5585e388a30f4dfeaf654998afd88814", "name": "components/sd-button/--primary/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -12257,7 +12266,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:44300:68558", - "key": "31a5d5222c7a2badc70e18ebcfe738206ac54cc9", + "key": "4dd2b0b62692d8813e428cecde4f9fba3ba5e4b7", "name": "components/sd-button/--primary/--inverted/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -12289,7 +12298,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44300:68643", - "key": "65a8aa4e4b62aa7c9d93986097ddf2058423317e", + "key": "2b2a7d062cea648aeea2a7958d5ceae2eb3dffeb", "name": "components/sd-button/--secondary/--inverted/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -12321,7 +12330,7 @@ "description": "sd-button's left right padding (except for icon-only & loading variant)", "hiddenFromPublishing": false, "id": "VariableID:44300:68678", - "key": "e008b4506970545e2858f69abab0b192a10dc12c", + "key": "c7668982e4327809d75b6f644ce09b9c057efd42", "name": "components/sd-button/padding-inline", "remote": false, "resolvedType": "FLOAT", @@ -12353,7 +12362,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44318:23033", - "key": "4a14a8798c292cfe193ea729b071d30bfff5c3e1", + "key": "c316014ca3e508261999cfbd80a451c59f9a7c6a", "name": "components/sd-flag/--neutral-500/color/background", "remote": false, "resolvedType": "COLOR", @@ -12387,7 +12396,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44318:24450", - "key": "1953d85138da096ed84acc356147df3c9372fca3", + "key": "c2672d2a40fc6194a6e6ddd906cbc09757d18411", "name": "_todo/sd-tag/--tmplt/--default/color/border", "remote": false, "resolvedType": "COLOR", @@ -12419,7 +12428,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44318:24451", - "key": "ec1c1771d5f2994a3bccadb04aef1b5d4af292f3", + "key": "f8772f87320c7970375220fea98b7194fcd9c222", "name": "_todo/sd-tag/--tmplt/--selected/color/border", "remote": false, "resolvedType": "COLOR", @@ -12451,7 +12460,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44318:24496", - "key": "32dc81414aeb4905c03a711b0b753178ad7fae64", + "key": "8bf5bdd51205ea567412b3545463d3c6549f47f7", "name": "_todo/sd-tag/--tmplt/--selected/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -12483,7 +12492,7 @@ "description": "64px", "hiddenFromPublishing": false, "id": "VariableID:44318:2769", - "key": "48b30c1e243642f0e7ff09821c21f56ab253bc39", + "key": "ab43ea7323126647041e6205b942b01758adee50", "name": "utilities/sizing/20", "remote": false, "resolvedType": "FLOAT", @@ -12515,7 +12524,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4885", - "key": "efb16e30a8a9067ce9d15a6b13fa9b484001f849", + "key": "e327aea8bf69a269f2ef39d22bd461c29dc232bf", "name": "utilities/shadow/default/y", "remote": false, "resolvedType": "FLOAT", @@ -12535,7 +12544,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4886", - "key": "146f3a35d89b00e4ffdaca68eeb2691fa4943f21", + "key": "72fca02749cf7ed2365f7e17dccfa353b8bee9d9", "name": "utilities/shadow/default/blur", "remote": false, "resolvedType": "FLOAT", @@ -12555,7 +12564,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4887", - "key": "5b84d24f672900916d49fbf9ae9b63831a078311", + "key": "e2243654498452e1429dbb96bef6e035a8409fe7", "name": "utilities/shadow/sm/y", "remote": false, "resolvedType": "FLOAT", @@ -12575,7 +12584,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4888", - "key": "d84e3ab099588a8364c978615ca3dc77b0378594", + "key": "53ebd5900b32eca5936bfe3e4c2770fe4ee930ae", "name": "utilities/shadow/sm/spread", "remote": false, "resolvedType": "FLOAT", @@ -12595,7 +12604,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4889", - "key": "7fc87a50f1ea70d1ea8b0a5a548691023a42693f", + "key": "b3d797a08370fdf6648ea724ede86ba8f2e3e4d0", "name": "utilities/shadow/sm/x", "remote": false, "resolvedType": "FLOAT", @@ -12615,7 +12624,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44336:4890", - "key": "759b1f005c98c2a3273954e83d2e91bda71fd311", + "key": "1333753ceb5ad1b3bdb91048aecbf72fff09a01d", "name": "utilities/shadow/sm/blur", "remote": false, "resolvedType": "FLOAT", @@ -12635,7 +12644,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5060", - "key": "1f8b01f05cfa31321e88e1793974a539abd5fccd", + "key": "68d37712bba9402bf219636e0faff2b35c080d4b", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/0%", "remote": false, "resolvedType": "COLOR", @@ -12675,7 +12684,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5061", - "key": "3af6be35815282057f9d7925d23ee76e886dea8b", + "key": "a924be2127f7e8e0d315aa651eeabed9e66c9b08", "name": "utilities/color/background/_gradient/neutral-800/40%", "remote": false, "resolvedType": "COLOR", @@ -12715,7 +12724,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5062", - "key": "fdb74ceaef7d486f266021cf69391abc80b4dd48", + "key": "2999411c17d2b7ba90647701f0f46a9111eed6f9", "name": "utilities/color/background/_gradient/neutral-800/0%", "remote": false, "resolvedType": "COLOR", @@ -12755,7 +12764,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5063", - "key": "37f24e81afb386283b1cadf543fbfd32c99146d3", + "key": "f1692902f0642838e5164e365bd72ac65b5c37c5", "name": "utilities/color/background/_gradient/neutral-800/10%", "remote": false, "resolvedType": "COLOR", @@ -12795,7 +12804,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5064", - "key": "5950d82765ccd95455a31d94a08ca68f9b5292cd", + "key": "6673d22c7becf96ba913ba59a097e7e1eea2661c", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/60%", "remote": false, "resolvedType": "COLOR", @@ -12835,7 +12844,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5065", - "key": "3e4966cf2df5417b93c3327b435f38d92a9790c1", + "key": "5a1fdd4f9cd4e6b0c625897e9a9b415a0cfce5ed", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/5%", "remote": false, "resolvedType": "COLOR", @@ -12875,7 +12884,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5066", - "key": "285d1b283a167b07bb8a44c6165852fc078a2d0c", + "key": "c2baf881c2e89a2cea39279acd5afdf465341d3f", "name": "utilities/color/background/_gradient/components/informational/gradient/--primary-800/background/color/60%", "remote": false, "resolvedType": "COLOR", @@ -12915,7 +12924,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5067", - "key": "c61275a6e79736352c5c7973f472ee481004cc02", + "key": "895ee44ca5f7fe9155c003c7511aa3b03537a690", "name": "utilities/color/background/_gradient/components/informational/gradient/--primary-800/background/color/75%", "remote": false, "resolvedType": "COLOR", @@ -12955,7 +12964,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5068", - "key": "65305b0d7e12918bdc2c52e2f5383f6cdd7bac43", + "key": "e5819af607078e586d958efe5cce0bea76ff36b4", "name": "utilities/color/background/_gradient/components/informational/gradient/--primary-800/background/color/0%", "remote": false, "resolvedType": "COLOR", @@ -12995,7 +13004,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5069", - "key": "febece3832a1ceb16d013a9e44aa555a7bf3a9cb", + "key": "2367e3796270849165a3f1c0a28a58b4ed850ed8", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/75%", "remote": false, "resolvedType": "COLOR", @@ -13035,7 +13044,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:44336:5070", - "key": "a3f462e5c4f87eb06c13c5b1cfe020267115fc0d", + "key": "3f1ece7b42d8bc40e3b851a56e5ef90d01d2464a", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/80%", "remote": false, "resolvedType": "COLOR", @@ -13075,7 +13084,7 @@ "description": "Deprecated?", "hiddenFromPublishing": true, "id": "VariableID:44612:686", - "key": "2d5c160bc74ccfde75ae9d2c6e3dd7255596bcad", + "key": "9a71c448fff6af60964c1229705111224c8a9311", "name": "components/sd-header/color/_shadow", "remote": false, "resolvedType": "COLOR", @@ -13115,7 +13124,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44625:20357", - "key": "8dd82451a5329fee24211a0dd50533d683209672", + "key": "3d6bfc22cd185cb090bc02ac74b7dbe8492d47eb", "name": "components/sd-button/--primary/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -13147,7 +13156,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44650:19862", - "key": "6739f6a0fcbe0a1306bb4b48d44c869a294a53b6", + "key": "53f25b711ebedd9ad4d5d6406fa8bc84eb890e17", "name": "components/sd-tag/--selected/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -13181,7 +13190,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44650:36908", - "key": "cf67bd90cc7b472aadd474a683d34b530810e295", + "key": "79f91bcd0fa9cdf20924888444d6bba657d46129", "name": "components/sd-brandshape/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -13198,12 +13207,16 @@ "type": "VARIABLE_ALIAS" }, "44883:0": { - "id": "VariableID:43373:35293", - "type": "VARIABLE_ALIAS" + "a": 0, + "b": 1, + "g": 1, + "r": 1 }, "47719:0": { - "id": "VariableID:43373:35293", - "type": "VARIABLE_ALIAS" + "a": 0, + "b": 1, + "g": 1, + "r": 1 } }, "variableCollectionId": "VariableCollectionId:43174:55999" @@ -13213,7 +13226,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44650:37065", - "key": "6342f2f9e82014695c658d35bde1c629b30eb803", + "key": "f9c2fcb520eb54a00955413b7a27c509eee65b7f", "name": "components/sd-brandshape/--neutral-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -13230,12 +13243,16 @@ "type": "VARIABLE_ALIAS" }, "44883:0": { - "id": "VariableID:43373:35301", - "type": "VARIABLE_ALIAS" + "a": 0, + "b": 1, + "g": 1, + "r": 1 }, "47719:0": { - "id": "VariableID:43373:35301", - "type": "VARIABLE_ALIAS" + "a": 0, + "b": 1, + "g": 1, + "r": 1 } }, "variableCollectionId": "VariableCollectionId:43174:55999" @@ -13245,7 +13262,7 @@ "description": "Used for overlays", "hiddenFromPublishing": false, "id": "VariableID:44677:46587", - "key": "775e4d10889cae71573303b04bee751b14e7e497", + "key": "bde2c32d8f089dcbb3b949f3e31c1c72417130b2", "name": "components/overlay/color/background", "remote": false, "resolvedType": "COLOR", @@ -13285,7 +13302,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44762:16901", - "key": "53d43cf740406c0c26217cf784a5d4bf61a541d1", + "key": "39054ad3d36e489b1af47dc56777aa9da0127049", "name": "components/sd-button/--primary/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -13317,7 +13334,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44837:15833", - "key": "fde333e00596ed6f139c1c1a28386b3c8878bac3", + "key": "367731e0706593feb90e47c9a32a37a00b1bfdba", "name": "components/informational/gradient/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -13349,7 +13366,7 @@ "description": "code only", "hiddenFromPublishing": false, "id": "VariableID:44837:7261", - "key": "e3f42edc6b205e0fc08d3369c4f5b45e01820680", + "key": "6b93f5022ad920452a9daf22fdb2cfaf6ceaf6a2", "name": "components/informational/gradient/--primary-800/color/background", "remote": false, "resolvedType": "COLOR", @@ -13385,7 +13402,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:20780", - "key": "28c4b97217478aa38d5e73197f9f4567e5302291", + "key": "66ad837fe03a51cc08066f828b69a59cb279d908", "name": "components/sd-button/--size/md/font-size", "remote": false, "resolvedType": "FLOAT", @@ -13417,7 +13434,7 @@ "description": "Top bottom padding for sd-button md variant", "hiddenFromPublishing": false, "id": "VariableID:44883:24608", - "key": "287cff68bec7f2c09e35dd6aa5356434675d56aa", + "key": "53025e58a5dce1d54a578224df34f3c2abd87157", "name": "components/sd-button/--size/md/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -13450,7 +13467,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:24906", - "key": "4162a621f09dc643a5a50b52beb6b58b3b9e2cf8", + "key": "673b64ebc71624e7eebae53adac9f41f281f6399", "name": "components/sd-button/--size/md/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -13482,7 +13499,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:47306", - "key": "49b32f2d7b20d94e792f306722d632e7343afa12", + "key": "84563b1e5370867f275872050421b1bed1a8f461", "name": "VB/status/success", "remote": false, "resolvedType": "COLOR", @@ -13502,7 +13519,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:47307", - "key": "c73dd25a8952d74f31fa711e976b8516b5e284c3", + "key": "aefa125c14a3d91c5db3b883e3bdb3cd0c1b6352", "name": "VB/status/error", "remote": false, "resolvedType": "COLOR", @@ -13522,7 +13539,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44883:47308", - "key": "997058e84d530591c306aad7021e3fb1b23f09de", + "key": "00091d553aa14801dc457e9c5511d2c28d75610d", "name": "VB/status/warning", "remote": false, "resolvedType": "COLOR", @@ -13542,7 +13559,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19938", - "key": "947a56eadb3c4a8c37c5037840506cb688edb40a", + "key": "b77d8c571254efc3de757ae3ff0ba3552aac5a35", "name": "VB/vermillion/50", "remote": false, "resolvedType": "COLOR", @@ -13562,7 +13579,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19939", - "key": "08eb847391204883693c286a2f09755489805329", + "key": "d26d3e6db462cbf084d3a46a1e61a110d7f96a12", "name": "VB/vermillion/100", "remote": false, "resolvedType": "COLOR", @@ -13582,7 +13599,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19940", - "key": "b4e4fe55116959378393b831fabb54f7254c29a7", + "key": "f6ea3e8a3f9fb1b741b51a1d4ece63d802d334be", "name": "VB/vermillion/200", "remote": false, "resolvedType": "COLOR", @@ -13602,7 +13619,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19941", - "key": "965406f60b81e55def39fecfec2175121d8761aa", + "key": "93436d6d930a7578307e7acb53686d62af316516", "name": "VB/vermillion/300", "remote": false, "resolvedType": "COLOR", @@ -13622,7 +13639,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19942", - "key": "0d81b0168821c4f0f08842f429c32e68102b748e", + "key": "5f6ee878c2b4e1fed42176ee6be800e4e2238893", "name": "VB/vermillion/400", "remote": false, "resolvedType": "COLOR", @@ -13642,7 +13659,7 @@ "description": "Generated with https://www.tints.dev/palette/v1:cnVieXxGMzVFMDF8NTAwfHB8NXwtNHwxM3w5Mnxt", "hiddenFromPublishing": false, "id": "VariableID:44917:19943", - "key": "d2b43292ad970b1b1a3a7b829eb96d60fcacf201", + "key": "f8e4e9c9cec4c4daf286af3d7e445a6b45805d43", "name": "VB/vermillion/500", "remote": false, "resolvedType": "COLOR", @@ -13662,7 +13679,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19944", - "key": "a04bf4d213ad5e01bd69d342385735f9ba703fd2", + "key": "872e051bfaed1bc8d370f5b53df7ae33b88621a3", "name": "VB/vermillion/600", "remote": false, "resolvedType": "COLOR", @@ -13682,7 +13699,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19945", - "key": "389bf7b1ab0883df3cb7928352c0dac455f6f353", + "key": "6c31e19db9642cfcbdb53b20b361832866773245", "name": "VB/vermillion/700", "remote": false, "resolvedType": "COLOR", @@ -13702,7 +13719,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19946", - "key": "72d24c2067494638daa828b0bc12eada9cf954a7", + "key": "39a1854943a598822d36907669ced7f63706abee", "name": "VB/vermillion/800", "remote": false, "resolvedType": "COLOR", @@ -13722,7 +13739,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19947", - "key": "c973de69eab0a51cee9fbbbe60449714b0b8859f", + "key": "93ee2e8c0fd4e7ae60253365e264a96eec654bc1", "name": "VB/vermillion/900", "remote": false, "resolvedType": "COLOR", @@ -13742,7 +13759,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:19948", - "key": "a4ca6c5c4fa017dd1456c5293028e816f4d1389d", + "key": "055e3d19a0369eae5b2da79c9e0af12749fbb34c", "name": "VB/vermillion/950", "remote": false, "resolvedType": "COLOR", @@ -13762,7 +13779,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20144", - "key": "e4cd5d1f44e76d5588ef6b7cd63f9e3534949ddf", + "key": "e507329761136a8651a0a4884169900a2d0c5301", "name": "VB/black", "remote": false, "resolvedType": "COLOR", @@ -13782,7 +13799,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20145", - "key": "990fb9c4ce55cd9860a48a1a2587de7379c74671", + "key": "3f8a7030fd5c96a310616e3dae01ed942b67ef54", "name": "VB/grey/620", "remote": false, "resolvedType": "COLOR", @@ -13802,7 +13819,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20154", - "key": "5db147f99547fa7ae2c61bc821512293e2938353", + "key": "769ec913b39e4bc88b0003cfc84deb3302c5399b", "name": "VB/white/default", "remote": false, "resolvedType": "COLOR", @@ -13822,7 +13839,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20155", - "key": "54d8f6d9db9bbed7a3e6fa33fe31d060be4243cd", + "key": "2746484b1919a8647ce7c4160473b3c58ba028ba", "name": "VB/status/success-bg-alternative", "remote": false, "resolvedType": "COLOR", @@ -13842,7 +13859,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20156", - "key": "7a2a752a899d8bf49643b52f12951c91b891bc1d", + "key": "2accd5a40f512b1c6691b4c6fd24e7adcafd7c0f", "name": "VB/status/error-bg", "remote": false, "resolvedType": "COLOR", @@ -13862,7 +13879,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44917:20158", - "key": "659212f171deeeb1328b08d64f9d3e1d6e4f5b46", + "key": "0f176ac52e1bf875ae5ca836fa04919fcbec6442", "name": "VB/status/warning-bg", "remote": false, "resolvedType": "COLOR", @@ -13882,7 +13899,7 @@ "description": "", "hiddenFromPublishing": true, "id": "VariableID:44921:10563", - "key": "e5f4bc1f5a86ad9dffa6bf0e907a6755a27a189b", + "key": "fefdb7faf5bb4837b5b4392faf241aded2d830ad", "name": "components/sd-button/--size/lg/icon/height", "remote": false, "resolvedType": "FLOAT", @@ -13914,7 +13931,7 @@ "description": "F5F7F9 100%", "hiddenFromPublishing": false, "id": "VariableID:44921:14699", - "key": "735fcb74246dea97f97e56fc798a810ffb935b3a", + "key": "4e6343d1db5b180a84b3c9b352b4ebaf9146162f", "name": "VB/grey/50", "remote": false, "resolvedType": "COLOR", @@ -13934,7 +13951,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14700", - "key": "d2916ee1dcfdf5c18fb9595fbc2832c1cfb89c46", + "key": "1da3acf0da0f0e380eee327d2a96cc6a51f4733d", "name": "VB/grey/100", "remote": false, "resolvedType": "COLOR", @@ -13954,7 +13971,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14701", - "key": "88efc5b6bd08d487430ef9de4e13ead5240200dd", + "key": "4681388cd58c89c2099cf894e628de44dd52d7bf", "name": "VB/grey/200", "remote": false, "resolvedType": "COLOR", @@ -13974,7 +13991,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14702", - "key": "9cc6b7e08c539b1c0c4b2adfe27faad2303e10d6", + "key": "d3d3ecb4ef00a5427fef94f74e013e96b7511e20", "name": "VB/grey/300", "remote": false, "resolvedType": "COLOR", @@ -13994,7 +14011,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14703", - "key": "0a0e5aa620abc5a59213a5659341cd496c5c8ade", + "key": "be35708967e8cd600807046f78b65b1be6216963", "name": "VB/grey/400", "remote": false, "resolvedType": "COLOR", @@ -14014,7 +14031,7 @@ "description": "disabled", "hiddenFromPublishing": false, "id": "VariableID:44921:14704", - "key": "b1b7a19b872602f3d58aaf1e86b7c9652e368ab5", + "key": "18e588eaf9f14e4c264ddeb6c79bfde85ab26853", "name": "VB/grey/500", "remote": false, "resolvedType": "COLOR", @@ -14034,7 +14051,7 @@ "description": "foreground-secondary-text", "hiddenFromPublishing": false, "id": "VariableID:44921:14705", - "key": "b16719a6ecfe0a5c4c9569c3fcd0fa809794ebe9", + "key": "e971357eff1f8cf9aec4b60315ad53a01cfd0ff3", "name": "VB/grey/600", "remote": false, "resolvedType": "COLOR", @@ -14054,7 +14071,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14706", - "key": "b451e725016ca955fee4ce969357ea7ca017bbb4", + "key": "21f2c9c54aa170cd50df87361712c6e43fcabad7", "name": "VB/grey/700", "remote": false, "resolvedType": "COLOR", @@ -14074,7 +14091,7 @@ "description": "foreground-text", "hiddenFromPublishing": false, "id": "VariableID:44921:14707", - "key": "fc7fe2691aa1f3d34ec3aaeca4d752421c4e4612", + "key": "01b5264b838e6376bb6ceda94a375e412d612e22", "name": "VB/grey/800", "remote": false, "resolvedType": "COLOR", @@ -14094,7 +14111,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:14810", - "key": "63a1e9594583c043fc3229b0e984e912efb36620", + "key": "6b810164d53db9bce49c23990f60bb9ac399ccf2", "name": "components/sd-accordion/color/text", "remote": false, "resolvedType": "COLOR", @@ -14126,7 +14143,7 @@ "description": "Is this used in code?", "hiddenFromPublishing": false, "id": "VariableID:44921:21016", - "key": "929621b97dc088c4d0bd82239eecdca27dd51276", + "key": "98cf8e3405192006d5780d54ac052501a5b65537", "name": "components/sd-header/padding-bottom", "remote": false, "resolvedType": "FLOAT", @@ -14149,7 +14166,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:22299", - "key": "e30ffbb7c3ab0919cca10fb36b195403be92e950", + "key": "a23e3082c2eb51d3f1b7227b3a7a1ce2a5ad003d", "name": "components/sd-accordion/__indicator/color", "remote": false, "resolvedType": "COLOR", @@ -14185,7 +14202,7 @@ "description": "Top bottom padding for sd-accordion ", "hiddenFromPublishing": false, "id": "VariableID:44921:22300", - "key": "d1ecce552a8e266bbc4edf79b8598149e440feb6", + "key": "f934de952b6a096f61d39e64225e71340cf85d86", "name": "components/sd-accordion/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -14214,7 +14231,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:22302", - "key": "f861db5e6d60fd31ea91a6ccc83d22025e3dd3d5", + "key": "17cecfb61b241d6673861ce1f2f5871e028635c0", "name": "components/sd-accordion/border-width", "remote": false, "resolvedType": "FLOAT", @@ -14246,7 +14263,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:4592", - "key": "94e39aa52faf3303dbfd1454a693f02fd7789d45", + "key": "34a49cf650b7dfd4198c46642a7bd42beb294bc4", "name": "components/sd-button/--size/lg/font-size", "remote": false, "resolvedType": "FLOAT", @@ -14278,7 +14295,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44921:4593", - "key": "fb3118610bd63f6251f32c7bb5105cff1ae4173a", + "key": "54c382abeb770183f80c0e5b1181d52e268e68dc", "name": "components/sd-button/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -14310,7 +14327,7 @@ "description": "Top bottom padding for sd-button lg variant", "hiddenFromPublishing": false, "id": "VariableID:44921:4594", - "key": "fb4096cdda55d1472f86844369a69559e5f51025", + "key": "b7bb9ce6d8bddcbaa222385894f9d5a05c5ec3ca", "name": "components/sd-button/--size/lg/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -14342,7 +14359,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44953:13157", - "key": "d953a08c78a4e3de3ed66ff7d633805402e7023a", + "key": "fdce783c15f325ab956c1efb350cfef9aa8c6094", "name": "components/sd-button/font-weight", "remote": false, "resolvedType": "STRING", @@ -14374,7 +14391,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44953:15244", - "key": "30bd23926bd57835eb59a7b62404c6cfe55f6856", + "key": "2afae66c503f7454ee6b89b0f13ac53022bb9249", "name": "utilities/font-weight/normal", "remote": false, "resolvedType": "STRING", @@ -14406,7 +14423,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44953:15245", - "key": "577c98d84094736eaccaa165aa0a862af2a92f1c", + "key": "922ae7ea2be12e8302e698b50d0ecc8cdd13ab25", "name": "utilities/font-weight/bold", "remote": false, "resolvedType": "STRING", @@ -14438,7 +14455,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44966:21201", - "key": "e2934440b1e5de4619dca2abdc96fe06cc82ce5d", + "key": "895d2018af06fd205f3ccb2333ddafdf79c43c38", "name": "theme/_icon-set", "remote": false, "resolvedType": "STRING", @@ -14458,7 +14475,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:44973:32108", - "key": "34c08a8bceb7645f6e9af10518e24637a3247af2", + "key": "33866e42dc184500341e969bad13d4fe1ccfdc6c", "name": "theme/name", "remote": false, "resolvedType": "STRING", @@ -14478,7 +14495,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:30581", - "key": "f936bc1e3f1354e27be57f4e14c4aea123d98347", + "key": "7952c40fa7ba1d81b760f2a7df3723cde60dae0b", "name": "components/navigable/__current-indicator/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -14504,7 +14521,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:30582", - "key": "bcab72c5c17fc0b9eaf64c4295e2cb2f3ae60671", + "key": "583f7739cd589b59ad52a7bc07e8d60b42cfb5b3", "name": "components/navigable/__current-indicator/height", "remote": false, "resolvedType": "FLOAT", @@ -14530,7 +14547,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:30944", - "key": "38dc0696014ed676340167e7963b7d398cc54f55", + "key": "1f1f4e46eca4ee433f5207ba0b9bb4e13764924a", "name": "components/sd-navigation-item/color/text", "remote": false, "resolvedType": "COLOR", @@ -14562,7 +14579,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:35870", - "key": "f14c9d447b13873d1dc241d39ade1cb6e8f8933c", + "key": "216d04fce558fdbd38cd140742b850bf2d8d7bee", "name": "components/navigable/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -14588,7 +14605,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45014:36471", - "key": "c4f1c94d09ce7754a04eade38f29bcc607feac69", + "key": "e5221329810aef3fdbebf47d3c2b2b9eeb24b56a", "name": "components/navigable/font-size", "remote": false, "resolvedType": "FLOAT", @@ -14620,7 +14637,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45046:31063", - "key": "17351c96552b943d9f574d44826fd106d9404992", + "key": "5051d340ead5757cde6a6aed1f8bb4d5ec2dd98e", "name": "utilities/shadow/default/x", "remote": false, "resolvedType": "FLOAT", @@ -14640,7 +14657,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45046:31064", - "key": "78277e1e03342b0302e563fe1eca67437a3f9193", + "key": "506fc1ac74372a1c12452458ce43040e831d1b42", "name": "utilities/shadow/default/spread", "remote": false, "resolvedType": "FLOAT", @@ -14660,7 +14677,7 @@ "description": "Used for tooltip", "hiddenFromPublishing": false, "id": "VariableID:45046:31066", - "key": "797d46f37b97aff156f7625149e19123ec70ffaa", + "key": "3ad91dacdeb7996202b86705e4ed80ed138a6410", "name": "utilities/shadow/sm/color", "remote": false, "resolvedType": "COLOR", @@ -14694,7 +14711,7 @@ "description": "Used in: sd-tab, sd-navigation-item and sd-menu", "hiddenFromPublishing": false, "id": "VariableID:45046:52299", - "key": "3c26ec398c2019a3ec45f0b844354bb271e5f86f", + "key": "ad5361c9b2562b03259295fe10c251a23f362f4f", "name": "components/navigable/_docs", "remote": false, "resolvedType": "STRING", @@ -14712,7 +14729,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45293:4199", - "key": "76774c4b771494de44a88166a539b48af0fe45cc", + "key": "587dc63257c6bef391f59a4a7aaa61b0ac704831", "name": "components/navigable/__current-indicator/width", "remote": false, "resolvedType": "FLOAT", @@ -14738,7 +14755,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:45365:12253", - "key": "56b53fc6c8fd85de96a0820a4049ecd76962c5a4", + "key": "7721f6fd3c910b51ea52b385d663ea23560a5ba0", "name": "_internal/slot", "remote": false, "resolvedType": "COLOR", @@ -14778,7 +14795,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46172:9194", - "key": "9c312370dcdad5fd04c61ef2305d7da1aed40dc0", + "key": "19b032df5d640bd4146c280f228667c28eb6d220", "name": "VB/azure/50", "remote": false, "resolvedType": "COLOR", @@ -14800,7 +14817,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46374:83079", - "key": "ef3fe7885fbd9c6b5f16ed71d420b0ffd918abde", + "key": "73b4b5e3440a7258c5875c1166adad53fda7b050", "name": "components/form-control/--invalid/color/background", "remote": false, "resolvedType": "COLOR", @@ -14832,7 +14849,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:72148", - "key": "fe83e52c08dd39dd0c20bdc5df4d58a767b9d924", + "key": "44a6aaa87cc2da272be84c2bc82b73636d368101", "name": "components/sd-badge/--blue/--inverted/color/background", "remote": false, "resolvedType": "COLOR", @@ -14864,7 +14881,7 @@ "description": "Used in both sd-badge and sd-status-badge", "hiddenFromPublishing": false, "id": "VariableID:46386:74301", - "key": "6467dcc638929b8d55dda116d3c51b5a3def734f", + "key": "5d8f70657453abca21e763bd6acc49b16c62befc", "name": "components/sd-badge/--red/color/background", "remote": false, "resolvedType": "COLOR", @@ -14896,7 +14913,7 @@ "description": "Used in both sd-badge and sd-status-badge", "hiddenFromPublishing": false, "id": "VariableID:46386:74302", - "key": "029b94cda682269059c0e8862ea2e811c58d4b18", + "key": "a6c2ab4271a14a7069aff07c8d4dff798834d360", "name": "components/sd-badge/--green/color/background", "remote": false, "resolvedType": "COLOR", @@ -14928,7 +14945,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74303", - "key": "927b0b8137c3d2041df9f8219352c94103e3742e", + "key": "4177fd647a5137e14f009e09652bb82040e2d3ff", "name": "components/sd-badge/--blue/--inverted/color/text", "remote": false, "resolvedType": "COLOR", @@ -14960,7 +14977,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74311", - "key": "15b704b1cbaac3bd51c73f574d8a1730002538fc", + "key": "1d02a1cca00f996fd7fc4758ee4ca25d56011b79", "name": "components/sd-badge/--green/color/--inverted/background", "remote": false, "resolvedType": "COLOR", @@ -14992,7 +15009,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74312", - "key": "26d5ee17dfb0bcfbc4c9dae5e28d8bb90ae937f6", + "key": "19f93c44a594a6c132d8af0dc55d1ae6f8ccf551", "name": "components/sd-badge/--green/color/--inverted/text", "remote": false, "resolvedType": "COLOR", @@ -15024,7 +15041,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74313", - "key": "03a842fd5d9b54fdc26d0e8e41bded045403b281", + "key": "6aa0311309a7ead00f33c51fc558229dfc879a78", "name": "components/sd-badge/--red/--inverted/background", "remote": false, "resolvedType": "COLOR", @@ -15056,7 +15073,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:74314", - "key": "1aba283b0a4c063679b9f1b76253422172c82cd8", + "key": "ff0f2d1fd7c1ee36c0ca9e1c350b556a3a48c4df", "name": "components/sd-badge/--red/--inverted/text", "remote": false, "resolvedType": "COLOR", @@ -15088,7 +15105,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:77408", - "key": "ac635f460d1b17c24a9f648f85b15467f0f1fee2", + "key": "f0364d1283e14aa5d1c578fcff271189cc8c0c68", "name": "components/sd-radio-button-group/border-width", "remote": false, "resolvedType": "FLOAT", @@ -15120,7 +15137,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:77409", - "key": "c24f95c1c73f9d297f2d47b6b913eb8041cd5016", + "key": "b65698d1c1b0d68561ab2c20bdd24d4c30927808", "name": "components/sd-radio-button-group/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -15152,7 +15169,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46386:80458", - "key": "882009c8628bceda5c930e5ce1bdfd6cf8e7f8a0", + "key": "8632c12925ab0004aa7736836e4cb1165ec0af1c", "name": "components/sd-radio-button/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -15184,7 +15201,7 @@ "description": "Top bottom left right padding for the sd-radio-button-group", "hiddenFromPublishing": false, "id": "VariableID:46386:80499", - "key": "84cae37b3cc7d7644d1dc7b59cb844f391e5c9e2", + "key": "712a5289ca0d96c17b4d2fd23e122a20c3ff485f", "name": "components/sd-radio-button-group/padding", "remote": false, "resolvedType": "FLOAT", @@ -15207,7 +15224,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101271", - "key": "42f26cbfa66ba948551ffcd2e793037d7b6263e8", + "key": "b4392177a41cedd5d566bc6eb8a0df5e107bbcdf", "name": "components/sd-tag/--selected/border-width", "remote": false, "resolvedType": "FLOAT", @@ -15233,7 +15250,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46396:101273", - "key": "897ff10b034637e7bb7c73dcf6315513b61c8b85", + "key": "cfe7a7a9ba7056a635ed13d3d26c3fd7f9c58f99", "name": "components/sd-tag/--default/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -15271,7 +15288,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101274", - "key": "526d492a4ecb10f50c89d3a7930e0e7171dd0018", + "key": "bead117aa25b85452097a9b5d115f6dd7be1fdc6", "name": "components/sd-tag/--selected/--default/color/border", "remote": false, "resolvedType": "COLOR", @@ -15307,7 +15324,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101306", - "key": "0862ff5e07ee76fdeb3b60bcee192cfd1f4ea371", + "key": "d3cb6ba45983e3db552c42498a843497d2852685", "name": "components/sd-tag/--selected/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -15339,7 +15356,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101307", - "key": "571015578e2374efc4c4a3cc94bcf37edc2640f7", + "key": "dcfb5e744b2ff20cf379d15f5a82ce6ba33b0898", "name": "components/sd-tag/--selected/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -15373,7 +15390,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:101308", - "key": "a55c69da14e7e9e09b598f8677dd005ad343204a", + "key": "1d1643614c245cbe05c083ddf328d5e2289e2fdd", "name": "components/sd-tag/--selected/--hover/color/border", "remote": false, "resolvedType": "COLOR", @@ -15409,7 +15426,7 @@ "description": "selected hover state", "hiddenFromPublishing": false, "id": "VariableID:46396:101311", - "key": "539384dd767368836ddd4ac84ddde3999fe2f61a", + "key": "d34a190548e08db150edf802df74cc7eaac265cf", "name": "VB/azure/250", "remote": false, "resolvedType": "COLOR", @@ -15431,7 +15448,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:82803", - "key": "7d046e2302892daeb8a161c685a4f5e7beece493", + "key": "3b276d272453cdefc37ef9e7c3e5f2256d58c37f", "name": "components/sd-tooltip/color/background", "remote": false, "resolvedType": "COLOR", @@ -15463,7 +15480,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:82804", - "key": "fabff43973ad35d3b2caad45edd0ed4bc068f4cd", + "key": "e62f9cd40a44f18bdd04a79a9e6e90d1188574d8", "name": "components/sd-tooltip/color/text", "remote": false, "resolvedType": "COLOR", @@ -15495,7 +15512,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:91135", - "key": "bd2d42faf1d4287856cc36cc5f7284c5f4d1d97f", + "key": "7fd4e04599a15ef3f248e647314abdc74a5deb97", "name": "components/sd-tag/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -15528,7 +15545,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46396:91136", - "key": "5f904b95dd71e7e1bda4acd3f83f752a533c7646", + "key": "53d1baa3273634f81c73c6d99098319b587e14a3", "name": "components/sd-tag/font-weight", "remote": false, "resolvedType": "STRING", @@ -15560,7 +15577,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:107779", - "key": "5c484ffe23ff5039685312cb13ade63a4f3aabc7", + "key": "7f578ee54d90b015b51542ca865d0376064983a9", "name": "components/sd-notification/--error/color/background", "remote": false, "resolvedType": "COLOR", @@ -15592,7 +15609,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:107780", - "key": "ffe498529b16a2ebf5eec81b8ebbee7d63962f12", + "key": "9acf634a5ac7284b93f113494dc4c4e3e1328adb", "name": "components/sd-notification/--warning/color/background", "remote": false, "resolvedType": "COLOR", @@ -15624,7 +15641,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:107781", - "key": "61c9758cd0433f839d2cb7a8e1ff1ce059a34cd0", + "key": "d8ec04d337a725f0eaec1834dbfd3456f66454c1", "name": "components/sd-notification/--success/color/background", "remote": false, "resolvedType": "COLOR", @@ -15656,7 +15673,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:107782", - "key": "8615455c95b66b2604cde06a1d8a2658ce783da2", + "key": "5c0a0b89b4f87a126340639f9daafe8038b344fa", "name": "VB/status/success-bg", "remote": false, "resolvedType": "COLOR", @@ -15676,7 +15693,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:107783", - "key": "a88fd17259968a699ffe97e2eb09c54382c9d057", + "key": "9beaeb33b3740aaf577ea7708e651b1fe434c66e", "name": "components/sd-notification/--info/color/background", "remote": false, "resolvedType": "COLOR", @@ -15708,7 +15725,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:53949", - "key": "e618ff15c605b37459f08b8958aa37a7ba21b3ee", + "key": "0af883d8d77e057b3bff8bbfe51d262304ce29a2", "name": "components/sd-range/scale-ticks/color/text", "remote": false, "resolvedType": "COLOR", @@ -15740,7 +15757,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:68803", - "key": "c4c02f95b4eb470537d3aa251d045aba92770843", + "key": "38870ef505058fe10122c442c526a1f1d6a5ae7e", "name": "components/sd-flag/--neutral-200/color/background", "remote": false, "resolvedType": "COLOR", @@ -15774,7 +15791,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:68806", - "key": "5abe962a5a252ca5a97250c81d57457d2d85933a", + "key": "1f3ad37e1f65b6289d6f9762de1ef587e443c19e", "name": "components/sd-flag/--neutral-200/color/border", "remote": false, "resolvedType": "COLOR", @@ -15812,7 +15829,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:68807", - "key": "b9ba8210ba0449f4ae1471863f8ca828b1826dae", + "key": "30c27bc8d55682d83323f973c3d0566d2fcb00b2", "name": "components/sd-flag/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -15844,7 +15861,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70191", - "key": "fc061333195db37191b62dbd9c9b84967ee08d78", + "key": "c4a9ae29432b315587a95ba4dc3a8258a06bc1a8", "name": "components/sd-flag/--neutral-500/color/border", "remote": false, "resolvedType": "COLOR", @@ -15882,7 +15899,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70202", - "key": "aeb26c5ea8c53aa6df2532ca483bb60de35a7d49", + "key": "1d41381bac7ac3911ec46798418290a32cf4f111", "name": "VB/status/neutral-blue", "remote": false, "resolvedType": "COLOR", @@ -15902,7 +15919,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70203", - "key": "5b3636381b6ddb88a7b9d99213091fc56ec15689", + "key": "68a67e0cba19b12bb38d4b8707ac10bf8c5ba555", "name": "VB/status/neutral-blue-bg", "remote": false, "resolvedType": "COLOR", @@ -15922,7 +15939,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70204", - "key": "d7a2406f81e2c2d28ba431397dcc8753ef0982bc", + "key": "6ab33cfd9e24ee48b15d7edfb2b0d363f1991b39", "name": "components/sd-flag/--neutral-300/color/background", "remote": false, "resolvedType": "COLOR", @@ -15956,7 +15973,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70205", - "key": "5a1fbbeeb6e78308ba5af2a1aa5eadb6fd5a9a68", + "key": "afa9271dc471f2e8dbc27fc0e45dce5e5c6978dc", "name": "components/sd-flag/--neutral-300/color/border", "remote": false, "resolvedType": "COLOR", @@ -15994,7 +16011,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46408:70206", - "key": "56502a3612c12cd85531e60e172c4737e5d5ef10", + "key": "448d03f03d1400733f554a88f10577c5e9045e92", "name": "components/sd-flag/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -16028,7 +16045,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70207", - "key": "db00f99ef748175b30bb6965137928ed45136719", + "key": "1b45280020bd26be9331b6d42b4fe18a6c921242", "name": "components/sd-flag/--white/color/border", "remote": false, "resolvedType": "COLOR", @@ -16066,7 +16083,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46408:70208", - "key": "da968b6170091eaa87196f26afdc6647216e80ed", + "key": "f5711019c53dbd78db5002278bcd5abb7da229a3", "name": "VB/status/neutral-grey-bg", "remote": false, "resolvedType": "COLOR", @@ -16086,7 +16103,7 @@ "description": "disabled", "hiddenFromPublishing": false, "id": "VariableID:46408:96677", - "key": "842f6c13e29fb5f27992384b9ecc6a3852d56f68", + "key": "ac7a69cb4fbcbca87ea05df84349346b50f6a8e9", "name": "VB/grey/450", "remote": false, "resolvedType": "COLOR", @@ -16106,7 +16123,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46434:259677", - "key": "ea24af56ad2b3d67c9415bbde1344194c529be39", + "key": "5bd785eb4823bb5420c259cb052c63ff4479e0f7", "name": "components/sd-chip/--primary-200/color/background", "remote": false, "resolvedType": "COLOR", @@ -16140,7 +16157,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259678", - "key": "35cb80d754f50c2582d8b655e90a4127157241a4", + "key": "c7db3cbd4276a4b014b98217af7711ed0e070c23", "name": "components/sd-chip/--primary-200/color/border", "remote": false, "resolvedType": "COLOR", @@ -16178,7 +16195,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259679", - "key": "b5ce2afd8250f95e2d57fbd8dcbce9ca82addf6f", + "key": "0ad6f54bd33db76b2f160f88f56e55e8825937a1", "name": "components/sd-chip/--primary-300/color/background", "remote": false, "resolvedType": "COLOR", @@ -16212,7 +16229,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259680", - "key": "c4834ead364b3f9f50587cd8aa9e720e04484679", + "key": "271ea70c9c4c5ce8aeac2cde2c9ff1e9d52a7cf6", "name": "components/sd-chip/--primary-300/color/border", "remote": false, "resolvedType": "COLOR", @@ -16250,7 +16267,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259681", - "key": "fe25cec833de438add0dd5e4c6d52d72fdfa3d76", + "key": "7a7002bb69bb0be39c2698986a5bff9476e44afb", "name": "components/sd-chip/--primary-500/color/background", "remote": false, "resolvedType": "COLOR", @@ -16284,7 +16301,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259682", - "key": "40fae326952e4c4c82b17f56bafe5145d6ad83c3", + "key": "b64338e2f967fb600505daaf7d7c586ce42529df", "name": "components/sd-chip/--primary-500/color/border", "remote": false, "resolvedType": "COLOR", @@ -16322,7 +16339,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259683", - "key": "6cae24a1412bb26f85f69a2d736d00565a969651", + "key": "ee8905495f669863daa5f928b3c4c9a787bb6955", "name": "components/sd-chip/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -16354,7 +16371,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46434:259685", - "key": "473287e8b49c1b4795dd10cd4c9c9e93a91d8d09", + "key": "7b359c23a38cf915535aeedea5815ec131d07b32", "name": "components/sd-chip/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -16388,7 +16405,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259686", - "key": "291f95f6b9f35cd2a33f2f93fd068404039631ba", + "key": "a7b7423b75fa22870a006f5afcc11303b5480c2a", "name": "components/sd-chip/--white/color/border", "remote": false, "resolvedType": "COLOR", @@ -16426,7 +16443,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:259782", - "key": "6ad4bc68bcc7332fdc835d9002592b4f29a445a3", + "key": "09692af74aa5c2d0e860960df8d1c5a28dbd1e87", "name": "components/sd-chip/--primary-500/color/text", "remote": false, "resolvedType": "COLOR", @@ -16458,7 +16475,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46434:304476", - "key": "e530cff0ac283cd5e18aa8994e4fc1e204513274", + "key": "1f4007cf25448084a77fa88b36e63b70ac3fc3e8", "name": "components/sd-radio/--checked/--default/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -16490,7 +16507,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:46434:304477", - "key": "4a646ecf23ede2e9bd820c9ab775767ebdccceff", + "key": "0ec060fc2d53db0d7bb837669d5fb2a68f10a927", "name": "components/sd-radio/--checked/--hover/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -16522,7 +16539,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:46434:304499", - "key": "eb4900ede88cdef6f59fecec333b04a2c621a6b7", + "key": "e6992ceb6e212044640f118bd33926aa31a471f0", "name": "components/sd-radio/--default/--invalid/color/background", "remote": false, "resolvedType": "COLOR", @@ -16554,7 +16571,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46434:304642", - "key": "76226d25f2ba25f3c8ae79e1e0ccdb0e295aee33", + "key": "e0254a56b49b431076027a1a68aae3aa25377f23", "name": "components/sd-radio/--checked/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -16586,7 +16603,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46434:304643", - "key": "05ae08995dfb2bd1858fdfc1a364416ab2f8eb17", + "key": "e29a762daf0b0d87369f9fb61f3c95f5d65afd67", "name": "components/sd-radio/--checked/--invalid/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -16618,7 +16635,7 @@ "description": "Used for error messages, invalid states", "hiddenFromPublishing": false, "id": "VariableID:46434:304644", - "key": "5a5d8c75bfae4f730304c5c6fe6f0a25c79181a9", + "key": "426a953bbe643ce0e7bbe2516f681f578fe82832", "name": "components/sd-radio/--checked/--invalid/--default/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -16650,7 +16667,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46434:305759", - "key": "55eea7821e826afa87462d3a46d872018d9e4c22", + "key": "f4a8f4a7c2c3472b317b38f11e31e7742b4e7b9f", "name": "components/sd-radio/--checked/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -16682,7 +16699,7 @@ "description": "Used for hover interaction invalid form elements\n", "hiddenFromPublishing": false, "id": "VariableID:46434:305760", - "key": "9b4a75355eeb35dc9feec809d3a1a424b0a5b443", + "key": "83b041f68b31e6983dedfe1d2d04159d018b102f", "name": "components/sd-radio/--checked/--invalid/--hover/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -16714,7 +16731,7 @@ "description": "Used for inverted dividers", "hiddenFromPublishing": false, "id": "VariableID:46434:306253", - "key": "4b21b7059e2750477374713306a483572ea1fbe8", + "key": "871bbe61251cd2dddb97daa99d9c094aebcd5531", "name": "components/sd-audio/__slide-bar/--inverted/color/background", "remote": false, "resolvedType": "COLOR", @@ -16750,7 +16767,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:307157", - "key": "2043df7e17a139a6b1125fe5d88a450815b5821e", + "key": "998e1a613e2312e3c242b004819e214d6b3a55e0", "name": "utilities/color/error/250", "remote": false, "resolvedType": "COLOR", @@ -16780,7 +16797,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:307158", - "key": "ebd417a622ecaded913e038e59e9d5aec85ab917", + "key": "f53c5d046feb3de0d7831eaed42fa7580b486360", "name": "utilities/color/error/500", "remote": false, "resolvedType": "COLOR", @@ -16810,7 +16827,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46434:310776", - "key": "c3fc8e464b10af1ef844ad15641f8bb51d3d16a3", + "key": "4257ecbd74186403e74003084ecf07e4f2a01d60", "name": "components/sd-radio/border-width", "remote": false, "resolvedType": "FLOAT", @@ -16842,7 +16859,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46547:87699", - "key": "f89b404fb3797335ec7c3f126ea86529df941d8e", + "key": "e86e6e2adb7b63dcfb9e09f55c6d769baeb5f6a3", "name": "components/sd-step/__tail/border-width", "remote": false, "resolvedType": "FLOAT", @@ -16874,7 +16891,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46547:89332", - "key": "187d0f8d599dbf569bb50b0938febed0ef21888d", + "key": "56c298b758c00221d2b43f03237dbc73a1c769a3", "name": "components/sd-step/color/text", "remote": false, "resolvedType": "COLOR", @@ -16906,7 +16923,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46550:33336", - "key": "4bef73c28b0e8f5c078b3d707ea27281478f60e4", + "key": "13a2f9da81cc9e9f62f52b62d793d536aa074d44", "name": "components/sd-step/__circle/border-width", "remote": false, "resolvedType": "FLOAT", @@ -16938,7 +16955,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46550:34530", - "key": "edf6457f32e0b45d3912fd0fe47a24c752e61e70", + "key": "95b4ad5ba3e79afa16c453a8f09084e4968590e5", "name": "components/sd-map-marker/--cluster/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -16970,7 +16987,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46552:34531", - "key": "7aa6cfafb66211be849837ccf704f38d896c375d", + "key": "18feb9b3b9ab84db7ece79900d975066aeb8d5d2", "name": "components/sd-map-marker/--cluster/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17002,7 +17019,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46581:61953", - "key": "74b6d78ae05b7277b7ef0ce4173c3c074775ce07", + "key": "96463d0b27199769fdf8870e2b81f58338de2f7f", "name": "components/sd-headline/--3xl-onwards/color/text", "remote": false, "resolvedType": "COLOR", @@ -17034,7 +17051,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46588:15143", - "key": "fee12b32ec41fe401910ea842d755464886119d8", + "key": "6abee2d2c9f66be66830eef978cedd5c8a61aea7", "name": "components/sd-video/--play-button/color/background", "remote": false, "resolvedType": "COLOR", @@ -17066,7 +17083,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46590:15143", - "key": "980e81f79ac6ad3d7be5f1b6a8851cb3ce60cd56", + "key": "0553a81d6c78b55a8caa60ea4e252fd2ac83ec80", "name": "components/sd-video/_description/color/text", "remote": false, "resolvedType": "COLOR", @@ -17098,7 +17115,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46741:3641", - "key": "27f9510d53200ac95ee0f0d1983fa730d9a16cf3", + "key": "2bb5858dd6cde8cc1ab0104561451faee6771a5e", "name": "components/sd-quickfact/--expandable/color/text", "remote": false, "resolvedType": "COLOR", @@ -17130,7 +17147,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46782:21016", - "key": "c8d63a473045e0181bf663dd668830c5d8e9c4bf", + "key": "3b1fb660ea3fd6897c2bd85821dae7f0943947b7", "name": "components/sd-teaser-media/--primary-100/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17166,7 +17183,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46782:21017", - "key": "2f86335125df20a2cb1885292c88b251c1176cca", + "key": "4673d4fddb26bce8ef94c55b78f5a3a120ac8cdf", "name": "components/sd-teaser-media/--neutral-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -17202,7 +17219,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46782:21018", - "key": "20c2041d5d42a33f7918b541552436fd9b9bbee4", + "key": "fa914d61e43e560502aeb94b0a90856375ed8ba7", "name": "components/sd-teaser-media/--neutral-100/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17238,7 +17255,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46785:21019", - "key": "927df4531f56320b62b9f32ed9be0da314d45c2d", + "key": "2d5427984c7903db1529ff2853fd63a111624ff6", "name": "components/sd-teaser/--neutral-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -17272,7 +17289,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46785:21047", - "key": "c582dced97cf6ce911bb294e2ad6eca9ebd649eb", + "key": "98595513d9451a4862e0e4e30042457865844060", "name": "components/sd-teaser/--primary-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -17306,7 +17323,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46785:21048", - "key": "a4e77c63c10cad7598b4d33c0475b5ccc488cee8", + "key": "ca0545c28485a55f1e65f6bfe37f626bf17cdd31", "name": "components/sd-teaser/--neutral-400/color/border", "remote": false, "resolvedType": "COLOR", @@ -17338,7 +17355,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46790:20333", - "key": "1f93c0c0adb4bf8d5eda03e83fd1f0d708dac9c4", + "key": "dd067be269e6fcc8eae8c0cbd1cdf5cec5ea95b2", "name": "components/sd-carousel/__pager-dot/border-width", "remote": false, "resolvedType": "FLOAT", @@ -17370,7 +17387,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46790:57690", - "key": "555a690a9062e3611ea337dfc05d214068b203e5", + "key": "5aaa46d265fec9f29ffe5ae384cda074504dbda5", "name": "components/sd-checkbox/border-width", "remote": false, "resolvedType": "FLOAT", @@ -17402,7 +17419,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46825:8941", - "key": "c3aa5d7892d06b183c52fa61e28bef709bd44b34", + "key": "fb4a7539e303315942ba11a02b03f4dfaf8d1ca2", "name": "components/sd-tab/color/border", "remote": false, "resolvedType": "COLOR", @@ -17434,7 +17451,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46841:8934", - "key": "4edf537f9a0a6ae853e5f0a98ce04d7dc41d150a", + "key": "3248ddd11ffa500b553bc293e23c399d223e5387", "name": "components/sd-switch/color/text", "remote": false, "resolvedType": "COLOR", @@ -17466,7 +17483,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46841:9198", - "key": "d7759eed77ee248b83dceaff00d487fcbd9911b2", + "key": "b674cd0a19132ccd3e6acdd499573daa33d62fdc", "name": "components/sd-switch/--unchecked/color/border", "remote": false, "resolvedType": "COLOR", @@ -17498,7 +17515,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46841:9202", - "key": "41b87137f8be1b0ef5f8a8044d308351b1a8a99a", + "key": "9571a41c27753e4a95221881e8d1abc5591c407a", "name": "components/sd-switch/--unchecked/__icon/color/background", "remote": false, "resolvedType": "COLOR", @@ -17530,7 +17547,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46841:9203", - "key": "beeb51eb4d46a344cf6334206e03f4a9b9981eb6", + "key": "7e84cd9f6fe17be2dd282facb1dd740b096ad3af", "name": "components/sd-switch/--checked/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17562,7 +17579,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46864:40268", - "key": "63bd6e9da33a5343caeab3fe000708f69f4ae938", + "key": "980ea2188b38a06df92c0c7d31021e10d0bca00f", "name": "components/sd-video/--play-button/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -17594,7 +17611,7 @@ "description": "Used for inverted dividers", "hiddenFromPublishing": false, "id": "VariableID:46871:10801", - "key": "0eb840dfd3a22c7b6f023ee57b352c3b8d81abbe", + "key": "c6da12fdca665a36c7fa4005371507da1a31c7bb", "name": "components/sd-divider/--Inverted/color/border", "remote": false, "resolvedType": "COLOR", @@ -17630,7 +17647,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:46871:68824", - "key": "9693fdefc825aac6df80eb660484994e84523026", + "key": "25f951808c5afee7e9b38908ad6e336b33882b9e", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/20%", "remote": false, "resolvedType": "COLOR", @@ -17670,7 +17687,7 @@ "description": "Used to add border that is only visible in dark mode:\n-dropdown", "hiddenFromPublishing": false, "id": "VariableID:46871:68825", - "key": "ebde0ca198584d0a24a9ffcdea523231e9f16582", + "key": "122f2527b80823ab21f613300d9f81cc74498e1a", "name": "utilities/color/background/_gradient/components/informational/gradient/--white/background/color/50%", "remote": false, "resolvedType": "COLOR", @@ -17710,7 +17727,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:46871:963", - "key": "86dec003cb67ab7067e5cbca73588de77a1cd3b4", + "key": "bd693a6a3880a37d996e895424d88395363bbe7d", "name": "components/sd-carousel/--active/color/border", "remote": false, "resolvedType": "COLOR", @@ -17742,7 +17759,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46893:49686", - "key": "3c7f9fdc11d9430b5894d77aa014377cb62da711", + "key": "ba5be695590be931a416f726db743c94baf868e3", "name": "components/sd-menu-item/color/text", "remote": false, "resolvedType": "COLOR", @@ -17774,7 +17791,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46893:50283", - "key": "5344eec1b29a57e0a40cf486852d9dcdfc55d9d3", + "key": "086e8b9d2403382c3511f2e46b26367db4afa9d9", "name": "components/sd-menu-item/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -17806,7 +17823,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46893:50284", - "key": "cb80543d8e3053a1c3dd580276643bc41fdd858d", + "key": "4787b955816d34111a126e9d7464e4e88687b700", "name": "components/sd-menu-item/--disabled/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -17840,7 +17857,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46893:50285", - "key": "f852c1e2a95523bf803434d79e187fc647f540c0", + "key": "52ae41d809ccb2af489b1e98840069bea2706b6c", "name": "components/sd-menu-item/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -17874,7 +17891,7 @@ "description": "Used for text and icon fill", "hiddenFromPublishing": false, "id": "VariableID:46937:80691", - "key": "ff91e5494b3997a219451279b2bd70650e959e12", + "key": "57277df9a88fa649d23d6bfd0defdf493477ec06", "name": "components/sd-radio-button/color/text", "remote": false, "resolvedType": "COLOR", @@ -17907,7 +17924,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46938:18800", - "key": "17853189245947ab8971ef9a60894112213fdea3", + "key": "1557de1cb66d3854999edd93ff338b6c3ee733c1", "name": "components/sd-navigation-item/color/_icon", "remote": false, "resolvedType": "COLOR", @@ -17939,7 +17956,7 @@ "description": "Used for sd-chip, sd-badge", "hiddenFromPublishing": false, "id": "VariableID:46961:115232", - "key": "ec7774c847504622d93c05656b9e7c8af0b385bc", + "key": "a53e5f818b67b9eb67240980e6bb7b194fc8f96e", "name": "components/sd-button/--secondary/--inverted/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -17971,7 +17988,7 @@ "description": "Used for sd-chip, sd-badge", "hiddenFromPublishing": false, "id": "VariableID:46961:122725", - "key": "a587865482b2e36c58cfde3b736bc29b2c6d939e", + "key": "49d972a7ca35b2e28759cefaa1b35827bad08f1b", "name": "components/sd-button/--tertiary/--inverted/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -18003,7 +18020,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:46961:99748", - "key": "baf4394ee33c3727b426e3bf08baa89cd5d8e09a", + "key": "6c2da52036ab662bc98b0da63b538f422e836e69", "name": "components/sd-badge/--inverted/color/border", "remote": false, "resolvedType": "COLOR", @@ -18035,7 +18052,7 @@ "description": "Used for checkbox, switch", "hiddenFromPublishing": false, "id": "VariableID:46971:17841", - "key": "585227908993bcdca48e108bb729dd7a4a04e904", + "key": "964b78b68f055e8453d0914dc347b51d998c4c2c", "name": "components/sd-button/--cta/--inverted/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -18067,7 +18084,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46977:27416", - "key": "2c224683e57806edd56ba201afcd418d6b5bc1bd", + "key": "2a4ed80d39505cd00d933dd7f453476ab754954b", "name": "components/sd-button/--cta/--inverted/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -18099,7 +18116,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46977:27419", - "key": "53c97bf3ed105c10ae7d47de4fb6ef67760cc34f", + "key": "b972efdcd3ccef771aca42a8c3d77e11beaf790c", "name": "components/sd-button/--inverted/--disabled/color/border", "remote": false, "resolvedType": "COLOR", @@ -18131,7 +18148,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46977:27421", - "key": "943c2dbca370a08dfc95a269abd0497ef6d189e3", + "key": "34ce1fa88f608433af290503af50cfc56b1b0b11", "name": "components/sd-button/--inverted/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -18163,7 +18180,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46977:29580", - "key": "4ced59e9bc662e5b1c805b2fb7de81063b42b33a", + "key": "597ffb963eb2fd411702abeb5236ffa94975bccd", "name": "components/sd-button/--cta/--inverted/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -18195,7 +18212,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46977:29581", - "key": "59e5ffdbcaea8aa6d07534b658c6f337139f4d54", + "key": "5441924212f30b61c5bad63d3165faa66979d5ac", "name": "components/sd-button/--cta/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -18227,7 +18244,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:46977:29583", - "key": "6d1e88f657f599211a1e237259a88626991731f5", + "key": "eba54cfb755255fd0765746d860d0eb056b52bd1", "name": "components/sd-button/--cta/--inverted/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -18259,7 +18276,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:46977:29585", - "key": "b3e7713509e5f19745ed41a919ff62caafbbb8ef", + "key": "49ec3a7bd3f29be8e4a20177dc4ce9d0e57b1722", "name": "components/sd-button/--inverted/--disabled/color/background", "remote": false, "resolvedType": "COLOR", @@ -18291,7 +18308,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:46989:18467", - "key": "fde8a07f700d1b92ebca9188691b4d92769e9ca5", + "key": "f69b48759b70dfb666c13885ffb3ed8fb30b35f1", "name": "components/sd-button/--cta/--inverted/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -18323,7 +18340,7 @@ "description": "Primary brand color for text", "hiddenFromPublishing": false, "id": "VariableID:46998:24287", - "key": "e637e901e3a1ca3db6819199184d22039a935017", + "key": "1bb528619ea808261ae81cab6f75a77776e04998", "name": "components/sd-radio-button/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -18359,7 +18376,7 @@ "description": "Used for text and icon fill", "hiddenFromPublishing": false, "id": "VariableID:46998:24289", - "key": "20747bef6de69520b1435220890c7c3b1c4c75b5", + "key": "18edcadf3d44b0b36dfc19c3540d46899397837e", "name": "components/sd-radio-button/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -18391,7 +18408,7 @@ "description": "Used for sd-link & sd-interactive", "hiddenFromPublishing": false, "id": "VariableID:47031:407", - "key": "ab33e0301ff17cbe87514462d6a6402d33f96457", + "key": "f0c8140bd86187192d092adab3dbcfb0452e2107", "name": "components/interactive/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -18423,7 +18440,7 @@ "description": "Used for label ", "hiddenFromPublishing": false, "id": "VariableID:47174:79210", - "key": "b3f16fee5fbfee9e0e4a00672611947f57febcdf", + "key": "edc6b65f42e6f6838bbdd14f5bbe3dc6fb3280ad", "name": "components/form-control/color/text", "remote": false, "resolvedType": "COLOR", @@ -18455,7 +18472,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47208:17564", - "key": "68ee3272a573cfa4cc49531226e22f3bf08db6ab", + "key": "83c666a4da306fa8bb5046d18f5e9cd9a9b38f1f", "name": "components/sd-tag/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -18487,7 +18504,7 @@ "description": "Used for font weight inside sd-tag, sd-tab, sd-navigation-item & sd-radio-button", "hiddenFromPublishing": false, "id": "VariableID:47208:26542", - "key": "61a7bfd54a2fac700d9ca183c80b86e34e437487", + "key": "2b3d1bd29f766b4b650b58904ec7f1c8184e3fd4", "name": "components/choice-control/font-weight", "remote": false, "resolvedType": "STRING", @@ -18520,7 +18537,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47226:13296", - "key": "8de3dede0b07fb1316393ad015e4e2183349c334", + "key": "25c000f972295855808c8799dde4df831c806b1f", "name": "components/sd-range/__bar/border-width", "remote": false, "resolvedType": "FLOAT", @@ -18552,7 +18569,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:47226:13297", - "key": "10b8dabb1771c2f3635b3778f807f5934dfd24e9", + "key": "4d81c03401835c66a5a7f259681934d5f60762f8", "name": "utilities/sizing/1", "remote": false, "resolvedType": "FLOAT", @@ -18584,7 +18601,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:47226:13298", - "key": "1fd4ffd49dc938141bbe91c8b73aba4f6734130f", + "key": "17a7137a8f62b1571be5bdcb8ce28495032b919c", "name": "utilities/sizing/0,5", "remote": false, "resolvedType": "FLOAT", @@ -18616,7 +18633,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:47333:16976", - "key": "a7730e2935005cdc8e2486c2ff70a1f33a68f192", + "key": "715af9c2dfee99b157c1abb071a43d4de623603a", "name": "components/sd-button/--tertiary/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -18648,7 +18665,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47674:18801", - "key": "67ecf81c13f846349ecc9841e82cfaae8b07892d", + "key": "0883333a0e2a86525c6ce616109a55caee394bd1", "name": "components/form-control/--filled/__floating-label/color/text", "remote": false, "resolvedType": "COLOR", @@ -18680,7 +18697,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8448", - "key": "e72346d3a0a51848b503962a79cb7d66db1805b8", + "key": "6261225fb6e0aaf44e3d50bece3eed5a26615083", "name": "KID/accent/100", "remote": false, "resolvedType": "COLOR", @@ -18700,7 +18717,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8449", - "key": "261d286b32c67e401cd5d86e28156ff6177f2e59", + "key": "076e8a740d48fa685fb6f2acbce05b150f8f175b", "name": "KID/accent/200", "remote": false, "resolvedType": "COLOR", @@ -18720,7 +18737,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8450", - "key": "334973d168cbcd2fc0d8295a7e7fb9267c07da1b", + "key": "f8c562b3d9f32546b9e0184529fd2b86cd6351b6", "name": "KID/accent/300", "remote": false, "resolvedType": "COLOR", @@ -18740,7 +18757,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8451", - "key": "3a0de7ae8f09cb9dade5898ce2948a8148656c9f", + "key": "cc2906961e849b94563efb08fc92178962691299", "name": "KID/accent/400", "remote": false, "resolvedType": "COLOR", @@ -18760,7 +18777,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8452", - "key": "8956d88489f3cf58df7eeecfd7af05a7fe4d0d85", + "key": "a5fd3350279aeffea9498829b647d3b246b91d2e", "name": "KID/accent/500", "remote": false, "resolvedType": "COLOR", @@ -18780,7 +18797,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8453", - "key": "734f41506343c0bb379c17df17c34e447d1d6e55", + "key": "b483c8a5d312cecadaf64ad7150fd40000ee2f72", "name": "KID/accent/600", "remote": false, "resolvedType": "COLOR", @@ -18800,7 +18817,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8454", - "key": "055536c2e6975ad70f92f94a8c970f0c58bd92fd", + "key": "d8ca0670cb1ff71b61058f5250e91f47df830914", "name": "KID/accent/700", "remote": false, "resolvedType": "COLOR", @@ -18820,7 +18837,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8455", - "key": "2b4d735ba899283e9b2a4f79514350ea14451423", + "key": "59aeb349ba138f5e58d09276a00b085fc3944209", "name": "KID/accent/800", "remote": false, "resolvedType": "COLOR", @@ -18840,7 +18857,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8456", - "key": "3db9296a010a7747e6a567cbdfa15532854a598f", + "key": "6884f2a76888482e5fb721de7e978ea76fa95276", "name": "KID/accent/900", "remote": false, "resolvedType": "COLOR", @@ -18860,7 +18877,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8457", - "key": "8d8e04936d50dc114860b353effcf280e89b1003", + "key": "18a38c60d0df5d8f184a3e01976b738179206097", "name": "KID/accent/default", "remote": false, "resolvedType": "COLOR", @@ -18878,7 +18895,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8458", - "key": "3fcc66f7c05a49ef79d991b6f933a59ebd4bd0e9", + "key": "3fe82f5581de076bcc089972d2c2df1720ba74ff", "name": "KID/primary/100", "remote": false, "resolvedType": "COLOR", @@ -18898,7 +18915,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8459", - "key": "cd11d90a5840cf73d1b4a19deaabd567293f925c", + "key": "a0f436e99d50739202ae8dfcb41c2170cf4a4f98", "name": "KID/primary/200", "remote": false, "resolvedType": "COLOR", @@ -18918,7 +18935,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8460", - "key": "c733506e745bb980ae338d026abac332a90ecbb3", + "key": "23eb70cba4eb3eef954bef2974cd9987471bc158", "name": "KID/primary/300", "remote": false, "resolvedType": "COLOR", @@ -18938,7 +18955,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8461", - "key": "df1d097e0a517b332b8d08d162c61b380fa96408", + "key": "945be6ac148ed114778534290fc9259b3e6a3276", "name": "KID/primary/400", "remote": false, "resolvedType": "COLOR", @@ -18958,7 +18975,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8462", - "key": "3e7c50385e6219abfdcafb8a1dc3fd2b36e717b2", + "key": "a551a53e2bdfac4a33555df8e405f2480413c2e4", "name": "KID/primary/500", "remote": false, "resolvedType": "COLOR", @@ -18978,7 +18995,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8464", - "key": "1fb17c927484843de11784a46ffa71d94dcf4122", + "key": "8922a0761ef535b35a5188ff8b220dd905970337", "name": "KID/primary/600", "remote": false, "resolvedType": "COLOR", @@ -18998,7 +19015,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8465", - "key": "53344436f69d57e0ffe8c7ff5cee6d20bf7e8028", + "key": "71e2815ef17e916b5c8c105c40fe4cd18db24063", "name": "KID/primary/700", "remote": false, "resolvedType": "COLOR", @@ -19018,7 +19035,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8466", - "key": "d0c064d29dd24d3600decd5bd944269fa71c71c0", + "key": "7a5c0c9bf55a861afe0aa9a76004a793be4e47ee", "name": "KID/primary/800", "remote": false, "resolvedType": "COLOR", @@ -19038,7 +19055,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8467", - "key": "7e12b72e204b5bd1c0a58a05a798306121d04892", + "key": "b9d0341d8b6f15ba55c9bd48b9bb76a5ca86fb69", "name": "KID/primary/900", "remote": false, "resolvedType": "COLOR", @@ -19058,7 +19075,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8468", - "key": "0b73695a6b2e72cdd92fe4b3fdad084cd7f9542b", + "key": "4158feb3e4a68aced883828b48895a8be9450201", "name": "KID/primary/default", "remote": false, "resolvedType": "COLOR", @@ -19076,7 +19093,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8470", - "key": "4e7496b8d3a38d73e2af77c418ca8b4d8f1515dd", + "key": "f0b89a374a600cef7a77865114c1e3e31f962384", "name": "KID/black", "remote": false, "resolvedType": "COLOR", @@ -19094,7 +19111,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8477", - "key": "dde9bbde7ed41722c0cf0fe1691688db986b1e81", + "key": "982f90a3e48189a04705eac09f900b0c04cfa25d", "name": "KID/white/default", "remote": false, "resolvedType": "COLOR", @@ -19114,7 +19131,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8488", - "key": "3772e9f1fc3436dc59e1705d045cab75ff359ad7", + "key": "9b0e8685b66693881e0e7f6803abb9705af662f4", "name": "KID/white", "remote": false, "resolvedType": "COLOR", @@ -19136,7 +19153,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8519", - "key": "df879f5e6f714f612dc7c8fb851435f3009e5298", + "key": "e37033107e59c97e19edbf9de9c29f453b1b5457", "name": "KID/font-family/font-family-primary", "remote": false, "resolvedType": "STRING", @@ -19151,7 +19168,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8520", - "key": "488d4410b2fc6409037bd1fd4ac29b230acf90f6", + "key": "c78b2380998bd4a2bad42f109a8c404c98189dc8", "name": "KID/status/success", "remote": false, "resolvedType": "COLOR", @@ -19171,7 +19188,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8522", - "key": "d725e4e7f8f4918678391feffc25a82b1384d368", + "key": "21b981ef0d8eae9a1432c15bce057bc451f8677a", "name": "KID/status/error", "remote": false, "resolvedType": "COLOR", @@ -19191,7 +19208,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8523", - "key": "c56782e50d97598621be0a8dddaaeebce09a5dca", + "key": "d19ef63fe3fc6d75e32a4b4fb24e37e0ef0bd43a", "name": "KID/status/warning", "remote": false, "resolvedType": "COLOR", @@ -19211,7 +19228,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8524", - "key": "cf272ac24e0ed5f19d1afcc92b77b63b3fc80293", + "key": "dbca8bbd43d11fa2426309e71eedbf19d62ca2be", "name": "KID/status/warning-bg", "remote": false, "resolvedType": "COLOR", @@ -19231,7 +19248,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8525", - "key": "d8f0d37f016e9d68a7a3972ee976d2eb725429c0", + "key": "299908e13c55d11c555fe78b7b4b3d6afce84ef7", "name": "KID/status/success-bg", "remote": false, "resolvedType": "COLOR", @@ -19251,7 +19268,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8526", - "key": "b1700aa427b52e0bc37f2710b32787971166cd10", + "key": "63b8ea6175fc4877fcd82cf7753f0a59a032235f", "name": "KID/status/error-bg", "remote": false, "resolvedType": "COLOR", @@ -19271,7 +19288,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8527", - "key": "048a2ec44a31323249b5ba963be7b8da74a6f318", + "key": "0e056efd76b47be04f1f43ac8c2b334cb1148f8d", "name": "KID/status/neutral-blue", "remote": false, "resolvedType": "COLOR", @@ -19291,7 +19308,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8528", - "key": "ded6bb315360ed02dd968a5ea9faa51cea543c9d", + "key": "b69ca3a3b2cdee2200b36293b88981c2575c8f2e", "name": "KID/status/neutral-blue-bg", "remote": false, "resolvedType": "COLOR", @@ -19311,7 +19328,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8529", - "key": "e7521dc2631bed803024ddfe107bc6e7d87c279d", + "key": "351cc3f067fda6b3b45069d9f73f3dbd91caf89a", "name": "KID/status/neutral-grey-bg", "remote": false, "resolvedType": "COLOR", @@ -19331,7 +19348,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8532", - "key": "c53a8fb6a87e9b2f341f47ea4887b0bea61a5733", + "key": "ec8b763ff0952cb17f7674549bbb62b5d3baebf0", "name": "KID/neutral/200", "remote": false, "resolvedType": "COLOR", @@ -19351,7 +19368,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8533", - "key": "762e75c601247bb9e5b2c6cfb199b49debf22b19", + "key": "32067fecda3a29f370dc73b6a0a0e6e4a190a172", "name": "KID/neutral/300", "remote": false, "resolvedType": "COLOR", @@ -19371,7 +19388,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8534", - "key": "dc59c700e9195d53d64023ca28e4156c12ec0439", + "key": "04a312d74c8e97bbdbef4300f68d313d39f3c9a3", "name": "KID/neutral/400", "remote": false, "resolvedType": "COLOR", @@ -19391,7 +19408,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8536", - "key": "b8250f0ebd7ec2735272167724a5a63fe3d157c9", + "key": "31691332287071eed167ca364577d955337aaba8", "name": "KID/neutral/500", "remote": false, "resolvedType": "COLOR", @@ -19411,7 +19428,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8537", - "key": "d8a21153ead3a5a3ed51245b2bb1a13528b6d20a", + "key": "96a52a3e5805bba47d566c5e097d9f2e636ebd6f", "name": "KID/neutral/600", "remote": false, "resolvedType": "COLOR", @@ -19431,7 +19448,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8538", - "key": "16836cdd7391260ff38576e10692f13f55ec1f6b", + "key": "9abcf4b80cfab985e5caacfeb1dce0681877279c", "name": "KID/neutral/700", "remote": false, "resolvedType": "COLOR", @@ -19451,7 +19468,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47719:8539", - "key": "62e86707407173829c28c63db80f466ccc64d057", + "key": "9bb3e882900792130125faeb48a33ec75484c174", "name": "KID/neutral/800", "remote": false, "resolvedType": "COLOR", @@ -19472,7 +19489,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47728:7235", - "key": "01d93ea09dab9dfcaf3bb3866d33099976d298db", + "key": "e9ca5d7a72deac58f9d3260975d4d600cdc29d88", "name": "components/sd-link/color/--hover/icon", "remote": false, "resolvedType": "COLOR", @@ -19505,7 +19522,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47728:7237", - "key": "091d9e9ca162f43275e55159cc38a6f31cb22ac7", + "key": "2c66d006864ac7428f879080a09f278e064da240", "name": "components/sd-link/color/--none/icon", "remote": false, "resolvedType": "COLOR", @@ -19538,7 +19555,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47728:7239", - "key": "e10b32b493f63af0c24215bf39b9018afcff01be", + "key": "76d9622a37b995534583f98b8837da086aa2f2eb", "name": "components/sd-link/color/--pressed/icon", "remote": false, "resolvedType": "COLOR", @@ -19570,7 +19587,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47735:23876", - "key": "fada6e43fb1b6113d0ce935454a5736f87fa583f", + "key": "1335de4bb45e157adddfcad8cd38f513909f9461", "name": "components/sd-datepicker/__date-item/--hover/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -19604,7 +19621,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47735:23878", - "key": "000b9318e00275fe70be07eafc71dd3be44ec318", + "key": "125267cbd512697ecfa40b571b58dab538f8d56a", "name": "components/sd-datepicker/__date-item/--hover/--prev-next/color/background", "remote": false, "resolvedType": "COLOR", @@ -19638,7 +19655,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47735:23879", - "key": "412d17559b99cc89d10e70d86df06e3d7e9c271e", + "key": "ddb1a0f30043c0f972ceaf8186fc2f912407040d", "name": "components/sd-datepicker/__date-item/--selected/color/text", "remote": false, "resolvedType": "COLOR", @@ -19670,7 +19687,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47735:23880", - "key": "3c69bc434d682c172e590c35edeb8d3c61832db6", + "key": "9376d98c1d22e1a77225571edf53304da73f546a", "name": "components/sd-datepicker/__date-item/--hover/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -19702,7 +19719,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47737:23882", - "key": "e56ce367b620090d3b91a4f756ced1f6606eb532", + "key": "b7b1215a318701bb01c81b93a158a8fbf1e3c279", "name": "components/sd-datepicker/__date-item/--hover/--prev-next/color/text", "remote": false, "resolvedType": "COLOR", @@ -19734,7 +19751,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:193767", - "key": "dd9030a123bec8e9a32b70de752390b2f163b64c", + "key": "f0a7fe270cbf5defa822478245e953ab26001be5", "name": "components/sd-button/--size/sm/font-size", "remote": false, "resolvedType": "FLOAT", @@ -19767,7 +19784,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:193768", - "key": "5ac07bc61a729c12bfac84c5f373ddb7a25c92bc", + "key": "64855c5804f1b83ef2609eeccee6c6b1d7690a88", "name": "components/sd-button/--size/sm/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -19799,7 +19816,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:193769", - "key": "86db688528cd7a0b99933804d819cf0c50c6f6ee", + "key": "66ca2536dc9887e6829964f5e9defbf1c4c1aa2e", "name": "components/sd-button/--size/sm/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -19819,7 +19836,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:27980", - "key": "6ca38fa6a132a863d9f1faecf6b6a3ce5a171761", + "key": "13d08fcc63fc2e88bcde67addc8d99b9ccb51656", "name": "KID/neutral/900", "remote": false, "resolvedType": "COLOR", @@ -19839,7 +19856,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47783:27982", - "key": "0a854087442dd901bd318102568b24e379816051", + "key": "94856da0bcb0d2328c6ca3e17531324d9e9d605c", "name": "KID/creme", "remote": false, "resolvedType": "COLOR", @@ -19861,7 +19878,7 @@ "description": "400", "hiddenFromPublishing": false, "id": "VariableID:47805:4778", - "key": "873b8acc1fc8847d5c4fdd68ac18f0f920fbc167", + "key": "b7ec7218511cadd98a47787779bcbe150d3e6fb9", "name": "KID/font-weight/font-normal", "remote": false, "resolvedType": "STRING", @@ -19876,7 +19893,7 @@ "description": "500", "hiddenFromPublishing": false, "id": "VariableID:47805:4779", - "key": "c8d372d9b9ca897e36ca117dae659e5f42568b1d", + "key": "8bb388c58cd7166725231a88a3c60c8d1071a340", "name": "KID/font-weight/font-semibold", "remote": false, "resolvedType": "STRING", @@ -19891,7 +19908,7 @@ "description": "600", "hiddenFromPublishing": false, "id": "VariableID:47805:4780", - "key": "473a0511840389f38e7795d46e8f078eb08312fb", + "key": "476914c5b0e3767ed6390a1aa75012e3fb126c01", "name": "KID/font-weight/font-bold", "remote": false, "resolvedType": "STRING", @@ -19906,7 +19923,7 @@ "description": "48px", "hiddenFromPublishing": false, "id": "VariableID:47829:633", - "key": "295d90478bb287dc16f8d3ae5efbed0b802ce1a5", + "key": "4d539e78048673ef59e2c86a8c7720d5c45523f0", "name": "utilities/spacing/14", "remote": false, "resolvedType": "FLOAT", @@ -19938,7 +19955,7 @@ "description": "border radius 4px", "hiddenFromPublishing": false, "id": "VariableID:47829:638", - "key": "c9ef81fc3b3087f670936bba940be1c195894483", + "key": "c8c4ff6d4b671d73f49b778f5a07ae86d1584193", "name": "KID/rounded/sm", "remote": false, "resolvedType": "FLOAT", @@ -19953,7 +19970,7 @@ "description": "border radius 8px", "hiddenFromPublishing": false, "id": "VariableID:47829:639", - "key": "037cc2e9dc5e37b346a9b6e3fe0829831c0d931e", + "key": "4177cf0ae9d923aa6e727ef4a96718ab0b551e46", "name": "KID/rounded/md", "remote": false, "resolvedType": "FLOAT", @@ -19968,7 +19985,7 @@ "description": "border radius 16px", "hiddenFromPublishing": false, "id": "VariableID:47829:640", - "key": "863ed104d74a814dfb754bcd086251f28c884c54", + "key": "232a45b0562136f172afc6446084c1149e8152f0", "name": "KID/rounded/\blg", "remote": false, "resolvedType": "FLOAT", @@ -19983,7 +20000,7 @@ "description": "border radius 999px", "hiddenFromPublishing": false, "id": "VariableID:47829:641", - "key": "215ae0d570d37f05d420c11632b90f57af6b65b7", + "key": "b4263330c01bae41ac824a2524b91011c2765a4f", "name": "KID/rounded/full", "remote": false, "resolvedType": "FLOAT", @@ -19998,7 +20015,7 @@ "description": "opacity 50%", "hiddenFromPublishing": false, "id": "VariableID:47829:657", - "key": "893c15bbb9f242072b378f38c011a8da92b20405", + "key": "bcb823fbc4dbbf0e32d6d9df4dad3af966b197d7", "name": "KID/opacity/opacity-50", "remote": false, "resolvedType": "FLOAT", @@ -20013,7 +20030,7 @@ "description": "opacity 60%", "hiddenFromPublishing": false, "id": "VariableID:47829:659", - "key": "fbca600e7adb98fe63ba14fb80f82576dc169130", + "key": "d44d14daac9a703f8002915b120e8afe4de2881e", "name": "KID/opacity/opacity-60", "remote": false, "resolvedType": "FLOAT", @@ -20028,7 +20045,7 @@ "description": "opacity 100%", "hiddenFromPublishing": false, "id": "VariableID:47829:665", - "key": "b08ca4fbbce44af47e0dcdb1dd0fd33eef052584", + "key": "ebe407d492e5794d65918861b32c5eb65175f4a3", "name": "KID/opacity/opacity-100", "remote": false, "resolvedType": "FLOAT", @@ -20043,7 +20060,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47833:10802", - "key": "06614177c0933d0c8be8d0f124f5a22709619245", + "key": "4b78e833084686355e55b709ba8697738f0fdf7b", "name": "font-semibold", "remote": false, "resolvedType": "STRING", @@ -20058,7 +20075,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47835:23074", - "key": "73e9b1b6f712ba3d76d799089bb47444010dd401", + "key": "0f884d2a2b999a3d258eb6d1a7b973bd85019716", "name": "VB/font-weight/font-normal", "remote": false, "resolvedType": "STRING", @@ -20073,7 +20090,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47835:23075", - "key": "3b7ea64b1026d84fc4b725c77902a68ee93bf7f1", + "key": "1ba6f0eca63c5ba0767dd8e1029cc125057603d5", "name": "VB/font-weight/font-bold", "remote": false, "resolvedType": "STRING", @@ -20088,7 +20105,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:47858:29969", - "key": "ae4e13bd049798f2de4b89814053d4d91df61aa0", + "key": "71eb8a063c3ff68bc9b7fe5a4e2a1ba76e6a4a05", "name": "components/sd-button/--primary/--inverted/--active/color/background", "remote": false, "resolvedType": "COLOR", @@ -20120,7 +20137,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47877:97571", - "key": "b4df5dd733ceb5491e7f936820027cd13fe893ff", + "key": "0b632f9c4d27267fdde6dbe4e8c3a6c37e8f4555", "name": "utilities/text/xs", "remote": false, "resolvedType": "FLOAT", @@ -20140,7 +20157,7 @@ "description": "14px", "hiddenFromPublishing": false, "id": "VariableID:47899:14901", - "key": "3233d817b2238821b747909cc8d81086a8a8877f", + "key": "83094fb166d8a05466dc951cff86f248b4eadc4d", "name": "text-xs", "remote": false, "resolvedType": "FLOAT", @@ -20155,7 +20172,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5274", - "key": "32d9782ec602d3edeae944c5ff8eb38bea43a7d2", + "key": "d1d51f2452a5b29723d48194dd7070cbdfd1bf3c", "name": "utilities/text/sm", "remote": false, "resolvedType": "FLOAT", @@ -20175,7 +20192,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5276", - "key": "f5191c0e02fdfb3a921b1a516187574a29e76e0c", + "key": "ee22f525b19cb4c2cb9d2ae61d2ff356139bd2d1", "name": "utilities/text/base", "remote": false, "resolvedType": "FLOAT", @@ -20195,7 +20212,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5277", - "key": "e8efa08f67f259ee71b40b6a3fa8ec9f3d3d680b", + "key": "7429c259a0cac802a8b1562f3b4e31f2a4b9e76e", "name": "utilities/text/lg", "remote": false, "resolvedType": "FLOAT", @@ -20215,7 +20232,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5278", - "key": "5f6bc2d979e16422655e9bd77e48adfc13f61c59", + "key": "eb29951e41b502759b4a66808981445483368b01", "name": "utilities/text/xl", "remote": false, "resolvedType": "FLOAT", @@ -20235,7 +20252,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5279", - "key": "872a6921837f903c5013dff04c1551fade84e697", + "key": "464f5716f5336298339b9b38a205c79e9744fe3c", "name": "utilities/text/2xl", "remote": false, "resolvedType": "FLOAT", @@ -20255,7 +20272,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5280", - "key": "6a4b245a12f419686898776da078d5a6d3b7e512", + "key": "9e97d6f86a4eaf4aaf51e1d833b88879971cdab7", "name": "utilities/text/3xl", "remote": false, "resolvedType": "FLOAT", @@ -20275,7 +20292,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47899:5281", - "key": "4f49d7c5499c117a1023515dc2374006eab92f09", + "key": "58c0faad1b6efecc4a72d2d58d49f8badd9b1def", "name": "utilities/text/4xl", "remote": false, "resolvedType": "FLOAT", @@ -20295,7 +20312,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47958:17170", - "key": "648b9fdc2ddb6584de9395749af6ef9fa3953676", + "key": "161b9f3c666c5cf3b4b576a60df9258ac2ba3dff", "name": "_todo/components/sd-radio/--size/lg/__icon", "remote": false, "resolvedType": "FLOAT", @@ -20327,7 +20344,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47958:21546", - "key": "f74d1baa717fd2196d3b7169b07c06307ca20243", + "key": "aa88fdb53aa2f67d34cf468a392fd359b967ec3a", "name": "_todo/components/sd-checkbox/--size/lg/__icon", "remote": false, "resolvedType": "FLOAT", @@ -20359,7 +20376,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47961:6096", - "key": "783979fecbccbc91d79e7f80a91e5f1c4a32ac54", + "key": "516b6e94d13bc05becf68dd7fdb75cf67dbae74e", "name": "components/sd-tag/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -20399,7 +20416,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47961:6198", - "key": "8445fabbdb7ab2854e71f2214c90d7c6f866ab4d", + "key": "7464e3ab2b5ceb69eb0b13e54feb12b33879ffcd", "name": "components/sd-tag/--default/color/border", "remote": false, "resolvedType": "COLOR", @@ -20433,7 +20450,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47961:6310", - "key": "035caf7177bd0b83d8aff6cfb68d60afde95254f", + "key": "53ebe60e95943ff63bc2ddaa34fc23d20fb45644", "name": "components/sd-tag/--size/lg/font-size", "remote": false, "resolvedType": "FLOAT", @@ -20465,7 +20482,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:47961:6311", - "key": "1fd01b3fb750d4e25205445d0401d7bd0f5d4ade", + "key": "f5ce8c5f2fe843c563b49093d6f5d6f18ed0622e", "name": "components/sd-tag/--size/sm/font-size", "remote": false, "resolvedType": "FLOAT", @@ -20497,7 +20514,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48046:4669", - "key": "fffa04e1313dd3742befe1e1f829ad6db24fb458", + "key": "16b33e8c79e80349b0064cb5aca554ae786c3ce4", "name": "components/sd-input/--size/_label/font-size", "remote": false, "resolvedType": "FLOAT", @@ -20529,7 +20546,7 @@ "description": "Used for font weight inside sd-chip & sd-flag", "hiddenFromPublishing": false, "id": "VariableID:48127:24317", - "key": "cad6529fdd61c343627efc535018085e364e6289", + "key": "8c0d606814a41cd2f1d789032a8c607fc857254f", "name": "components/marker/font-weight", "remote": false, "resolvedType": "STRING", @@ -20561,7 +20578,7 @@ "description": "Used for sd-chip & sd-flag", "hiddenFromPublishing": false, "id": "VariableID:48127:24325", - "key": "04b3e3bc2a97e454f1e82137b6fe51291157c157", + "key": "511c93053111f1371c820e6df1436ce0004890c0", "name": "components/marker/border-width", "remote": false, "resolvedType": "FLOAT", @@ -20587,7 +20604,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48150:71089", - "key": "b92e36c9d23a8390565522b517f1324ef1d979e6", + "key": "7f1ad5c83a91bc0fdb55f8ac4be9e7ac76011405", "name": "KID/white/600", "remote": false, "resolvedType": "COLOR", @@ -20607,7 +20624,7 @@ "description": "Used for sd-chip & sd-flag", "hiddenFromPublishing": false, "id": "VariableID:48150:71090", - "key": "11a0e3b7dfa640617e1306c0cbb7fb6b2311cdf2", + "key": "6ab9c7cea4b85a9f8612943db040422c5c23cdd0", "name": "components/marker/font-size", "remote": false, "resolvedType": "FLOAT", @@ -20639,7 +20656,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:92347", - "key": "45e67809569623e1ea07352dd5570589667eb246", + "key": "d000b979ffc85e62d6647e72b9b877416fd52f4c", "name": "components/sd-combobox/__tag/border-width", "remote": false, "resolvedType": "FLOAT", @@ -20671,7 +20688,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96150", - "key": "54cbf0916b5bdb412aa0ac89fe5c3a24c67412a0", + "key": "2c79ada7ede996beb35dcbdf9c19e399fe0d1891", "name": "utilities/leading/3", "remote": false, "resolvedType": "FLOAT", @@ -20691,7 +20708,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96151", - "key": "5404a231cd9d68890ca3cb8622fd84417006e3df", + "key": "51780144ad8dc1f251b29a21a587fa698d43bf99", "name": "utilities/leading/4", "remote": false, "resolvedType": "FLOAT", @@ -20711,7 +20728,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96153", - "key": "e3ec06a0f9cc6289cc77bbce1694f20e8555b25c", + "key": "b5d1a950191bcfbeed49d7f674054c15d6f2c41b", "name": "utilities/leading/6", "remote": false, "resolvedType": "FLOAT", @@ -20731,7 +20748,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96154", - "key": "546ee89346a98ddb5a6ad7788c150e0899697613", + "key": "58508cdc7fd5b9ab52feab058e4555601868abc0", "name": "utilities/leading/7", "remote": false, "resolvedType": "FLOAT", @@ -20751,7 +20768,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96155", - "key": "1d505ffeff941aa15a8b03529a75d0e4f1a04798", + "key": "e0d9f7a4640b16190379b5c539a05f2c75866f40", "name": "utilities/leading/8", "remote": false, "resolvedType": "FLOAT", @@ -20771,7 +20788,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96156", - "key": "0c2173c203f8c8eb930c8a50e39abd67b8b9d7cf", + "key": "ca05b09d654f5c1c3f1ffe1d3cf85a9cbc7db836", "name": "utilities/leading/8,5", "remote": false, "resolvedType": "FLOAT", @@ -20791,7 +20808,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96200", - "key": "d00f7f8dba99f0aa85fc30fc2ba5f50f9a660029", + "key": "80558a74833ecac8a59d1955c06fccb884e86a3b", "name": "utilities/leading/5", "remote": false, "resolvedType": "FLOAT", @@ -20811,7 +20828,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96201", - "key": "f90d0e1fd51049bfb18a8fd2b03f405bc2710c5f", + "key": "899626d25589dab8a72537ccb928c16676f0efe0", "name": "utilities/leading/9", "remote": false, "resolvedType": "FLOAT", @@ -20831,7 +20848,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96202", - "key": "1a6cada4ff92d09200fca7feb5d80e3ec2ac1892", + "key": "3bdda014480ca3a8220f2290aeec50a4da184371", "name": "utilities/leading/9,5", "remote": false, "resolvedType": "FLOAT", @@ -20851,7 +20868,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96203", - "key": "b5be7f298df72de776d6fdd34670c33cda741944", + "key": "48cae44f93d8f27e4688ebe4771cf4e4a1f12f54", "name": "utilities/leading/12", "remote": false, "resolvedType": "FLOAT", @@ -20871,7 +20888,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96204", - "key": "1eb8165ee91fc5419f49b278ebf5fe17a8bca637", + "key": "ef18a510beef52e51740e1f645ed945ad88972cd", "name": "utilities/leading/15", "remote": false, "resolvedType": "FLOAT", @@ -20891,7 +20908,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48602:96205", - "key": "9c7e3074c0e729cef02a45fe9923d779ca58c808", + "key": "088e826713f0f2a39317666d44a2a97726893ce0", "name": "utilities/leading/4,5", "remote": false, "resolvedType": "FLOAT", @@ -20911,7 +20928,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48719:115820", - "key": "9e3d2caf038a310be8b4092c0a99779f8a111e32", + "key": "d8f5bd23b9a902b5837b5d05f35a2fa6b4c095cb", "name": "components/sd-header/__underline/height", "remote": false, "resolvedType": "FLOAT", @@ -20943,7 +20960,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:48719:115873", - "key": "9bcce826aa3e438083086ef81742b204326493a1", + "key": "d8f6cea69457861343035c8c35c2bee5c32e621b", "name": "components/sd-header/__underline/color/background", "remote": false, "resolvedType": "COLOR", @@ -20981,7 +20998,7 @@ "description": "color has same luminance as step 100", "hiddenFromPublishing": false, "id": "VariableID:48719:123821", - "key": "9bf56d6fbc62925e2fb216890299b9e4cfe4018e", + "key": "54751d2d4fac82072aec382c03198c78c794575b", "name": "VB/azure/200", "remote": false, "resolvedType": "COLOR", @@ -21001,7 +21018,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:48719:146279", - "key": "e7db641241c29b2329ca44197d4422dde1d6ddf8", + "key": "2588b651396eb9e29853110bc04f19606db6a7e6", "name": "utilities/sizing/0,25", "remote": false, "resolvedType": "FLOAT", @@ -21033,7 +21050,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:49052:101", - "key": "4cf849c7994759cd13f49c5ad27f91009d8a9988", + "key": "43abe8ef0c4011336185c53f5309f188961d1dd5", "name": "components/sd-carousel/__pager-dot/--inverted/background", "remote": false, "resolvedType": "COLOR", @@ -21065,7 +21082,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:49052:102", - "key": "3a06b916e28d9fdcc2052e7e9e8ab84b162ecd9a", + "key": "e504fccedad3e57c10a0336e021855ceaf7f6be6", "name": "components/sd-carousel/__pager-dot/background", "remote": false, "resolvedType": "COLOR", @@ -21097,7 +21114,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:49052:103", - "key": "3fdfaa9c20e968a4e857589a77b18fa6ca71db52", + "key": "6185cd4057510a3799f6fb326aeb4972c00794d9", "name": "components/sd-carousel/__pager-dot/--inverted/border", "remote": false, "resolvedType": "COLOR", @@ -21129,7 +21146,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:49052:1122", - "key": "195aa23c33fd687059918c78eca8d08cad89b061", + "key": "8fc507e744dfda22aede4b78055c4d38a0de19eb", "name": "components/sd-carousel/__pager-dot/--inverted/--hovered/background", "remote": false, "resolvedType": "COLOR", @@ -21161,7 +21178,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49052:99", - "key": "1db556a27e570009f990b89d215547f5ba898d55", + "key": "13329e99180fb9541efd8a69845d044ca4cf4299", "name": "components/sd-breadcrumb/__separator/--current/color", "remote": false, "resolvedType": "COLOR", @@ -21193,7 +21210,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49063:51818", - "key": "ffa086180d3a8c1dc7130c711e20c0d9e2adb2f2", + "key": "2b8468d4ddbacb5a9c6011d75437b753028dcfcd", "name": "components/sd-map-marker/--main/color/background", "remote": false, "resolvedType": "COLOR", @@ -21225,7 +21242,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:49398:69", - "key": "d477bade19b81121f527275e7b594ed7b5106eec", + "key": "9f7eeb4b5db94423c57d1a8365895c4be7acec52", "name": "components/sd-skeleton/color", "remote": false, "resolvedType": "COLOR", @@ -21259,7 +21276,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49425:37983", - "key": "efbfc07c45d112ac851b88513655d0a79b2f6885", + "key": "fce2a5e8d422454b2fa02b97530725276f64c8cd", "name": "components/sd-badge/--blue/color/background", "remote": false, "resolvedType": "COLOR", @@ -21291,7 +21308,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49594:14770", - "key": "3e00d0e0296ead1cbe36ff360924ac9016b22553", + "key": "6922d135858a43d7ac0e49fa05f1034c7a68545e", "name": "components/sd-teaser/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -21314,7 +21331,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49594:15491", - "key": "8ad278dfdebc179f5f522f263fa6115ccf220149", + "key": "f23e49ffeec577f8f767d12acd1062fdac587715", "name": "_internal/slot-inverted", "remote": false, "resolvedType": "COLOR", @@ -21354,7 +21371,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49844:13867", - "key": "2e2feb5136ece6d56f93dfd115c27fa7e9cdcaa5", + "key": "eccafe6416f70ba9b6ad2bbe4351543dba4dbda2", "name": "components/sd-pagination/--inverted/border", "remote": false, "resolvedType": "COLOR", @@ -21386,7 +21403,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49844:13952", - "key": "456b09eee1fa7be2ad542ce42b0e0b3867b27ac0", + "key": "7c873ce67905fe2729636269bdf814210a043e7f", "name": "components/sd-pagination/--default/border", "remote": false, "resolvedType": "COLOR", @@ -21418,7 +21435,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49857:86584", - "key": "2591821b3c6f2fa3e3cda22bacd6e03a83fa4554", + "key": "945c3cc8b883eb541ece2882a4e94bd7f52238b2", "name": "components/form-control/__listbox/border-bottom-left-radius", "remote": false, "resolvedType": "FLOAT", @@ -21450,7 +21467,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49895:3480", - "key": "36b47af4de8948c51b7e4038e0615c50269a9f8e", + "key": "4b70bcef2ec579a0c6c853434abd8fd13442e80c", "name": "KID/white/400", "remote": false, "resolvedType": "COLOR", @@ -21470,7 +21487,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49895:3481", - "key": "7285f2248776fef388095fb7b5b1894838edfa7d", + "key": "29f5b0bbd98666e183d50c3eff1d5c3f7b45b42e", "name": "KID/white/100", "remote": false, "resolvedType": "COLOR", @@ -21490,7 +21507,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49895:3482", - "key": "c3bb8446ec05c59c8bcd1ae0234be8cdfbd485b4", + "key": "82ed3f9745761bc775ac85a7598f706f9c5fe933", "name": "KID/white/20", "remote": false, "resolvedType": "COLOR", @@ -21510,7 +21527,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:49895:3483", - "key": "da092fdf4aa051877b1218b6a640c8b62957efa1", + "key": "0409e5aaf177622b2c3fbf65c6903be65b426326", "name": "KID/white/840", "remote": false, "resolvedType": "COLOR", @@ -21531,7 +21548,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:49909:7223", - "key": "7feebbdb31930944156fda4a98ba31231d925b50", + "key": "1add6dfcb2b9bf8d2d6aeb486e203519a7aee938", "name": "components/sd-notification/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -21563,7 +21580,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:49909:7224", - "key": "1f92866568118aab773d7f8d0dff69c0bd2b66c6", + "key": "4f7507afc21d35823730ad961de1414588d9f0c8", "name": "components/sd-notification/color/border", "remote": false, "resolvedType": "COLOR", @@ -21595,7 +21612,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": "8f140bcd2c5604e8a69703960d14edd61407488b", + "key": "80f88dfe75bd50d0c806f75be23a02110e1ec24f", "name": "KID/neutral/100", "remote": false, "resolvedType": "COLOR", @@ -21615,7 +21632,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:50186:1503", - "key": "be960ae9e91e168d7a568463550f991b2faca4a3", + "key": "59c09f05f0aeb263892117d6be3190a74b45388a", "name": "KID/white/500", "remote": false, "resolvedType": "COLOR", @@ -21635,7 +21652,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": "5222d853d2db9d841fc15a15ca709c1c1c189079", + "key": "e922c96fa6f90bb05af67f26c973e2521bf53931", "name": "components/sd-dropdown/color/background", "remote": false, "resolvedType": "COLOR", @@ -21669,7 +21686,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:50346:24618", - "key": "311fe0abf3bdef8f9208ac434330d3a57347c944", + "key": "c60990bd0605bca6350d4a5135910c69b4c92a58", "name": "components/sd-datepicker/__date-item/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -21701,7 +21718,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:50348:22930", - "key": "fc99ffb3dcb523dbcc85874d19004afe6946e940", + "key": "d68cf84a217d3d8902c0de0e0ced6fdb68256313", "name": "components/sd-datepicker/__date-item/--current/font-weight", "remote": false, "resolvedType": "STRING", @@ -21733,7 +21750,7 @@ "description": "Used for active / selected elements", "hiddenFromPublishing": false, "id": "VariableID:50578:36839", - "key": "19b575b17f78a3ac8982c327beaa04c2f13c3623", + "key": "4d753f67515e156ddea30f0395df4680bcc4a266", "name": "components/sd-carousel/--active/--inverted/color/border", "remote": false, "resolvedType": "COLOR", @@ -21765,7 +21782,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:50578:41688", - "key": "b45157cdc7270f01228a31ed3379380b3d64bb2b", + "key": "398ca879a16d6fee3e58eb45d85ab6ab510c718a", "name": "components/sd-button/--secondary/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -21797,7 +21814,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:50578:56661", - "key": "363f9b605782f45947262ef58b4bc01ece9e4766", + "key": "84421ecb190ca6657bed904cc10205edbfd6d4c0", "name": "components/sd-button/--tertiary/--default/color/text", "remote": false, "resolvedType": "COLOR", @@ -21829,7 +21846,7 @@ "description": "Used for buttons, inverted focus state", "hiddenFromPublishing": false, "id": "VariableID:50578:56662", - "key": "bb163b900809c30c7f3896e9faa3e6028a44352a", + "key": "71fed5e54a17c5c2a3849a524cc3d8868410e4ee", "name": "components/sd-button/--secondary/--inverted/color/border", "remote": false, "resolvedType": "COLOR", @@ -21861,7 +21878,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:50587:4943", - "key": "5977c6f1ea55f615c970a37aec9f01e827fa83da", + "key": "eb5475987ba555d0f8b71ec183a60888b13eeb32", "name": "components/sd-button/--secondary/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -21893,7 +21910,7 @@ "description": "Used for buttons, select field, focus state", "hiddenFromPublishing": false, "id": "VariableID:50587:4944", - "key": "3c19551cc72d67044ef4feb93ae2e31ce3c10f4c", + "key": "91fb7c15d41b86424240304880563a3094ca4fba", "name": "components/sd-button/--tertiary/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -21925,7 +21942,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:50635:19389", - "key": "d0523683e1615b047ff6f179200936cebdab4cdf", + "key": "69becfe26cfe301d0daff4ee19c324858afd73e8", "name": "components/sd-accordion-group/_gap", "remote": false, "resolvedType": "FLOAT", @@ -21945,7 +21962,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:50635:19390", - "key": "f3809a9e1fffb675e642afd8c8bad613c5935ee8", + "key": "6cf1be3e3c99a187c67dd3b9f9fd86ebed6060a2", "name": "components/sd-accordion/color/icon-fill", "remote": false, "resolvedType": "COLOR", @@ -21977,7 +21994,7 @@ "description": "Used for inverted dividers", "hiddenFromPublishing": false, "id": "VariableID:50635:23474", - "key": "7549cf91b5cdd368ae321adbaf1d622c5c7f95cc", + "key": "ac3271308f16281ee3a0306a2ab20b95424bad58", "name": "components/sd-audio/__track-bar/--inverted/color/background", "remote": false, "resolvedType": "COLOR", @@ -22009,7 +22026,7 @@ "description": "Used for sd-flag", "hiddenFromPublishing": false, "id": "VariableID:51502:42739", - "key": "81e7124049fcc71d82ce4bc5067e486b07889200", + "key": "1e13a5a35958a64f51f509d975638c6f7ffffa4e", "name": "components/sd-tab/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -22041,7 +22058,7 @@ "description": "Used for tooltip", "hiddenFromPublishing": false, "id": "VariableID:51573:9921", - "key": "e0cea1b0e4b3e15f7e97a9a36e61dd4bfeded39b", + "key": "5a7b1dad37e557fefb57170f18d9ca7bc93fcaba", "name": "utilities/shadow/xs/color", "remote": false, "resolvedType": "COLOR", @@ -22075,7 +22092,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51596:1602", - "key": "269ab104a4bcd0a53bedc6a56edf00bdcc5143e8", + "key": "c47a42143b96e0db4c5873715848e33f3a9e28f9", "name": "utilities/shadow/xs/x", "remote": false, "resolvedType": "FLOAT", @@ -22095,7 +22112,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51596:1603", - "key": "acc7461f7034a61008ef9af5850b4db50e0cff2a", + "key": "89086664c7656a92ba27c5b95a446e1870c2324d", "name": "utilities/shadow/xs/y", "remote": false, "resolvedType": "FLOAT", @@ -22115,7 +22132,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51596:1604", - "key": "48950ced2837782c273d5bebf1096451073d7631", + "key": "8985dc8a314ddc66f32b6f3b52401e8cdc1aa719", "name": "utilities/shadow/xs/blur", "remote": false, "resolvedType": "FLOAT", @@ -22135,7 +22152,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51596:1605", - "key": "52bf5e1f5453816bc70f1431f77b8c98da9d3182", + "key": "87e412be799411579ec11ae51fd03775a50fe048", "name": "utilities/shadow/xs/spread", "remote": false, "resolvedType": "FLOAT", @@ -22155,7 +22172,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51964:11322", - "key": "16a20b3514da7712680209a6da67f752079b67f3", + "key": "761eefface9e3fc4358934b1cf9d66ccbddb543e", "name": "components/sd-map-marker/--cluster/color/text", "remote": false, "resolvedType": "COLOR", @@ -22187,7 +22204,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:51964:11323", - "key": "5693c8255cff3d130efc2fabdb67b81b3b692a25", + "key": "2f4de2751eb680a6f4dd726ab18e0eb67125d605", "name": "components/sd-map-marker/--pin/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -22219,7 +22236,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:51974:11364", - "key": "6d45679c53b610c80f26416890f1cf331ed040ca", + "key": "84fcb296c4a1725b38c3c658edef7ceab75f231f", "name": "components/sd-map-marker/--pin/color/text", "remote": false, "resolvedType": "COLOR", @@ -22251,7 +22268,7 @@ "description": "Used for disabled state", "hiddenFromPublishing": false, "id": "VariableID:53463:2694", - "key": "8e069cbced9b56b2d8b993e9e6b1829e97c26897", + "key": "0a1ba39182383e5868387c9b477e3bb8f643024d", "name": "components/sd-tag/--disabled/color/text", "remote": false, "resolvedType": "COLOR", @@ -22283,7 +22300,7 @@ "description": "Used for teaser, audio (wave animation)\n", "hiddenFromPublishing": false, "id": "VariableID:53591:1805", - "key": "959fbbbfee2a78e0d05dc46786db329a9fcff780", + "key": "9c081ca1805d08706ba2b9308b63bb1d60ffbe23", "name": "components/sd-teaser-media/--white/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -22323,7 +22340,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:53591:1806", - "key": "1ff2fd900a566c897896210eaf0af70bc6b85602", + "key": "0bf89b06c3b15e3edddd9cdcf2d6cf2b96869f82", "name": "components/sd-teaser-media/--white/color/background", "remote": false, "resolvedType": "COLOR", @@ -22363,7 +22380,7 @@ "description": "Used for teaser", "hiddenFromPublishing": false, "id": "VariableID:53592:5039", - "key": "1747a47d8f346920fc73a2ce475d125f9a2050f3", + "key": "6fe60a1fb375ae644f7696e10e3c7eaecf3eb96b", "name": "components/sd-teaser-media/--primary-100/color/background", "remote": false, "resolvedType": "COLOR", @@ -22403,7 +22420,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:54289:8163", - "key": "a7035d2693003c57a6d52ac256d15f168dee134c", + "key": "0cce87f21cb8d7a78329bb1636563a23689b5545", "name": "components/sd-button/border-width", "remote": false, "resolvedType": "FLOAT", @@ -22435,7 +22452,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:54294:16226", - "key": "6e85fe51942a38eef5998bfe109a685aaf37edaa", + "key": "1d2bc32f6e5d7765373c1f9c2b1be0dfbea7538c", "name": "components/sd-button/--secondary/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -22467,7 +22484,7 @@ "description": "Used for pressed interaction", "hiddenFromPublishing": false, "id": "VariableID:54294:21759", - "key": "a01c738e84ccddb814535058a3c6b494ead71422", + "key": "0bb832d9580d3fcb1a18e8a8566e929cc01b4de5", "name": "components/sd-button/--tertiary/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -22499,7 +22516,7 @@ "description": "Inverted icon color", "hiddenFromPublishing": true, "id": "VariableID:54294:28373", - "key": "177aff3c298b8b9d6101eabbf39f35b2d0fbc0bd", + "key": "655a04e0a317c8d8010d437a5e4fd685321d30ed", "name": "components/sd-button/--secondary/--inverted/color/text", "remote": false, "resolvedType": "COLOR", @@ -22531,7 +22548,7 @@ "description": "Inverted icon color", "hiddenFromPublishing": true, "id": "VariableID:54294:28374", - "key": "e2c1682cacd3f0ddd9eb307c809aaec940950a67", + "key": "8580ccd9fd53cf415f612b587be1400a653ec850", "name": "components/sd-button/--tertiary/--inverted/color/text", "remote": false, "resolvedType": "COLOR", @@ -22563,7 +22580,7 @@ "description": "Used for inverted hover interaction button label", "hiddenFromPublishing": false, "id": "VariableID:54294:28375", - "key": "8080de34f607fdb18fb3f5a7d56c4936d3df6876", + "key": "17612807493b94788f891d60236e0041da9d0e05", "name": "components/sd-button/--secondary/--inverted/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -22595,7 +22612,7 @@ "description": "Used for inverted hover interaction text link and inverted pressed interaction button label", "hiddenFromPublishing": false, "id": "VariableID:54294:28378", - "key": "914b47c8fe4f2aa2ab0ebc4c3adaee3d07352bc3", + "key": "d81f5377079f5b628a0faad3c887227e46c2f7a6", "name": "components/sd-button/--secondary/--inverted/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -22627,7 +22644,7 @@ "description": "Used for inverted hover interaction text link and inverted pressed interaction button label", "hiddenFromPublishing": false, "id": "VariableID:54294:28379", - "key": "ed55eff4790c49ca87e33704085f82ec0829889a", + "key": "2deabaf03225299d0dc4003172ce07a73fc60097", "name": "components/sd-button/--tertiary/--inverted/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -22659,7 +22676,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:54572:8960", - "key": "9e19a3c7498b183a03c7651eb06f5b474ee6956d", + "key": "07d585565856d362d7331ab9fd43442bd0e7369a", "name": "utilities/spacing/2,5", "remote": false, "resolvedType": "FLOAT", @@ -22691,7 +22708,7 @@ "description": "Used for icon-only and loading variant", "hiddenFromPublishing": false, "id": "VariableID:54634:38690", - "key": "26b5b532c5ac38c531d87184384f0fac93cf7469", + "key": "813d64ec0bec18b8d6a0b0558fb11080478d454b", "name": "components/sd-button/--size/lg/min-height", "remote": false, "resolvedType": "FLOAT", @@ -22717,7 +22734,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:54634:38691", - "key": "4bde27cc88cdfc3a73749535372ab1931e30d670", + "key": "7f50ec0c8795bf86499b3b48bc1646e21a61c3c5", "name": "components/sd-button/--size/md/min-height", "remote": false, "resolvedType": "FLOAT", @@ -22743,7 +22760,7 @@ "description": "dev only!", "hiddenFromPublishing": false, "id": "VariableID:54687:83305", - "key": "53c2b244c2582aa6c8f193c400949b7ba5419910", + "key": "5a8584455a22dce18a0f191f39e5e2c201b08ff8", "name": "components/sd-button/--secondary/--size/lg/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -22763,7 +22780,7 @@ "description": "dev only!", "hiddenFromPublishing": false, "id": "VariableID:54687:83306", - "key": "cd02e23c6ff872312fb7dd7afcdd99b69157c8f5", + "key": "dfbd86a137834d1605cbc418bade69d7204920bf", "name": "components/sd-button/--secondary/padding-inline", "remote": false, "resolvedType": "FLOAT", @@ -22783,7 +22800,7 @@ "description": "dev only!", "hiddenFromPublishing": false, "id": "VariableID:54687:83307", - "key": "97bc1daa83cdd3b0cc928868b64796767604d94b", + "key": "6626ec5eeef9e4ec16fce3b55d6a8b4877db2d81", "name": "components/sd-button/--secondary/--size/md/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -22803,7 +22820,7 @@ "description": "dev only!", "hiddenFromPublishing": false, "id": "VariableID:54687:83308", - "key": "2d707b8f9ba9bffc10c8319119dc89042e0d8a01", + "key": "7cf3d23fdef8a888ce67c6a105ae7eef5bf1cd16", "name": "components/sd-button/--secondary/--size/sm/padding-block", "remote": false, "resolvedType": "FLOAT", @@ -22823,7 +22840,7 @@ "description": "Used inside panel summary layer of sd-accordion to accommodate the border", "hiddenFromPublishing": false, "id": "VariableID:54698:83323", - "key": "43313b81de6c95dc482f9e6f53022ae90d24e5e0", + "key": "d6f588b612c9a81fcdabb9d4c1b4a8dda932232f", "name": "components/sd-accordion/_panel-padding", "remote": false, "resolvedType": "FLOAT", @@ -22843,7 +22860,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:56149:47181", - "key": "1faaeba0640d4663ac6ca2fb99e2537b82ead689", + "key": "9149d1403471d7acc9695be760aadd1cd2812f32", "name": "components/sd-notification/__duration-indicator/color/background", "remote": false, "resolvedType": "COLOR", @@ -22875,7 +22892,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:56342:50645", - "key": "62a64ee239decc43f627c7100254e5cd3aaabfde", + "key": "b8657816183d6128be7de843807eebc1dcde86b9", "name": "components/sd-datepicker/__date-item/--hover/--default/color/border", "remote": false, "resolvedType": "COLOR", @@ -22907,7 +22924,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:56886:2865", - "key": "2228f34e3b2b50d4b969b53a2dfd4f1726aeefc0", + "key": "16ed3fe51f8b99a95418cd4fed498405286dcaf2", "name": "components/sd-datepicker/__date-item/--selected/color/background", "remote": false, "resolvedType": "COLOR", @@ -22939,7 +22956,7 @@ "description": "Used for hover interaction", "hiddenFromPublishing": false, "id": "VariableID:56886:3301", - "key": "dd4a6459f1cfca8699a97b86d88717e7614a6929", + "key": "33559d17b3b8a52555642b7a19c6c2ae832b03a0", "name": "components/sd-datepicker/__date-item/--selected/--hover/color/background", "remote": false, "resolvedType": "COLOR", @@ -22971,7 +22988,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:56886:3304", - "key": "4e53fe10422a283380e3844e3c32f349f3690577", + "key": "4d3a27349287ffd6c2ba210f941909047ff2d1c0", "name": "components/sd-datepicker/__date-item/--range/color/background", "remote": false, "resolvedType": "COLOR", @@ -23003,7 +23020,7 @@ "description": "Default icon color ", "hiddenFromPublishing": false, "id": "VariableID:56886:3305", - "key": "8a27f221cd0b2270f2f95b3f951874bc88bfe44b", + "key": "cca6ad731ccbfdf372e4ba420a74e1d538190cdc", "name": "components/sd-datepicker/__date-item/--current/color/text", "remote": false, "resolvedType": "COLOR", @@ -23035,7 +23052,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58369:1926", - "key": "6fecbadc508908c47a0d99f98ba15357fe5ce166", + "key": "48241eef9939e50b89365834d843103bba622ab0", "name": "components/form-control/border-radius", "remote": false, "resolvedType": "FLOAT", @@ -23067,7 +23084,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58369:2052", - "key": "7015d5b4785cc3ab48dc751aac4eedb9708d6f66", + "key": "d20d77fb31131d8f7399f0e6e5dba46784582bcc", "name": "components/form-control/__listbox/border-bottom-right-radius", "remote": false, "resolvedType": "FLOAT", @@ -23099,7 +23116,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58369:2053", - "key": "ef85d54966dc7ef02067a02488d6d07047e8301d", + "key": "3302c76587fac1cb11242b012745be7d07d5bb14", "name": "components/form-control/__listbox/border-top-left-radius", "remote": false, "resolvedType": "FLOAT", @@ -23131,7 +23148,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58369:2054", - "key": "73489fce1a5c4421180454da38a7379ca5ace921", + "key": "f0520bfdc9b960ee49240be20ec195598abd8729", "name": "components/form-control/__listbox/border-top-right-radius", "remote": false, "resolvedType": "FLOAT", @@ -23163,7 +23180,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58379:2055", - "key": "cdb0f185eee730abacb43ddf66a8d2d4a0c3157d", + "key": "a8a9050d605ad94537aeed32b7d777423cef3b61", "name": "utilities/shadow/listbox/x", "remote": false, "resolvedType": "FLOAT", @@ -23183,7 +23200,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58379:2056", - "key": "1d0cc139de4a7322c7de47ab7c722c7d5ef29139", + "key": "b78b234a806fc04061fb92a126f4b215ddb76dbb", "name": "utilities/shadow/listbox/y", "remote": false, "resolvedType": "FLOAT", @@ -23203,7 +23220,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58379:2057", - "key": "68f649ebec5d1f73d14477d8e05e1eec133d3ddb", + "key": "b3110d9f19f72ecaf7b1b0bce6be197c07577183", "name": "utilities/shadow/listbox/blur", "remote": false, "resolvedType": "FLOAT", @@ -23223,7 +23240,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58379:2058", - "key": "79853dcdb228a36b0c567da62bc4cd6bf739b856", + "key": "19d390556382736b1296ee94d9adf7aba8612896", "name": "utilities/shadow/listbox/spread", "remote": false, "resolvedType": "FLOAT", @@ -23243,7 +23260,7 @@ "description": "Used for tooltip", "hiddenFromPublishing": false, "id": "VariableID:58379:2059", - "key": "648a06eb522b52b8c11bd58fde73dfd7be7d652d", + "key": "4447ccf4c52e6c3e4bcdfc9f81f11a654ba6f71c", "name": "utilities/shadow/listbox/color", "remote": false, "resolvedType": "COLOR", @@ -23283,7 +23300,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58406:745", - "key": "094b66589400aa0544ef98c2c01554694d0a668f", + "key": "05762e2523a486deb18397a9422772fb589732bc", "name": "components/sd-tab/--active/color/text", "remote": false, "resolvedType": "COLOR", @@ -23315,7 +23332,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:58454:1127", - "key": "caa722c031b2cf426134ac8fff5015913f47bf73", + "key": "afb0e6ac9df6286b23630799a87697f38a05ff59", "name": "components/sd-tab/color/text", "remote": false, "resolvedType": "COLOR", @@ -23347,7 +23364,7 @@ "description": "Used for inverted hover interaction button label", "hiddenFromPublishing": false, "id": "VariableID:58786:17900", - "key": "fbc894c21f65396b9c7734eb70c5156f8dc3467a", + "key": "ffb52f489627e2248b251f61a52537b44239d8b8", "name": "components/sd-button/--primary/--hover/color/text", "remote": false, "resolvedType": "COLOR", @@ -23379,7 +23396,7 @@ "description": "Inverted icon color", "hiddenFromPublishing": false, "id": "VariableID:59049:1633", - "key": "e8510e81fdaaccabdebf34204b6a6b7245a91519", + "key": "bf69795ac9d9ec27f0e00832fc5bec8e213b5392", "name": "components/sd-map-marker/--pin/--default/color/background", "remote": false, "resolvedType": "COLOR", @@ -23411,7 +23428,7 @@ "description": "opacity 50%", "hiddenFromPublishing": false, "id": "VariableID:59189:1633", - "key": "1ff14a008749fd51daeef86b1169d30891367e4a", + "key": "4e38686e0c4ac50a7cf892c49266b681dd618955", "name": "KID/opacity/opacity-0", "remote": false, "resolvedType": "FLOAT", @@ -23421,12 +23438,280 @@ }, "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", + "name": "components/sd-brandshape/color/border/white/default", + "remote": false, + "resolvedType": "COLOR", + "scopes": [ + "ALL_SCOPES" + ], + "valuesByMode": { + "43174:13": { + "id": "VariableID:43979:227", + "type": "VARIABLE_ALIAS" + }, + "43174:14": { + "id": "VariableID:43979:202", + "type": "VARIABLE_ALIAS" + }, + "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:2091": { + "codeSyntax": {}, + "description": "", + "hiddenFromPublishing": false, + "id": "VariableID:60954:2091", + "key": "3a1f269e220a3c36e8f4b33d2645a28eb1e2e777", + "name": "components/sd-brandshape/--primary/color/background", + "remote": false, + "resolvedType": "COLOR", + "scopes": [ + "ALL_SCOPES" + ], + "valuesByMode": { + "43174:13": { + "id": "VariableID:43979:203", + "type": "VARIABLE_ALIAS" + }, + "43174:14": { + "id": "VariableID:43979:203", + "type": "VARIABLE_ALIAS" + }, + "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:2092": { + "codeSyntax": {}, + "description": "", + "hiddenFromPublishing": false, + "id": "VariableID:60954:2092", + "key": "e0d874bd9910ec6815f170227b2bf708e2b83f18", + "name": "components/sd-brandshape/--primary/color/border", + "remote": false, + "resolvedType": "COLOR", + "scopes": [ + "ALL_SCOPES" + ], + "valuesByMode": { + "43174:13": { + "id": "VariableID:43979:203", + "type": "VARIABLE_ALIAS" + }, + "43174:14": { + "id": "VariableID:43979:227", + "type": "VARIABLE_ALIAS" + }, + "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:2093": { + "codeSyntax": {}, + "description": "", + "hiddenFromPublishing": false, + "id": "VariableID:60954:2093", + "key": "a935726c1df1b5c26864d7be99cb23043e49e80a", + "name": "components/sd-brandshape/_internal/slot", + "remote": false, + "resolvedType": "COLOR", + "scopes": [ + "ALL_SCOPES" + ], + "valuesByMode": { + "43174:13": { + "a": 1, + "b": 0.6078431606292725, + "g": 0.2078431397676468, + "r": 0.3843137323856354 + }, + "43174:14": { + "a": 1, + "b": 0.9450980424880981, + "g": 0.7137255072593689, + "r": 0.800000011920929 + }, + "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:2094": { + "codeSyntax": {}, + "description": "", + "hiddenFromPublishing": false, + "id": "VariableID:60954:2094", + "key": "ab73d3ca1d96b144156c2eae052df7a1bf84f5e3", + "name": "components/sd-brandshape/_internal/slot-inverted", + "remote": false, + "resolvedType": "COLOR", + "scopes": [ + "ALL_SCOPES" + ], + "valuesByMode": { + "43174:13": { + "a": 1, + "b": 0.9450980424880981, + "g": 0.7137255072593689, + "r": 0.800000011920929 + }, + "43174:14": { + "a": 1, + "b": 0.9450980424880981, + "g": 0.7137255072593689, + "r": 0.800000011920929 + }, + "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:61410:123911": { "codeSyntax": {}, "description": "", "hiddenFromPublishing": false, "id": "VariableID:61410:123911", - "key": "0cd2356d15b1fbabb8a8b9c4b8f88415d318553e", + "key": "8bf9476d565200e1ad8b747cdc42224caaf0a88b", "name": "components/sd-header/__shadow/height", "remote": false, "resolvedType": "FLOAT", @@ -23458,7 +23743,7 @@ "description": "8px", "hiddenFromPublishing": false, "id": "VariableID:61410:123912", - "key": "47b5d5c8f66f434a3d5dcb281d97f81f76f749c8", + "key": "fcd689ad07750cf56fe5f877588d8f159556cbf0", "name": "utilities/sizing/0", "remote": false, "resolvedType": "FLOAT", @@ -23490,7 +23775,7 @@ "description": "", "hiddenFromPublishing": false, "id": "VariableID:61428:123952", - "key": "cd68a4d4377ceee2bd3cf7888d3d00d48745b2c4", + "key": "22db758af94bd352571994a0ff5bce93935059c6", "name": "components/sd-button/--size/md/--icon/only/padding-inline", "remote": false, "resolvedType": "FLOAT", @@ -23516,6 +23801,86 @@ } }, "variableCollectionId": "VariableCollectionId:43174:55999" + }, + "VariableID:62032:3036": { + "codeSyntax": {}, + "description": "", + "hiddenFromPublishing": false, + "id": "VariableID:62032:3036", + "key": "4ac10987f7ca1567cddf6decc4db0ae5c5818a04", + "name": "components/sd-brandshape/--white/80/color/background", + "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:62032:3037": { + "codeSyntax": {}, + "description": "", + "hiddenFromPublishing": false, + "id": "VariableID:62032:3037", + "key": "69a1c38627068d290a73e4c8d4516be6f5a33db6", + "name": "components/sd-brandshape/--primary/80/color/background", + "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" } } } \ No newline at end of file diff --git a/packages/tokens/themes/components.css b/packages/tokens/themes/components.css index b0ac756d12..eba5d4e388 100644 --- a/packages/tokens/themes/components.css +++ b/packages/tokens/themes/components.css @@ -170,10 +170,30 @@ fill: rgba(var(--sd-brandshape--neutral-100-color-background, rgba(var(--sd-color-neutral-100)))); } +@utility sd-brandshape--primary-80-color-background { + background-color: rgba(var(--sd-brandshape--primary-80-color-background, rgba(0, 53, 142, 0.8))); +} + +@utility sd-brandshape--primary-color-background { + background-color: rgba(var(--sd-brandshape--primary-color-background, rgba(var(--sd-color-primary)))); +} + +@utility sd-brandshape--primary-color-border { + border-color: rgba(var(--sd-brandshape--primary-color-border, rgba(var(--sd-color-primary)))); +} + +@utility sd-brandshape--white-80-color-background { + background-color: rgba(var(--sd-brandshape--white-80-color-background, rgba(255, 255, 255, 0.8))); +} + @utility sd-brandshape--white-color-background { background-color: rgba(var(--sd-brandshape--white-color-background, rgba(var(--sd-color-white)))); } +@utility sd-brandshape-color-border-white-default { + border-color: rgba(var(--sd-brandshape-color-border-white, rgba(var(--sd-color-white)))); +} + @utility sd-breadcrumb__separator--current-color { background-color: rgba(var(--sd-breadcrumb__separator--current-color, rgba(var(--sd-color-accent)))); } diff --git a/packages/tokens/themes/kid/kid.css b/packages/tokens/themes/kid/kid.css index e9fa4521f5..feb6c6da0c 100644 --- a/packages/tokens/themes/kid/kid.css +++ b/packages/tokens/themes/kid/kid.css @@ -35,8 +35,13 @@ --sd-border-width-4: 0.25rem; --sd-border-width-6: 0.375rem; --sd-border-width: 0.0625rem; - --sd-brandshape--neutral-100-color-background: var(--sd-color-neutral-100); - --sd-brandshape--white-color-background: var(--sd-color-accent); + --sd-brandshape--neutral-100-color-background: 255 255 255 / 0; + --sd-brandshape--primary-80-color-background: 255 255 255 / 0; + --sd-brandshape--primary-color-background: 255 255 255 / 0; + --sd-brandshape--primary-color-border: 255 255 255 / 0; + --sd-brandshape--white-80-color-background: 255 255 255 / 0; + --sd-brandshape--white-color-background: 255 255 255 / 0; + --sd-brandshape-color-border-white: 255 255 255 / 0; --sd-breadcrumb__separator--current-color: var(--sd-color-neutral-800); --sd-breadcrumb__separator-color: var(--sd-color-neutral-200); --sd-button--cta--inverted--active-color-background: var(--sd-color-accent); diff --git a/packages/tokens/themes/ui-dark/ui-dark.css b/packages/tokens/themes/ui-dark/ui-dark.css index d9b5697404..ee0e689786 100644 --- a/packages/tokens/themes/ui-dark/ui-dark.css +++ b/packages/tokens/themes/ui-dark/ui-dark.css @@ -36,7 +36,12 @@ --sd-border-width-6: 0.375rem; --sd-border-width: 0.0625rem; --sd-brandshape--neutral-100-color-background: var(--sd-color-primary-750); + --sd-brandshape--primary-80-color-background: 0 53 142 / 0.8; + --sd-brandshape--primary-color-background: var(--sd-color-primary); + --sd-brandshape--primary-color-border: var(--sd-color-white); + --sd-brandshape--white-80-color-background: 0 53 142 / 0.8; --sd-brandshape--white-color-background: var(--sd-color-primary-900); + --sd-brandshape-color-border-white: var(--sd-color-primary-900); --sd-breadcrumb__separator--current-color: var(--sd-color-accent); --sd-breadcrumb__separator-color: var(--sd-color-primary-400); --sd-button--cta--inverted--active-color-background: var(--sd-color-accent-700); diff --git a/packages/tokens/themes/ui-light/ui-light.css b/packages/tokens/themes/ui-light/ui-light.css index 4db9e2ce78..93c12546f6 100644 --- a/packages/tokens/themes/ui-light/ui-light.css +++ b/packages/tokens/themes/ui-light/ui-light.css @@ -36,7 +36,12 @@ --sd-border-width-6: 0.375rem; --sd-border-width: 0.0625rem; --sd-brandshape--neutral-100-color-background: var(--sd-color-neutral-100); + --sd-brandshape--primary-80-color-background: 0 53 142 / 0.8; + --sd-brandshape--primary-color-background: var(--sd-color-primary); + --sd-brandshape--primary-color-border: var(--sd-color-primary); + --sd-brandshape--white-80-color-background: 255 255 255 / 0.8; --sd-brandshape--white-color-background: var(--sd-color-white); + --sd-brandshape-color-border-white: var(--sd-color-white); --sd-breadcrumb__separator--current-color: var(--sd-color-accent); --sd-breadcrumb__separator-color: var(--sd-color-neutral-400); --sd-button--cta--inverted--active-color-background: var(--sd-color-accent-700); diff --git a/packages/tokens/themes/vb/vb.css b/packages/tokens/themes/vb/vb.css index 248ab66a6f..79dc42d683 100644 --- a/packages/tokens/themes/vb/vb.css +++ b/packages/tokens/themes/vb/vb.css @@ -35,8 +35,13 @@ --sd-border-width-4: 0.25rem; --sd-border-width-6: 0.375rem; --sd-border-width: 0.0625rem; - --sd-brandshape--neutral-100-color-background: var(--sd-color-neutral-100); - --sd-brandshape--white-color-background: var(--sd-color-white); + --sd-brandshape--neutral-100-color-background: 255 255 255 / 0; + --sd-brandshape--primary-80-color-background: 255 255 255 / 0; + --sd-brandshape--primary-color-background: 255 255 255 / 0; + --sd-brandshape--primary-color-border: 255 255 255 / 0; + --sd-brandshape--white-80-color-background: 255 255 255 / 0; + --sd-brandshape--white-color-background: 255 255 255 / 0; + --sd-brandshape-color-border-white: 255 255 255 / 0; --sd-breadcrumb__separator--current-color: var(--sd-color-warning); --sd-breadcrumb__separator-color: var(--sd-color-neutral-200); --sd-button--cta--inverted--active-color-background: var(--sd-color-white); From 22bb82a8b4030f119c7f06de5158bab9e1292619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Mon, 13 Apr 2026 12:30:46 +0100 Subject: [PATCH 18/20] feat: adjust transparent variants --- .../src/components/brandshape/brandshape.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/components/src/components/brandshape/brandshape.ts b/packages/components/src/components/brandshape/brandshape.ts index f3a778cf57..365667546b 100644 --- a/packages/components/src/components/brandshape/brandshape.ts +++ b/packages/components/src/components/brandshape/brandshape.ts @@ -153,8 +153,8 @@ export default class SdBrandshape extends SolidElement { white: 'sd-brandshape--white-color-background', 'border-white': 'bg-transparent', 'border-primary': 'bg-transparent', - 'primary|80': 'bg-primary/80', - 'white|80': 'bg-white/80', + 'primary|80': 'sd-brandshape--primary-80-color-background', + 'white|80': 'sd-brandshape--white-80-color-background', image: 'bg-transparent' }[this.variant], 'w-full block absolute h-full top-0 left-0 z-0' @@ -185,8 +185,8 @@ export default class SdBrandshape extends SolidElement { white: 'sd-brandshape--white-color-background', 'border-white': 'bg-transparent', 'border-primary': 'bg-transparent', - 'primary|80': 'bg-primary/80', - 'white|80': 'bg-white/80', + 'primary|80': 'sd-brandshape--primary-80-color-background', + 'white|80': 'sd-brandshape--white-80-color-background', image: 'bg-transparent' }[this.variant], { top: 'bottom-0', bottom: 'top-0' }[position], @@ -330,11 +330,11 @@ export default class SdBrandshape extends SolidElement { } :host([variant='primary|80']) [part='base'] { - fill: rgba(var(--sd-color-background-primary, rgba(var(--sd-color-primary))) / 0.8); + fill: rgba(var(--sd-brandshape--primary-80-color-background, rgba(var(--sd-color-primary)))); } :host([variant='white|80']) [part='base'] { - fill: rgba(var(--sd-color-background-white, rgba(var(--sd-color-white))) / 0.8); + fill: rgba(var(--sd-brandshape--white-80-color-background, rgba(var(--sd-color-white)))); } ` ]; From 38bcc9da4b474d833255a42d8d6a7f17a91d1d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Mon, 13 Apr 2026 12:36:47 +0100 Subject: [PATCH 19/20] chore: add changesets --- .changeset/clear-cloths-carry.md | 7 +++++++ .changeset/polite-lizards-accept.md | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 .changeset/clear-cloths-carry.md create mode 100644 .changeset/polite-lizards-accept.md diff --git a/.changeset/clear-cloths-carry.md b/.changeset/clear-cloths-carry.md new file mode 100644 index 0000000000..f3fc218ace --- /dev/null +++ b/.changeset/clear-cloths-carry.md @@ -0,0 +1,7 @@ +--- +'@solid-design-system/components': minor +--- + +Restrict `sd-brandshape` to `ui-light` and `ui-dark` themes. When used in other themes, it will not be displayed. + +Use new variables to also restrict `transparent variants`. diff --git a/.changeset/polite-lizards-accept.md b/.changeset/polite-lizards-accept.md new file mode 100644 index 0000000000..0bde455ef0 --- /dev/null +++ b/.changeset/polite-lizards-accept.md @@ -0,0 +1,5 @@ +--- +'@solid-design-system/tokens': minor +--- + +Added new `sd-brandshape` tokens. From c4dbed5680d8152a4f6b56d9725268d6efefad98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Fonseca?= Date: Tue, 14 Apr 2026 17:17:07 +0100 Subject: [PATCH 20/20] fix: inverted wrapper background color --- packages/docs/src/stories/components/brandshape.stories.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/stories/components/brandshape.stories.ts b/packages/docs/src/stories/components/brandshape.stories.ts index b72b245a7a..b88ffa31a7 100644 --- a/packages/docs/src/stories/components/brandshape.stories.ts +++ b/packages/docs/src/stories/components/brandshape.stories.ts @@ -70,7 +70,7 @@ export default { } body:not(:has(.sd-theme-ui-light, .sd-theme-ui-dark)) .inverted-wrapper { - background-color: white !important; + background-color: transparent; } ${story()}