diff --git a/epam-assets/theme/theme_electric.scss b/epam-assets/theme/theme_electric.scss index d6d7a449ad..67549a9501 100644 --- a/epam-assets/theme/theme_electric.scss +++ b/epam-assets/theme/theme_electric.scss @@ -6,23 +6,6 @@ /* --uui-'component name or group of components name'-'styled part name'-'states(optional)'-'hover/active/focus(optional)' */ @mixin theme-electric { - /* contrast colors */ - --uui-primary-contrast: var(--white); - - --uui-accent-contrast: var(--white); - - --uui-secondary-contrast: var(--white); - - --uui-critical-contrast: var(--white); - - --uui-info-contrast: var(--white); - - --uui-success-contrast: var(--white); - - --uui-warning-contrast: var(--uui-neutral-80); - - --uui-error-contrast: var(--white); - @include tokens.theme-tokens; --uui-font: 'Source Sans Pro', sans-serif; --uui-font-mono: 'Roboto Mono', monospace; diff --git a/epam-assets/theme/theme_loveship.scss b/epam-assets/theme/theme_loveship.scss index e74f9ff270..35c28a5364 100644 --- a/epam-assets/theme/theme_loveship.scss +++ b/epam-assets/theme/theme_loveship.scss @@ -5,23 +5,6 @@ /* --uui-'component name or group of components name'-'styled part name'-'states(optional)'-'hover/active/focus(optional)' */ @mixin theme-loveship { - /* contrast colors */ - --uui-primary-contrast: var(--white); - - --uui-accent-contrast: var(--white); - - --uui-secondary-contrast: var(--white); - - --uui-critical-contrast: var(--white); - - --uui-info-contrast: var(--white); - - --uui-success-contrast: var(--white); - - --uui-warning-contrast: var(--night800); - - --uui-error-contrast: var(--white); - @include tokens.theme-tokens; --uui-font: 'Source Sans Pro', sans-serif; --uui-font-mono: 'Roboto Mono', monospace; diff --git a/epam-assets/theme/theme_loveship_dark.scss b/epam-assets/theme/theme_loveship_dark.scss index c3c91a2eb6..b345b0f747 100644 --- a/epam-assets/theme/theme_loveship_dark.scss +++ b/epam-assets/theme/theme_loveship_dark.scss @@ -5,23 +5,6 @@ /* --uui-'component name or group of components name'-'styled part name'-'states(optional)'-'hover/active/focus(optional)' */ @mixin theme-loveship_dark { - /* contrast colors */ - --uui-primary-contrast: var(--white); - - --uui-accent-contrast: var(--white); - - --uui-secondary-contrast: var(--white); - - --uui-critical-contrast: var(--white); - - --uui-info-contrast: var(--white); - - --uui-success-contrast: var(--white); - - --uui-warning-contrast: var(--night700); - - --uui-error-contrast: var(--white); - @include tokens.theme-tokens; --uui-font: 'Source Sans Pro', sans-serif; --uui-font-mono: 'Roboto Mono', monospace; diff --git a/epam-assets/theme/theme_promo.scss b/epam-assets/theme/theme_promo.scss index 23938da5b4..8f6b24de0d 100644 --- a/epam-assets/theme/theme_promo.scss +++ b/epam-assets/theme/theme_promo.scss @@ -5,23 +5,6 @@ /* --uui-'component name or group of components name'-'styled part name'-'states(optional)'-'hover/active/focus(optional)' */ @mixin theme-promo { - /* contrast colors */ - --uui-primary-contrast: var(--white); - - --uui-accent-contrast: var(--white); - - --uui-secondary-contrast: var(--white); - - --uui-critical-contrast: var(--white); - - --uui-info-contrast: var(--white); - - --uui-success-contrast: var(--white); - - --uui-warning-contrast: var(--gray80); - - --uui-error-contrast: var(--white); - @include tokens.theme-tokens; --uui-font: 'Source Sans Pro', sans-serif; --uui-font-mono: 'Roboto Mono', monospace; diff --git a/epam-assets/theme/tokens/_theme_electric.scss b/epam-assets/theme/tokens/_theme_electric.scss index a13aa6456e..63edab5ea1 100644 --- a/epam-assets/theme/tokens/_theme_electric.scss +++ b/epam-assets/theme/tokens/_theme_electric.scss @@ -131,6 +131,7 @@ --uui-accent-50: var(--emerald-50); --uui-accent-60: var(--emerald-60); --uui-accent-70: var(--emerald-70); + --uui-accent-contrast: var(--white); // "core/semantic/critical-" --uui-critical-5: var(--fire-5); @@ -139,6 +140,7 @@ --uui-critical-50: var(--fire-50); --uui-critical-60: var(--fire-60); --uui-critical-70: var(--fire-70); + --uui-critical-contrast: var(--white); // "core/semantic/error-" --uui-error-5: var(--fire-5); @@ -147,6 +149,7 @@ --uui-error-50: var(--fire-50); --uui-error-60: var(--fire-60); --uui-error-70: var(--fire-70); + --uui-error-contrast: var(--white); // "core/semantic/info-" --uui-info-5: var(--electric-5); @@ -155,6 +158,7 @@ --uui-info-50: var(--electric-50); --uui-info-60: var(--electric-60); --uui-info-70: var(--electric-70); + --uui-info-contrast: var(--white); // "core/semantic/primary-" --uui-primary-5: var(--electric-5); @@ -163,6 +167,7 @@ --uui-primary-50: var(--electric-50); --uui-primary-60: var(--electric-60); --uui-primary-70: var(--electric-70); + --uui-primary-contrast: var(--white); // "core/semantic/secondary-" --uui-secondary-5: var(--night100); @@ -171,6 +176,7 @@ --uui-secondary-50: var(--night600); --uui-secondary-60: var(--night700); --uui-secondary-70: var(--night800); + --uui-secondary-contrast: var(--white); // "core/semantic/success-" --uui-success-5: var(--emerald-5); @@ -179,6 +185,7 @@ --uui-success-50: var(--emerald-50); --uui-success-60: var(--emerald-60); --uui-success-70: var(--emerald-70); + --uui-success-contrast: var(--white); // "core/semantic/warning-" --uui-warning-5: var(--sun-5); @@ -187,6 +194,7 @@ --uui-warning-50: var(--sun-50); --uui-warning-60: var(--sun-60); --uui-warning-70: var(--sun-70); + --uui-warning-contrast: var(--uui-neutral-80); /********************/ /*** Core Neutral ***/ diff --git a/epam-assets/theme/tokens/_theme_loveship_dark.scss b/epam-assets/theme/tokens/_theme_loveship_dark.scss index d3ba223312..32af31b061 100644 --- a/epam-assets/theme/tokens/_theme_loveship_dark.scss +++ b/epam-assets/theme/tokens/_theme_loveship_dark.scss @@ -130,6 +130,7 @@ --uui-accent-50: var(--grass-50); --uui-accent-60: var(--grass-60); --uui-accent-70: var(--grass-70); + --uui-accent-contrast: var(--white); // "core/semantic/critical-" --uui-critical-5: var(--fire-5); @@ -138,6 +139,7 @@ --uui-critical-50: var(--fire-50); --uui-critical-60: var(--fire-60); --uui-critical-70: var(--fire-70); + --uui-critical-contrast: var(--white); // "core/semantic/error-" --uui-error-5: var(--fire-5); @@ -146,6 +148,7 @@ --uui-error-50: var(--fire-50); --uui-error-60: var(--fire-60); --uui-error-70: var(--fire-70); + --uui-error-contrast: var(--white); // "core/semantic/info-" --uui-info-5: var(--sky-5); @@ -154,6 +157,7 @@ --uui-info-50: var(--sky-50); --uui-info-60: var(--sky-60); --uui-info-70: var(--sky-70); + --uui-info-contrast: var(--white); // "core/semantic/primary-" --uui-primary-5: var(--sky-5); @@ -162,6 +166,7 @@ --uui-primary-50: var(--sky-50); --uui-primary-60: var(--sky-60); --uui-primary-70: var(--sky-70); + --uui-primary-contrast: var(--white); // "core/semantic/secondary-" --uui-secondary-5: var(--night800); @@ -170,6 +175,7 @@ --uui-secondary-50: var(--night500); --uui-secondary-60: var(--night400); --uui-secondary-70: var(--night300); + --uui-secondary-contrast: var(--white); // "core/semantic/success-" --uui-success-5: var(--grass-5); @@ -178,6 +184,7 @@ --uui-success-50: var(--grass-50); --uui-success-60: var(--grass-60); --uui-success-70: var(--grass-70); + --uui-success-contrast: var(--white); // "core/semantic/warning-" --uui-warning-5: var(--sun-5); @@ -186,6 +193,7 @@ --uui-warning-50: var(--sun-50); --uui-warning-60: var(--sun-60); --uui-warning-70: var(--sun-70); + --uui-warning-contrast: var(--night700); /********************/ /*** Core Neutral ***/ diff --git a/epam-assets/theme/tokens/_theme_loveship_light.scss b/epam-assets/theme/tokens/_theme_loveship_light.scss index 3b96115284..16c8eb3bd0 100644 --- a/epam-assets/theme/tokens/_theme_loveship_light.scss +++ b/epam-assets/theme/tokens/_theme_loveship_light.scss @@ -130,6 +130,7 @@ --uui-accent-50: var(--grass-50); --uui-accent-60: var(--grass-60); --uui-accent-70: var(--grass-70); + --uui-accent-contrast: var(--white); // "core/semantic/critical-" --uui-critical-5: var(--fire-5); @@ -138,6 +139,7 @@ --uui-critical-50: var(--fire-50); --uui-critical-60: var(--fire-60); --uui-critical-70: var(--fire-70); + --uui-critical-contrast: var(--white); // "core/semantic/error-" --uui-error-5: var(--fire-5); @@ -146,6 +148,7 @@ --uui-error-50: var(--fire-50); --uui-error-60: var(--fire-60); --uui-error-70: var(--fire-70); + --uui-error-contrast: var(--white); // "core/semantic/info-" --uui-info-5: var(--sky-5); @@ -154,6 +157,7 @@ --uui-info-50: var(--sky-50); --uui-info-60: var(--sky-60); --uui-info-70: var(--sky-70); + --uui-info-contrast: var(--white); // "core/semantic/primary-" --uui-primary-5: var(--sky-5); @@ -162,6 +166,7 @@ --uui-primary-50: var(--sky-50); --uui-primary-60: var(--sky-60); --uui-primary-70: var(--sky-70); + --uui-primary-contrast: var(--white); // "core/semantic/secondary-" --uui-secondary-5: var(--night100); @@ -170,6 +175,7 @@ --uui-secondary-50: var(--night600); --uui-secondary-60: var(--night700); --uui-secondary-70: var(--night800); + --uui-secondary-contrast: var(--white); // "core/semantic/success-" --uui-success-5: var(--grass-5); @@ -178,6 +184,7 @@ --uui-success-50: var(--grass-50); --uui-success-60: var(--grass-60); --uui-success-70: var(--grass-70); + --uui-success-contrast: var(--white); // "core/semantic/warning-" --uui-warning-5: var(--sun-5); @@ -186,6 +193,7 @@ --uui-warning-50: var(--sun-50); --uui-warning-60: var(--sun-60); --uui-warning-70: var(--sun-70); + --uui-warning-contrast: var(--night800); /********************/ /*** Core Neutral ***/ diff --git a/epam-assets/theme/tokens/_theme_promo.scss b/epam-assets/theme/tokens/_theme_promo.scss index 3dc35f715a..575298c078 100644 --- a/epam-assets/theme/tokens/_theme_promo.scss +++ b/epam-assets/theme/tokens/_theme_promo.scss @@ -130,6 +130,7 @@ --uui-accent-50: var(--green-50); --uui-accent-60: var(--green-60); --uui-accent-70: var(--green-70); + --uui-accent-contrast: var(--white); // "core/semantic/critical-" --uui-critical-5: var(--red-5); @@ -138,6 +139,7 @@ --uui-critical-50: var(--red-50); --uui-critical-60: var(--red-60); --uui-critical-70: var(--red-70); + --uui-critical-contrast: var(--white); // "core/semantic/error-" --uui-error-5: var(--red-5); @@ -146,6 +148,7 @@ --uui-error-50: var(--red-50); --uui-error-60: var(--red-60); --uui-error-70: var(--red-70); + --uui-error-contrast: var(--white); // "core/semantic/info-" --uui-info-5: var(--blue-5); @@ -154,6 +157,7 @@ --uui-info-50: var(--blue-50); --uui-info-60: var(--blue-60); --uui-info-70: var(--blue-70); + --uui-info-contrast: var(--white); // "core/semantic/primary-" --uui-primary-5: var(--blue-5); @@ -162,6 +166,7 @@ --uui-primary-50: var(--blue-50); --uui-primary-60: var(--blue-60); --uui-primary-70: var(--blue-70); + --uui-primary-contrast: var(--white); // "core/semantic/secondary-" --uui-secondary-5: var(--gray10); @@ -170,6 +175,7 @@ --uui-secondary-50: var(--gray60); --uui-secondary-60: var(--gray70); --uui-secondary-70: var(--gray80); + --uui-secondary-contrast: var(--white); // "core/semantic/success-" --uui-success-5: var(--green-5); @@ -178,6 +184,7 @@ --uui-success-50: var(--green-50); --uui-success-60: var(--green-60); --uui-success-70: var(--green-70); + --uui-success-contrast: var(--white); // "core/semantic/warning-" --uui-warning-5: var(--amber-5); @@ -186,6 +193,7 @@ --uui-warning-50: var(--amber-50); --uui-warning-60: var(--amber-60); --uui-warning-70: var(--amber-70); + --uui-warning-contrast: var(--gray80); /********************/ /*** Core Neutral ***/ diff --git a/public/docs/figmaTokensGen/Theme.json b/public/docs/figmaTokensGen/Theme.json index f4a8bb690f..b299be1511 100644 --- a/public/docs/figmaTokensGen/Theme.json +++ b/public/docs/figmaTokensGen/Theme.json @@ -973,7 +973,47 @@ "VariableID:48316:26207", "VariableID:48316:26208", "VariableID:48316:26209", - "VariableID:48316:26210" + "VariableID:48316:26210", + "VariableID:49908:136885", + "VariableID:49908:136886", + "VariableID:49908:136887", + "VariableID:49908:136888", + "VariableID:49911:189321", + "VariableID:49911:189322", + "VariableID:49911:189323", + "VariableID:49911:189324", + "VariableID:49911:189325", + "VariableID:49911:189326", + "VariableID:49911:189327", + "VariableID:49911:189328", + "VariableID:50818:79085", + "VariableID:50818:79086", + "VariableID:50818:79087", + "VariableID:50818:79088", + "VariableID:56070:15455", + "VariableID:56070:15456", + "VariableID:56070:15457", + "VariableID:56070:15458", + "VariableID:56070:15459", + "VariableID:56070:15460", + "VariableID:56070:15461", + "VariableID:56070:15462", + "VariableID:56070:15463", + "VariableID:56070:15464", + "VariableID:56070:15465", + "VariableID:56070:15466", + "VariableID:56070:15467", + "VariableID:56070:15468", + "VariableID:56070:15469", + "VariableID:56070:15470", + "VariableID:56070:15471", + "VariableID:56070:15472", + "VariableID:56070:15473", + "VariableID:56070:15474", + "VariableID:56070:15475", + "VariableID:56070:15476", + "VariableID:56070:15477", + "VariableID:56070:15478" ], "variables": [ { @@ -18064,7 +18104,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7124" + "id": "VariableID:28101:155670" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -18088,13 +18128,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.6745098233222961, - "g": 0.686274528503418, - "b": 0.7490196228027344, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7124", - "aliasName": "core/text/text-disabled" + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" }, "25178:2": { "resolvedValue": { @@ -27189,7 +27229,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -27207,13 +27247,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -27262,7 +27302,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -27280,13 +27320,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -27554,7 +27594,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -27572,13 +27612,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -27627,7 +27667,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -27645,13 +27685,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -30474,7 +30514,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -30492,13 +30532,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -30547,7 +30587,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -30565,13 +30605,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -30841,7 +30881,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -30859,13 +30899,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -30914,7 +30954,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -30932,13 +30972,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -31133,7 +31173,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -31151,13 +31191,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -31206,7 +31246,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -31224,13 +31264,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -32307,7 +32347,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151885" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32331,13 +32371,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "25178:2": { "resolvedValue": { @@ -32380,7 +32420,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "id": "VariableID:27513:151886" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32404,13 +32444,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, + "r": 0.8078431487083435, + "g": 0.8156862854957581, + "b": 0.8588235378265381, "a": 1 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": "VariableID:27513:151886", + "aliasName": "core/neutral/neutral-40" }, "25178:2": { "resolvedValue": { @@ -32453,7 +32493,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32477,13 +32517,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -32522,61 +32562,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" } }, "scopes": [ @@ -32595,19 +32635,19 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7109" + "id": "VariableID:27513:151884" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7109" + "id": "VariableID:27513:151884" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7109" + "id": "VariableID:27513:151884" } }, "resolvedValuesByMode": { @@ -32618,18 +32658,18 @@ "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:25178:7109", - "aliasName": "core/surfaces/surface-highest" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "25178:1": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -32638,8 +32678,8 @@ "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:25178:7109", - "aliasName": "core/surfaces/surface-highest" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "26302:0": { "resolvedValue": { @@ -32648,8 +32688,8 @@ "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:25178:7109", - "aliasName": "core/surfaces/surface-highest" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" } }, "scopes": [ @@ -32672,7 +32712,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151887" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32696,13 +32736,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151887", + "aliasName": "core/neutral/neutral-50" }, "25178:2": { "resolvedValue": { @@ -32745,7 +32785,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151884" + "id": "VariableID:27513:151885" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32769,13 +32809,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": "VariableID:27513:151884", - "aliasName": "core/neutral/neutral-20" + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "25178:2": { "resolvedValue": { @@ -32818,7 +32858,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32842,13 +32882,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -32887,19 +32927,19 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:25178:7121" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:25178:7121" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:25178:7121" } }, "resolvedValuesByMode": { @@ -32910,18 +32950,18 @@ "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -32930,8 +32970,8 @@ "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "26302:0": { "resolvedValue": { @@ -32940,8 +32980,8 @@ "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" } }, "scopes": [ @@ -34427,14 +34467,12 @@ "id": "VariableID:27513:151890" }, "25178:2": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151890" } }, "resolvedValuesByMode": { @@ -34465,17 +34503,18 @@ "b": 0.250980406999588, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" } }, "scopes": [ @@ -34494,7 +34533,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151890" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -34502,23 +34541,23 @@ }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151890" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:1": { "resolvedValue": { @@ -34532,23 +34571,23 @@ }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" } }, "scopes": [ @@ -35589,7 +35628,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -35597,11 +35636,11 @@ }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -35612,8 +35651,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:1": { "resolvedValue": { @@ -35632,8 +35671,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -35642,8 +35681,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -35662,19 +35701,19 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7108" + "id": "VariableID:27513:151883" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151882" + "id": "VariableID:27513:151883" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7108" + "id": "VariableID:27513:151883" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7108" + "id": "VariableID:27513:151883" } }, "resolvedValuesByMode": { @@ -35685,18 +35724,18 @@ "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:25178:7108", - "aliasName": "core/surfaces/surface-higher" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:1": { "resolvedValue": { - "r": 0.9803921580314636, - "g": 0.9803921580314636, - "b": 0.9882352948188782, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:27513:151882", - "aliasName": "core/neutral/neutral-5" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { @@ -35705,8 +35744,8 @@ "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:25178:7108", - "aliasName": "core/surfaces/surface-higher" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "26302:0": { "resolvedValue": { @@ -35715,8 +35754,8 @@ "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:25178:7108", - "aliasName": "core/surfaces/surface-higher" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" } }, "scopes": [ @@ -35735,61 +35774,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -35808,61 +35847,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -35881,21 +35920,19 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 0.07999999821186066 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -35906,17 +35943,18 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:1": { "resolvedValue": { "r": 1, "g": 1, "b": 1, - "a": 0.07999999821186066 + "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -35925,8 +35963,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -35935,8 +35973,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -35958,10 +35996,8 @@ "id": "VariableID:27513:151883" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 0.10999999940395355 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -35985,12 +36021,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0.10999999940395355 + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, + "a": 1 }, - "alias": null + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { @@ -36033,7 +36070,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151885" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36057,13 +36094,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "25178:2": { "resolvedValue": { @@ -36102,61 +36139,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36175,61 +36212,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36252,7 +36289,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151883" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36276,13 +36313,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { @@ -36325,7 +36362,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "id": "VariableID:27513:151884" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36349,13 +36386,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "25178:2": { "resolvedValue": { @@ -36394,61 +36431,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36467,61 +36504,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36544,7 +36581,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151887" + "id": "VariableID:27513:151883" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36568,13 +36605,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.6745098233222961, - "g": 0.686274528503418, - "b": 0.7490196228027344, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:27513:151887", - "aliasName": "core/neutral/neutral-50" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { @@ -36617,7 +36654,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151884" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36641,13 +36678,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "25178:2": { "resolvedValue": { @@ -36690,7 +36727,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151884" + "id": "VariableID:27513:151885" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36714,13 +36751,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": "VariableID:27513:151884", - "aliasName": "core/neutral/neutral-20" + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "25178:2": { "resolvedValue": { @@ -36759,61 +36796,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36832,61 +36869,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36909,7 +36946,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36933,13 +36970,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -36982,7 +37019,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151889" + "id": "VariableID:27513:151887" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -37006,13 +37043,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.27843138575553894, - "g": 0.29019609093666077, - "b": 0.3490196168422699, + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, "a": 1 }, - "alias": "VariableID:27513:151889", - "aliasName": "core/neutral/neutral-70" + "alias": "VariableID:27513:151887", + "aliasName": "core/neutral/neutral-50" }, "25178:2": { "resolvedValue": { @@ -37347,7 +37384,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -37371,13 +37408,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -37420,7 +37457,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -37444,13 +37481,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -37489,61 +37526,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" } }, "scopes": [ @@ -49473,11 +49510,11 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:28101:155701" + "id": "VariableID:28101:155698" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:28101:155701" + "id": "VariableID:28101:155697" }, "26302:0": { "type": "VARIABLE_ALIAS", @@ -49497,23 +49534,23 @@ }, "25178:1": { "resolvedValue": { - "r": 0.6784313917160034, - "g": 0, - "b": 0, + "r": 0.9843137264251709, + "g": 0.7137255072593689, + "b": 0.7137255072593689, "a": 1 }, - "alias": "VariableID:28101:155701", - "aliasName": "core/semantic/error-70" + "alias": "VariableID:28101:155698", + "aliasName": "core/semantic/error-20" }, "25178:2": { "resolvedValue": { - "r": 0.6784313917160034, - "g": 0, - "b": 0, + "r": 0.9921568632125854, + "g": 0.8823529481887817, + "b": 0.8823529481887817, "a": 1 }, - "alias": "VariableID:28101:155701", - "aliasName": "core/semantic/error-70" + "alias": "VariableID:28101:155697", + "aliasName": "core/semantic/error-10" }, "26302:0": { "resolvedValue": { @@ -49979,66 +50016,62 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155678" }, "25178:1": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155678" }, "25178:2": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155678" }, "26302:0": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155678" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, + "r": 0.9607843160629272, + "g": 0.9921568632125854, "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:28101:155678", + "aliasName": "core/semantic/info-5" }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, + "r": 0.9607843160629272, + "g": 0.9921568632125854, "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:28101:155678", + "aliasName": "core/semantic/info-5" }, "25178:2": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, + "r": 0.9607843160629272, + "g": 0.9921568632125854, "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:28101:155678", + "aliasName": "core/semantic/info-5" }, "26302:0": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, + "r": 0.9607843160629272, + "g": 0.9921568632125854, "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:28101:155678", + "aliasName": "core/semantic/info-5" } }, "scopes": [ @@ -57916,10 +57949,10 @@ "a": 0 }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "26302:0": { "r": 0, @@ -57949,10 +57982,10 @@ }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "alias": null }, @@ -58427,61 +58460,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6988" + "id": "VariableID:27513:151891" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151890" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7844" + "id": "VariableID:27513:151891" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5816" + "id": "VariableID:27513:151892" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:25178:6988", - "aliasName": "palette/night/night800" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, + "a": 1 }, - "alias": "VariableID:25178:7844", - "aliasName": "palette/gray/gray80" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "alias": "VariableID:27073:5816", - "aliasName": "palette/night/night950" + "alias": "VariableID:27513:151892", + "aliasName": "core/neutral/neutral-100" } }, "scopes": [ @@ -58500,61 +58533,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6989" + "id": "VariableID:27513:151890" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7107" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7845" + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5815" + "id": "VariableID:27513:151891" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:6989", - "aliasName": "palette/night/night900" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7107", - "aliasName": "core/surfaces/surface-sunken" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 }, - "alias": "VariableID:25178:7845", - "aliasName": "palette/gray/gray90" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:27073:5815", - "aliasName": "palette/black" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" } }, "scopes": [ @@ -58573,61 +58606,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6989" + "id": "VariableID:27513:151890" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7107" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7845" + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5815" + "id": "VariableID:27513:151891" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:6989", - "aliasName": "palette/night/night900" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7107", - "aliasName": "core/surfaces/surface-sunken" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 }, - "alias": "VariableID:25178:7845", - "aliasName": "palette/gray/gray90" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:27073:5815", - "aliasName": "palette/black" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" } }, "scopes": [ @@ -58724,7 +58757,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -58748,13 +58781,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -58793,61 +58826,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7125" + "id": "VariableID:27513:151881" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7125" + "id": "VariableID:27513:151881" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:28101:155657" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7125", - "aliasName": "core/text/text-brand" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7125", - "aliasName": "core/text/text-brand" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { - "r": 0, - "g": 0.6196078658103943, - "b": 0.800000011920929, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:28101:155657", - "aliasName": "core/semantic/primary-50" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -58866,61 +58899,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6989" + "id": "VariableID:27513:151890" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7107" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7845" + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5815" + "id": "VariableID:27513:151891" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:6989", - "aliasName": "palette/night/night900" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7107", - "aliasName": "core/surfaces/surface-sunken" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 }, - "alias": "VariableID:25178:7845", - "aliasName": "palette/gray/gray90" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:27073:5815", - "aliasName": "palette/black" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" } }, "scopes": [ @@ -58939,61 +58972,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6988" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7844" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5816" + "id": "VariableID:27513:151890" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6988", - "aliasName": "palette/night/night800" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 }, - "alias": "VariableID:25178:7844", - "aliasName": "palette/gray/gray80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 }, - "alias": "VariableID:27073:5816", - "aliasName": "palette/night/night950" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" } }, "scopes": [ @@ -59012,11 +59045,11 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6987" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59024,7 +59057,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6989" + "id": "VariableID:27513:151891" } }, "resolvedValuesByMode": { @@ -59035,18 +59068,18 @@ "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6987", - "aliasName": "palette/night/night700" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -59065,8 +59098,8 @@ "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:25178:6989", - "aliasName": "palette/night/night900" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" } }, "scopes": [ @@ -59085,11 +59118,11 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6987" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59097,7 +59130,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6987" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { @@ -59108,18 +59141,18 @@ "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6987", - "aliasName": "palette/night/night700" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -59138,8 +59171,8 @@ "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6987", - "aliasName": "palette/night/night700" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -59162,7 +59195,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151889" + "id": "VariableID:25178:7124" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59186,13 +59219,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.27843138575553894, - "g": 0.29019609093666077, - "b": 0.3490196168422699, + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, "a": 1 }, - "alias": "VariableID:27513:151889", - "aliasName": "core/neutral/neutral-70" + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" }, "25178:2": { "resolvedValue": { @@ -59235,7 +59268,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151892" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59259,13 +59292,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151892", - "aliasName": "core/neutral/neutral-100" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -59308,7 +59341,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151889" + "id": "VariableID:25178:7137" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59332,13 +59365,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.27843138575553894, - "g": 0.29019609093666077, - "b": 0.3490196168422699, + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, "a": 1 }, - "alias": "VariableID:27513:151889", - "aliasName": "core/neutral/neutral-70" + "alias": "VariableID:25178:7137", + "aliasName": "core/icons/icon-disabled" }, "25178:2": { "resolvedValue": { @@ -59381,7 +59414,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59389,7 +59422,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6979" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -59405,13 +59438,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -59430,8 +59463,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:6979", - "aliasName": "palette/white" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -59445,7 +59478,7 @@ { "id": "VariableID:25798:294835", "name": "main_menu/main_menu-icon-hover", - "description": "Не совпадает с дизайном, там они светлее", + "description": "", "type": "COLOR", "valuesByMode": { "25178:0": { @@ -59454,7 +59487,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7135" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59462,7 +59495,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6979" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -59478,13 +59511,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.27843138575553894, - "g": 0.29019609093666077, - "b": 0.3490196168422699, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7135", - "aliasName": "core/icons/icon-hover" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -59503,8 +59536,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:6979", - "aliasName": "palette/white" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -59518,7 +59551,7 @@ { "id": "VariableID:25798:294836", "name": "main_menu/main_menu-icon-active", - "description": "Не совпадает с дизайном, там они светлее", + "description": "", "type": "COLOR", "valuesByMode": { "25178:0": { @@ -59527,7 +59560,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7136" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59535,7 +59568,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6979" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -59551,13 +59584,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7136", - "aliasName": "core/icons/icon-active" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -59576,8 +59609,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:6979", - "aliasName": "palette/white" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -61777,7 +61810,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6987" + "id": "VariableID:27513:151889" }, "25178:1": { "r": 1, @@ -61806,8 +61839,8 @@ "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6987", - "aliasName": "palette/night/night700" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -67752,22 +67785,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -67788,7 +67815,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -67797,7 +67825,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -67806,13 +67835,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color' */" } @@ -67828,22 +67858,16 @@ "id": "VariableID:27513:151883" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" } }, "resolvedValuesByMode": { @@ -67859,36 +67883,39 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-hover' */" } @@ -67904,22 +67931,16 @@ "id": "VariableID:27513:151885" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151884" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" } }, "resolvedValuesByMode": { @@ -67935,36 +67956,39 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-active' */" } @@ -67976,37 +68000,37 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 + "r": 1, + "g": 1, + "b": 1, + "a": 0.15000000596046448 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 + "r": 1, + "g": 1, + "b": 1, + "a": 0.15000000596046448 }, "alias": null }, @@ -68015,7 +68039,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "alias": null }, @@ -68024,7 +68048,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "alias": null }, @@ -68033,7 +68057,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "alias": null } @@ -68041,7 +68065,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-halftone' */" } @@ -68056,25 +68080,25 @@ "r": 1, "g": 1, "b": 1, - "a": 0.20000000298023224 + "a": 0.2199999988079071 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 } }, "resolvedValuesByMode": { @@ -68083,7 +68107,7 @@ "r": 1, "g": 1, "b": 1, - "a": 0.20000000298023224 + "a": 0.2199999988079071 }, "alias": null }, @@ -68092,7 +68116,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "alias": null }, @@ -68101,7 +68125,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "alias": null }, @@ -68110,7 +68134,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "alias": null } @@ -68118,7 +68142,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-halftone-hover' */" } @@ -68133,25 +68157,25 @@ "r": 1, "g": 1, "b": 1, - "a": 0.30000001192092896 + "a": 0.28999999165534973 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 } }, "resolvedValuesByMode": { @@ -68160,7 +68184,7 @@ "r": 1, "g": 1, "b": 1, - "a": 0.30000001192092896 + "a": 0.28999999165534973 }, "alias": null }, @@ -68169,7 +68193,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "alias": null }, @@ -68178,7 +68202,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "alias": null }, @@ -68187,7 +68211,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "alias": null } @@ -68195,7 +68219,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-halftone-active' */" } @@ -68211,22 +68235,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -68247,7 +68265,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -68256,7 +68275,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -68265,13 +68285,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-border-color' */" } @@ -68279,7 +68300,7 @@ { "id": "VariableID:38902:170204", "name": "button/button-white/button-border-color-hover", - "description": "Only for FE developers for Solid buttons", + "description": "", "type": "COLOR", "valuesByMode": { "25178:0": { @@ -68287,22 +68308,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -68323,7 +68338,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -68332,7 +68348,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -68341,13 +68358,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-border-color-hover' */" } @@ -68355,7 +68373,7 @@ { "id": "VariableID:38902:170205", "name": "button/button-white/button-border-color-active", - "description": "Only for FE developers for Solid buttons", + "description": "", "type": "COLOR", "valuesByMode": { "25178:0": { @@ -68363,22 +68381,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -68399,7 +68411,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -68408,7 +68421,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -68417,13 +68431,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-border-color-active' */" } @@ -68435,45 +68450,46 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "r": 1, + "g": 1, + "b": 1, + "a": 0.10000000149011612 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, - "a": 1 + "r": 1, + "g": 1, + "b": 1, + "a": 0.10000000149011612 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": null }, "25178:1": { "resolvedValue": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "alias": null }, @@ -68482,7 +68498,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "alias": null }, @@ -68491,7 +68507,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "alias": null } @@ -68499,7 +68515,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-disabled' */" } @@ -68511,45 +68527,46 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151887" + "r": 1, + "g": 1, + "b": 1, + "a": 0.30000001192092896 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.6745098233222961, - "g": 0.686274528503418, - "b": 0.7490196228027344, - "a": 1 + "r": 1, + "g": 1, + "b": 1, + "a": 0.30000001192092896 }, - "alias": "VariableID:27513:151887", - "aliasName": "core/neutral/neutral-50" + "alias": null }, "25178:1": { "resolvedValue": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "alias": null }, @@ -68558,7 +68575,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "alias": null }, @@ -68567,7 +68584,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "alias": null } @@ -68575,7 +68592,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-border-color-disabled' */" } @@ -68591,22 +68608,16 @@ "id": "VariableID:27513:151889" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151889" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151889" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { @@ -68622,36 +68633,39 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-caption-color' */" } @@ -68667,22 +68681,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -68703,7 +68711,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -68712,7 +68721,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -68721,13 +68731,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-caption-halftone-color' */" } @@ -68739,45 +68750,46 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7124" + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.6745098233222961, - "g": 0.686274528503418, - "b": 0.7490196228027344, - "a": 1 + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 }, - "alias": "VariableID:25178:7124", - "aliasName": "core/text/text-disabled" + "alias": null }, "25178:1": { "resolvedValue": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "alias": null }, @@ -68786,7 +68798,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "alias": null }, @@ -68795,7 +68807,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "alias": null } @@ -68803,7 +68815,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-caption-color-disabled' */" } @@ -70475,7 +70487,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -70550,7 +70562,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -70622,7 +70634,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -70696,7 +70708,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -70770,7 +70782,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -70844,7 +70856,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -70918,7 +70930,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -70992,7 +71004,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71066,7 +71078,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71140,7 +71152,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71214,7 +71226,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71288,7 +71300,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71362,7 +71374,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71436,7 +71448,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71510,7 +71522,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71584,7 +71596,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { } }, { @@ -71658,8 +71670,2904 @@ "scopes": [ "ALL_SCOPES" ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49908:136885", + "name": "link-button/link_button-secondary/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155669" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155669" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155669" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, + "a": 1 + }, + "alias": "VariableID:28101:155669", + "aliasName": "core/semantic/secondary-50" + }, + "25178:1": { + "resolvedValue": { + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, + "a": 1 + }, + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" + }, + "25178:2": { + "resolvedValue": { + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, + "a": 1 + }, + "alias": "VariableID:28101:155669", + "aliasName": "core/semantic/secondary-50" + }, + "26302:0": { + "resolvedValue": { + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, + "a": 1 + }, + "alias": "VariableID:28101:155669", + "aliasName": "core/semantic/secondary-50" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49908:136886", + "name": "link-button/link_button-secondary/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151884" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, + "a": 1 + }, + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" + }, + "25178:2": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "26302:0": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49908:136887", + "name": "link-button/link_button-secondary/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155671" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155671" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155671" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:28101:155671", + "aliasName": "core/semantic/secondary-70" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, + "a": 1 + }, + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" + }, + "25178:2": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:28101:155671", + "aliasName": "core/semantic/secondary-70" + }, + "26302:0": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:28101:155671", + "aliasName": "core/semantic/secondary-70" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49908:136888", + "name": "link-button/link_button-secondary/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "25178:1": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49911:189321", + "name": "link-button/link_button-accent/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + }, + "25178:1": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + }, + "25178:2": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + }, + "26302:0": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49911:189322", + "name": "link-button/link_button-accent/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + }, + "25178:1": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + }, + "26302:0": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49911:189323", + "name": "link-button/link_button-accent/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + }, + "25178:1": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + }, + "25178:2": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + }, + "26302:0": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49911:189324", + "name": "link-button/link_button-accent/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "25178:1": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49911:189325", + "name": "link-button/link_button-critical/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49911:189326", + "name": "link-button/link_button-critical/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + }, + "25178:1": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + }, + "26302:0": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49911:189327", + "name": "link-button/link_button-critical/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + }, + "25178:1": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + }, + "25178:2": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + }, + "26302:0": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:49911:189328", + "name": "link-button/link_button-critical/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "25178:1": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:50818:79085", + "name": "link-button/link_button-white/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151882" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151882" + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151882" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.9803921580314636, + "g": 0.9803921580314636, + "b": 0.9882352948188782, + "a": 1 + }, + "alias": "VariableID:27513:151882", + "aliasName": "core/neutral/neutral-5" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9803921580314636, + "g": 0.9803921580314636, + "b": 0.9882352948188782, + "a": 1 + }, + "alias": "VariableID:27513:151882", + "aliasName": "core/neutral/neutral-5" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 0.9803921580314636, + "g": 0.9803921580314636, + "b": 0.9882352948188782, + "a": 1 + }, + "alias": "VariableID:27513:151882", + "aliasName": "core/neutral/neutral-5" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:50818:79086", + "name": "link-button/link_button-white/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, + "a": 1 + }, + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, + "a": 1 + }, + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, + "a": 1 + }, + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:50818:79087", + "name": "link-button/link_button-white/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151886" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151884" + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151886" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.8078431487083435, + "g": 0.8156862854957581, + "b": 0.8588235378265381, + "a": 1 + }, + "alias": "VariableID:27513:151886", + "aliasName": "core/neutral/neutral-40" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, + "a": 1 + }, + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 0.8078431487083435, + "g": 0.8156862854957581, + "b": 0.8588235378265381, + "a": 1 + }, + "alias": "VariableID:27513:151886", + "aliasName": "core/neutral/neutral-40" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:50818:79088", + "name": "link-button/link_button-white/link-button-text-color-disabled", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15455", + "name": "core/semantic/primary-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15456", + "name": "core/semantic/accent-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15457", + "name": "core/semantic/secondary-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15458", + "name": "core/semantic/critical-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15459", + "name": "core/semantic/info-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15460", + "name": "core/semantic/success-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15461", + "name": "core/semantic/warning-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6988" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6987" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7844" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151890" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:25178:6988", + "aliasName": "palette/night/night800" + }, + "25178:1": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:25178:6987", + "aliasName": "palette/night/night700" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "alias": "VariableID:25178:7844", + "aliasName": "palette/gray/gray80" + }, + "26302:0": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15462", + "name": "core/semantic/error-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15463", + "name": "link-button/link-button-vars/link_button-secondary/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155669" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, + "a": 1 + }, + "alias": "VariableID:28101:155669", + "aliasName": "core/semantic/secondary-50" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15464", + "name": "link-button/link-button-vars/link_button-secondary/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15465", + "name": "link-button/link-button-vars/link_button-secondary/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155671" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:28101:155671", + "aliasName": "core/semantic/secondary-70" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15466", + "name": "link-button/link-button-vars/link_button-secondary/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15467", + "name": "link-button/link-button-vars/link_button-accent/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15468", + "name": "link-button/link-button-vars/link_button-accent/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15469", + "name": "link-button/link-button-vars/link_button-accent/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15470", + "name": "link-button/link-button-vars/link_button-accent/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15471", + "name": "link-button/link-button-vars/link_button-white/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151882" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.9803921580314636, + "g": 0.9803921580314636, + "b": 0.9882352948188782, + "a": 1 + }, + "alias": "VariableID:27513:151882", + "aliasName": "core/neutral/neutral-5" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15472", + "name": "link-button/link-button-vars/link_button-white/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, + "a": 1 + }, + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15473", + "name": "link-button/link-button-vars/link_button-white/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151886" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.8078431487083435, + "g": 0.8156862854957581, + "b": 0.8588235378265381, + "a": 1 + }, + "alias": "VariableID:27513:151886", + "aliasName": "core/neutral/neutral-40" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15474", + "name": "link-button/link-button-vars/link_button-white/link-button-text-color-disabled", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15475", + "name": "link-button/link-button-vars/link_button-critical/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15476", + "name": "link-button/link-button-vars/link_button-critical/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15477", + "name": "link-button/link-button-vars/link_button-critical/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { } + }, + { + "id": "VariableID:56070:15478", + "name": "link-button/link-button-vars/link_button-critical/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], "hiddenFromPublishing": false, "codeSyntax": { } } ] -} \ No newline at end of file +} diff --git a/public/docs/figmaTokensGen/ThemeOutput.json b/public/docs/figmaTokensGen/ThemeOutput.json index 20e8b62082..bda6dff5bd 100644 --- a/public/docs/figmaTokensGen/ThemeOutput.json +++ b/public/docs/figmaTokensGen/ThemeOutput.json @@ -973,7 +973,47 @@ "VariableID:48316:26207", "VariableID:48316:26208", "VariableID:48316:26209", - "VariableID:48316:26210" + "VariableID:48316:26210", + "VariableID:49908:136885", + "VariableID:49908:136886", + "VariableID:49908:136887", + "VariableID:49908:136888", + "VariableID:49911:189321", + "VariableID:49911:189322", + "VariableID:49911:189323", + "VariableID:49911:189324", + "VariableID:49911:189325", + "VariableID:49911:189326", + "VariableID:49911:189327", + "VariableID:49911:189328", + "VariableID:50818:79085", + "VariableID:50818:79086", + "VariableID:50818:79087", + "VariableID:50818:79088", + "VariableID:56070:15455", + "VariableID:56070:15456", + "VariableID:56070:15457", + "VariableID:56070:15458", + "VariableID:56070:15459", + "VariableID:56070:15460", + "VariableID:56070:15461", + "VariableID:56070:15462", + "VariableID:56070:15463", + "VariableID:56070:15464", + "VariableID:56070:15465", + "VariableID:56070:15466", + "VariableID:56070:15467", + "VariableID:56070:15468", + "VariableID:56070:15469", + "VariableID:56070:15470", + "VariableID:56070:15471", + "VariableID:56070:15472", + "VariableID:56070:15473", + "VariableID:56070:15474", + "VariableID:56070:15475", + "VariableID:56070:15476", + "VariableID:56070:15477", + "VariableID:56070:15478" ], "variables": [ { @@ -18064,7 +18104,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7124" + "id": "VariableID:28101:155670" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -18088,13 +18128,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.6745098233222961, - "g": 0.686274528503418, - "b": 0.7490196228027344, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7124", - "aliasName": "core/text/text-disabled" + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" }, "25178:2": { "resolvedValue": { @@ -27189,7 +27229,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -27207,13 +27247,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -27262,7 +27302,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -27280,13 +27320,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -27554,7 +27594,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -27572,13 +27612,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -27627,7 +27667,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -27645,13 +27685,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -30474,7 +30514,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -30492,13 +30532,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -30547,7 +30587,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -30565,13 +30605,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -30841,7 +30881,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -30859,13 +30899,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -30914,7 +30954,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -30932,13 +30972,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -31133,7 +31173,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -31151,13 +31191,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -31206,7 +31246,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -31224,13 +31264,13 @@ "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -32307,7 +32347,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151885" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32331,13 +32371,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "25178:2": { "resolvedValue": { @@ -32380,7 +32420,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "id": "VariableID:27513:151886" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32404,13 +32444,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, + "r": 0.8078431487083435, + "g": 0.8156862854957581, + "b": 0.8588235378265381, "a": 1 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": "VariableID:27513:151886", + "aliasName": "core/neutral/neutral-40" }, "25178:2": { "resolvedValue": { @@ -32453,7 +32493,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32477,13 +32517,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -32522,61 +32562,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" } }, "scopes": [ @@ -32595,19 +32635,19 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7109" + "id": "VariableID:27513:151884" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7109" + "id": "VariableID:27513:151884" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7109" + "id": "VariableID:27513:151884" } }, "resolvedValuesByMode": { @@ -32618,18 +32658,18 @@ "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:25178:7109", - "aliasName": "core/surfaces/surface-highest" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "25178:1": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -32638,8 +32678,8 @@ "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:25178:7109", - "aliasName": "core/surfaces/surface-highest" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "26302:0": { "resolvedValue": { @@ -32648,8 +32688,8 @@ "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:25178:7109", - "aliasName": "core/surfaces/surface-highest" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" } }, "scopes": [ @@ -32672,7 +32712,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151887" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32696,13 +32736,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151887", + "aliasName": "core/neutral/neutral-50" }, "25178:2": { "resolvedValue": { @@ -32745,7 +32785,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151884" + "id": "VariableID:27513:151885" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32769,13 +32809,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": "VariableID:27513:151884", - "aliasName": "core/neutral/neutral-20" + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "25178:2": { "resolvedValue": { @@ -32818,7 +32858,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -32842,13 +32882,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -32887,19 +32927,19 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:25178:7121" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:25178:7121" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:25178:7121" } }, "resolvedValuesByMode": { @@ -32910,18 +32950,18 @@ "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -32930,8 +32970,8 @@ "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "26302:0": { "resolvedValue": { @@ -32940,8 +32980,8 @@ "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" } }, "scopes": [ @@ -34427,14 +34467,12 @@ "id": "VariableID:27513:151890" }, "25178:2": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151890" } }, "resolvedValuesByMode": { @@ -34465,17 +34503,18 @@ "b": 0.250980406999588, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" } }, "scopes": [ @@ -34494,7 +34533,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151890" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -34502,23 +34541,23 @@ }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151890" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:1": { "resolvedValue": { @@ -34532,23 +34571,23 @@ }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" } }, "scopes": [ @@ -35589,7 +35628,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" }, "25178:1": { "type": "VARIABLE_ALIAS", @@ -35597,11 +35636,11 @@ }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -35612,8 +35651,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:1": { "resolvedValue": { @@ -35632,8 +35671,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -35642,8 +35681,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -35662,19 +35701,19 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7108" + "id": "VariableID:27513:151883" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151882" + "id": "VariableID:27513:151883" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7108" + "id": "VariableID:27513:151883" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7108" + "id": "VariableID:27513:151883" } }, "resolvedValuesByMode": { @@ -35685,18 +35724,18 @@ "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:25178:7108", - "aliasName": "core/surfaces/surface-higher" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:1": { "resolvedValue": { - "r": 0.9803921580314636, - "g": 0.9803921580314636, - "b": 0.9882352948188782, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:27513:151882", - "aliasName": "core/neutral/neutral-5" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { @@ -35705,8 +35744,8 @@ "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:25178:7108", - "aliasName": "core/surfaces/surface-higher" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "26302:0": { "resolvedValue": { @@ -35715,8 +35754,8 @@ "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:25178:7108", - "aliasName": "core/surfaces/surface-higher" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" } }, "scopes": [ @@ -35735,61 +35774,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -35808,61 +35847,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -35881,21 +35920,19 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 0.07999999821186066 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -35906,17 +35943,18 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:1": { "resolvedValue": { "r": 1, "g": 1, "b": 1, - "a": 0.07999999821186066 + "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -35925,8 +35963,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -35935,8 +35973,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -35958,10 +35996,8 @@ "id": "VariableID:27513:151883" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 0.10999999940395355 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -35985,12 +36021,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0.10999999940395355 + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, + "a": 1 }, - "alias": null + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { @@ -36033,7 +36070,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151885" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36057,13 +36094,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "25178:2": { "resolvedValue": { @@ -36102,61 +36139,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36175,61 +36212,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7256" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7256", - "aliasName": "icon-btn/icon-btn-default/icon-btn-active" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36252,7 +36289,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151883" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36276,13 +36313,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { @@ -36325,7 +36362,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "id": "VariableID:27513:151884" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36349,13 +36386,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "25178:2": { "resolvedValue": { @@ -36394,61 +36431,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151891" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151891", - "aliasName": "core/neutral/neutral-90" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36467,61 +36504,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36544,7 +36581,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151887" + "id": "VariableID:27513:151883" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36568,13 +36605,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.6745098233222961, - "g": 0.686274528503418, - "b": 0.7490196228027344, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": "VariableID:27513:151887", - "aliasName": "core/neutral/neutral-50" + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { @@ -36617,7 +36654,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151884" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36641,13 +36678,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "25178:2": { "resolvedValue": { @@ -36690,7 +36727,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151884" + "id": "VariableID:27513:151885" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36714,13 +36751,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": "VariableID:27513:151884", - "aliasName": "core/neutral/neutral-20" + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "25178:2": { "resolvedValue": { @@ -36759,61 +36796,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36832,61 +36869,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -36909,7 +36946,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151890" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -36933,13 +36970,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151890", - "aliasName": "core/neutral/neutral-80" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -36982,7 +37019,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151889" + "id": "VariableID:27513:151887" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -37006,13 +37043,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.27843138575553894, - "g": 0.29019609093666077, - "b": 0.3490196168422699, + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, "a": 1 }, - "alias": "VariableID:27513:151889", - "aliasName": "core/neutral/neutral-70" + "alias": "VariableID:27513:151887", + "aliasName": "core/neutral/neutral-50" }, "25178:2": { "resolvedValue": { @@ -37347,7 +37384,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -37371,13 +37408,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -37420,7 +37457,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -37444,13 +37481,13 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -37489,61 +37526,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151881" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7262" + "id": "VariableID:25178:7121" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151881", - "aliasName": "core/neutral/neutral-0" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "26302:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7262", - "aliasName": "icon-btn/icon-btn-black/icon-btn" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" } }, "scopes": [ @@ -49473,11 +49510,11 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:28101:155701" + "id": "VariableID:28101:155698" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:28101:155701" + "id": "VariableID:28101:155697" }, "26302:0": { "type": "VARIABLE_ALIAS", @@ -49497,23 +49534,23 @@ }, "25178:1": { "resolvedValue": { - "r": 0.6784313917160034, - "g": 0, - "b": 0, + "r": 0.9843137264251709, + "g": 0.7137255072593689, + "b": 0.7137255072593689, "a": 1 }, - "alias": "VariableID:28101:155701", - "aliasName": "core/semantic/error-70" + "alias": "VariableID:28101:155698", + "aliasName": "core/semantic/error-20" }, "25178:2": { "resolvedValue": { - "r": 0.6784313917160034, - "g": 0, - "b": 0, + "r": 0.9921568632125854, + "g": 0.8823529481887817, + "b": 0.8823529481887817, "a": 1 }, - "alias": "VariableID:28101:155701", - "aliasName": "core/semantic/error-70" + "alias": "VariableID:28101:155697", + "aliasName": "core/semantic/error-10" }, "26302:0": { "resolvedValue": { @@ -49979,66 +50016,62 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155678" }, "25178:1": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155678" }, "25178:2": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155678" }, "26302:0": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155678" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, + "r": 0.9607843160629272, + "g": 0.9921568632125854, "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:28101:155678", + "aliasName": "core/semantic/info-5" }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, + "r": 0.9607843160629272, + "g": 0.9921568632125854, "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:28101:155678", + "aliasName": "core/semantic/info-5" }, "25178:2": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, + "r": 0.9607843160629272, + "g": 0.9921568632125854, "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:28101:155678", + "aliasName": "core/semantic/info-5" }, "26302:0": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.9686274528503418, + "r": 0.9607843160629272, + "g": 0.9921568632125854, "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:28101:155678", + "aliasName": "core/semantic/info-5" } }, "scopes": [ @@ -57916,10 +57949,10 @@ "a": 0 }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "26302:0": { "r": 0, @@ -57949,10 +57982,10 @@ }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "alias": null }, @@ -58427,61 +58460,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6988" + "id": "VariableID:27513:151891" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151890" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7844" + "id": "VariableID:27513:151891" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5816" + "id": "VariableID:27513:151892" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:25178:6988", - "aliasName": "palette/night/night800" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, + "a": 1 }, - "alias": "VariableID:25178:7844", - "aliasName": "palette/gray/gray80" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "alias": "VariableID:27073:5816", - "aliasName": "palette/night/night950" + "alias": "VariableID:27513:151892", + "aliasName": "core/neutral/neutral-100" } }, "scopes": [ @@ -58500,61 +58533,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6989" + "id": "VariableID:27513:151890" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7107" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7845" + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5815" + "id": "VariableID:27513:151891" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:6989", - "aliasName": "palette/night/night900" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7107", - "aliasName": "core/surfaces/surface-sunken" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 }, - "alias": "VariableID:25178:7845", - "aliasName": "palette/gray/gray90" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:27073:5815", - "aliasName": "palette/black" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" } }, "scopes": [ @@ -58573,61 +58606,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6989" + "id": "VariableID:27513:151890" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7107" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7845" + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5815" + "id": "VariableID:27513:151891" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:6989", - "aliasName": "palette/night/night900" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7107", - "aliasName": "core/surfaces/surface-sunken" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 }, - "alias": "VariableID:25178:7845", - "aliasName": "palette/gray/gray90" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:27073:5815", - "aliasName": "palette/black" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" } }, "scopes": [ @@ -58724,7 +58757,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -58748,13 +58781,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -58793,61 +58826,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7125" + "id": "VariableID:27513:151881" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7121" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7125" + "id": "VariableID:27513:151881" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:28101:155657" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7125", - "aliasName": "core/text/text-brand" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7121", - "aliasName": "core/text/text-primary" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7125", - "aliasName": "core/text/text-brand" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { - "r": 0, - "g": 0.6196078658103943, - "b": 0.800000011920929, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:28101:155657", - "aliasName": "core/semantic/primary-50" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -58866,61 +58899,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6989" + "id": "VariableID:27513:151890" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7107" + "id": "VariableID:27513:151889" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7845" + "id": "VariableID:27513:151890" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5815" + "id": "VariableID:27513:151891" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.14901961386203766, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:25178:6989", - "aliasName": "palette/night/night900" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "25178:1": { "resolvedValue": { - "r": 0.9215686321258545, - "g": 0.929411768913269, - "b": 0.9607843160629272, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:7107", - "aliasName": "core/surfaces/surface-sunken" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 }, - "alias": "VariableID:25178:7845", - "aliasName": "palette/gray/gray90" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" }, "26302:0": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, + "r": 0.11372549086809158, + "g": 0.11764705926179886, + "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:27073:5815", - "aliasName": "palette/black" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" } }, "scopes": [ @@ -58939,61 +58972,61 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6988" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7106" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7844" + "id": "VariableID:27513:151889" }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27073:5816" + "id": "VariableID:27513:151890" } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6988", - "aliasName": "palette/night/night800" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:25178:7106", - "aliasName": "core/surfaces/surface-main" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 }, - "alias": "VariableID:25178:7844", - "aliasName": "palette/gray/gray80" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, - "a": 0 + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 }, - "alias": "VariableID:27073:5816", - "aliasName": "palette/night/night950" + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" } }, "scopes": [ @@ -59012,11 +59045,11 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6987" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59024,7 +59057,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6989" + "id": "VariableID:27513:151891" } }, "resolvedValuesByMode": { @@ -59035,18 +59068,18 @@ "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6987", - "aliasName": "palette/night/night700" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -59065,8 +59098,8 @@ "b": 0.14901961386203766, "a": 1 }, - "alias": "VariableID:25178:6989", - "aliasName": "palette/night/night900" + "alias": "VariableID:27513:151891", + "aliasName": "core/neutral/neutral-90" } }, "scopes": [ @@ -59085,11 +59118,11 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6987" + "id": "VariableID:27513:151889" }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151886" + "id": "VariableID:27513:151888" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59097,7 +59130,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6987" + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { @@ -59108,18 +59141,18 @@ "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6987", - "aliasName": "palette/night/night700" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { - "r": 0.8078431487083435, - "g": 0.8156862854957581, - "b": 0.8588235378265381, + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, "a": 1 }, - "alias": "VariableID:27513:151886", - "aliasName": "core/neutral/neutral-40" + "alias": "VariableID:27513:151888", + "aliasName": "core/neutral/neutral-60" }, "25178:2": { "resolvedValue": { @@ -59138,8 +59171,8 @@ "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6987", - "aliasName": "palette/night/night700" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ @@ -59162,7 +59195,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151889" + "id": "VariableID:25178:7124" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59186,13 +59219,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.27843138575553894, - "g": 0.29019609093666077, - "b": 0.3490196168422699, + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, "a": 1 }, - "alias": "VariableID:27513:151889", - "aliasName": "core/neutral/neutral-70" + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" }, "25178:2": { "resolvedValue": { @@ -59235,7 +59268,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151892" + "id": "VariableID:25178:7121" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59259,13 +59292,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, "a": 1 }, - "alias": "VariableID:27513:151892", - "aliasName": "core/neutral/neutral-100" + "alias": "VariableID:25178:7121", + "aliasName": "core/text/text-primary" }, "25178:2": { "resolvedValue": { @@ -59308,7 +59341,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151889" + "id": "VariableID:25178:7137" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59332,13 +59365,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.27843138575553894, - "g": 0.29019609093666077, - "b": 0.3490196168422699, + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, "a": 1 }, - "alias": "VariableID:27513:151889", - "aliasName": "core/neutral/neutral-70" + "alias": "VariableID:25178:7137", + "aliasName": "core/icons/icon-disabled" }, "25178:2": { "resolvedValue": { @@ -59381,7 +59414,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7134" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59389,7 +59422,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6979" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -59405,13 +59438,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.42352941632270813, - "g": 0.43529412150382996, - "b": 0.501960813999176, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7134", - "aliasName": "core/icons/icon" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -59430,8 +59463,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:6979", - "aliasName": "palette/white" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -59445,7 +59478,7 @@ { "id": "VariableID:25798:294835", "name": "main_menu/main_menu-icon-hover", - "description": "Не совпадает с дизайном, там они светлее", + "description": "", "type": "COLOR", "valuesByMode": { "25178:0": { @@ -59454,7 +59487,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7135" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59462,7 +59495,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6979" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -59478,13 +59511,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.27843138575553894, - "g": 0.29019609093666077, - "b": 0.3490196168422699, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7135", - "aliasName": "core/icons/icon-hover" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -59503,8 +59536,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:6979", - "aliasName": "palette/white" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -59518,7 +59551,7 @@ { "id": "VariableID:25798:294836", "name": "main_menu/main_menu-icon-active", - "description": "Не совпадает с дизайном, там они светлее", + "description": "", "type": "COLOR", "valuesByMode": { "25178:0": { @@ -59527,7 +59560,7 @@ }, "25178:1": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7136" + "id": "VariableID:27513:151881" }, "25178:2": { "type": "VARIABLE_ALIAS", @@ -59535,7 +59568,7 @@ }, "26302:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6979" + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -59551,13 +59584,13 @@ }, "25178:1": { "resolvedValue": { - "r": 0.1882352977991104, - "g": 0.19607843458652496, - "b": 0.250980406999588, + "r": 1, + "g": 1, + "b": 1, "a": 1 }, - "alias": "VariableID:25178:7136", - "aliasName": "core/icons/icon-active" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -59576,8 +59609,8 @@ "b": 1, "a": 1 }, - "alias": "VariableID:25178:6979", - "aliasName": "palette/white" + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ @@ -61777,7 +61810,7 @@ "valuesByMode": { "25178:0": { "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:6987" + "id": "VariableID:27513:151889" }, "25178:1": { "r": 1, @@ -61806,8 +61839,8 @@ "b": 0.3490196168422699, "a": 1 }, - "alias": "VariableID:25178:6987", - "aliasName": "palette/night/night700" + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:1": { "resolvedValue": { @@ -67752,22 +67785,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -67788,7 +67815,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -67797,7 +67825,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -67806,13 +67835,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color' */" } @@ -67828,22 +67858,16 @@ "id": "VariableID:27513:151883" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" } }, "resolvedValuesByMode": { @@ -67859,36 +67883,39 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-hover' */" } @@ -67904,22 +67931,16 @@ "id": "VariableID:27513:151885" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151884" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" } }, "resolvedValuesByMode": { @@ -67935,36 +67956,39 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-active' */" } @@ -67976,37 +68000,37 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 + "r": 1, + "g": 1, + "b": 1, + "a": 0.15000000596046448 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0, - "g": 0, - "b": 0, - "a": 0 + "r": 1, + "g": 1, + "b": 1, + "a": 0.15000000596046448 }, "alias": null }, @@ -68015,7 +68039,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "alias": null }, @@ -68024,7 +68048,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "alias": null }, @@ -68033,7 +68057,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.15000000596046448 }, "alias": null } @@ -68041,7 +68065,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-halftone' */" } @@ -68056,25 +68080,25 @@ "r": 1, "g": 1, "b": 1, - "a": 0.20000000298023224 + "a": 0.2199999988079071 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 } }, "resolvedValuesByMode": { @@ -68083,7 +68107,7 @@ "r": 1, "g": 1, "b": 1, - "a": 0.20000000298023224 + "a": 0.2199999988079071 }, "alias": null }, @@ -68092,7 +68116,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "alias": null }, @@ -68101,7 +68125,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "alias": null }, @@ -68110,7 +68134,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.2199999988079071 }, "alias": null } @@ -68118,7 +68142,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-halftone-hover' */" } @@ -68133,25 +68157,25 @@ "r": 1, "g": 1, "b": 1, - "a": 0.30000001192092896 + "a": 0.28999999165534973 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 } }, "resolvedValuesByMode": { @@ -68160,7 +68184,7 @@ "r": 1, "g": 1, "b": 1, - "a": 0.30000001192092896 + "a": 0.28999999165534973 }, "alias": null }, @@ -68169,7 +68193,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "alias": null }, @@ -68178,7 +68202,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "alias": null }, @@ -68187,7 +68211,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.28999999165534973 }, "alias": null } @@ -68195,7 +68219,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-halftone-active' */" } @@ -68211,22 +68235,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -68247,7 +68265,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -68256,7 +68275,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -68265,13 +68285,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-border-color' */" } @@ -68279,7 +68300,7 @@ { "id": "VariableID:38902:170204", "name": "button/button-white/button-border-color-hover", - "description": "Only for FE developers for Solid buttons", + "description": "", "type": "COLOR", "valuesByMode": { "25178:0": { @@ -68287,22 +68308,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -68323,7 +68338,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -68332,7 +68348,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -68341,13 +68358,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-border-color-hover' */" } @@ -68355,7 +68373,7 @@ { "id": "VariableID:38902:170205", "name": "button/button-white/button-border-color-active", - "description": "Only for FE developers for Solid buttons", + "description": "", "type": "COLOR", "valuesByMode": { "25178:0": { @@ -68363,22 +68381,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -68399,7 +68411,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -68408,7 +68421,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -68417,13 +68431,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-border-color-active' */" } @@ -68435,45 +68450,46 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151885" + "r": 1, + "g": 1, + "b": 1, + "a": 0.10000000149011612 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.8823529481887817, - "g": 0.8901960849761963, - "b": 0.9215686321258545, - "a": 1 + "r": 1, + "g": 1, + "b": 1, + "a": 0.10000000149011612 }, - "alias": "VariableID:27513:151885", - "aliasName": "core/neutral/neutral-30" + "alias": null }, "25178:1": { "resolvedValue": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "alias": null }, @@ -68482,7 +68498,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "alias": null }, @@ -68491,7 +68507,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.10000000149011612 }, "alias": null } @@ -68499,7 +68515,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-bg-color-disabled' */" } @@ -68511,45 +68527,46 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:27513:151887" + "r": 1, + "g": 1, + "b": 1, + "a": 0.30000001192092896 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.6745098233222961, - "g": 0.686274528503418, - "b": 0.7490196228027344, - "a": 1 + "r": 1, + "g": 1, + "b": 1, + "a": 0.30000001192092896 }, - "alias": "VariableID:27513:151887", - "aliasName": "core/neutral/neutral-50" + "alias": null }, "25178:1": { "resolvedValue": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "alias": null }, @@ -68558,7 +68575,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "alias": null }, @@ -68567,7 +68584,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.30000001192092896 }, "alias": null } @@ -68575,7 +68592,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-border-color-disabled' */" } @@ -68591,22 +68608,16 @@ "id": "VariableID:27513:151889" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151889" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151889" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151889" } }, "resolvedValuesByMode": { @@ -68622,36 +68633,39 @@ }, "25178:1": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "25178:2": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" }, "26302:0": { "resolvedValue": { - "r": 1, - "g": 1, - "b": 1, + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151889", + "aliasName": "core/neutral/neutral-70" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-caption-color' */" } @@ -68667,22 +68681,16 @@ "id": "VariableID:27513:151881" }, "25178:1": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "25178:2": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" }, "26302:0": { - "r": 1, - "g": 1, - "b": 1, - "a": 1 + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151881" } }, "resolvedValuesByMode": { @@ -68703,7 +68711,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "25178:2": { "resolvedValue": { @@ -68712,7 +68721,8 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" }, "26302:0": { "resolvedValue": { @@ -68721,13 +68731,14 @@ "b": 1, "a": 1 }, - "alias": null + "alias": "VariableID:27513:151881", + "aliasName": "core/neutral/neutral-0" } }, "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-caption-halftone-color' */" } @@ -68739,45 +68750,46 @@ "type": "COLOR", "valuesByMode": { "25178:0": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:25178:7124" + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 }, "25178:1": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "25178:2": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "26302:0": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 } }, "resolvedValuesByMode": { "25178:0": { "resolvedValue": { - "r": 0.6745098233222961, - "g": 0.686274528503418, - "b": 0.7490196228027344, - "a": 1 + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 }, - "alias": "VariableID:25178:7124", - "aliasName": "core/text/text-disabled" + "alias": null }, "25178:1": { "resolvedValue": { "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "alias": null }, @@ -68786,7 +68798,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "alias": null }, @@ -68795,7 +68807,7 @@ "r": 1, "g": 1, "b": 1, - "a": 1 + "a": 0.4000000059604645 }, "alias": null } @@ -68803,7 +68815,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'button/button-white/button-caption-color-disabled' */" } @@ -70507,7 +70519,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-neutral-50/indicator-highlited-bg' */" } @@ -70584,7 +70596,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-neutral-50/indicator-outline-bg' */" } @@ -70658,7 +70670,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-neutral-50/indicator-outline-border' */" } @@ -70734,7 +70746,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-white/indicator-solid-bg' */" } @@ -70810,7 +70822,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-default/indicator-solid-bg' */" } @@ -70886,7 +70898,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-info/indicator-solid-bg' */" } @@ -70962,7 +70974,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-success/indicator-solid-bg' */" } @@ -71038,7 +71050,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-warning/indicator-solid-bg' */" } @@ -71114,7 +71126,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-critical/indicator-solid-bg' */" } @@ -71190,7 +71202,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-yellow/indicator-solid-bg' */" } @@ -71266,7 +71278,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-orange/indicator-solid-bg' */" } @@ -71342,7 +71354,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-fuchsia/indicator-solid-bg' */" } @@ -71418,7 +71430,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-purple/indicator-solid-bg' */" } @@ -71494,7 +71506,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-lavanda/indicator-solid-bg' */" } @@ -71570,7 +71582,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-cobalt/indicator-solid-bg' */" } @@ -71646,7 +71658,7 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-cyan/indicator-solid-bg' */" } @@ -71722,10 +71734,2986 @@ "scopes": [ "ALL_SCOPES" ], - "hiddenFromPublishing": false, + "hiddenFromPublishing": true, "codeSyntax": { "WEB": "/* UUI internal variable 'indicator/indicator-mint/indicator-solid-bg' */" } + }, + { + "id": "VariableID:49908:136885", + "name": "link-button/link_button-secondary/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155669" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155669" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155669" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, + "a": 1 + }, + "alias": "VariableID:28101:155669", + "aliasName": "core/semantic/secondary-50" + }, + "25178:1": { + "resolvedValue": { + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, + "a": 1 + }, + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" + }, + "25178:2": { + "resolvedValue": { + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, + "a": 1 + }, + "alias": "VariableID:28101:155669", + "aliasName": "core/semantic/secondary-50" + }, + "26302:0": { + "resolvedValue": { + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, + "a": 1 + }, + "alias": "VariableID:28101:155669", + "aliasName": "core/semantic/secondary-50" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-secondary/link-button-text-color' */" + } + }, + { + "id": "VariableID:49908:136886", + "name": "link-button/link_button-secondary/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151884" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, + "a": 1 + }, + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" + }, + "25178:2": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "26302:0": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-secondary/link-button-text-color-hover' */" + } + }, + { + "id": "VariableID:49908:136887", + "name": "link-button/link_button-secondary/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155671" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155671" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155671" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:28101:155671", + "aliasName": "core/semantic/secondary-70" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, + "a": 1 + }, + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" + }, + "25178:2": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:28101:155671", + "aliasName": "core/semantic/secondary-70" + }, + "26302:0": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:28101:155671", + "aliasName": "core/semantic/secondary-70" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-secondary/link-button-text-color-active' */" + } + }, + { + "id": "VariableID:49908:136888", + "name": "link-button/link_button-secondary/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "25178:1": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-secondary/link-button-text-color-disabled' */" + } + }, + { + "id": "VariableID:49911:189321", + "name": "link-button/link_button-accent/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + }, + "25178:1": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + }, + "25178:2": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + }, + "26302:0": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-accent/link-button-text-color' */" + } + }, + { + "id": "VariableID:49911:189322", + "name": "link-button/link_button-accent/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + }, + "25178:1": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + }, + "26302:0": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-accent/link-button-text-color-hover' */" + } + }, + { + "id": "VariableID:49911:189323", + "name": "link-button/link_button-accent/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + }, + "25178:1": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + }, + "25178:2": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + }, + "26302:0": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-accent/link-button-text-color-active' */" + } + }, + { + "id": "VariableID:49911:189324", + "name": "link-button/link_button-accent/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "25178:1": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-accent/link-button-text-color-disabled' */" + } + }, + { + "id": "VariableID:49911:189325", + "name": "link-button/link_button-critical/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-critical/link-button-text-color' */" + } + }, + { + "id": "VariableID:49911:189326", + "name": "link-button/link_button-critical/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + }, + "25178:1": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + }, + "26302:0": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-critical/link-button-text-color-hover' */" + } + }, + { + "id": "VariableID:49911:189327", + "name": "link-button/link_button-critical/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + }, + "25178:1": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + }, + "25178:2": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + }, + "26302:0": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-critical/link-button-text-color-active' */" + } + }, + { + "id": "VariableID:49911:189328", + "name": "link-button/link_button-critical/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "25178:1": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-critical/link-button-text-color-disabled' */" + } + }, + { + "id": "VariableID:50818:79085", + "name": "link-button/link_button-white/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151882" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151882" + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151882" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.9803921580314636, + "g": 0.9803921580314636, + "b": 0.9882352948188782, + "a": 1 + }, + "alias": "VariableID:27513:151882", + "aliasName": "core/neutral/neutral-5" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9803921580314636, + "g": 0.9803921580314636, + "b": 0.9882352948188782, + "a": 1 + }, + "alias": "VariableID:27513:151882", + "aliasName": "core/neutral/neutral-5" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 0.9803921580314636, + "g": 0.9803921580314636, + "b": 0.9882352948188782, + "a": 1 + }, + "alias": "VariableID:27513:151882", + "aliasName": "core/neutral/neutral-5" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-white/link-button-text-color' */" + } + }, + { + "id": "VariableID:50818:79086", + "name": "link-button/link_button-white/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151883" + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, + "a": 1 + }, + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9607843160629272, + "g": 0.9647058844566345, + "b": 0.9803921580314636, + "a": 1 + }, + "alias": "VariableID:27513:151883", + "aliasName": "core/neutral/neutral-10" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, + "a": 1 + }, + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-white/link-button-text-color-hover' */" + } + }, + { + "id": "VariableID:50818:79087", + "name": "link-button/link_button-white/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151886" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151884" + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151886" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.8078431487083435, + "g": 0.8156862854957581, + "b": 0.8588235378265381, + "a": 1 + }, + "alias": "VariableID:27513:151886", + "aliasName": "core/neutral/neutral-40" + }, + "25178:1": { + "resolvedValue": { + "r": 0.9215686321258545, + "g": 0.929411768913269, + "b": 0.9607843160629272, + "a": 1 + }, + "alias": "VariableID:27513:151884", + "aliasName": "core/neutral/neutral-20" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 0.8078431487083435, + "g": 0.8156862854957581, + "b": 0.8588235378265381, + "a": 1 + }, + "alias": "VariableID:27513:151886", + "aliasName": "core/neutral/neutral-40" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-white/link-button-text-color-active' */" + } + }, + { + "id": "VariableID:50818:79088", + "name": "link-button/link_button-white/link-button-text-color-disabled", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": true, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link_button-white/link-button-text-color-disabled' */" + } + }, + { + "id": "VariableID:56070:15455", + "name": "core/semantic/primary-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "var(--uui-primary-contrast)" + } + }, + { + "id": "VariableID:56070:15456", + "name": "core/semantic/accent-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "var(--uui-accent-contrast)" + } + }, + { + "id": "VariableID:56070:15457", + "name": "core/semantic/secondary-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "var(--uui-secondary-contrast)" + } + }, + { + "id": "VariableID:56070:15458", + "name": "core/semantic/critical-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "var(--uui-critical-contrast)" + } + }, + { + "id": "VariableID:56070:15459", + "name": "core/semantic/info-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "var(--uui-info-contrast)" + } + }, + { + "id": "VariableID:56070:15460", + "name": "core/semantic/success-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "var(--uui-success-contrast)" + } + }, + { + "id": "VariableID:56070:15461", + "name": "core/semantic/warning-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6988" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6987" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7844" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151890" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:25178:6988", + "aliasName": "palette/night/night800" + }, + "25178:1": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:25178:6987", + "aliasName": "palette/night/night700" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "alias": "VariableID:25178:7844", + "aliasName": "palette/gray/gray80" + }, + "26302:0": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:27513:151890", + "aliasName": "core/neutral/neutral-80" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "var(--uui-warning-contrast)" + } + }, + { + "id": "VariableID:56070:15462", + "name": "core/semantic/error-contrast", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + }, + "26302:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:6979" + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": "VariableID:25178:6979", + "aliasName": "palette/white" + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "var(--uui-error-contrast)" + } + }, + { + "id": "VariableID:56070:15463", + "name": "link-button/link-button-vars/link_button-secondary/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155669" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.42352941632270813, + "g": 0.43529412150382996, + "b": 0.501960813999176, + "a": 1 + }, + "alias": "VariableID:28101:155669", + "aliasName": "core/semantic/secondary-50" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-secondary/link-button-text-color' */" + } + }, + { + "id": "VariableID:56070:15464", + "name": "link-button/link-button-vars/link_button-secondary/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155670" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.27843138575553894, + "g": 0.29019609093666077, + "b": 0.3490196168422699, + "a": 1 + }, + "alias": "VariableID:28101:155670", + "aliasName": "core/semantic/secondary-60" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-secondary/link-button-text-color-hover' */" + } + }, + { + "id": "VariableID:56070:15465", + "name": "link-button/link-button-vars/link_button-secondary/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155671" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.1882352977991104, + "g": 0.19607843458652496, + "b": 0.250980406999588, + "a": 1 + }, + "alias": "VariableID:28101:155671", + "aliasName": "core/semantic/secondary-70" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-secondary/link-button-text-color-active' */" + } + }, + { + "id": "VariableID:56070:15466", + "name": "link-button/link-button-vars/link_button-secondary/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-secondary/link-button-text-color-disabled' */" + } + }, + { + "id": "VariableID:56070:15467", + "name": "link-button/link-button-vars/link_button-accent/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155663" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.40392157435417175, + "g": 0.6392157077789307, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155663", + "aliasName": "core/semantic/accent-50" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-accent/link-button-text-color' */" + } + }, + { + "id": "VariableID:56070:15468", + "name": "link-button/link-button-vars/link_button-accent/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155664" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.32156863808631897, + "g": 0.5215686559677124, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155664", + "aliasName": "core/semantic/accent-60" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-accent/link-button-text-color-hover' */" + } + }, + { + "id": "VariableID:56070:15469", + "name": "link-button/link-button-vars/link_button-accent/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155665" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.2235294133424759, + "g": 0.43529412150382996, + "b": 0.12156862765550613, + "a": 1 + }, + "alias": "VariableID:28101:155665", + "aliasName": "core/semantic/accent-70" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-accent/link-button-text-color-active' */" + } + }, + { + "id": "VariableID:56070:15470", + "name": "link-button/link-button-vars/link_button-accent/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-accent/link-button-text-color-disabled' */" + } + }, + { + "id": "VariableID:56070:15471", + "name": "link-button/link-button-vars/link_button-white/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151882" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.9803921580314636, + "g": 0.9803921580314636, + "b": 0.9882352948188782, + "a": 1 + }, + "alias": "VariableID:27513:151882", + "aliasName": "core/neutral/neutral-5" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-white/link-button-text-color' */" + } + }, + { + "id": "VariableID:56070:15472", + "name": "link-button/link-button-vars/link_button-white/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151885" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.8823529481887817, + "g": 0.8901960849761963, + "b": 0.9215686321258545, + "a": 1 + }, + "alias": "VariableID:27513:151885", + "aliasName": "core/neutral/neutral-30" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-white/link-button-text-color-hover' */" + } + }, + { + "id": "VariableID:56070:15473", + "name": "link-button/link-button-vars/link_button-white/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27513:151886" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.8078431487083435, + "g": 0.8156862854957581, + "b": 0.8588235378265381, + "a": 1 + }, + "alias": "VariableID:27513:151886", + "aliasName": "core/neutral/neutral-40" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-white/link-button-text-color-active' */" + } + }, + { + "id": "VariableID:56070:15474", + "name": "link-button/link-button-vars/link_button-white/link-button-text-color-disabled", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.4000000059604645 + }, + "alias": null + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-white/link-button-text-color-disabled' */" + } + }, + { + "id": "VariableID:56070:15475", + "name": "link-button/link-button-vars/link_button-critical/link-button-text-color", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155675" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 1, + "g": 0.25882354378700256, + "b": 0.25882354378700256, + "a": 1 + }, + "alias": "VariableID:28101:155675", + "aliasName": "core/semantic/critical-50" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-critical/link-button-text-color' */" + } + }, + { + "id": "VariableID:56070:15476", + "name": "link-button/link-button-vars/link_button-critical/link-button-text-color-hover", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155676" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.886274516582489, + "g": 0.16470588743686676, + "b": 0.16470588743686676, + "a": 1 + }, + "alias": "VariableID:28101:155676", + "aliasName": "core/semantic/critical-60" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-critical/link-button-text-color-hover' */" + } + }, + { + "id": "VariableID:56070:15477", + "name": "link-button/link-button-vars/link_button-critical/link-button-text-color-active", + "description": "", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:28101:155677" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.6784313917160034, + "g": 0, + "b": 0, + "a": 1 + }, + "alias": "VariableID:28101:155677", + "aliasName": "core/semantic/critical-70" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-critical/link-button-text-color-active' */" + } + }, + { + "id": "VariableID:56070:15478", + "name": "link-button/link-button-vars/link_button-critical/link-button-text-color-disabled", + "description": "Check on FE", + "type": "COLOR", + "valuesByMode": { + "25178:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25178:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25178:7124" + }, + "26302:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "resolvedValuesByMode": { + "25178:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:1": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + }, + "25178:2": { + "resolvedValue": { + "r": 0.6745098233222961, + "g": 0.686274528503418, + "b": 0.7490196228027344, + "a": 1 + }, + "alias": "VariableID:25178:7124", + "aliasName": "core/text/text-disabled" + }, + "26302:0": { + "resolvedValue": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "alias": null + } + }, + "scopes": [ + "ALL_SCOPES" + ], + "hiddenFromPublishing": false, + "codeSyntax": { + "WEB": "/* UUI internal variable 'link-button/link-button-vars/link_button-critical/link-button-text-color-disabled' */" + } } ] } \ No newline at end of file diff --git a/public/docs/figmaTokensGen/ThemeTokens.json b/public/docs/figmaTokensGen/ThemeTokens.json index 60470e8af4..4a48978fba 100644 --- a/public/docs/figmaTokensGen/ThemeTokens.json +++ b/public/docs/figmaTokensGen/ThemeTokens.json @@ -5517,6 +5517,104 @@ } } }, + { + "id": "core/semantic/accent-contrast", + "type": "COLOR", + "description": "", + "useCases": "", + "cssVar": "--uui-accent-contrast", + "cssVarSupport": "supported", + "valueByTheme": { + "Loveship-Light": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Loveship-Dark": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Promo": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Electric": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + } + } + }, { "id": "core/semantic/critical-5", "type": "COLOR", @@ -6105,6 +6203,104 @@ } } }, + { + "id": "core/semantic/critical-contrast", + "type": "COLOR", + "description": "", + "useCases": "", + "cssVar": "--uui-critical-contrast", + "cssVarSupport": "supported", + "valueByTheme": { + "Loveship-Light": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Loveship-Dark": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Promo": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Electric": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + } + } + }, { "id": "core/semantic/error-5", "type": "COLOR", @@ -6694,126 +6890,224 @@ } }, { - "id": "core/semantic/info-5", + "id": "core/semantic/error-contrast", "type": "COLOR", "description": "", "useCases": "", - "cssVar": "--uui-info-5", + "cssVar": "--uui-error-contrast", "cssVarSupport": "supported", "valueByTheme": { "Loveship-Light": { "valueChain": { "alias": [ { - "id": "palette/sky/sky-5", - "cssVar": "--sky-5", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#F5FDFF" + "value": "#FFFFFF" }, "valueDirect": { "alias": [ { - "id": "palette/sky/sky-5", - "cssVar": "--sky-5", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#F5FDFF" + "value": "#FFFFFF" } }, "Loveship-Dark": { "valueChain": { "alias": [ { - "id": "palette/sky/sky-5", - "cssVar": "--sky-5", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#2C394B" + "value": "#FFFFFF" }, "valueDirect": { "alias": [ { - "id": "palette/sky/sky-5", - "cssVar": "--sky-5", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#F5FDFF" + "value": "#FFFFFF" } }, "Promo": { "valueChain": { "alias": [ { - "id": "palette/blue/blue-5", - "cssVar": "--blue-5", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#F5FBFF" + "value": "#FFFFFF" }, "valueDirect": { "alias": [ { - "id": "palette/blue/blue-5", - "cssVar": "--blue-5", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#FFFFFF00" + "value": "#FFFFFF" } }, "Electric": { "valueChain": { "alias": [ { - "id": "palette/electric/electric-5", - "cssVar": "--electric-5", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#F3F8FE" + "value": "#FFFFFF" }, "valueDirect": { "alias": [ { - "id": "palette/electric/electric-5", - "cssVar": "--electric-5", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#FFFFFF00" + "value": "#FFFFFF" } } } }, { - "id": "core/semantic/info-10", + "id": "core/semantic/info-5", "type": "COLOR", "description": "", "useCases": "", - "cssVar": "--uui-info-10", + "cssVar": "--uui-info-5", "cssVarSupport": "supported", "valueByTheme": { "Loveship-Light": { "valueChain": { "alias": [ { - "id": "palette/sky/sky-10", - "cssVar": "--sky-10", + "id": "palette/sky/sky-5", + "cssVar": "--sky-5", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#E1F4FA" + "value": "#F5FDFF" }, "valueDirect": { "alias": [ { - "id": "palette/sky/sky-10", + "id": "palette/sky/sky-5", + "cssVar": "--sky-5", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#F5FDFF" + } + }, + "Loveship-Dark": { + "valueChain": { + "alias": [ + { + "id": "palette/sky/sky-5", + "cssVar": "--sky-5", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#2C394B" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/sky/sky-5", + "cssVar": "--sky-5", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#F5FDFF" + } + }, + "Promo": { + "valueChain": { + "alias": [ + { + "id": "palette/blue/blue-5", + "cssVar": "--blue-5", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#F5FBFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/blue/blue-5", + "cssVar": "--blue-5", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF00" + } + }, + "Electric": { + "valueChain": { + "alias": [ + { + "id": "palette/electric/electric-5", + "cssVar": "--electric-5", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#F3F8FE" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/electric/electric-5", + "cssVar": "--electric-5", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF00" + } + } + } + }, + { + "id": "core/semantic/info-10", + "type": "COLOR", + "description": "", + "useCases": "", + "cssVar": "--uui-info-10", + "cssVarSupport": "supported", + "valueByTheme": { + "Loveship-Light": { + "valueChain": { + "alias": [ + { + "id": "palette/sky/sky-10", + "cssVar": "--sky-10", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#E1F4FA" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/sky/sky-10", "cssVar": "--sky-10", "cssVarSupport": "supportedExceptFigma" } @@ -7281,6 +7575,104 @@ } } }, + { + "id": "core/semantic/info-contrast", + "type": "COLOR", + "description": "", + "useCases": "", + "cssVar": "--uui-info-contrast", + "cssVarSupport": "supported", + "valueByTheme": { + "Loveship-Light": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Loveship-Dark": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Promo": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Electric": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + } + } + }, { "id": "core/semantic/primary-5", "type": "COLOR", @@ -7869,6 +8261,104 @@ } } }, + { + "id": "core/semantic/primary-contrast", + "type": "COLOR", + "description": "", + "useCases": "", + "cssVar": "--uui-primary-contrast", + "cssVarSupport": "supported", + "valueByTheme": { + "Loveship-Light": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Loveship-Dark": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Promo": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Electric": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + } + } + }, { "id": "core/semantic/secondary-5", "type": "COLOR", @@ -8349,110 +8839,208 @@ "valueDirect": { "alias": [ { - "id": "palette/night/night700", - "cssVar": "--night700", + "id": "palette/night/night700", + "cssVar": "--night700", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#474A59" + } + } + } + }, + { + "id": "core/semantic/secondary-70", + "type": "COLOR", + "description": "", + "useCases": "", + "cssVar": "--uui-secondary-70", + "cssVarSupport": "supported", + "valueByTheme": { + "Loveship-Light": { + "valueChain": { + "alias": [ + { + "id": "palette/night/night800", + "cssVar": "--night800", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/night/night800", + "cssVar": "--night800", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + } + }, + "Loveship-Dark": { + "valueChain": { + "alias": [ + { + "id": "palette/night/night300", + "cssVar": "--night300", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#6C6F80" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/night/night300", + "cssVar": "--night300", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#E1E3EB" + } + }, + "Promo": { + "valueChain": { + "alias": [ + { + "id": "palette/gray/gray80", + "cssVar": "--gray80", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/gray/gray80", + "cssVar": "--gray80", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF00" + } + }, + "Electric": { + "valueChain": { + "alias": [ + { + "id": "palette/night/night800", + "cssVar": "--night800", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/night/night800", + "cssVar": "--night800", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#474A59" + "value": "#303240" } } } }, { - "id": "core/semantic/secondary-70", + "id": "core/semantic/secondary-contrast", "type": "COLOR", "description": "", "useCases": "", - "cssVar": "--uui-secondary-70", + "cssVar": "--uui-secondary-contrast", "cssVarSupport": "supported", "valueByTheme": { "Loveship-Light": { "valueChain": { "alias": [ { - "id": "palette/night/night800", - "cssVar": "--night800", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#303240" + "value": "#FFFFFF" }, "valueDirect": { "alias": [ { - "id": "palette/night/night800", - "cssVar": "--night800", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#303240" + "value": "#FFFFFF" } }, "Loveship-Dark": { "valueChain": { "alias": [ { - "id": "palette/night/night300", - "cssVar": "--night300", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#6C6F80" + "value": "#FFFFFF" }, "valueDirect": { "alias": [ { - "id": "palette/night/night300", - "cssVar": "--night300", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#E1E3EB" + "value": "#FFFFFF" } }, "Promo": { "valueChain": { "alias": [ { - "id": "palette/gray/gray80", - "cssVar": "--gray80", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#303240" + "value": "#FFFFFF" }, "valueDirect": { "alias": [ { - "id": "palette/gray/gray80", - "cssVar": "--gray80", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#FFFFFF00" + "value": "#FFFFFF" } }, "Electric": { "valueChain": { "alias": [ { - "id": "palette/night/night800", - "cssVar": "--night800", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#303240" + "value": "#FFFFFF" }, "valueDirect": { "alias": [ { - "id": "palette/night/night800", - "cssVar": "--night800", + "id": "palette/white", + "cssVar": "--white", "cssVarSupport": "supportedExceptFigma" } ], - "value": "#303240" + "value": "#FFFFFF" } } } @@ -9045,6 +9633,104 @@ } } }, + { + "id": "core/semantic/success-contrast", + "type": "COLOR", + "description": "", + "useCases": "", + "cssVar": "--uui-success-contrast", + "cssVarSupport": "supported", + "valueByTheme": { + "Loveship-Light": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Loveship-Dark": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Promo": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + }, + "Electric": { + "valueChain": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/white", + "cssVar": "--white", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF" + } + } + } + }, { "id": "core/semantic/warning-5", "type": "COLOR", @@ -9633,6 +10319,109 @@ } } }, + { + "id": "core/semantic/warning-contrast", + "type": "COLOR", + "description": "", + "useCases": "", + "cssVar": "--uui-warning-contrast", + "cssVarSupport": "supported", + "valueByTheme": { + "Loveship-Light": { + "valueChain": { + "alias": [ + { + "id": "palette/night/night800", + "cssVar": "--night800", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/night/night800", + "cssVar": "--night800", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + } + }, + "Loveship-Dark": { + "valueChain": { + "alias": [ + { + "id": "palette/night/night700", + "cssVar": "--night700", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/night/night700", + "cssVar": "--night700", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#474A59" + } + }, + "Promo": { + "valueChain": { + "alias": [ + { + "id": "palette/gray/gray80", + "cssVar": "--gray80", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + }, + "valueDirect": { + "alias": [ + { + "id": "palette/gray/gray80", + "cssVar": "--gray80", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#FFFFFF00" + } + }, + "Electric": { + "valueChain": { + "alias": [ + { + "id": "core/neutral/neutral-80", + "cssVar": "--uui-neutral-80", + "cssVarSupport": "supported" + }, + { + "id": "palette/night/night800", + "cssVar": "--night800", + "cssVarSupport": "supportedExceptFigma" + } + ], + "value": "#303240" + }, + "valueDirect": { + "alias": [ + { + "id": "core/neutral/neutral-80", + "cssVar": "--uui-neutral-80", + "cssVarSupport": "supported" + } + ], + "value": "#303240" + } + } + } + }, { "id": "core/surfaces/app-bg", "type": "COLOR",