From 854487084ea867aaf7caf98ecde66992c90c98d3 Mon Sep 17 00:00:00 2001 From: Mitch-At-Work Date: Mon, 31 Mar 2025 09:28:25 -0700 Subject: [PATCH 1/4] Add semantic-token package structure --- .github/CODEOWNERS | 1 + ...-ab69ccc6-b777-4bb6-909a-c406cc6406d2.json | 7 + nx.json | 1 + packages/semantic-tokens/.babelrc.json | 3 + packages/semantic-tokens/.eslintrc.json | 12 + packages/semantic-tokens/.swcrc | 32 + packages/semantic-tokens/CHANGELOG.json | 4 + packages/semantic-tokens/CHANGELOG.md | 5 + packages/semantic-tokens/LICENSE | 15 + packages/semantic-tokens/README.md | 18 + .../semantic-tokens/config/api-extractor.json | 6 + packages/semantic-tokens/config/tests.js | 1 + .../etc/semantic-tokens.api.md | 5799 +++++++ packages/semantic-tokens/jest.config.js | 33 + packages/semantic-tokens/package.json | 47 + packages/semantic-tokens/playwright.config.ts | 41 + packages/semantic-tokens/project.json | 19 + .../scripts/fluentOverrides.ts | 30 + .../semantic-tokens/scripts/legacyTokens.ts | 35 + packages/semantic-tokens/scripts/server.js | 34 + .../semantic-tokens/scripts/test-esm.html | 71 + packages/semantic-tokens/scripts/tokenGen.ts | 333 + packages/semantic-tokens/scripts/tokens.json | 13131 ++++++++++++++++ .../src/native-esm.spec-e2e.ts | 8 + packages/semantic-tokens/tsconfig.e2e.json | 7 + packages/semantic-tokens/tsconfig.json | 33 + packages/semantic-tokens/tsconfig.lib.json | 16 + packages/semantic-tokens/tsconfig.spec.json | 9 + tsconfig.base.all.json | 1 + tsconfig.base.json | 1 + tsconfig.base.wc.json | 3 +- 31 files changed, 19755 insertions(+), 1 deletion(-) create mode 100644 change/@fluentui-semantic-tokens-ab69ccc6-b777-4bb6-909a-c406cc6406d2.json create mode 100644 packages/semantic-tokens/.babelrc.json create mode 100644 packages/semantic-tokens/.eslintrc.json create mode 100644 packages/semantic-tokens/.swcrc create mode 100644 packages/semantic-tokens/CHANGELOG.json create mode 100644 packages/semantic-tokens/CHANGELOG.md create mode 100644 packages/semantic-tokens/LICENSE create mode 100644 packages/semantic-tokens/README.md create mode 100644 packages/semantic-tokens/config/api-extractor.json create mode 100644 packages/semantic-tokens/config/tests.js create mode 100644 packages/semantic-tokens/etc/semantic-tokens.api.md create mode 100644 packages/semantic-tokens/jest.config.js create mode 100644 packages/semantic-tokens/package.json create mode 100644 packages/semantic-tokens/playwright.config.ts create mode 100644 packages/semantic-tokens/project.json create mode 100644 packages/semantic-tokens/scripts/fluentOverrides.ts create mode 100644 packages/semantic-tokens/scripts/legacyTokens.ts create mode 100644 packages/semantic-tokens/scripts/server.js create mode 100644 packages/semantic-tokens/scripts/test-esm.html create mode 100644 packages/semantic-tokens/scripts/tokenGen.ts create mode 100644 packages/semantic-tokens/scripts/tokens.json create mode 100644 packages/semantic-tokens/src/native-esm.spec-e2e.ts create mode 100644 packages/semantic-tokens/tsconfig.e2e.json create mode 100644 packages/semantic-tokens/tsconfig.json create mode 100644 packages/semantic-tokens/tsconfig.lib.json create mode 100644 packages/semantic-tokens/tsconfig.spec.json diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index ec7928b61e426..4d8a85c6a4299 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -274,6 +274,7 @@ packages/react-components/react-virtualizer/stories @microsoft/xc-uxe @Mitch-At- packages/react-components/react-skeleton/library @microsoft/cxe-prg packages/react-components/react-skeleton/stories @microsoft/cxe-prg packages/tokens @microsoft/teams-prg +packages/semantic-tokens @microsoft/xc-uxe packages/react-components/react-tags/library @microsoft/cxe-prg @microsoft/teams-prg packages/react-components/react-tags/stories @microsoft/cxe-prg @microsoft/teams-prg packages/react-components/react-migration-v0-v9/library @microsoft/teams-prg diff --git a/change/@fluentui-semantic-tokens-ab69ccc6-b777-4bb6-909a-c406cc6406d2.json b/change/@fluentui-semantic-tokens-ab69ccc6-b777-4bb6-909a-c406cc6406d2.json new file mode 100644 index 0000000000000..58168853267ce --- /dev/null +++ b/change/@fluentui-semantic-tokens-ab69ccc6-b777-4bb6-909a-c406cc6406d2.json @@ -0,0 +1,7 @@ +{ + "type": "prerelease", + "comment": "feat: Initial semantic token package scaffolding", + "packageName": "@fluentui/semantic-tokens", + "email": "mifraser@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/nx.json b/nx.json index 77cb282ed1252..522d5b9654fdb 100644 --- a/nx.json +++ b/nx.json @@ -151,6 +151,7 @@ "scripts/**/*", "packages/eslint-plugin/**", "packages/tokens/**", + "packages/semantic-tokens/**", "packages/react-conformance/**", "packages/react-components/**/*" ] diff --git a/packages/semantic-tokens/.babelrc.json b/packages/semantic-tokens/.babelrc.json new file mode 100644 index 0000000000000..38bf1f7a945cf --- /dev/null +++ b/packages/semantic-tokens/.babelrc.json @@ -0,0 +1,3 @@ +{ + "plugins": ["annotate-pure-calls", "@babel/transform-react-pure-annotations"] +} diff --git a/packages/semantic-tokens/.eslintrc.json b/packages/semantic-tokens/.eslintrc.json new file mode 100644 index 0000000000000..80ca7022e8d9b --- /dev/null +++ b/packages/semantic-tokens/.eslintrc.json @@ -0,0 +1,12 @@ +{ + "extends": ["plugin:@fluentui/eslint-plugin/react"], + "root": true, + "rules": { + "no-restricted-imports": [ + "error", + { + "patterns": ["@fluentui/*", "react", "react-dom"] + } + ] + } +} diff --git a/packages/semantic-tokens/.swcrc b/packages/semantic-tokens/.swcrc new file mode 100644 index 0000000000000..80bbb318befca --- /dev/null +++ b/packages/semantic-tokens/.swcrc @@ -0,0 +1,32 @@ +{ + "$schema": "https://json.schemastore.org/swcrc", + "exclude": [ + "/testing", + "/**/*.cy.ts", + "/**/*.cy.tsx", + "/**/*.spec-e2e.ts", + "/**/*.spec.ts", + "/**/*.spec.tsx", + "/**/*.test.ts", + "/**/*.test.tsx" + ], + "jsc": { + "baseUrl": ".", + "parser": { + "syntax": "typescript", + "tsx": true, + "decorators": false, + "dynamicImport": false + }, + "externalHelpers": true, + "transform": { + "react": { + "runtime": "classic", + "useSpread": true + } + }, + "target": "es2019" + }, + "minify": false, + "sourceMaps": true +} diff --git a/packages/semantic-tokens/CHANGELOG.json b/packages/semantic-tokens/CHANGELOG.json new file mode 100644 index 0000000000000..22e8744cb2913 --- /dev/null +++ b/packages/semantic-tokens/CHANGELOG.json @@ -0,0 +1,4 @@ +{ + "name": "@fluentui/semantic-tokens", + "entries": [] +} diff --git a/packages/semantic-tokens/CHANGELOG.md b/packages/semantic-tokens/CHANGELOG.md new file mode 100644 index 0000000000000..14e9a0692dd61 --- /dev/null +++ b/packages/semantic-tokens/CHANGELOG.md @@ -0,0 +1,5 @@ +# Change Log - @fluentui/semantic-tokens + +This log was last generated on Thurs, 2 Feb 2025 16:26:46 GMT and should not be manually modified. + + diff --git a/packages/semantic-tokens/LICENSE b/packages/semantic-tokens/LICENSE new file mode 100644 index 0000000000000..2a9bf0a68d0e7 --- /dev/null +++ b/packages/semantic-tokens/LICENSE @@ -0,0 +1,15 @@ +@fluentui/semantic-tokens + +Copyright (c) Microsoft Corporation + +All rights reserved. + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license diff --git a/packages/semantic-tokens/README.md b/packages/semantic-tokens/README.md new file mode 100644 index 0000000000000..4315a348dfa0b --- /dev/null +++ b/packages/semantic-tokens/README.md @@ -0,0 +1,18 @@ +# @fluentui/semantic-tokens + +**Fluent UI Theme semantic-tokens** + +The semantic tokens package provides finely tuneable theme control via component level CSSVars with fallbacks. + +This package extends upon the core @fluentui/tokens set in a tree-shakeable and backwards compatible manner. + +Control tokens are targeted to specific components with a generic set fallback, as well as their original Fluent 2 theme token as the final fallback if no semantic tokens are set. + +**Token generation method** +The token definition data is provided under scripts/tokens.json exported from Figma token definitions. + +Semantic tokens are generated via the tokenGen script (`yarn generate-tokens`) under scripts/tokenGen.ts + +Legacy tokens are statically generated via `yarn generate-legacy-tokens` - this ensures legacy tokens are flat exported so they remain tree-shakeable + +Legacy token overrides are mapped 1:1 with their component use case via scripts/fluentOverrides.ts for backwards compatibility diff --git a/packages/semantic-tokens/config/api-extractor.json b/packages/semantic-tokens/config/api-extractor.json new file mode 100644 index 0000000000000..02b450759ae91 --- /dev/null +++ b/packages/semantic-tokens/config/api-extractor.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", + "extends": "@fluentui/scripts-api-extractor/api-extractor.common.v-next.json", + + "mainEntryPointFilePath": "/../../dist/out-tsc/types/packages//src/index.d.ts" +} diff --git a/packages/semantic-tokens/config/tests.js b/packages/semantic-tokens/config/tests.js new file mode 100644 index 0000000000000..2e211ae9e2142 --- /dev/null +++ b/packages/semantic-tokens/config/tests.js @@ -0,0 +1 @@ +/** Jest test setup file. */ diff --git a/packages/semantic-tokens/etc/semantic-tokens.api.md b/packages/semantic-tokens/etc/semantic-tokens.api.md new file mode 100644 index 0000000000000..96e054d935a54 --- /dev/null +++ b/packages/semantic-tokens/etc/semantic-tokens.api.md @@ -0,0 +1,5799 @@ +## API Report File for "@fluentui/semantic-tokens" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +// @public (undocumented) +export const aiBrandStop1 = "var(--smtc-ai-brand-stop1)"; + +// @public (undocumented) +export const aiBrandStop1Raw = "--smtc-ai-brand-stop1"; + +// @public (undocumented) +export const aiBrandStop2 = "var(--smtc-ai-brand-stop2)"; + +// @public (undocumented) +export const aiBrandStop2Raw = "--smtc-ai-brand-stop2"; + +// @public (undocumented) +export const aiBrandStop3 = "var(--smtc-ai-brand-stop3)"; + +// @public (undocumented) +export const aiBrandStop3Raw = "--smtc-ai-brand-stop3"; + +// @public (undocumented) +export const aiBrandStop4 = "var(--smtc-ai-brand-stop4)"; + +// @public (undocumented) +export const aiBrandStop4Raw = "--smtc-ai-brand-stop4"; + +// @public (undocumented) +export const aiShimmerStop1 = "var(--smtc-ai-shimmer-stop1)"; + +// @public (undocumented) +export const aiShimmerStop1Raw = "--smtc-ai-shimmer-stop1"; + +// @public (undocumented) +export const aiShimmerStop2 = "var(--smtc-ai-shimmer-stop2)"; + +// @public (undocumented) +export const aiShimmerStop2Raw = "--smtc-ai-shimmer-stop2"; + +// @public (undocumented) +export const aiShimmerStop3 = "var(--smtc-ai-shimmer-stop3)"; + +// @public (undocumented) +export const aiShimmerStop3Raw = "--smtc-ai-shimmer-stop3"; + +// @public (undocumented) +export const aiShimmerStop4 = "var(--smtc-ai-shimmer-stop4)"; + +// @public (undocumented) +export const aiShimmerStop4Raw = "--smtc-ai-shimmer-stop4"; + +// @public (undocumented) +export const backgroundCardOnflyoutDefaultDisabled = "var(--smtc-background-card-onflyout-default-disabled)"; + +// @public (undocumented) +export const backgroundCardOnflyoutDefaultDisabledRaw = "--smtc-background-card-onflyout-default-disabled"; + +// @public (undocumented) +export const backgroundCardOnflyoutDefaultHover = "var(--smtc-background-card-onflyout-default-hover)"; + +// @public (undocumented) +export const backgroundCardOnflyoutDefaultHoverRaw = "--smtc-background-card-onflyout-default-hover"; + +// @public (undocumented) +export const backgroundCardOnflyoutDefaultPressed = "var(--smtc-background-card-onflyout-default-pressed)"; + +// @public (undocumented) +export const backgroundCardOnflyoutDefaultPressedRaw = "--smtc-background-card-onflyout-default-pressed"; + +// @public (undocumented) +export const backgroundCardOnflyoutDefaultRest = "var(--smtc-background-card-onflyout-default-rest)"; + +// @public (undocumented) +export const backgroundCardOnflyoutDefaultRestRaw = "--smtc-background-card-onflyout-default-rest"; + +// @public (undocumented) +export const backgroundCardOnprimaryAltDisabled = "var(--smtc-background-card-onprimary-alt-disabled)"; + +// @public (undocumented) +export const backgroundCardOnprimaryAltDisabledRaw = "--smtc-background-card-onprimary-alt-disabled"; + +// @public (undocumented) +export const backgroundCardOnprimaryAltHover = "var(--smtc-background-card-onprimary-alt-hover)"; + +// @public (undocumented) +export const backgroundCardOnprimaryAltHoverRaw = "--smtc-background-card-onprimary-alt-hover"; + +// @public (undocumented) +export const backgroundCardOnprimaryAltPressed = "var(--smtc-background-card-onprimary-alt-pressed)"; + +// @public (undocumented) +export const backgroundCardOnprimaryAltPressedRaw = "--smtc-background-card-onprimary-alt-pressed"; + +// @public (undocumented) +export const backgroundCardOnprimaryAltRest = "var(--smtc-background-card-onprimary-alt-rest)"; + +// @public (undocumented) +export const backgroundCardOnprimaryAltRestRaw = "--smtc-background-card-onprimary-alt-rest"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultDisabled = "var(--smtc-background-card-onprimary-default-disabled)"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultDisabledRaw = "--smtc-background-card-onprimary-default-disabled"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultHover = "var(--smtc-background-card-onprimary-default-hover)"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultHoverRaw = "--smtc-background-card-onprimary-default-hover"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultPressed = "var(--smtc-background-card-onprimary-default-pressed)"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultPressedRaw = "--smtc-background-card-onprimary-default-pressed"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultRest = "var(--smtc-background-card-onprimary-default-rest)"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultRestRaw = "--smtc-background-card-onprimary-default-rest"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultSelected = "var(--smtc-background-card-onprimary-default-selected, var(--smtc-background-card-onprimary-default-rest))"; + +// @public (undocumented) +export const backgroundCardOnprimaryDefaultSelectedRaw = "--smtc-background-card-onprimary-default-selected"; + +// @public (undocumented) +export const backgroundCardOnsecondaryAltDisabled = "var(--smtc-background-card-onsecondary-alt-disabled)"; + +// @public (undocumented) +export const backgroundCardOnsecondaryAltDisabledRaw = "--smtc-background-card-onsecondary-alt-disabled"; + +// @public (undocumented) +export const backgroundCardOnsecondaryAltHover = "var(--smtc-background-card-onsecondary-alt-hover)"; + +// @public (undocumented) +export const backgroundCardOnsecondaryAltHoverRaw = "--smtc-background-card-onsecondary-alt-hover"; + +// @public (undocumented) +export const backgroundCardOnsecondaryAltPressed = "var(--smtc-background-card-onsecondary-alt-pressed)"; + +// @public (undocumented) +export const backgroundCardOnsecondaryAltPressedRaw = "--smtc-background-card-onsecondary-alt-pressed"; + +// @public (undocumented) +export const backgroundCardOnsecondaryAltRest = "var(--smtc-background-card-onsecondary-alt-rest)"; + +// @public (undocumented) +export const backgroundCardOnsecondaryAltRestRaw = "--smtc-background-card-onsecondary-alt-rest"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultDisabled = "var(--smtc-background-card-onsecondary-default-disabled)"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultDisabledRaw = "--smtc-background-card-onsecondary-default-disabled"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultHover = "var(--smtc-background-card-onsecondary-default-hover)"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultHoverRaw = "--smtc-background-card-onsecondary-default-hover"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultPressed = "var(--smtc-background-card-onsecondary-default-pressed)"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultPressedRaw = "--smtc-background-card-onsecondary-default-pressed"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultRest = "var(--smtc-background-card-onsecondary-default-rest)"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultRestRaw = "--smtc-background-card-onsecondary-default-rest"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultSelected = "var(--smtc-background-card-onsecondary-default-selected, var(--smtc-background-card-onsecondary-default-rest))"; + +// @public (undocumented) +export const backgroundCardOnsecondaryDefaultSelectedRaw = "--smtc-background-card-onsecondary-default-selected"; + +// @public (undocumented) +export const backgroundCtrlActivebrandDisabled = "var(--smtc-background-ctrl-activebrand-disabled, var(--smtc-background-ctrl-brand-disabled))"; + +// @public (undocumented) +export const backgroundCtrlActivebrandDisabledRaw = "--smtc-background-ctrl-activebrand-disabled"; + +// @public (undocumented) +export const backgroundCtrlActivebrandHover = "var(--smtc-background-ctrl-activebrand-hover, var(--smtc-background-ctrl-brand-hover))"; + +// @public (undocumented) +export const backgroundCtrlActivebrandHoverRaw = "--smtc-background-ctrl-activebrand-hover"; + +// @public (undocumented) +export const backgroundCtrlActivebrandPressed = "var(--smtc-background-ctrl-activebrand-pressed, var(--smtc-background-ctrl-brand-pressed))"; + +// @public (undocumented) +export const backgroundCtrlActivebrandPressedRaw = "--smtc-background-ctrl-activebrand-pressed"; + +// @public (undocumented) +export const backgroundCtrlActivebrandRest = "var(--smtc-background-ctrl-activebrand-rest, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const backgroundCtrlActivebrandRestRaw = "--smtc-background-ctrl-activebrand-rest"; + +// @public (undocumented) +export const backgroundCtrlBrandDisabled = "var(--smtc-background-ctrl-brand-disabled)"; + +// @public (undocumented) +export const backgroundCtrlBrandDisabledRaw = "--smtc-background-ctrl-brand-disabled"; + +// @public (undocumented) +export const backgroundCtrlBrandHover = "var(--smtc-background-ctrl-brand-hover)"; + +// @public (undocumented) +export const backgroundCtrlBrandHoverRaw = "--smtc-background-ctrl-brand-hover"; + +// @public (undocumented) +export const backgroundCtrlBrandPressed = "var(--smtc-background-ctrl-brand-pressed)"; + +// @public (undocumented) +export const backgroundCtrlBrandPressedRaw = "--smtc-background-ctrl-brand-pressed"; + +// @public (undocumented) +export const backgroundCtrlBrandRest = "var(--smtc-background-ctrl-brand-rest)"; + +// @public (undocumented) +export const backgroundCtrlBrandRestRaw = "--smtc-background-ctrl-brand-rest"; + +// @public (undocumented) +export const backgroundCtrlNeutralDisabled = "var(--smtc-background-ctrl-neutral-disabled)"; + +// @public (undocumented) +export const backgroundCtrlNeutralDisabledRaw = "--smtc-background-ctrl-neutral-disabled"; + +// @public (undocumented) +export const backgroundCtrlNeutralHover = "var(--smtc-background-ctrl-neutral-hover)"; + +// @public (undocumented) +export const backgroundCtrlNeutralHoverRaw = "--smtc-background-ctrl-neutral-hover"; + +// @public (undocumented) +export const backgroundCtrlNeutralPressed = "var(--smtc-background-ctrl-neutral-pressed)"; + +// @public (undocumented) +export const backgroundCtrlNeutralPressedRaw = "--smtc-background-ctrl-neutral-pressed"; + +// @public (undocumented) +export const backgroundCtrlNeutralRest = "var(--smtc-background-ctrl-neutral-rest)"; + +// @public (undocumented) +export const backgroundCtrlNeutralRestRaw = "--smtc-background-ctrl-neutral-rest"; + +// @public (undocumented) +export const backgroundCtrlOutlineDisabled = "var(--smtc-background-ctrl-outline-disabled, unset)"; + +// @public (undocumented) +export const backgroundCtrlOutlineDisabledRaw = "--smtc-background-ctrl-outline-disabled"; + +// @public (undocumented) +export const backgroundCtrlOutlineHover = "var(--smtc-background-ctrl-outline-hover, unset)"; + +// @public (undocumented) +export const backgroundCtrlOutlineHoverRaw = "--smtc-background-ctrl-outline-hover"; + +// @public (undocumented) +export const backgroundCtrlOutlinePressed = "var(--smtc-background-ctrl-outline-pressed, unset)"; + +// @public (undocumented) +export const backgroundCtrlOutlinePressedRaw = "--smtc-background-ctrl-outline-pressed"; + +// @public (undocumented) +export const backgroundCtrlOutlineRest = "var(--smtc-background-ctrl-outline-rest, unset)"; + +// @public (undocumented) +export const backgroundCtrlOutlineRestRaw = "--smtc-background-ctrl-outline-rest"; + +// @public (undocumented) +export const backgroundCtrlShapesafeActivebrandDisabled = "var(--smtc-background-ctrl-shapesafe-activebrand-disabled, var(--smtc-background-ctrl-brand-disabled))"; + +// @public (undocumented) +export const backgroundCtrlShapesafeActivebrandDisabledRaw = "--smtc-background-ctrl-shapesafe-activebrand-disabled"; + +// @public (undocumented) +export const backgroundCtrlShapesafeActivebrandRest = "var(--smtc-background-ctrl-shapesafe-activebrand-rest, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const backgroundCtrlShapesafeActivebrandRestRaw = "--smtc-background-ctrl-shapesafe-activebrand-rest"; + +// @public (undocumented) +export const backgroundCtrlShapesafeNeutralDisabled = "var(--smtc-background-ctrl-shapesafe-neutral-disabled, var(--smtc-foreground-ctrl-neutral-secondary-disabled))"; + +// @public (undocumented) +export const backgroundCtrlShapesafeNeutralDisabledRaw = "--smtc-background-ctrl-shapesafe-neutral-disabled"; + +// @public (undocumented) +export const backgroundCtrlShapesafeNeutralHover = "var(--smtc-background-ctrl-shapesafe-neutral-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const backgroundCtrlShapesafeNeutralHoverRaw = "--smtc-background-ctrl-shapesafe-neutral-hover"; + +// @public (undocumented) +export const backgroundCtrlShapesafeNeutralPressed = "var(--smtc-background-ctrl-shapesafe-neutral-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const backgroundCtrlShapesafeNeutralPressedRaw = "--smtc-background-ctrl-shapesafe-neutral-pressed"; + +// @public (undocumented) +export const backgroundCtrlShapesafeNeutralRest = "var(--smtc-background-ctrl-shapesafe-neutral-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const backgroundCtrlShapesafeNeutralRestRaw = "--smtc-background-ctrl-shapesafe-neutral-rest"; + +// @public (undocumented) +export const backgroundCtrlSubtleDisabled = "var(--smtc-background-ctrl-subtle-disabled, unset)"; + +// @public (undocumented) +export const backgroundCtrlSubtleDisabledRaw = "--smtc-background-ctrl-subtle-disabled"; + +// @public (undocumented) +export const backgroundCtrlSubtleHover = "var(--smtc-background-ctrl-subtle-hover)"; + +// @public (undocumented) +export const backgroundCtrlSubtleHoverRaw = "--smtc-background-ctrl-subtle-hover"; + +// @public (undocumented) +export const backgroundCtrlSubtleHoversplit = "var(--smtc-background-ctrl-subtle-hoversplit, unset)"; + +// @public (undocumented) +export const backgroundCtrlSubtleHoversplitRaw = "--smtc-background-ctrl-subtle-hoversplit"; + +// @public (undocumented) +export const backgroundCtrlSubtlePressed = "var(--smtc-background-ctrl-subtle-pressed)"; + +// @public (undocumented) +export const backgroundCtrlSubtlePressedRaw = "--smtc-background-ctrl-subtle-pressed"; + +// @public (undocumented) +export const backgroundCtrlSubtleRest = "var(--smtc-background-ctrl-subtle-rest, unset)"; + +// @public (undocumented) +export const backgroundCtrlSubtleRestRaw = "--smtc-background-ctrl-subtle-rest"; + +// @public (undocumented) +export const backgroundFlyoutColorblend = "var(--smtc-background-flyout-colorblend)"; + +// @public (undocumented) +export const backgroundFlyoutColorblendRaw = "--smtc-background-flyout-colorblend"; + +// @public (undocumented) +export const backgroundFlyoutLumblend = "var(--smtc-background-flyout-lumblend)"; + +// @public (undocumented) +export const backgroundFlyoutLumblendRaw = "--smtc-background-flyout-lumblend"; + +// @public (undocumented) +export const backgroundFlyoutSolid = "var(--smtc-background-flyout-solid)"; + +// @public (undocumented) +export const backgroundFlyoutSolidRaw = "--smtc-background-flyout-solid"; + +// @public (undocumented) +export const backgroundLayerPrimarySolid = "var(--smtc-background-layer-primarysolid)"; + +// @public (undocumented) +export const backgroundLayerPrimarySolidRaw = "--smtc-background-layer-primarysolid"; + +// @public (undocumented) +export const backgroundLayerPrimaryStop1 = "var(--smtc-background-layer-primarystop1, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const backgroundLayerPrimaryStop1Raw = "--smtc-background-layer-primarystop1"; + +// @public (undocumented) +export const backgroundLayerPrimaryStop2 = "var(--smtc-background-layer-primarystop2, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const backgroundLayerPrimaryStop2Raw = "--smtc-background-layer-primarystop2"; + +// @public (undocumented) +export const backgroundLayerPrimaryStop3 = "var(--smtc-background-layer-primarystop3, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const backgroundLayerPrimaryStop3Raw = "--smtc-background-layer-primarystop3"; + +// @public (undocumented) +export const backgroundLayerSecondary = "var(--smtc-background-layer-secondary, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const backgroundLayerSecondaryRaw = "--smtc-background-layer-secondary"; + +// @public (undocumented) +export const backgroundLayerTertiary = "var(--smtc-background-layer-tertiary, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const backgroundLayerTertiaryRaw = "--smtc-background-layer-tertiary"; + +// @public (undocumented) +export const backgroundSmoke = "var(--smtc-background-smoke)"; + +// @public (undocumented) +export const backgroundSmokeRaw = "--smtc-background-smoke"; + +// @public (undocumented) +export const backgroundToolbar = "var(--smtc-background-toolbar, var(--smtc-background-card-onprimary-default-rest))"; + +// @public (undocumented) +export const backgroundToolbarRaw = "--smtc-background-toolbar"; + +// @public (undocumented) +export const backgroundWebpagePrimary = "var(--smtc-background-webpage-primary)"; + +// @public (undocumented) +export const backgroundWebpagePrimaryRaw = "--smtc-background-webpage-primary"; + +// @public (undocumented) +export const backgroundWebpageSecondary = "var(--smtc-background-webpage-secondary)"; + +// @public (undocumented) +export const backgroundWebpageSecondaryRaw = "--smtc-background-webpage-secondary"; + +// @public (undocumented) +export const backgroundWindowPrimaryColorblend = "var(--smtc-background-window-primary-colorblend)"; + +// @public (undocumented) +export const backgroundWindowPrimaryColorblendRaw = "--smtc-background-window-primary-colorblend"; + +// @public (undocumented) +export const backgroundWindowPrimaryLumblend = "var(--smtc-background-window-primary-lumblend)"; + +// @public (undocumented) +export const backgroundWindowPrimaryLumblendRaw = "--smtc-background-window-primary-lumblend"; + +// @public (undocumented) +export const backgroundWindowPrimarySolid = "var(--smtc-background-window-primary-solid)"; + +// @public (undocumented) +export const backgroundWindowPrimarySolidRaw = "--smtc-background-window-primary-solid"; + +// @public (undocumented) +export const backgroundWindowSecondaryColorblend = "var(--smtc-background-window-secondary-colorblend)"; + +// @public (undocumented) +export const backgroundWindowSecondaryColorblendRaw = "--smtc-background-window-secondary-colorblend"; + +// @public (undocumented) +export const backgroundWindowSecondaryLumblend = "var(--smtc-background-window-secondary-lumblend)"; + +// @public (undocumented) +export const backgroundWindowSecondaryLumblendRaw = "--smtc-background-window-secondary-lumblend"; + +// @public (undocumented) +export const backgroundWindowSecondarySolid = "var(--smtc-background-window-secondary-solid)"; + +// @public (undocumented) +export const backgroundWindowSecondarySolidRaw = "--smtc-background-window-secondary-solid"; + +// @public (undocumented) +export const backgroundWindowTabbandColorblend = "var(--smtc-background-window-tabband-colorblend)"; + +// @public (undocumented) +export const backgroundWindowTabbandColorblendRaw = "--smtc-background-window-tabband-colorblend"; + +// @public (undocumented) +export const backgroundWindowTabbandLumblend = "var(--smtc-background-window-tabband-lumblend)"; + +// @public (undocumented) +export const backgroundWindowTabbandLumblendRaw = "--smtc-background-window-tabband-lumblend"; + +// @public (undocumented) +export const backgroundWindowTabbandSolid = "var(--smtc-background-window-tabband-solid)"; + +// @public (undocumented) +export const backgroundWindowTabbandSolidRaw = "--smtc-background-window-tabband-solid"; + +// @public (undocumented) +export const cornerBezel = "var(--smtc-corner-bezel)"; + +// @public (undocumented) +export const cornerBezelRaw = "--smtc-corner-bezel"; + +// @public (undocumented) +export const cornerCardHover = "var(--smtc-corner-card-hover, var(--smtc-corner-card-rest))"; + +// @public (undocumented) +export const cornerCardHoverRaw = "--smtc-corner-card-hover"; + +// @public (undocumented) +export const cornerCardPressed = "var(--smtc-corner-card-pressed, var(--smtc-corner-card-rest))"; + +// @public (undocumented) +export const cornerCardPressedRaw = "--smtc-corner-card-pressed"; + +// @public (undocumented) +export const cornerCardRest = "var(--smtc-corner-card-rest)"; + +// @public (undocumented) +export const cornerCardRestRaw = "--smtc-corner-card-rest"; + +// @public (undocumented) +export const cornerCircular = "var(--smtc-corner-circular)"; + +// @public (undocumented) +export const cornerCircularRaw = "--smtc-corner-circular"; + +// @public (undocumented) +export const cornerCtrlHover = "var(--smtc-corner-ctrl-hover, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const cornerCtrlHoverRaw = "--smtc-corner-ctrl-hover"; + +// @public (undocumented) +export const cornerCtrlLgHover = "var(--smtc-corner-ctrl-lg-hover, var(--smtc-corner-ctrl-lg-rest))"; + +// @public (undocumented) +export const cornerCtrlLgHoverRaw = "--smtc-corner-ctrl-lg-hover"; + +// @public (undocumented) +export const cornerCtrlLgPressed = "var(--smtc-corner-ctrl-lg-pressed, var(--smtc-corner-ctrl-lg-rest))"; + +// @public (undocumented) +export const cornerCtrlLgPressedRaw = "--smtc-corner-ctrl-lg-pressed"; + +// @public (undocumented) +export const cornerCtrlLgRest = "var(--smtc-corner-ctrl-lg-rest)"; + +// @public (undocumented) +export const cornerCtrlLgRestRaw = "--smtc-corner-ctrl-lg-rest"; + +// @public (undocumented) +export const cornerCtrlPressed = "var(--smtc-corner-ctrl-pressed, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const cornerCtrlPressedRaw = "--smtc-corner-ctrl-pressed"; + +// @public (undocumented) +export const cornerCtrlRest = "var(--smtc-corner-ctrl-rest)"; + +// @public (undocumented) +export const cornerCtrlRestRaw = "--smtc-corner-ctrl-rest"; + +// @public (undocumented) +export const cornerCtrlSmHover = "var(--smtc-corner-ctrl-sm-hover, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const cornerCtrlSmHoverRaw = "--smtc-corner-ctrl-sm-hover"; + +// @public (undocumented) +export const cornerCtrlSmPressed = "var(--smtc-corner-ctrl-sm-pressed, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const cornerCtrlSmPressedRaw = "--smtc-corner-ctrl-sm-pressed"; + +// @public (undocumented) +export const cornerCtrlSmRest = "var(--smtc-corner-ctrl-sm-rest)"; + +// @public (undocumented) +export const cornerCtrlSmRestRaw = "--smtc-corner-ctrl-sm-rest"; + +// @public (undocumented) +export const cornerFlyoutHover = "var(--smtc-corner-flyout-hover, var(--smtc-corner-flyout-rest))"; + +// @public (undocumented) +export const cornerFlyoutHoverRaw = "--smtc-corner-flyout-hover"; + +// @public (undocumented) +export const cornerFlyoutPressed = "var(--smtc-corner-flyout-pressed, var(--smtc-corner-flyout-rest))"; + +// @public (undocumented) +export const cornerFlyoutPressedRaw = "--smtc-corner-flyout-pressed"; + +// @public (undocumented) +export const cornerFlyoutRest = "var(--smtc-corner-flyout-rest)"; + +// @public (undocumented) +export const cornerFlyoutRestRaw = "--smtc-corner-flyout-rest"; + +// @public (undocumented) +export const cornerFlyoutShellRest = "var(--smtc-corner-flyout-shell-rest, var(--smtc-corner-flyout-rest))"; + +// @public (undocumented) +export const cornerFlyoutShellRestRaw = "--smtc-corner-flyout-shell-rest"; + +// @public (undocumented) +export const cornerImageIncard = "var(--smtc-corner-image-incard)"; + +// @public (undocumented) +export const cornerImageIncardRaw = "--smtc-corner-image-incard"; + +// @public (undocumented) +export const cornerImageOnpage = "var(--smtc-corner-image-onpage, var(--smtc-corner-card-rest))"; + +// @public (undocumented) +export const cornerImageOnpageRaw = "--smtc-corner-image-onpage"; + +// @public (undocumented) +export const cornerLayerDefault = "var(--smtc-corner-layer-default)"; + +// @public (undocumented) +export const cornerLayerDefaultRaw = "--smtc-corner-layer-default"; + +// @public (undocumented) +export const cornerLayerIntersection = "var(--smtc-corner-layer-intersection, var(--smtc-corner-zero))"; + +// @public (undocumented) +export const cornerLayerIntersectionRaw = "--smtc-corner-layer-intersection"; + +// @public (undocumented) +export const cornerToolbarDefault = "var(--smtc-corner-toolbar-default, var(--smtc-corner-card-rest))"; + +// @public (undocumented) +export const cornerToolbarDefaultRaw = "--smtc-corner-toolbar-default"; + +// @public (undocumented) +export const cornerWindowDefault = "var(--smtc-corner-window-default)"; + +// @public (undocumented) +export const cornerWindowDefaultRaw = "--smtc-corner-window-default"; + +// @public (undocumented) +export const cornerZero = "var(--smtc-corner-zero)"; + +// @public (undocumented) +export const cornerZeroRaw = "--smtc-corner-zero"; + +// @public (undocumented) +export const ctrlAvatarActiveringSize = "var(--smtc-ctrl-avatar-activering-size)"; + +// @public (undocumented) +export const ctrlAvatarActiveringSizeRaw = "--smtc-ctrl-avatar-activering-size"; + +// @public (undocumented) +export const ctrlAvatarActiveringStroke = "var(--smtc-ctrl-avatar-activering-stroke, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlAvatarActiveringStrokeRaw = "--smtc-ctrl-avatar-activering-stroke"; + +// @public (undocumented) +export const ctrlAvatarActiveringStrokewidth = "var(--smtc-ctrl-avatar-activering-strokewidth)"; + +// @public (undocumented) +export const ctrlAvatarActiveringStrokewidthRaw = "--smtc-ctrl-avatar-activering-strokewidth"; + +// @public (undocumented) +export const ctrlAvatarBackground = "var(--smtc-ctrl-avatar-background)"; + +// @public (undocumented) +export const ctrlAvatarBackgroundRaw = "--smtc-ctrl-avatar-background"; + +// @public (undocumented) +export const ctrlAvatarCornerGroup = "var(--smtc-ctrl-avatar-corner-group, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlAvatarCornerGroupRaw = "--smtc-ctrl-avatar-corner-group"; + +// @public (undocumented) +export const ctrlAvatarCornerItem = "var(--smtc-ctrl-avatar-corner-item, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlAvatarCornerItemRaw = "--smtc-ctrl-avatar-corner-item"; + +// @public (undocumented) +export const ctrlAvatarForeground = "var(--smtc-ctrl-avatar-foreground)"; + +// @public (undocumented) +export const ctrlAvatarForegroundRaw = "--smtc-ctrl-avatar-foreground"; + +// @public (undocumented) +export const ctrlAvatarIconSize = "var(--smtc-ctrl-avatar-icon-size, var(--smtc-size-ctrl-icon))"; + +// @public (undocumented) +export const ctrlAvatarIconSizeRaw = "--smtc-ctrl-avatar-icon-size"; + +// @public (undocumented) +export const ctrlAvatarPresencebadgeBackgroundBehindbadge = "var(--smtc-ctrl-avatar-presencebadge-background-behindbadge, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const ctrlAvatarPresencebadgeBackgroundBehindbadgeRaw = "--smtc-ctrl-avatar-presencebadge-background-behindbadge"; + +// @public (undocumented) +export const ctrlAvatarPresencebadgePaddingBottomrightoffset = "var(--smtc-ctrl-avatar-presencebadge-padding-bottomrightoffset, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlAvatarPresencebadgePaddingBottomrightoffsetRaw = "--smtc-ctrl-avatar-presencebadge-padding-bottomrightoffset"; + +// @public (undocumented) +export const ctrlAvatarPresencebadgeSize = "var(--smtc-ctrl-avatar-presencebadge-size)"; + +// @public (undocumented) +export const ctrlAvatarPresencebadgeSizeRaw = "--smtc-ctrl-avatar-presencebadge-size"; + +// @public (undocumented) +export const ctrlAvatarPresencebadgeStrokewidth = "var(--smtc-ctrl-avatar-presencebadge-strokewidth, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlAvatarPresencebadgeStrokewidthRaw = "--smtc-ctrl-avatar-presencebadge-strokewidth"; + +// @public (undocumented) +export const ctrlAvatarShowcutout = "var(--smtc-ctrl-avatar-showcutout)"; + +// @public (undocumented) +export const ctrlAvatarShowcutoutRaw = "--smtc-ctrl-avatar-showcutout"; + +// @public (undocumented) +export const ctrlAvatarSize = "var(--smtc-ctrl-avatar-size, var(--smtc-size-ctrl-default))"; + +// @public (undocumented) +export const ctrlAvatarSizeRaw = "--smtc-ctrl-avatar-size"; + +// @public (undocumented) +export const ctrlAvatarTextFontsize = "var(--smtc-ctrl-avatar-text-fontsize, var(--smtc-text-global-body3-fontsize))"; + +// @public (undocumented) +export const ctrlAvatarTextFontsizeRaw = "--smtc-ctrl-avatar-text-fontsize"; + +// @public (undocumented) +export const ctrlAvatarTextLineheight = "var(--smtc-ctrl-avatar-text-lineheight, var(--smtc-text-global-body3-lineheight))"; + +// @public (undocumented) +export const ctrlAvatarTextLineheightRaw = "--smtc-ctrl-avatar-text-lineheight"; + +// @public (undocumented) +export const ctrlAvatarTextPaddingTopoffset = "var(--smtc-ctrl-avatar-text-padding-topoffset, unset)"; + +// @public (undocumented) +export const ctrlAvatarTextPaddingTopoffsetRaw = "--smtc-ctrl-avatar-text-padding-topoffset"; + +// @public (undocumented) +export const ctrlBadgeBeaconSize = "var(--smtc-ctrl-badge-beacon-size)"; + +// @public (undocumented) +export const ctrlBadgeBeaconSizeRaw = "--smtc-ctrl-badge-beacon-size"; + +// @public (undocumented) +export const ctrlBadgeCorner = "var(--smtc-ctrl-badge-corner)"; + +// @public (undocumented) +export const ctrlBadgeCornerRaw = "--smtc-ctrl-badge-corner"; + +// @public (undocumented) +export const ctrlBadgeGap = "var(--smtc-ctrl-badge-gap)"; + +// @public (undocumented) +export const ctrlBadgeGapRaw = "--smtc-ctrl-badge-gap"; + +// @public (undocumented) +export const ctrlBadgeIconSize = "var(--smtc-ctrl-badge-icon-size)"; + +// @public (undocumented) +export const ctrlBadgeIconSizeFigmaonly = "var(--smtc-ctrl-badge-icon-sizefigmaonly)"; + +// @public (undocumented) +export const ctrlBadgeIconSizeFigmaonlyRaw = "--smtc-ctrl-badge-icon-sizefigmaonly"; + +// @public (undocumented) +export const ctrlBadgeIconSizeRaw = "--smtc-ctrl-badge-icon-size"; + +// @public (undocumented) +export const ctrlBadgeIconTheme = "var(--smtc-ctrl-badge-icon-theme, var(--smtc-icontheme-ctrl-default-rest))"; + +// @public (undocumented) +export const ctrlBadgeIconThemeRaw = "--smtc-ctrl-badge-icon-theme"; + +// @public (undocumented) +export const ctrlBadgeLgCorner = "var(--smtc-ctrl-badge-lg-corner)"; + +// @public (undocumented) +export const ctrlBadgeLgCornerRaw = "--smtc-ctrl-badge-lg-corner"; + +// @public (undocumented) +export const ctrlBadgeLgIconSize = "var(--smtc-ctrl-badge-lg-icon-size)"; + +// @public (undocumented) +export const ctrlBadgeLgIconSizeFigmaonly = "var(--smtc-ctrl-badge-lg-icon-sizefigmaonly)"; + +// @public (undocumented) +export const ctrlBadgeLgIconSizeFigmaonlyRaw = "--smtc-ctrl-badge-lg-icon-sizefigmaonly"; + +// @public (undocumented) +export const ctrlBadgeLgIconSizeRaw = "--smtc-ctrl-badge-lg-icon-size"; + +// @public (undocumented) +export const ctrlBadgeLgPadding = "var(--smtc-ctrl-badge-lg-padding)"; + +// @public (undocumented) +export const ctrlBadgeLgPaddingRaw = "--smtc-ctrl-badge-lg-padding"; + +// @public (undocumented) +export const ctrlBadgeLgSize = "var(--smtc-ctrl-badge-lg-size)"; + +// @public (undocumented) +export const ctrlBadgeLgSizeRaw = "--smtc-ctrl-badge-lg-size"; + +// @public (undocumented) +export const ctrlBadgeLgTextPaddingBottom = "var(--smtc-ctrl-badge-lg-text-padding-bottom, var(--smtc-ctrl-badge-lg-text-padding-top))"; + +// @public (undocumented) +export const ctrlBadgeLgTextPaddingBottomRaw = "--smtc-ctrl-badge-lg-text-padding-bottom"; + +// @public (undocumented) +export const ctrlBadgeLgTextPaddingTop = "var(--smtc-ctrl-badge-lg-text-padding-top)"; + +// @public (undocumented) +export const ctrlBadgeLgTextPaddingTopRaw = "--smtc-ctrl-badge-lg-text-padding-top"; + +// @public (undocumented) +export const ctrlBadgePadding = "var(--smtc-ctrl-badge-padding)"; + +// @public (undocumented) +export const ctrlBadgePaddingRaw = "--smtc-ctrl-badge-padding"; + +// @public (undocumented) +export const ctrlBadgeSize = "var(--smtc-ctrl-badge-size)"; + +// @public (undocumented) +export const ctrlBadgeSizeRaw = "--smtc-ctrl-badge-size"; + +// @public (undocumented) +export const ctrlBadgeSmCorner = "var(--smtc-ctrl-badge-sm-corner)"; + +// @public (undocumented) +export const ctrlBadgeSmCornerRaw = "--smtc-ctrl-badge-sm-corner"; + +// @public (undocumented) +export const ctrlBadgeSmIconSize = "var(--smtc-ctrl-badge-sm-icon-size)"; + +// @public (undocumented) +export const ctrlBadgeSmIconSizeFigmaonly = "var(--smtc-ctrl-badge-sm-icon-sizefigmaonly)"; + +// @public (undocumented) +export const ctrlBadgeSmIconSizeFigmaonlyRaw = "--smtc-ctrl-badge-sm-icon-sizefigmaonly"; + +// @public (undocumented) +export const ctrlBadgeSmIconSizeRaw = "--smtc-ctrl-badge-sm-icon-size"; + +// @public (undocumented) +export const ctrlBadgeSmPadding = "var(--smtc-ctrl-badge-sm-padding)"; + +// @public (undocumented) +export const ctrlBadgeSmPaddingRaw = "--smtc-ctrl-badge-sm-padding"; + +// @public (undocumented) +export const ctrlBadgeSmSize = "var(--smtc-ctrl-badge-sm-size)"; + +// @public (undocumented) +export const ctrlBadgeSmSizeRaw = "--smtc-ctrl-badge-sm-size"; + +// @public (undocumented) +export const ctrlBadgeSmTextPaddingBottom = "var(--smtc-ctrl-badge-sm-text-padding-bottom, var(--smtc-ctrl-badge-sm-text-padding-top))"; + +// @public (undocumented) +export const ctrlBadgeSmTextPaddingBottomRaw = "--smtc-ctrl-badge-sm-text-padding-bottom"; + +// @public (undocumented) +export const ctrlBadgeSmTextPaddingTop = "var(--smtc-ctrl-badge-sm-text-padding-top)"; + +// @public (undocumented) +export const ctrlBadgeSmTextPaddingTopRaw = "--smtc-ctrl-badge-sm-text-padding-top"; + +// @public (undocumented) +export const ctrlBadgeTextPaddingBottom = "var(--smtc-ctrl-badge-text-padding-bottom, var(--smtc-ctrl-badge-text-padding-top))"; + +// @public (undocumented) +export const ctrlBadgeTextPaddingBottomRaw = "--smtc-ctrl-badge-text-padding-bottom"; + +// @public (undocumented) +export const ctrlBadgeTextPaddingTop = "var(--smtc-ctrl-badge-text-padding-top)"; + +// @public (undocumented) +export const ctrlBadgeTextPaddingTopRaw = "--smtc-ctrl-badge-text-padding-top"; + +// @public (undocumented) +export const ctrlBooleanSelectionhint = "var(--smtc-ctrl-boolean-selectionhint)"; + +// @public (undocumented) +export const ctrlBooleanSelectionhintRaw = "--smtc-ctrl-boolean-selectionhint"; + +// @public (undocumented) +export const ctrlCardStateDisabled = "var(--smtc-ctrl-card-state-disabled)"; + +// @public (undocumented) +export const ctrlCardStateDisabledRaw = "--smtc-ctrl-card-state-disabled"; + +// @public (undocumented) +export const ctrlCardStateHover = "var(--smtc-ctrl-card-state-hover)"; + +// @public (undocumented) +export const ctrlCardStateHoverRaw = "--smtc-ctrl-card-state-hover"; + +// @public (undocumented) +export const ctrlCardStatePressed = "var(--smtc-ctrl-card-state-pressed)"; + +// @public (undocumented) +export const ctrlCardStatePressedRaw = "--smtc-ctrl-card-state-pressed"; + +// @public (undocumented) +export const ctrlCardStateRest = "var(--smtc-ctrl-card-state-rest)"; + +// @public (undocumented) +export const ctrlCardStateRestRaw = "--smtc-ctrl-card-state-rest"; + +// @public (undocumented) +export const ctrlChoiceBaseBackgroundDisabled = "var(--smtc-ctrl-choice-base-background-disabled, var(--smtc-background-ctrl-outline-disabled))"; + +// @public (undocumented) +export const ctrlChoiceBaseBackgroundDisabledRaw = "--smtc-ctrl-choice-base-background-disabled"; + +// @public (undocumented) +export const ctrlChoiceBaseBackgroundHover = "var(--smtc-ctrl-choice-base-background-hover, var(--smtc-background-ctrl-outline-hover))"; + +// @public (undocumented) +export const ctrlChoiceBaseBackgroundHoverRaw = "--smtc-ctrl-choice-base-background-hover"; + +// @public (undocumented) +export const ctrlChoiceBaseBackgroundPressed = "var(--smtc-ctrl-choice-base-background-pressed, var(--smtc-background-ctrl-outline-pressed))"; + +// @public (undocumented) +export const ctrlChoiceBaseBackgroundPressedRaw = "--smtc-ctrl-choice-base-background-pressed"; + +// @public (undocumented) +export const ctrlChoiceBaseBackgroundRest = "var(--smtc-ctrl-choice-base-background-rest, var(--smtc-background-ctrl-outline-rest))"; + +// @public (undocumented) +export const ctrlChoiceBaseBackgroundRestRaw = "--smtc-ctrl-choice-base-background-rest"; + +// @public (undocumented) +export const ctrlChoiceBaseSize = "var(--smtc-ctrl-choice-base-size, var(--smtc-size-ctrl-icon))"; + +// @public (undocumented) +export const ctrlChoiceBaseSizeRaw = "--smtc-ctrl-choice-base-size"; + +// @public (undocumented) +export const ctrlChoiceBaseStrokeDisabled = "var(--smtc-ctrl-choice-base-stroke-disabled, var(--smtc-foreground-ctrl-neutral-secondary-disabled))"; + +// @public (undocumented) +export const ctrlChoiceBaseStrokeDisabledRaw = "--smtc-ctrl-choice-base-stroke-disabled"; + +// @public (undocumented) +export const ctrlChoiceBaseStrokeHover = "var(--smtc-ctrl-choice-base-stroke-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlChoiceBaseStrokeHoverRaw = "--smtc-ctrl-choice-base-stroke-hover"; + +// @public (undocumented) +export const ctrlChoiceBaseStrokePressed = "var(--smtc-ctrl-choice-base-stroke-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlChoiceBaseStrokePressedRaw = "--smtc-ctrl-choice-base-stroke-pressed"; + +// @public (undocumented) +export const ctrlChoiceBaseStrokeRest = "var(--smtc-ctrl-choice-base-stroke-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlChoiceBaseStrokeRestRaw = "--smtc-ctrl-choice-base-stroke-rest"; + +// @public (undocumented) +export const ctrlChoiceCheckboxCorner = "var(--smtc-ctrl-choice-checkbox-corner)"; + +// @public (undocumented) +export const ctrlChoiceCheckboxCornerRaw = "--smtc-ctrl-choice-checkbox-corner"; + +// @public (undocumented) +export const ctrlChoiceCheckboxIconSize = "var(--smtc-ctrl-choice-checkbox-icon-size, var(--smtc-size-ctrl-iconsecondary))"; + +// @public (undocumented) +export const ctrlChoiceCheckboxIconSizeRaw = "--smtc-ctrl-choice-checkbox-icon-size"; + +// @public (undocumented) +export const ctrlChoiceCheckboxIndeterminateCorner = "var(--smtc-ctrl-choice-checkbox-indeterminate-corner, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlChoiceCheckboxIndeterminateCornerRaw = "--smtc-ctrl-choice-checkbox-indeterminate-corner"; + +// @public (undocumented) +export const ctrlChoiceCheckboxIndeterminateHeight = "var(--smtc-ctrl-choice-checkbox-indeterminate-height)"; + +// @public (undocumented) +export const ctrlChoiceCheckboxIndeterminateHeightRaw = "--smtc-ctrl-choice-checkbox-indeterminate-height"; + +// @public (undocumented) +export const ctrlChoiceCheckboxIndeterminateWidth = "var(--smtc-ctrl-choice-checkbox-indeterminate-width)"; + +// @public (undocumented) +export const ctrlChoiceCheckboxIndeterminateWidthRaw = "--smtc-ctrl-choice-checkbox-indeterminate-width"; + +// @public (undocumented) +export const ctrlChoiceIconTheme = "var(--smtc-ctrl-choice-icon-theme)"; + +// @public (undocumented) +export const ctrlChoiceIconThemeRaw = "--smtc-ctrl-choice-icon-theme"; + +// @public (undocumented) +export const ctrlChoiceLgBaseSize = "var(--smtc-ctrl-choice-lg-base-size, var(--smtc-size-ctrl-lg-icon))"; + +// @public (undocumented) +export const ctrlChoiceLgBaseSizeRaw = "--smtc-ctrl-choice-lg-base-size"; + +// @public (undocumented) +export const ctrlChoiceLgCheckboxCorner = "var(--smtc-ctrl-choice-lg-checkbox-corner)"; + +// @public (undocumented) +export const ctrlChoiceLgCheckboxCornerRaw = "--smtc-ctrl-choice-lg-checkbox-corner"; + +// @public (undocumented) +export const ctrlChoiceLgCheckboxIconSize = "var(--smtc-ctrl-choice-lg-checkbox-icon-size, var(--smtc-size-ctrl-iconsecondary))"; + +// @public (undocumented) +export const ctrlChoiceLgCheckboxIconSizeFigmaonly = "var(--smtc-ctrl-choice-lg-checkbox-icon-sizefigmaonly)"; + +// @public (undocumented) +export const ctrlChoiceLgCheckboxIconSizeFigmaonlyRaw = "--smtc-ctrl-choice-lg-checkbox-icon-sizefigmaonly"; + +// @public (undocumented) +export const ctrlChoiceLgCheckboxIconSizeRaw = "--smtc-ctrl-choice-lg-checkbox-icon-size"; + +// @public (undocumented) +export const ctrlChoiceLgRadioDotSizeHover = "var(--smtc-ctrl-choice-lg-radio-dot-size-hover, var(--smtc-ctrl-choice-lg-radio-dot-size-rest))"; + +// @public (undocumented) +export const ctrlChoiceLgRadioDotSizeHoverRaw = "--smtc-ctrl-choice-lg-radio-dot-size-hover"; + +// @public (undocumented) +export const ctrlChoiceLgRadioDotSizePressed = "var(--smtc-ctrl-choice-lg-radio-dot-size-pressed, var(--smtc-ctrl-choice-lg-radio-dot-size-rest))"; + +// @public (undocumented) +export const ctrlChoiceLgRadioDotSizePressedRaw = "--smtc-ctrl-choice-lg-radio-dot-size-pressed"; + +// @public (undocumented) +export const ctrlChoiceLgRadioDotSizeRest = "var(--smtc-ctrl-choice-lg-radio-dot-size-rest)"; + +// @public (undocumented) +export const ctrlChoiceLgRadioDotSizeRestRaw = "--smtc-ctrl-choice-lg-radio-dot-size-rest"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchHeight = "var(--smtc-ctrl-choice-lg-switch-height, var(--smtc-size-ctrl-lg-icon))"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchHeightRaw = "--smtc-ctrl-choice-lg-switch-height"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchThumbWidthHover = "var(--smtc-ctrl-choice-lg-switch-thumb-width-hover, var(--smtc-ctrl-choice-lg-switch-thumb-width-rest))"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchThumbWidthHoverRaw = "--smtc-ctrl-choice-lg-switch-thumb-width-hover"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchThumbWidthPressed = "var(--smtc-ctrl-choice-lg-switch-thumb-width-pressed, var(--smtc-ctrl-choice-lg-switch-thumb-width-rest))"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchThumbWidthPressedRaw = "--smtc-ctrl-choice-lg-switch-thumb-width-pressed"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchThumbWidthRest = "var(--smtc-ctrl-choice-lg-switch-thumb-width-rest)"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchThumbWidthRestRaw = "--smtc-ctrl-choice-lg-switch-thumb-width-rest"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchWidth = "var(--smtc-ctrl-choice-lg-switch-width)"; + +// @public (undocumented) +export const ctrlChoiceLgSwitchWidthRaw = "--smtc-ctrl-choice-lg-switch-width"; + +// @public (undocumented) +export const ctrlChoicePaddingHorizontal = "var(--smtc-ctrl-choice-padding-horizontal)"; + +// @public (undocumented) +export const ctrlChoicePaddingHorizontalRaw = "--smtc-ctrl-choice-padding-horizontal"; + +// @public (undocumented) +export const ctrlChoicePaddingVertical = "var(--smtc-ctrl-choice-padding-vertical)"; + +// @public (undocumented) +export const ctrlChoicePaddingVerticalRaw = "--smtc-ctrl-choice-padding-vertical"; + +// @public (undocumented) +export const ctrlChoiceRadioCorner = "var(--smtc-ctrl-choice-radio-corner, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlChoiceRadioCornerRaw = "--smtc-ctrl-choice-radio-corner"; + +// @public (undocumented) +export const ctrlChoiceRadioDotSizeHover = "var(--smtc-ctrl-choice-radio-dot-size-hover, var(--smtc-ctrl-choice-radio-dot-size-rest))"; + +// @public (undocumented) +export const ctrlChoiceRadioDotSizeHoverRaw = "--smtc-ctrl-choice-radio-dot-size-hover"; + +// @public (undocumented) +export const ctrlChoiceRadioDotSizePressed = "var(--smtc-ctrl-choice-radio-dot-size-pressed, var(--smtc-ctrl-choice-radio-dot-size-rest))"; + +// @public (undocumented) +export const ctrlChoiceRadioDotSizePressedRaw = "--smtc-ctrl-choice-radio-dot-size-pressed"; + +// @public (undocumented) +export const ctrlChoiceRadioDotSizeRest = "var(--smtc-ctrl-choice-radio-dot-size-rest)"; + +// @public (undocumented) +export const ctrlChoiceRadioDotSizeRestRaw = "--smtc-ctrl-choice-radio-dot-size-rest"; + +// @public (undocumented) +export const ctrlChoiceSmBaseSize = "var(--smtc-ctrl-choice-sm-base-size, var(--smtc-size-ctrl-sm-icon))"; + +// @public (undocumented) +export const ctrlChoiceSmBaseSizeRaw = "--smtc-ctrl-choice-sm-base-size"; + +// @public (undocumented) +export const ctrlChoiceSmCheckboxCorner = "var(--smtc-ctrl-choice-sm-checkbox-corner)"; + +// @public (undocumented) +export const ctrlChoiceSmCheckboxCornerRaw = "--smtc-ctrl-choice-sm-checkbox-corner"; + +// @public (undocumented) +export const ctrlChoiceSmCheckboxIconSize = "var(--smtc-ctrl-choice-sm-checkbox-icon-size, var(--smtc-size-ctrl-iconsecondary))"; + +// @public (undocumented) +export const ctrlChoiceSmCheckboxIconSizeFigmaonly = "var(--smtc-ctrl-choice-sm-checkbox-icon-sizefigmaonly)"; + +// @public (undocumented) +export const ctrlChoiceSmCheckboxIconSizeFigmaonlyRaw = "--smtc-ctrl-choice-sm-checkbox-icon-sizefigmaonly"; + +// @public (undocumented) +export const ctrlChoiceSmCheckboxIconSizeRaw = "--smtc-ctrl-choice-sm-checkbox-icon-size"; + +// @public (undocumented) +export const ctrlChoiceSmRadioDotSize = "var(--smtc-ctrl-choice-sm-radio-dot-size)"; + +// @public (undocumented) +export const ctrlChoiceSmRadioDotSizeRaw = "--smtc-ctrl-choice-sm-radio-dot-size"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchHeight = "var(--smtc-ctrl-choice-sm-switch-height, var(--smtc-size-ctrl-sm-icon))"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchHeightRaw = "--smtc-ctrl-choice-sm-switch-height"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchThumbWidthHover = "var(--smtc-ctrl-choice-sm-switch-thumb-width-hover, var(--smtc-ctrl-choice-sm-switch-thumb-width-rest))"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchThumbWidthHoverRaw = "--smtc-ctrl-choice-sm-switch-thumb-width-hover"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchThumbWidthPressed = "var(--smtc-ctrl-choice-sm-switch-thumb-width-pressed, var(--smtc-ctrl-choice-sm-switch-thumb-width-rest))"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchThumbWidthPressedRaw = "--smtc-ctrl-choice-sm-switch-thumb-width-pressed"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchThumbWidthRest = "var(--smtc-ctrl-choice-sm-switch-thumb-width-rest)"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchThumbWidthRestRaw = "--smtc-ctrl-choice-sm-switch-thumb-width-rest"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchWidth = "var(--smtc-ctrl-choice-sm-switch-width)"; + +// @public (undocumented) +export const ctrlChoiceSmSwitchWidthRaw = "--smtc-ctrl-choice-sm-switch-width"; + +// @public (undocumented) +export const ctrlChoiceSwitchCorner = "var(--smtc-ctrl-choice-switch-corner, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlChoiceSwitchCornerRaw = "--smtc-ctrl-choice-switch-corner"; + +// @public (undocumented) +export const ctrlChoiceSwitchHeight = "var(--smtc-ctrl-choice-switch-height, var(--smtc-size-ctrl-icon))"; + +// @public (undocumented) +export const ctrlChoiceSwitchHeightRaw = "--smtc-ctrl-choice-switch-height"; + +// @public (undocumented) +export const ctrlChoiceSwitchPaddingHover = "var(--smtc-ctrl-choice-switch-padding-hover, var(--smtc-ctrl-choice-switch-padding-rest))"; + +// @public (undocumented) +export const ctrlChoiceSwitchPaddingHoverRaw = "--smtc-ctrl-choice-switch-padding-hover"; + +// @public (undocumented) +export const ctrlChoiceSwitchPaddingPressed = "var(--smtc-ctrl-choice-switch-padding-pressed, var(--smtc-ctrl-choice-switch-padding-rest))"; + +// @public (undocumented) +export const ctrlChoiceSwitchPaddingPressedRaw = "--smtc-ctrl-choice-switch-padding-pressed"; + +// @public (undocumented) +export const ctrlChoiceSwitchPaddingRest = "var(--smtc-ctrl-choice-switch-padding-rest)"; + +// @public (undocumented) +export const ctrlChoiceSwitchPaddingRestRaw = "--smtc-ctrl-choice-switch-padding-rest"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowAmbientBlur = "var(--smtc-ctrl-choice-switch-thumb-shadow-ambient-blur, unset)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowAmbientBlurRaw = "--smtc-ctrl-choice-switch-thumb-shadow-ambient-blur"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowAmbientColor = "var(--smtc-ctrl-choice-switch-thumb-shadow-ambient-color, unset)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowAmbientColorRaw = "--smtc-ctrl-choice-switch-thumb-shadow-ambient-color"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowAmbientX = "var(--smtc-ctrl-choice-switch-thumb-shadow-ambient-x, unset)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowAmbientXRaw = "--smtc-ctrl-choice-switch-thumb-shadow-ambient-x"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowAmbientY = "var(--smtc-ctrl-choice-switch-thumb-shadow-ambient-y, unset)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowAmbientYRaw = "--smtc-ctrl-choice-switch-thumb-shadow-ambient-y"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowKeyBlur = "var(--smtc-ctrl-choice-switch-thumb-shadow-key-blur, unset)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowKeyBlurRaw = "--smtc-ctrl-choice-switch-thumb-shadow-key-blur"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowKeyColor = "var(--smtc-ctrl-choice-switch-thumb-shadow-key-color, unset)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowKeyColorRaw = "--smtc-ctrl-choice-switch-thumb-shadow-key-color"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowKeyX = "var(--smtc-ctrl-choice-switch-thumb-shadow-key-x, unset)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowKeyXRaw = "--smtc-ctrl-choice-switch-thumb-shadow-key-x"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowKeyY = "var(--smtc-ctrl-choice-switch-thumb-shadow-key-y, unset)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbShadowKeyYRaw = "--smtc-ctrl-choice-switch-thumb-shadow-key-y"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbWidthHover = "var(--smtc-ctrl-choice-switch-thumb-width-hover, var(--smtc-ctrl-choice-switch-thumb-width-rest))"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbWidthHoverRaw = "--smtc-ctrl-choice-switch-thumb-width-hover"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbWidthPressed = "var(--smtc-ctrl-choice-switch-thumb-width-pressed, var(--smtc-ctrl-choice-switch-thumb-width-rest))"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbWidthPressedRaw = "--smtc-ctrl-choice-switch-thumb-width-pressed"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbWidthRest = "var(--smtc-ctrl-choice-switch-thumb-width-rest)"; + +// @public (undocumented) +export const ctrlChoiceSwitchThumbWidthRestRaw = "--smtc-ctrl-choice-switch-thumb-width-rest"; + +// @public (undocumented) +export const ctrlChoiceSwitchWidth = "var(--smtc-ctrl-choice-switch-width)"; + +// @public (undocumented) +export const ctrlChoiceSwitchWidthRaw = "--smtc-ctrl-choice-switch-width"; + +// @public (undocumented) +export const ctrlComposerContainerBackgroundAcryliccolorblend = "var(--smtc-ctrl-composer-container-background-acryliccolorblend, var(--smtc-background-flyout-solid))"; + +// @public (undocumented) +export const ctrlComposerContainerBackgroundAcryliccolorblendRaw = "--smtc-ctrl-composer-container-background-acryliccolorblend"; + +// @public (undocumented) +export const ctrlComposerContainerBackgroundAcryliclumblend = "var(--smtc-ctrl-composer-container-background-acryliclumblend, var(--smtc-background-flyout-solid))"; + +// @public (undocumented) +export const ctrlComposerContainerBackgroundAcryliclumblendRaw = "--smtc-ctrl-composer-container-background-acryliclumblend"; + +// @public (undocumented) +export const ctrlComposerContainerBackgroundDefault = "var(--smtc-ctrl-composer-container-background-default)"; + +// @public (undocumented) +export const ctrlComposerContainerBackgroundDefaultRaw = "--smtc-ctrl-composer-container-background-default"; + +// @public (undocumented) +export const ctrlComposerContainerCorner = "var(--smtc-ctrl-composer-container-corner)"; + +// @public (undocumented) +export const ctrlComposerContainerCornerRaw = "--smtc-ctrl-composer-container-corner"; + +// @public (undocumented) +export const ctrlComposerContainerShadowAmbientBlur = "var(--smtc-ctrl-composer-container-shadow-ambient-blur)"; + +// @public (undocumented) +export const ctrlComposerContainerShadowAmbientBlurRaw = "--smtc-ctrl-composer-container-shadow-ambient-blur"; + +// @public (undocumented) +export const ctrlComposerContainerShadowAmbientColor = "var(--smtc-ctrl-composer-container-shadow-ambient-color)"; + +// @public (undocumented) +export const ctrlComposerContainerShadowAmbientColorRaw = "--smtc-ctrl-composer-container-shadow-ambient-color"; + +// @public (undocumented) +export const ctrlComposerContainerShadowAmbientX = "var(--smtc-ctrl-composer-container-shadow-ambient-x)"; + +// @public (undocumented) +export const ctrlComposerContainerShadowAmbientXRaw = "--smtc-ctrl-composer-container-shadow-ambient-x"; + +// @public (undocumented) +export const ctrlComposerContainerShadowAmbientY = "var(--smtc-ctrl-composer-container-shadow-ambient-y)"; + +// @public (undocumented) +export const ctrlComposerContainerShadowAmbientYRaw = "--smtc-ctrl-composer-container-shadow-ambient-y"; + +// @public (undocumented) +export const ctrlComposerContainerShadowKeyBlur = "var(--smtc-ctrl-composer-container-shadow-key-blur)"; + +// @public (undocumented) +export const ctrlComposerContainerShadowKeyBlurRaw = "--smtc-ctrl-composer-container-shadow-key-blur"; + +// @public (undocumented) +export const ctrlComposerContainerShadowKeyColor = "var(--smtc-ctrl-composer-container-shadow-key-color)"; + +// @public (undocumented) +export const ctrlComposerContainerShadowKeyColorRaw = "--smtc-ctrl-composer-container-shadow-key-color"; + +// @public (undocumented) +export const ctrlComposerContainerShadowKeyX = "var(--smtc-ctrl-composer-container-shadow-key-x)"; + +// @public (undocumented) +export const ctrlComposerContainerShadowKeyXRaw = "--smtc-ctrl-composer-container-shadow-key-x"; + +// @public (undocumented) +export const ctrlComposerContainerShadowKeyY = "var(--smtc-ctrl-composer-container-shadow-key-y)"; + +// @public (undocumented) +export const ctrlComposerContainerShadowKeyYRaw = "--smtc-ctrl-composer-container-shadow-key-y"; + +// @public (undocumented) +export const ctrlComposerContainerStrokeDefault = "var(--smtc-ctrl-composer-container-stroke-default, unset)"; + +// @public (undocumented) +export const ctrlComposerContainerStrokeDefaultRaw = "--smtc-ctrl-composer-container-stroke-default"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundDisabled = "var(--smtc-ctrl-composer-input-background-disabled)"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundDisabledRaw = "--smtc-ctrl-composer-input-background-disabled"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundHover = "var(--smtc-ctrl-composer-input-background-hover)"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundHoverRaw = "--smtc-ctrl-composer-input-background-hover"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundPressed = "var(--smtc-ctrl-composer-input-background-pressed)"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundPressedRaw = "--smtc-ctrl-composer-input-background-pressed"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundRest = "var(--smtc-ctrl-composer-input-background-rest)"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundRestRaw = "--smtc-ctrl-composer-input-background-rest"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundSelectedRest = "var(--smtc-ctrl-composer-input-background-selected-rest)"; + +// @public (undocumented) +export const ctrlComposerInputBackgroundSelectedRestRaw = "--smtc-ctrl-composer-input-background-selected-rest"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokeDisabled = "var(--smtc-ctrl-composer-input-bottomstroke-disabled, unset)"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokeDisabledRaw = "--smtc-ctrl-composer-input-bottomstroke-disabled"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokeHover = "var(--smtc-ctrl-composer-input-bottomstroke-hover, unset)"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokeHoverRaw = "--smtc-ctrl-composer-input-bottomstroke-hover"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokePressed = "var(--smtc-ctrl-composer-input-bottomstroke-pressed, unset)"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokePressedRaw = "--smtc-ctrl-composer-input-bottomstroke-pressed"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokeRest = "var(--smtc-ctrl-composer-input-bottomstroke-rest, unset)"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokeRestRaw = "--smtc-ctrl-composer-input-bottomstroke-rest"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokeSelectedRest = "var(--smtc-ctrl-composer-input-bottomstroke-selected-rest, unset)"; + +// @public (undocumented) +export const ctrlComposerInputBottomstrokeSelectedRestRaw = "--smtc-ctrl-composer-input-bottomstroke-selected-rest"; + +// @public (undocumented) +export const ctrlComposerInputBottomStrokeWidthHover = "var(--smtc-ctrl-composer-input-bottom-stroke-width-hover)"; + +// @public (undocumented) +export const ctrlComposerInputBottomStrokeWidthHoverRaw = "--smtc-ctrl-composer-input-bottom-stroke-width-hover"; + +// @public (undocumented) +export const ctrlComposerInputBottomStrokeWidthPressed = "var(--smtc-ctrl-composer-input-bottom-stroke-width-pressed)"; + +// @public (undocumented) +export const ctrlComposerInputBottomStrokeWidthPressedRaw = "--smtc-ctrl-composer-input-bottom-stroke-width-pressed"; + +// @public (undocumented) +export const ctrlComposerInputBottomStrokeWidthRest = "var(--smtc-ctrl-composer-input-bottom-stroke-width-rest)"; + +// @public (undocumented) +export const ctrlComposerInputBottomStrokeWidthRestRaw = "--smtc-ctrl-composer-input-bottom-stroke-width-rest"; + +// @public (undocumented) +export const ctrlComposerInputBottomStrokeWidthSelectedRest = "var(--smtc-ctrl-composer-input-bottom-stroke-width-selected-rest)"; + +// @public (undocumented) +export const ctrlComposerInputBottomStrokeWidthSelectedRestRaw = "--smtc-ctrl-composer-input-bottom-stroke-width-selected-rest"; + +// @public (undocumented) +export const ctrlComposerInputCornerHover = "var(--smtc-ctrl-composer-input-corner-hover)"; + +// @public (undocumented) +export const ctrlComposerInputCornerHoverRaw = "--smtc-ctrl-composer-input-corner-hover"; + +// @public (undocumented) +export const ctrlComposerInputCornerPressed = "var(--smtc-ctrl-composer-input-corner-pressed)"; + +// @public (undocumented) +export const ctrlComposerInputCornerPressedRaw = "--smtc-ctrl-composer-input-corner-pressed"; + +// @public (undocumented) +export const ctrlComposerInputCornerRest = "var(--smtc-ctrl-composer-input-corner-rest)"; + +// @public (undocumented) +export const ctrlComposerInputCornerRestRaw = "--smtc-ctrl-composer-input-corner-rest"; + +// @public (undocumented) +export const ctrlComposerInputShadowBlur = "var(--smtc-ctrl-composer-input-shadow-blur)"; + +// @public (undocumented) +export const ctrlComposerInputShadowBlurRaw = "--smtc-ctrl-composer-input-shadow-blur"; + +// @public (undocumented) +export const ctrlComposerInputShadowColor = "var(--smtc-ctrl-composer-input-shadow-color)"; + +// @public (undocumented) +export const ctrlComposerInputShadowColorRaw = "--smtc-ctrl-composer-input-shadow-color"; + +// @public (undocumented) +export const ctrlComposerInputShadowXOffset = "var(--smtc-ctrl-composer-input-shadow-x-offset)"; + +// @public (undocumented) +export const ctrlComposerInputShadowXOffsetRaw = "--smtc-ctrl-composer-input-shadow-x-offset"; + +// @public (undocumented) +export const ctrlComposerInputShadowY = "var(--smtc-ctrl-composer-input-shadow-y)"; + +// @public (undocumented) +export const ctrlComposerInputShadowYRaw = "--smtc-ctrl-composer-input-shadow-y"; + +// @public (undocumented) +export const ctrlComposerInputStrokeDisabledUsesgradient = "var(--smtc-ctrl-composer-input-stroke-disabledusesgradient, unset)"; + +// @public (undocumented) +export const ctrlComposerInputStrokeDisabledUsesgradientRaw = "--smtc-ctrl-composer-input-stroke-disabledusesgradient"; + +// @public (undocumented) +export const ctrlComposerInputStrokeHoverUsesgradient = "var(--smtc-ctrl-composer-input-stroke-hoverusesgradient, unset)"; + +// @public (undocumented) +export const ctrlComposerInputStrokeHoverUsesgradientRaw = "--smtc-ctrl-composer-input-stroke-hoverusesgradient"; + +// @public (undocumented) +export const ctrlComposerInputStrokePressedUsesgradient = "var(--smtc-ctrl-composer-input-stroke-pressedusesgradient, unset)"; + +// @public (undocumented) +export const ctrlComposerInputStrokePressedUsesgradientRaw = "--smtc-ctrl-composer-input-stroke-pressedusesgradient"; + +// @public (undocumented) +export const ctrlComposerInputStrokeRest = "var(--smtc-ctrl-composer-input-stroke-rest, unset)"; + +// @public (undocumented) +export const ctrlComposerInputStrokeRestRaw = "--smtc-ctrl-composer-input-stroke-rest"; + +// @public (undocumented) +export const ctrlComposerInputStrokeSelectedRestUsesgradient = "var(--smtc-ctrl-composer-input-stroke-selected-restusesgradient, unset)"; + +// @public (undocumented) +export const ctrlComposerInputStrokeSelectedRestUsesgradientRaw = "--smtc-ctrl-composer-input-stroke-selected-restusesgradient"; + +// @public (undocumented) +export const ctrlComposerInputStrokeWidthHover = "var(--smtc-ctrl-composer-input-stroke-width-hover)"; + +// @public (undocumented) +export const ctrlComposerInputStrokeWidthHoverRaw = "--smtc-ctrl-composer-input-stroke-width-hover"; + +// @public (undocumented) +export const ctrlComposerInputStrokeWidthPressed = "var(--smtc-ctrl-composer-input-stroke-width-pressed)"; + +// @public (undocumented) +export const ctrlComposerInputStrokeWidthPressedRaw = "--smtc-ctrl-composer-input-stroke-width-pressed"; + +// @public (undocumented) +export const ctrlComposerInputStrokeWidthRest = "var(--smtc-ctrl-composer-input-stroke-width-rest)"; + +// @public (undocumented) +export const ctrlComposerInputStrokeWidthRestRaw = "--smtc-ctrl-composer-input-stroke-width-rest"; + +// @public (undocumented) +export const ctrlComposerInputStrokeWidthSelectedRest = "var(--smtc-ctrl-composer-input-stroke-width-selected-rest)"; + +// @public (undocumented) +export const ctrlComposerInputStrokeWidthSelectedRestRaw = "--smtc-ctrl-composer-input-stroke-width-selected-rest"; + +// @public (undocumented) +export const ctrlDialogBackground = "var(--smtc-ctrl-dialog-background)"; + +// @public (undocumented) +export const ctrlDialogBackgroundRaw = "--smtc-ctrl-dialog-background"; + +// @public (undocumented) +export const ctrlDialogBaseCorner = "var(--smtc-ctrl-dialog-base-corner, var(--smtc-corner-card-rest))"; + +// @public (undocumented) +export const ctrlDialogBaseCornerRaw = "--smtc-ctrl-dialog-base-corner"; + +// @public (undocumented) +export const ctrlDialogBaseShadowAmbientBlur = "var(--smtc-ctrl-dialog-base-shadow-ambient-blur)"; + +// @public (undocumented) +export const ctrlDialogBaseShadowAmbientBlurRaw = "--smtc-ctrl-dialog-base-shadow-ambient-blur"; + +// @public (undocumented) +export const ctrlDialogBaseShadowAmbientColor = "var(--smtc-ctrl-dialog-base-shadow-ambient-color)"; + +// @public (undocumented) +export const ctrlDialogBaseShadowAmbientColorRaw = "--smtc-ctrl-dialog-base-shadow-ambient-color"; + +// @public (undocumented) +export const ctrlDialogBaseShadowAmbientX = "var(--smtc-ctrl-dialog-base-shadow-ambient-x)"; + +// @public (undocumented) +export const ctrlDialogBaseShadowAmbientXRaw = "--smtc-ctrl-dialog-base-shadow-ambient-x"; + +// @public (undocumented) +export const ctrlDialogBaseShadowAmbientY = "var(--smtc-ctrl-dialog-base-shadow-ambient-y)"; + +// @public (undocumented) +export const ctrlDialogBaseShadowAmbientYRaw = "--smtc-ctrl-dialog-base-shadow-ambient-y"; + +// @public (undocumented) +export const ctrlDialogBaseShadowKeyBlur = "var(--smtc-ctrl-dialog-base-shadow-key-blur)"; + +// @public (undocumented) +export const ctrlDialogBaseShadowKeyBlurRaw = "--smtc-ctrl-dialog-base-shadow-key-blur"; + +// @public (undocumented) +export const ctrlDialogBaseShadowKeyColor = "var(--smtc-ctrl-dialog-base-shadow-key-color)"; + +// @public (undocumented) +export const ctrlDialogBaseShadowKeyColorRaw = "--smtc-ctrl-dialog-base-shadow-key-color"; + +// @public (undocumented) +export const ctrlDialogBaseShadowKeyX = "var(--smtc-ctrl-dialog-base-shadow-key-x)"; + +// @public (undocumented) +export const ctrlDialogBaseShadowKeyXRaw = "--smtc-ctrl-dialog-base-shadow-key-x"; + +// @public (undocumented) +export const ctrlDialogBaseShadowKeyY = "var(--smtc-ctrl-dialog-base-shadow-key-y)"; + +// @public (undocumented) +export const ctrlDialogBaseShadowKeyYRaw = "--smtc-ctrl-dialog-base-shadow-key-y"; + +// @public (undocumented) +export const ctrlDialogLayerBackground = "var(--smtc-ctrl-dialog-layer-background, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const ctrlDialogLayerBackgroundRaw = "--smtc-ctrl-dialog-layer-background"; + +// @public (undocumented) +export const ctrlDialogLayerPaddingBottom = "var(--smtc-ctrl-dialog-layer-padding-bottom)"; + +// @public (undocumented) +export const ctrlDialogLayerPaddingBottomRaw = "--smtc-ctrl-dialog-layer-padding-bottom"; + +// @public (undocumented) +export const ctrlDialogStroke = "var(--smtc-ctrl-dialog-stroke, unset)"; + +// @public (undocumented) +export const ctrlDialogStrokeRaw = "--smtc-ctrl-dialog-stroke"; + +// @public (undocumented) +export const ctrlDividerFixedlineLength = "var(--smtc-ctrl-divider-fixedline-length, var(--smtc-padding-content-align-default))"; + +// @public (undocumented) +export const ctrlDividerFixedlineLengthRaw = "--smtc-ctrl-divider-fixedline-length"; + +// @public (undocumented) +export const ctrlDragBackgroundColorblend = "var(--smtc-ctrl-drag-background-colorblend)"; + +// @public (undocumented) +export const ctrlDragBackgroundColorblendRaw = "--smtc-ctrl-drag-background-colorblend"; + +// @public (undocumented) +export const ctrlDragBackgroundLumblend = "var(--smtc-ctrl-drag-background-lumblend)"; + +// @public (undocumented) +export const ctrlDragBackgroundLumblendRaw = "--smtc-ctrl-drag-background-lumblend"; + +// @public (undocumented) +export const ctrlDragBackgroundSolid = "var(--smtc-ctrl-drag-background-solid)"; + +// @public (undocumented) +export const ctrlDragBackgroundSolidRaw = "--smtc-ctrl-drag-background-solid"; + +// @public (undocumented) +export const ctrlFabBackgroundDisabled = "var(--smtc-ctrl-fab-background-disabled)"; + +// @public (undocumented) +export const ctrlFabBackgroundDisabledRaw = "--smtc-ctrl-fab-background-disabled"; + +// @public (undocumented) +export const ctrlFabBackgroundHover = "var(--smtc-ctrl-fab-background-hover)"; + +// @public (undocumented) +export const ctrlFabBackgroundHoverRaw = "--smtc-ctrl-fab-background-hover"; + +// @public (undocumented) +export const ctrlFabBackgroundPressed = "var(--smtc-ctrl-fab-background-pressed)"; + +// @public (undocumented) +export const ctrlFabBackgroundPressedRaw = "--smtc-ctrl-fab-background-pressed"; + +// @public (undocumented) +export const ctrlFabBackgroundRest = "var(--smtc-ctrl-fab-background-rest)"; + +// @public (undocumented) +export const ctrlFabBackgroundRestRaw = "--smtc-ctrl-fab-background-rest"; + +// @public (undocumented) +export const ctrlFabCornerHover = "var(--smtc-ctrl-fab-corner-hover, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlFabCornerHoverRaw = "--smtc-ctrl-fab-corner-hover"; + +// @public (undocumented) +export const ctrlFabCornerPressed = "var(--smtc-ctrl-fab-corner-pressed, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlFabCornerPressedRaw = "--smtc-ctrl-fab-corner-pressed"; + +// @public (undocumented) +export const ctrlFabCornerRest = "var(--smtc-ctrl-fab-corner-rest, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlFabCornerRestRaw = "--smtc-ctrl-fab-corner-rest"; + +// @public (undocumented) +export const ctrlFabShadowDisabledKeyBlur = "var(--smtc-ctrl-fab-shadow-disabled-key-blur, var(--smtc-ctrl-fab-shadow-pressed-key-blur))"; + +// @public (undocumented) +export const ctrlFabShadowDisabledKeyBlurRaw = "--smtc-ctrl-fab-shadow-disabled-key-blur"; + +// @public (undocumented) +export const ctrlFabShadowDisabledKeyColor = "var(--smtc-ctrl-fab-shadow-disabled-key-color, var(--smtc-ctrl-fab-shadow-pressed-key-color))"; + +// @public (undocumented) +export const ctrlFabShadowDisabledKeyColorRaw = "--smtc-ctrl-fab-shadow-disabled-key-color"; + +// @public (undocumented) +export const ctrlFabShadowDisabledKeyX = "var(--smtc-ctrl-fab-shadow-disabled-key-x, var(--smtc-ctrl-fab-shadow-pressed-key-x))"; + +// @public (undocumented) +export const ctrlFabShadowDisabledKeyXRaw = "--smtc-ctrl-fab-shadow-disabled-key-x"; + +// @public (undocumented) +export const ctrlFabShadowDisabledKeyY = "var(--smtc-ctrl-fab-shadow-disabled-key-y, var(--smtc-ctrl-fab-shadow-pressed-key-y))"; + +// @public (undocumented) +export const ctrlFabShadowDisabledKeyYRaw = "--smtc-ctrl-fab-shadow-disabled-key-y"; + +// @public (undocumented) +export const ctrlFabShadowHoverKeyBlur = "var(--smtc-ctrl-fab-shadow-hover-key-blur, var(--smtc-shadow-flyout-key-blur))"; + +// @public (undocumented) +export const ctrlFabShadowHoverKeyBlurRaw = "--smtc-ctrl-fab-shadow-hover-key-blur"; + +// @public (undocumented) +export const ctrlFabShadowHoverKeyColor = "var(--smtc-ctrl-fab-shadow-hover-key-color, var(--smtc-shadow-flyout-key-color))"; + +// @public (undocumented) +export const ctrlFabShadowHoverKeyColorRaw = "--smtc-ctrl-fab-shadow-hover-key-color"; + +// @public (undocumented) +export const ctrlFabShadowHoverKeyX = "var(--smtc-ctrl-fab-shadow-hover-key-x, var(--smtc-shadow-flyout-key-x))"; + +// @public (undocumented) +export const ctrlFabShadowHoverKeyXRaw = "--smtc-ctrl-fab-shadow-hover-key-x"; + +// @public (undocumented) +export const ctrlFabShadowHoverKeyY = "var(--smtc-ctrl-fab-shadow-hover-key-y, var(--smtc-shadow-flyout-key-y))"; + +// @public (undocumented) +export const ctrlFabShadowHoverKeyYRaw = "--smtc-ctrl-fab-shadow-hover-key-y"; + +// @public (undocumented) +export const ctrlFabShadowPressedKeyBlur = "var(--smtc-ctrl-fab-shadow-pressed-key-blur)"; + +// @public (undocumented) +export const ctrlFabShadowPressedKeyBlurRaw = "--smtc-ctrl-fab-shadow-pressed-key-blur"; + +// @public (undocumented) +export const ctrlFabShadowPressedKeyColor = "var(--smtc-ctrl-fab-shadow-pressed-key-color)"; + +// @public (undocumented) +export const ctrlFabShadowPressedKeyColorRaw = "--smtc-ctrl-fab-shadow-pressed-key-color"; + +// @public (undocumented) +export const ctrlFabShadowPressedKeyX = "var(--smtc-ctrl-fab-shadow-pressed-key-x)"; + +// @public (undocumented) +export const ctrlFabShadowPressedKeyXRaw = "--smtc-ctrl-fab-shadow-pressed-key-x"; + +// @public (undocumented) +export const ctrlFabShadowPressedKeyY = "var(--smtc-ctrl-fab-shadow-pressed-key-y)"; + +// @public (undocumented) +export const ctrlFabShadowPressedKeyYRaw = "--smtc-ctrl-fab-shadow-pressed-key-y"; + +// @public (undocumented) +export const ctrlFabShadowRestAmbientBlur = "var(--smtc-ctrl-fab-shadow-rest-ambient-blur)"; + +// @public (undocumented) +export const ctrlFabShadowRestAmbientBlurRaw = "--smtc-ctrl-fab-shadow-rest-ambient-blur"; + +// @public (undocumented) +export const ctrlFabShadowRestAmbientColor = "var(--smtc-ctrl-fab-shadow-rest-ambient-color)"; + +// @public (undocumented) +export const ctrlFabShadowRestAmbientColorRaw = "--smtc-ctrl-fab-shadow-rest-ambient-color"; + +// @public (undocumented) +export const ctrlFabShadowRestAmbientX = "var(--smtc-ctrl-fab-shadow-rest-ambient-x)"; + +// @public (undocumented) +export const ctrlFabShadowRestAmbientXRaw = "--smtc-ctrl-fab-shadow-rest-ambient-x"; + +// @public (undocumented) +export const ctrlFabShadowRestAmbientY = "var(--smtc-ctrl-fab-shadow-rest-ambient-y)"; + +// @public (undocumented) +export const ctrlFabShadowRestAmbientYRaw = "--smtc-ctrl-fab-shadow-rest-ambient-y"; + +// @public (undocumented) +export const ctrlFabShadowRestKeyBlur = "var(--smtc-ctrl-fab-shadow-rest-key-blur)"; + +// @public (undocumented) +export const ctrlFabShadowRestKeyBlurRaw = "--smtc-ctrl-fab-shadow-rest-key-blur"; + +// @public (undocumented) +export const ctrlFabShadowRestKeyColor = "var(--smtc-ctrl-fab-shadow-rest-key-color)"; + +// @public (undocumented) +export const ctrlFabShadowRestKeyColorRaw = "--smtc-ctrl-fab-shadow-rest-key-color"; + +// @public (undocumented) +export const ctrlFabShadowRestKeyX = "var(--smtc-ctrl-fab-shadow-rest-key-x)"; + +// @public (undocumented) +export const ctrlFabShadowRestKeyXRaw = "--smtc-ctrl-fab-shadow-rest-key-x"; + +// @public (undocumented) +export const ctrlFabShadowRestKeyY = "var(--smtc-ctrl-fab-shadow-rest-key-y)"; + +// @public (undocumented) +export const ctrlFabShadowRestKeyYRaw = "--smtc-ctrl-fab-shadow-rest-key-y"; + +// @public (undocumented) +export const ctrlFocusInnerStroke = "var(--smtc-ctrl-focus-inner-stroke)"; + +// @public (undocumented) +export const ctrlFocusInnerStrokeRaw = "--smtc-ctrl-focus-inner-stroke"; + +// @public (undocumented) +export const ctrlFocusInnerStrokewidth = "var(--smtc-ctrl-focus-inner-strokewidth, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlFocusInnerStrokewidthRaw = "--smtc-ctrl-focus-inner-strokewidth"; + +// @public (undocumented) +export const ctrlFocusOuterStroke = "var(--smtc-ctrl-focus-outer-stroke, var(--smtc-background-ctrl-brand-rest, var(--colorStrokeFocus2)))"; + +// @public (undocumented) +export const ctrlFocusOuterStrokeRaw = "--smtc-ctrl-focus-outer-stroke"; + +// @public (undocumented) +export const ctrlFocusOuterStrokewidth = "var(--smtc-ctrl-focus-outer-strokewidth)"; + +// @public (undocumented) +export const ctrlFocusOuterStrokewidthRaw = "--smtc-ctrl-focus-outer-strokewidth"; + +// @public (undocumented) +export const ctrlFocusPositionFigmaonly = "var(--smtc-ctrl-focus-positionfigmaonly)"; + +// @public (undocumented) +export const ctrlFocusPositionFigmaonlyRaw = "--smtc-ctrl-focus-positionfigmaonly"; + +// @public (undocumented) +export const ctrlInputBackgroundDisabled = "var(--smtc-ctrl-input-background-disabled, var(--smtc-background-ctrl-neutral-disabled))"; + +// @public (undocumented) +export const ctrlInputBackgroundDisabledRaw = "--smtc-ctrl-input-background-disabled"; + +// @public (undocumented) +export const ctrlInputBackgroundError = "var(--smtc-ctrl-input-background-error, var(--smtc-background-ctrl-neutral-rest))"; + +// @public (undocumented) +export const ctrlInputBackgroundErrorRaw = "--smtc-ctrl-input-background-error"; + +// @public (undocumented) +export const ctrlInputBackgroundHover = "var(--smtc-ctrl-input-background-hover, var(--smtc-background-ctrl-neutral-hover))"; + +// @public (undocumented) +export const ctrlInputBackgroundHoverRaw = "--smtc-ctrl-input-background-hover"; + +// @public (undocumented) +export const ctrlInputBackgroundPressed = "var(--smtc-ctrl-input-background-pressed, var(--smtc-background-ctrl-neutral-pressed))"; + +// @public (undocumented) +export const ctrlInputBackgroundPressedRaw = "--smtc-ctrl-input-background-pressed"; + +// @public (undocumented) +export const ctrlInputBackgroundRest = "var(--smtc-ctrl-input-background-rest, var(--smtc-background-ctrl-neutral-rest))"; + +// @public (undocumented) +export const ctrlInputBackgroundRestRaw = "--smtc-ctrl-input-background-rest"; + +// @public (undocumented) +export const ctrlInputBackgroundSelected = "var(--smtc-ctrl-input-background-selected, var(--smtc-background-ctrl-neutral-rest))"; + +// @public (undocumented) +export const ctrlInputBackgroundSelectedRaw = "--smtc-ctrl-input-background-selected"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeDisabled = "var(--smtc-ctrl-input-bottomline-stroke-disabled, unset)"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeDisabledRaw = "--smtc-ctrl-input-bottomline-stroke-disabled"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeError = "var(--smtc-ctrl-input-bottomline-stroke-error, unset)"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeErrorRaw = "--smtc-ctrl-input-bottomline-stroke-error"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeHover = "var(--smtc-ctrl-input-bottomline-stroke-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeHoverRaw = "--smtc-ctrl-input-bottomline-stroke-hover"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokePressed = "var(--smtc-ctrl-input-bottomline-stroke-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokePressedRaw = "--smtc-ctrl-input-bottomline-stroke-pressed"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeRest = "var(--smtc-ctrl-input-bottomline-stroke-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeRestRaw = "--smtc-ctrl-input-bottomline-stroke-rest"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeSelected = "var(--smtc-ctrl-input-bottomline-stroke-selected, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokeSelectedRaw = "--smtc-ctrl-input-bottomline-stroke-selected"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokewidthHover = "var(--smtc-ctrl-input-bottomline-strokewidth-hover, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokewidthHoverRaw = "--smtc-ctrl-input-bottomline-strokewidth-hover"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokewidthPressed = "var(--smtc-ctrl-input-bottomline-strokewidth-pressed, var(--smtc-ctrl-input-bottomline-strokewidth-selected))"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokewidthPressedRaw = "--smtc-ctrl-input-bottomline-strokewidth-pressed"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokewidthRest = "var(--smtc-ctrl-input-bottomline-strokewidth-rest, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokewidthRestRaw = "--smtc-ctrl-input-bottomline-strokewidth-rest"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokewidthSelected = "var(--smtc-ctrl-input-bottomline-strokewidth-selected)"; + +// @public (undocumented) +export const ctrlInputBottomlineStrokewidthSelectedRaw = "--smtc-ctrl-input-bottomline-strokewidth-selected"; + +// @public (undocumented) +export const ctrlInputStrokeDisabled = "var(--smtc-ctrl-input-stroke-disabled, var(--smtc-stroke-ctrl-onoutline-disabled))"; + +// @public (undocumented) +export const ctrlInputStrokeDisabledRaw = "--smtc-ctrl-input-stroke-disabled"; + +// @public (undocumented) +export const ctrlInputStrokeError = "var(--smtc-ctrl-input-stroke-error, var(--smtc-status-danger-stroke))"; + +// @public (undocumented) +export const ctrlInputStrokeErrorRaw = "--smtc-ctrl-input-stroke-error"; + +// @public (undocumented) +export const ctrlInputStrokeHover = "var(--smtc-ctrl-input-stroke-hover, var(--smtc-stroke-ctrl-onoutline-hover))"; + +// @public (undocumented) +export const ctrlInputStrokeHoverRaw = "--smtc-ctrl-input-stroke-hover"; + +// @public (undocumented) +export const ctrlInputStrokePressed = "var(--smtc-ctrl-input-stroke-pressed, var(--smtc-stroke-ctrl-onoutline-pressed))"; + +// @public (undocumented) +export const ctrlInputStrokePressedRaw = "--smtc-ctrl-input-stroke-pressed"; + +// @public (undocumented) +export const ctrlInputStrokeRest = "var(--smtc-ctrl-input-stroke-rest, var(--smtc-stroke-ctrl-onoutline-rest))"; + +// @public (undocumented) +export const ctrlInputStrokeRestRaw = "--smtc-ctrl-input-stroke-rest"; + +// @public (undocumented) +export const ctrlInputStrokeSelected = "var(--smtc-ctrl-input-stroke-selected, var(--smtc-stroke-ctrl-onoutline-rest))"; + +// @public (undocumented) +export const ctrlInputStrokeSelectedRaw = "--smtc-ctrl-input-stroke-selected"; + +// @public (undocumented) +export const ctrlInputStrokewidthHover = "var(--smtc-ctrl-input-strokewidth-hover, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlInputStrokewidthHoverRaw = "--smtc-ctrl-input-strokewidth-hover"; + +// @public (undocumented) +export const ctrlInputStrokewidthPressed = "var(--smtc-ctrl-input-strokewidth-pressed, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlInputStrokewidthPressedRaw = "--smtc-ctrl-input-strokewidth-pressed"; + +// @public (undocumented) +export const ctrlInputStrokewidthRest = "var(--smtc-ctrl-input-strokewidth-rest, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlInputStrokewidthRestRaw = "--smtc-ctrl-input-strokewidth-rest"; + +// @public (undocumented) +export const ctrlInputStrokewidthSelected = "var(--smtc-ctrl-input-strokewidth-selected)"; + +// @public (undocumented) +export const ctrlInputStrokewidthSelectedRaw = "--smtc-ctrl-input-strokewidth-selected"; + +// @public (undocumented) +export const ctrlInputTextselectionBackground = "var(--smtc-ctrl-input-textselection-background, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlInputTextselectionBackgroundRaw = "--smtc-ctrl-input-textselection-background"; + +// @public (undocumented) +export const ctrlInputTextselectionForeground = "var(--smtc-ctrl-input-textselection-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const ctrlInputTextselectionForegroundRaw = "--smtc-ctrl-input-textselection-foreground"; + +// @public (undocumented) +export const ctrlLinkForegroundBrandHover = "var(--smtc-ctrl-link-foreground-brand-hover, var(--smtc-foreground-ctrl-brand-hover, var(--colorBrandForegroundLinkHover)))"; + +// @public (undocumented) +export const ctrlLinkForegroundBrandHoverRaw = "--smtc-ctrl-link-foreground-brand-hover"; + +// @public (undocumented) +export const ctrlLinkForegroundBrandPressed = "var(--smtc-ctrl-link-foreground-brand-pressed, var(--smtc-foreground-ctrl-brand-pressed, var(--colorBrandForegroundLinkPressed)))"; + +// @public (undocumented) +export const ctrlLinkForegroundBrandPressedRaw = "--smtc-ctrl-link-foreground-brand-pressed"; + +// @public (undocumented) +export const ctrlLinkForegroundBrandRest = "var(--smtc-ctrl-link-foreground-brand-rest, var(--smtc-foreground-ctrl-brand-rest, var(--colorBrandForegroundLink)))"; + +// @public (undocumented) +export const ctrlLinkForegroundBrandRestRaw = "--smtc-ctrl-link-foreground-brand-rest"; + +// @public (undocumented) +export const ctrlLinkForegroundNeutralHover = "var(--smtc-ctrl-link-foreground-neutral-hover, var(--smtc-foreground-ctrl-neutral-primary-rest, var(--colorNeutralForeground2Hover)))"; + +// @public (undocumented) +export const ctrlLinkForegroundNeutralHoverRaw = "--smtc-ctrl-link-foreground-neutral-hover"; + +// @public (undocumented) +export const ctrlLinkForegroundNeutralPressed = "var(--smtc-ctrl-link-foreground-neutral-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest, var(--colorNeutralForeground2Pressed)))"; + +// @public (undocumented) +export const ctrlLinkForegroundNeutralPressedRaw = "--smtc-ctrl-link-foreground-neutral-pressed"; + +// @public (undocumented) +export const ctrlLinkForegroundNeutralRest = "var(--smtc-ctrl-link-foreground-neutral-rest, var(--smtc-foreground-ctrl-neutral-primary-rest, var(--colorNeutralForeground2)))"; + +// @public (undocumented) +export const ctrlLinkForegroundNeutralRestRaw = "--smtc-ctrl-link-foreground-neutral-rest"; + +// @public (undocumented) +export const ctrlLinkInlineShowunderlineatrest = "var(--smtc-ctrl-link-inline-showunderlineatrest)"; + +// @public (undocumented) +export const ctrlLinkInlineShowunderlineatrestRaw = "--smtc-ctrl-link-inline-showunderlineatrest"; + +// @public (undocumented) +export const ctrlLinkInlineStrokewidthHover = "var(--smtc-ctrl-link-inline-strokewidth-hover, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlLinkInlineStrokewidthHoverRaw = "--smtc-ctrl-link-inline-strokewidth-hover"; + +// @public (undocumented) +export const ctrlLinkInlineStrokewidthRest = "var(--smtc-ctrl-link-inline-strokewidth-rest, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlLinkInlineStrokewidthRestRaw = "--smtc-ctrl-link-inline-strokewidth-rest"; + +// @public (undocumented) +export const ctrlLinkInlineUnderlineDashed = "var(--smtc-ctrl-link-inline-underline-dashed)"; + +// @public (undocumented) +export const ctrlLinkInlineUnderlineDashedRaw = "--smtc-ctrl-link-inline-underline-dashed"; + +// @public (undocumented) +export const ctrlLinkInlineUnderlineSolidFigmaonly = "var(--smtc-ctrl-link-inline-underline-solidfigmaonly)"; + +// @public (undocumented) +export const ctrlLinkInlineUnderlineSolidFigmaonlyRaw = "--smtc-ctrl-link-inline-underline-solidfigmaonly"; + +// @public (undocumented) +export const ctrlLinkOnpageShowunderlineatrest = "var(--smtc-ctrl-link-onpage-showunderlineatrest)"; + +// @public (undocumented) +export const ctrlLinkOnpageShowunderlineatrestRaw = "--smtc-ctrl-link-onpage-showunderlineatrest"; + +// @public (undocumented) +export const ctrlLinkOnpageStrokewidthHover = "var(--smtc-ctrl-link-onpage-strokewidth-hover, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlLinkOnpageStrokewidthHoverRaw = "--smtc-ctrl-link-onpage-strokewidth-hover"; + +// @public (undocumented) +export const ctrlLinkOnpageStrokewidthRest = "var(--smtc-ctrl-link-onpage-strokewidth-rest, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlLinkOnpageStrokewidthRestRaw = "--smtc-ctrl-link-onpage-strokewidth-rest"; + +// @public (undocumented) +export const ctrlLinkOnpageUnderlineDashed = "var(--smtc-ctrl-link-onpage-underline-dashed)"; + +// @public (undocumented) +export const ctrlLinkOnpageUnderlineDashedRaw = "--smtc-ctrl-link-onpage-underline-dashed"; + +// @public (undocumented) +export const ctrlLinkOnpageUnderlineSolidFigmaonly = "var(--smtc-ctrl-link-onpage-underline-solidfigmaonly)"; + +// @public (undocumented) +export const ctrlLinkOnpageUnderlineSolidFigmaonlyRaw = "--smtc-ctrl-link-onpage-underline-solidfigmaonly"; + +// @public (undocumented) +export const ctrlListBackgroundSelectedDisabled = "var(--smtc-ctrl-list-background-selected-disabled, var(--smtc-background-ctrl-subtle-disabled))"; + +// @public (undocumented) +export const ctrlListBackgroundSelectedDisabledRaw = "--smtc-ctrl-list-background-selected-disabled"; + +// @public (undocumented) +export const ctrlListBackgroundSelectedHover = "var(--smtc-ctrl-list-background-selected-hover, var(--smtc-background-ctrl-subtle-hover))"; + +// @public (undocumented) +export const ctrlListBackgroundSelectedHoverRaw = "--smtc-ctrl-list-background-selected-hover"; + +// @public (undocumented) +export const ctrlListBackgroundSelectedPressed = "var(--smtc-ctrl-list-background-selected-pressed, var(--smtc-background-ctrl-subtle-pressed))"; + +// @public (undocumented) +export const ctrlListBackgroundSelectedPressedRaw = "--smtc-ctrl-list-background-selected-pressed"; + +// @public (undocumented) +export const ctrlListBackgroundSelectedRest = "var(--smtc-ctrl-list-background-selected-rest, var(--smtc-background-ctrl-subtle-rest))"; + +// @public (undocumented) +export const ctrlListBackgroundSelectedRestRaw = "--smtc-ctrl-list-background-selected-rest"; + +// @public (undocumented) +export const ctrlListChoiceBackgroundDisabled = "var(--smtc-ctrl-list-choice-background-disabled, unset)"; + +// @public (undocumented) +export const ctrlListChoiceBackgroundDisabledRaw = "--smtc-ctrl-list-choice-background-disabled"; + +// @public (undocumented) +export const ctrlListChoiceBackgroundRest = "var(--smtc-ctrl-list-choice-background-rest, unset)"; + +// @public (undocumented) +export const ctrlListChoiceBackgroundRestRaw = "--smtc-ctrl-list-choice-background-rest"; + +// @public (undocumented) +export const ctrlListChoiceBackgroundSelectedDisabled = "var(--smtc-ctrl-list-choice-background-selected-disabled, unset)"; + +// @public (undocumented) +export const ctrlListChoiceBackgroundSelectedDisabledRaw = "--smtc-ctrl-list-choice-background-selected-disabled"; + +// @public (undocumented) +export const ctrlListChoiceBackgroundSelectedRest = "var(--smtc-ctrl-list-choice-background-selected-rest, unset)"; + +// @public (undocumented) +export const ctrlListChoiceBackgroundSelectedRestRaw = "--smtc-ctrl-list-choice-background-selected-rest"; + +// @public (undocumented) +export const ctrlListChoiceCheckboxCorner = "var(--smtc-ctrl-list-choice-checkbox-corner, var(--smtc-ctrl-choice-checkbox-corner))"; + +// @public (undocumented) +export const ctrlListChoiceCheckboxCornerRaw = "--smtc-ctrl-list-choice-checkbox-corner"; + +// @public (undocumented) +export const ctrlListChoiceCheckboxIconSize = "var(--smtc-ctrl-list-choice-checkbox-icon-size, var(--smtc-size-ctrl-iconsecondary))"; + +// @public (undocumented) +export const ctrlListChoiceCheckboxIconSizeFigmaonly = "var(--smtc-ctrl-list-choice-checkbox-icon-sizefigmaonly)"; + +// @public (undocumented) +export const ctrlListChoiceCheckboxIconSizeFigmaonlyRaw = "--smtc-ctrl-list-choice-checkbox-icon-sizefigmaonly"; + +// @public (undocumented) +export const ctrlListChoiceCheckboxIconSizeRaw = "--smtc-ctrl-list-choice-checkbox-icon-size"; + +// @public (undocumented) +export const ctrlListChoiceDotSize = "var(--smtc-ctrl-list-choice-dot-size)"; + +// @public (undocumented) +export const ctrlListChoiceDotSizeFigmaonly = "var(--smtc-ctrl-list-choice-dot-sizefigmaonly)"; + +// @public (undocumented) +export const ctrlListChoiceDotSizeFigmaonlyRaw = "--smtc-ctrl-list-choice-dot-sizefigmaonly"; + +// @public (undocumented) +export const ctrlListChoiceDotSizeRaw = "--smtc-ctrl-list-choice-dot-size"; + +// @public (undocumented) +export const ctrlListChoiceForegroundHover = "var(--smtc-ctrl-list-choice-foreground-hover, var(--smtc-foreground-ctrl-hint-default))"; + +// @public (undocumented) +export const ctrlListChoiceForegroundHoverRaw = "--smtc-ctrl-list-choice-foreground-hover"; + +// @public (undocumented) +export const ctrlListChoiceForegroundSelectedDisabled = "var(--smtc-ctrl-list-choice-foreground-selected-disabled, var(--smtc-foreground-ctrl-brand-disabled))"; + +// @public (undocumented) +export const ctrlListChoiceForegroundSelectedDisabledRaw = "--smtc-ctrl-list-choice-foreground-selected-disabled"; + +// @public (undocumented) +export const ctrlListChoiceForegroundSelectedRest = "var(--smtc-ctrl-list-choice-foreground-selected-rest, var(--smtc-foreground-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlListChoiceForegroundSelectedRestRaw = "--smtc-ctrl-list-choice-foreground-selected-rest"; + +// @public (undocumented) +export const ctrlListChoiceStrokeDisabled = "var(--smtc-ctrl-list-choice-stroke-disabled, unset)"; + +// @public (undocumented) +export const ctrlListChoiceStrokeDisabledRaw = "--smtc-ctrl-list-choice-stroke-disabled"; + +// @public (undocumented) +export const ctrlListChoiceStrokeRest = "var(--smtc-ctrl-list-choice-stroke-rest, unset)"; + +// @public (undocumented) +export const ctrlListChoiceStrokeRestRaw = "--smtc-ctrl-list-choice-stroke-rest"; + +// @public (undocumented) +export const ctrlListChoiceStrokeSelectedDisabled = "var(--smtc-ctrl-list-choice-stroke-selected-disabled, unset)"; + +// @public (undocumented) +export const ctrlListChoiceStrokeSelectedDisabledRaw = "--smtc-ctrl-list-choice-stroke-selected-disabled"; + +// @public (undocumented) +export const ctrlListChoiceStrokeSelectedRest = "var(--smtc-ctrl-list-choice-stroke-selected-rest, unset)"; + +// @public (undocumented) +export const ctrlListChoiceStrokeSelectedRestRaw = "--smtc-ctrl-list-choice-stroke-selected-rest"; + +// @public (undocumented) +export const ctrlListCornerHover = "var(--smtc-ctrl-list-corner-hover, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlListCornerHoverRaw = "--smtc-ctrl-list-corner-hover"; + +// @public (undocumented) +export const ctrlListCornerPressed = "var(--smtc-ctrl-list-corner-pressed, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlListCornerPressedRaw = "--smtc-ctrl-list-corner-pressed"; + +// @public (undocumented) +export const ctrlListCornerRest = "var(--smtc-ctrl-list-corner-rest, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlListCornerRestRaw = "--smtc-ctrl-list-corner-rest"; + +// @public (undocumented) +export const ctrlListIndentLevel1 = "var(--smtc-ctrl-list-indent-level1, var(--smtc-padding-ctrl-horizontal-default))"; + +// @public (undocumented) +export const ctrlListIndentLevel1Raw = "--smtc-ctrl-list-indent-level1"; + +// @public (undocumented) +export const ctrlListIndentLevel2 = "var(--smtc-ctrl-list-indent-level2)"; + +// @public (undocumented) +export const ctrlListIndentLevel2Raw = "--smtc-ctrl-list-indent-level2"; + +// @public (undocumented) +export const ctrlListIndentLevel3 = "var(--smtc-ctrl-list-indent-level3)"; + +// @public (undocumented) +export const ctrlListIndentLevel3Raw = "--smtc-ctrl-list-indent-level3"; + +// @public (undocumented) +export const ctrlListLgCornerHover = "var(--smtc-ctrl-list-lg-corner-hover, var(--smtc-corner-ctrl-lg-rest))"; + +// @public (undocumented) +export const ctrlListLgCornerHoverRaw = "--smtc-ctrl-list-lg-corner-hover"; + +// @public (undocumented) +export const ctrlListLgCornerPressed = "var(--smtc-ctrl-list-lg-corner-pressed, var(--smtc-corner-ctrl-lg-rest))"; + +// @public (undocumented) +export const ctrlListLgCornerPressedRaw = "--smtc-ctrl-list-lg-corner-pressed"; + +// @public (undocumented) +export const ctrlListLgCornerRest = "var(--smtc-ctrl-list-lg-corner-rest, var(--smtc-corner-ctrl-lg-rest))"; + +// @public (undocumented) +export const ctrlListLgCornerRestRaw = "--smtc-ctrl-list-lg-corner-rest"; + +// @public (undocumented) +export const ctrlListLgIndentLevel1 = "var(--smtc-ctrl-list-lg-indent-level1, var(--smtc-padding-ctrl-lg-horizontal-default))"; + +// @public (undocumented) +export const ctrlListLgIndentLevel1Raw = "--smtc-ctrl-list-lg-indent-level1"; + +// @public (undocumented) +export const ctrlListLgIndentLevel2 = "var(--smtc-ctrl-list-lg-indent-level2)"; + +// @public (undocumented) +export const ctrlListLgIndentLevel2Raw = "--smtc-ctrl-list-lg-indent-level2"; + +// @public (undocumented) +export const ctrlListLgIndentLevel3 = "var(--smtc-ctrl-list-lg-indent-level3)"; + +// @public (undocumented) +export const ctrlListLgIndentLevel3Raw = "--smtc-ctrl-list-lg-indent-level3"; + +// @public (undocumented) +export const ctrlListPillFullwidth = "var(--smtc-ctrl-list-pill-fullwidth)"; + +// @public (undocumented) +export const ctrlListPillFullwidthRaw = "--smtc-ctrl-list-pill-fullwidth"; + +// @public (undocumented) +export const ctrlListPillLengthHint = "var(--smtc-ctrl-list-pill-length-hint, var(--smtc-ctrl-list-pill-length-rest))"; + +// @public (undocumented) +export const ctrlListPillLengthHintRaw = "--smtc-ctrl-list-pill-length-hint"; + +// @public (undocumented) +export const ctrlListPillLengthHover = "var(--smtc-ctrl-list-pill-length-hover, var(--smtc-ctrl-list-pill-length-rest))"; + +// @public (undocumented) +export const ctrlListPillLengthHoverRaw = "--smtc-ctrl-list-pill-length-hover"; + +// @public (undocumented) +export const ctrlListPillLengthPressed = "var(--smtc-ctrl-list-pill-length-pressed, var(--smtc-ctrl-list-pill-length-rest))"; + +// @public (undocumented) +export const ctrlListPillLengthPressedRaw = "--smtc-ctrl-list-pill-length-pressed"; + +// @public (undocumented) +export const ctrlListPillLengthRest = "var(--smtc-ctrl-list-pill-length-rest)"; + +// @public (undocumented) +export const ctrlListPillLengthRestRaw = "--smtc-ctrl-list-pill-length-rest"; + +// @public (undocumented) +export const ctrlListPillStretchPaddingDefault = "var(--smtc-ctrl-list-pill-stretch-padding-default)"; + +// @public (undocumented) +export const ctrlListPillStretchPaddingDefaultRaw = "--smtc-ctrl-list-pill-stretch-padding-default"; + +// @public (undocumented) +export const ctrlListPillStretchPaddingHint = "var(--smtc-ctrl-list-pill-stretch-padding-hint)"; + +// @public (undocumented) +export const ctrlListPillStretchPaddingHintRaw = "--smtc-ctrl-list-pill-stretch-padding-hint"; + +// @public (undocumented) +export const ctrlListPillWidth = "var(--smtc-ctrl-list-pill-width)"; + +// @public (undocumented) +export const ctrlListPillWidthRaw = "--smtc-ctrl-list-pill-width"; + +// @public (undocumented) +export const ctrlListShadowSelectedAmbientBlur = "var(--smtc-ctrl-list-shadow-selected-ambient-blur)"; + +// @public (undocumented) +export const ctrlListShadowSelectedAmbientBlurRaw = "--smtc-ctrl-list-shadow-selected-ambient-blur"; + +// @public (undocumented) +export const ctrlListShadowSelectedAmbientColor = "var(--smtc-ctrl-list-shadow-selected-ambient-color)"; + +// @public (undocumented) +export const ctrlListShadowSelectedAmbientColorRaw = "--smtc-ctrl-list-shadow-selected-ambient-color"; + +// @public (undocumented) +export const ctrlListShadowSelectedAmbientX = "var(--smtc-ctrl-list-shadow-selected-ambient-x)"; + +// @public (undocumented) +export const ctrlListShadowSelectedAmbientXRaw = "--smtc-ctrl-list-shadow-selected-ambient-x"; + +// @public (undocumented) +export const ctrlListShadowSelectedAmbientY = "var(--smtc-ctrl-list-shadow-selected-ambient-y)"; + +// @public (undocumented) +export const ctrlListShadowSelectedAmbientYRaw = "--smtc-ctrl-list-shadow-selected-ambient-y"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyBlur = "var(--smtc-ctrl-list-shadow-selected-key-blur)"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyBlurRaw = "--smtc-ctrl-list-shadow-selected-key-blur"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyColor = "var(--smtc-ctrl-list-shadow-selected-key-color)"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyColorRaw = "--smtc-ctrl-list-shadow-selected-key-color"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyX = "var(--smtc-ctrl-list-shadow-selected-key-x)"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyXRaw = "--smtc-ctrl-list-shadow-selected-key-x"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyY = "var(--smtc-ctrl-list-shadow-selected-key-y)"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyY2 = "var(--smtc-ctrl-list-shadow-selected-key-y2, unset)"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyY2Raw = "--smtc-ctrl-list-shadow-selected-key-y2"; + +// @public (undocumented) +export const ctrlListShadowSelectedKeyYRaw = "--smtc-ctrl-list-shadow-selected-key-y"; + +// @public (undocumented) +export const ctrlListSmCornerHover = "var(--smtc-ctrl-list-sm-corner-hover, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlListSmCornerHoverRaw = "--smtc-ctrl-list-sm-corner-hover"; + +// @public (undocumented) +export const ctrlListSmCornerPressed = "var(--smtc-ctrl-list-sm-corner-pressed, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlListSmCornerPressedRaw = "--smtc-ctrl-list-sm-corner-pressed"; + +// @public (undocumented) +export const ctrlListSmCornerRest = "var(--smtc-ctrl-list-sm-corner-rest, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlListSmCornerRestRaw = "--smtc-ctrl-list-sm-corner-rest"; + +// @public (undocumented) +export const ctrlListSmIndentLevel1 = "var(--smtc-ctrl-list-sm-indent-level1, var(--smtc-padding-ctrl-sm-horizontal-default))"; + +// @public (undocumented) +export const ctrlListSmIndentLevel1Raw = "--smtc-ctrl-list-sm-indent-level1"; + +// @public (undocumented) +export const ctrlListSmIndentLevel2 = "var(--smtc-ctrl-list-sm-indent-level2)"; + +// @public (undocumented) +export const ctrlListSmIndentLevel2Raw = "--smtc-ctrl-list-sm-indent-level2"; + +// @public (undocumented) +export const ctrlListSmIndentLevel3 = "var(--smtc-ctrl-list-sm-indent-level3)"; + +// @public (undocumented) +export const ctrlListSmIndentLevel3Raw = "--smtc-ctrl-list-sm-indent-level3"; + +// @public (undocumented) +export const ctrlListSplitDividerPaddingInset = "var(--smtc-ctrl-list-split-divider-padding-inset)"; + +// @public (undocumented) +export const ctrlListSplitDividerPaddingInsetRaw = "--smtc-ctrl-list-split-divider-padding-inset"; + +// @public (undocumented) +export const ctrlListSplitDividerShowdivider = "var(--smtc-ctrl-list-split-divider-showdivider)"; + +// @public (undocumented) +export const ctrlListSplitDividerShowdividerRaw = "--smtc-ctrl-list-split-divider-showdivider"; + +// @public (undocumented) +export const ctrlListSplitDividerStroke = "var(--smtc-ctrl-list-split-divider-stroke, var(--smtc-stroke-ctrl-divider-onneutral))"; + +// @public (undocumented) +export const ctrlListSplitDividerStrokeRaw = "--smtc-ctrl-list-split-divider-stroke"; + +// @public (undocumented) +export const ctrlLitefilterBackgroundSelected = "var(--smtc-ctrl-litefilter-background-selected, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlLitefilterBackgroundSelectedRaw = "--smtc-ctrl-litefilter-background-selected"; + +// @public (undocumented) +export const ctrlLitefilterForegroundSelected = "var(--smtc-ctrl-litefilter-foreground-selected, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const ctrlLitefilterForegroundSelectedRaw = "--smtc-ctrl-litefilter-foreground-selected"; + +// @public (undocumented) +export const ctrlLitefilterStrokeSelected = "var(--smtc-ctrl-litefilter-stroke-selected, var(--smtc-stroke-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const ctrlLitefilterStrokeSelectedRaw = "--smtc-ctrl-litefilter-stroke-selected"; + +// @public (undocumented) +export const ctrlLitefilterStrokewidthSelected = "var(--smtc-ctrl-litefilter-strokewidth-selected, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlLitefilterStrokewidthSelectedRaw = "--smtc-ctrl-litefilter-strokewidth-selected"; + +// @public (undocumented) +export const ctrlProgressBackgroundEmpty = "var(--smtc-ctrl-progress-background-empty)"; + +// @public (undocumented) +export const ctrlProgressBackgroundEmptyRaw = "--smtc-ctrl-progress-background-empty"; + +// @public (undocumented) +export const ctrlProgressBackgroundFilled = "var(--smtc-ctrl-progress-background-filled, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlProgressBackgroundFilledRaw = "--smtc-ctrl-progress-background-filled"; + +// @public (undocumented) +export const ctrlProgressCorner = "var(--smtc-ctrl-progress-corner, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlProgressCornerRaw = "--smtc-ctrl-progress-corner"; + +// @public (undocumented) +export const ctrlProgressHeightEmpty = "var(--smtc-ctrl-progress-height-empty, var(--smtc-ctrl-progress-height-filled))"; + +// @public (undocumented) +export const ctrlProgressHeightEmptyRaw = "--smtc-ctrl-progress-height-empty"; + +// @public (undocumented) +export const ctrlProgressHeightFilled = "var(--smtc-ctrl-progress-height-filled)"; + +// @public (undocumented) +export const ctrlProgressHeightFilledRaw = "--smtc-ctrl-progress-height-filled"; + +// @public (undocumented) +export const ctrlProgressLgHeightEmpty = "var(--smtc-ctrl-progress-lg-height-empty, var(--smtc-ctrl-progress-lg-height-filled))"; + +// @public (undocumented) +export const ctrlProgressLgHeightEmptyRaw = "--smtc-ctrl-progress-lg-height-empty"; + +// @public (undocumented) +export const ctrlProgressLgHeightFilled = "var(--smtc-ctrl-progress-lg-height-filled)"; + +// @public (undocumented) +export const ctrlProgressLgHeightFilledRaw = "--smtc-ctrl-progress-lg-height-filled"; + +// @public (undocumented) +export const ctrlProgressSmHeightEmpty = "var(--smtc-ctrl-progress-sm-height-empty, var(--smtc-ctrl-progress-sm-height-filled))"; + +// @public (undocumented) +export const ctrlProgressSmHeightEmptyRaw = "--smtc-ctrl-progress-sm-height-empty"; + +// @public (undocumented) +export const ctrlProgressSmHeightFilled = "var(--smtc-ctrl-progress-sm-height-filled)"; + +// @public (undocumented) +export const ctrlProgressSmHeightFilledRaw = "--smtc-ctrl-progress-sm-height-filled"; + +// @public (undocumented) +export const ctrlRatingIconForegroundEmpty = "var(--smtc-ctrl-rating-icon-foreground-empty, var(--smtc-ctrl-progress-background-empty))"; + +// @public (undocumented) +export const ctrlRatingIconForegroundEmptyRaw = "--smtc-ctrl-rating-icon-foreground-empty"; + +// @public (undocumented) +export const ctrlRatingIconForegroundFilled = "var(--smtc-ctrl-rating-icon-foreground-filled, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlRatingIconForegroundFilledRaw = "--smtc-ctrl-rating-icon-foreground-filled"; + +// @public (undocumented) +export const ctrlRatingIconGap = "var(--smtc-ctrl-rating-icon-gap)"; + +// @public (undocumented) +export const ctrlRatingIconGapRaw = "--smtc-ctrl-rating-icon-gap"; + +// @public (undocumented) +export const ctrlRatingIconSize = "var(--smtc-ctrl-rating-icon-size, var(--smtc-size-ctrl-icon))"; + +// @public (undocumented) +export const ctrlRatingIconSizeRaw = "--smtc-ctrl-rating-icon-size"; + +// @public (undocumented) +export const ctrlRatingIconTheme = "var(--smtc-ctrl-rating-icon-theme, var(--smtc-icontheme-ctrl-default-rest))"; + +// @public (undocumented) +export const ctrlRatingIconThemeRaw = "--smtc-ctrl-rating-icon-theme"; + +// @public (undocumented) +export const ctrlSegmentedBackgroundDisabled = "var(--smtc-ctrl-segmented-background-disabled, var(--smtc-background-ctrl-outline-disabled))"; + +// @public (undocumented) +export const ctrlSegmentedBackgroundDisabledRaw = "--smtc-ctrl-segmented-background-disabled"; + +// @public (undocumented) +export const ctrlSegmentedBackgroundHover = "var(--smtc-ctrl-segmented-background-hover, var(--smtc-background-ctrl-outline-hover))"; + +// @public (undocumented) +export const ctrlSegmentedBackgroundHoverRaw = "--smtc-ctrl-segmented-background-hover"; + +// @public (undocumented) +export const ctrlSegmentedBackgroundPressed = "var(--smtc-ctrl-segmented-background-pressed, var(--smtc-background-ctrl-outline-pressed))"; + +// @public (undocumented) +export const ctrlSegmentedBackgroundPressedRaw = "--smtc-ctrl-segmented-background-pressed"; + +// @public (undocumented) +export const ctrlSegmentedBackgroundRest = "var(--smtc-ctrl-segmented-background-rest, var(--smtc-background-ctrl-outline-rest))"; + +// @public (undocumented) +export const ctrlSegmentedBackgroundRestRaw = "--smtc-ctrl-segmented-background-rest"; + +// @public (undocumented) +export const ctrlSegmentedCornerHover = "var(--smtc-ctrl-segmented-corner-hover, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlSegmentedCornerHoverRaw = "--smtc-ctrl-segmented-corner-hover"; + +// @public (undocumented) +export const ctrlSegmentedCornerPressed = "var(--smtc-ctrl-segmented-corner-pressed, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlSegmentedCornerPressedRaw = "--smtc-ctrl-segmented-corner-pressed"; + +// @public (undocumented) +export const ctrlSegmentedCornerRest = "var(--smtc-ctrl-segmented-corner-rest, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlSegmentedCornerRestRaw = "--smtc-ctrl-segmented-corner-rest"; + +// @public (undocumented) +export const ctrlSegmentedGap = "var(--smtc-ctrl-segmented-gap, unset)"; + +// @public (undocumented) +export const ctrlSegmentedGapRaw = "--smtc-ctrl-segmented-gap"; + +// @public (undocumented) +export const ctrlSegmentedItemCornerHover = "var(--smtc-ctrl-segmented-item-corner-hover, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlSegmentedItemCornerHoverRaw = "--smtc-ctrl-segmented-item-corner-hover"; + +// @public (undocumented) +export const ctrlSegmentedItemCornerPressed = "var(--smtc-ctrl-segmented-item-corner-pressed, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlSegmentedItemCornerPressedRaw = "--smtc-ctrl-segmented-item-corner-pressed"; + +// @public (undocumented) +export const ctrlSegmentedItemCornerRest = "var(--smtc-ctrl-segmented-item-corner-rest, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlSegmentedItemCornerRestRaw = "--smtc-ctrl-segmented-item-corner-rest"; + +// @public (undocumented) +export const ctrlSegmentedLgCornerHover = "var(--smtc-ctrl-segmented-lg-corner-hover, var(--smtc-corner-ctrl-lg-rest))"; + +// @public (undocumented) +export const ctrlSegmentedLgCornerHoverRaw = "--smtc-ctrl-segmented-lg-corner-hover"; + +// @public (undocumented) +export const ctrlSegmentedLgCornerPressed = "var(--smtc-ctrl-segmented-lg-corner-pressed, var(--smtc-corner-ctrl-lg-rest))"; + +// @public (undocumented) +export const ctrlSegmentedLgCornerPressedRaw = "--smtc-ctrl-segmented-lg-corner-pressed"; + +// @public (undocumented) +export const ctrlSegmentedLgCornerRest = "var(--smtc-ctrl-segmented-lg-corner-rest, var(--smtc-corner-ctrl-lg-rest))"; + +// @public (undocumented) +export const ctrlSegmentedLgCornerRestRaw = "--smtc-ctrl-segmented-lg-corner-rest"; + +// @public (undocumented) +export const ctrlSegmentedLgItemCornerHover = "var(--smtc-ctrl-segmented-lg-item-corner-hover, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlSegmentedLgItemCornerHoverRaw = "--smtc-ctrl-segmented-lg-item-corner-hover"; + +// @public (undocumented) +export const ctrlSegmentedLgItemCornerPressed = "var(--smtc-ctrl-segmented-lg-item-corner-pressed, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlSegmentedLgItemCornerPressedRaw = "--smtc-ctrl-segmented-lg-item-corner-pressed"; + +// @public (undocumented) +export const ctrlSegmentedLgItemCornerRest = "var(--smtc-ctrl-segmented-lg-item-corner-rest, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlSegmentedLgItemCornerRestRaw = "--smtc-ctrl-segmented-lg-item-corner-rest"; + +// @public (undocumented) +export const ctrlSegmentedLgPaddingHover = "var(--smtc-ctrl-segmented-lg-padding-hover, var(--smtc-ctrl-segmented-lg-padding-rest))"; + +// @public (undocumented) +export const ctrlSegmentedLgPaddingHoverRaw = "--smtc-ctrl-segmented-lg-padding-hover"; + +// @public (undocumented) +export const ctrlSegmentedLgPaddingPressed = "var(--smtc-ctrl-segmented-lg-padding-pressed, var(--smtc-ctrl-segmented-lg-padding-rest))"; + +// @public (undocumented) +export const ctrlSegmentedLgPaddingPressedRaw = "--smtc-ctrl-segmented-lg-padding-pressed"; + +// @public (undocumented) +export const ctrlSegmentedLgPaddingRest = "var(--smtc-ctrl-segmented-lg-padding-rest)"; + +// @public (undocumented) +export const ctrlSegmentedLgPaddingRestRaw = "--smtc-ctrl-segmented-lg-padding-rest"; + +// @public (undocumented) +export const ctrlSegmentedPaddingHover = "var(--smtc-ctrl-segmented-padding-hover, var(--smtc-ctrl-segmented-padding-rest))"; + +// @public (undocumented) +export const ctrlSegmentedPaddingHoverRaw = "--smtc-ctrl-segmented-padding-hover"; + +// @public (undocumented) +export const ctrlSegmentedPaddingPressed = "var(--smtc-ctrl-segmented-padding-pressed, var(--smtc-ctrl-segmented-padding-rest))"; + +// @public (undocumented) +export const ctrlSegmentedPaddingPressedRaw = "--smtc-ctrl-segmented-padding-pressed"; + +// @public (undocumented) +export const ctrlSegmentedPaddingRest = "var(--smtc-ctrl-segmented-padding-rest)"; + +// @public (undocumented) +export const ctrlSegmentedPaddingRestRaw = "--smtc-ctrl-segmented-padding-rest"; + +// @public (undocumented) +export const ctrlSegmentedSmCornerHover = "var(--smtc-ctrl-segmented-sm-corner-hover, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlSegmentedSmCornerHoverRaw = "--smtc-ctrl-segmented-sm-corner-hover"; + +// @public (undocumented) +export const ctrlSegmentedSmCornerPressed = "var(--smtc-ctrl-segmented-sm-corner-pressed, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlSegmentedSmCornerPressedRaw = "--smtc-ctrl-segmented-sm-corner-pressed"; + +// @public (undocumented) +export const ctrlSegmentedSmCornerRest = "var(--smtc-ctrl-segmented-sm-corner-rest, var(--smtc-corner-ctrl-sm-rest))"; + +// @public (undocumented) +export const ctrlSegmentedSmCornerRestRaw = "--smtc-ctrl-segmented-sm-corner-rest"; + +// @public (undocumented) +export const ctrlSegmentedSmItemCornerHover = "var(--smtc-ctrl-segmented-sm-item-corner-hover)"; + +// @public (undocumented) +export const ctrlSegmentedSmItemCornerHoverRaw = "--smtc-ctrl-segmented-sm-item-corner-hover"; + +// @public (undocumented) +export const ctrlSegmentedSmItemCornerPressed = "var(--smtc-ctrl-segmented-sm-item-corner-pressed)"; + +// @public (undocumented) +export const ctrlSegmentedSmItemCornerPressedRaw = "--smtc-ctrl-segmented-sm-item-corner-pressed"; + +// @public (undocumented) +export const ctrlSegmentedSmItemCornerRest = "var(--smtc-ctrl-segmented-sm-item-corner-rest)"; + +// @public (undocumented) +export const ctrlSegmentedSmItemCornerRestRaw = "--smtc-ctrl-segmented-sm-item-corner-rest"; + +// @public (undocumented) +export const ctrlSegmentedSmPaddingHover = "var(--smtc-ctrl-segmented-sm-padding-hover, var(--smtc-ctrl-segmented-sm-padding-rest))"; + +// @public (undocumented) +export const ctrlSegmentedSmPaddingHoverRaw = "--smtc-ctrl-segmented-sm-padding-hover"; + +// @public (undocumented) +export const ctrlSegmentedSmPaddingPressed = "var(--smtc-ctrl-segmented-sm-padding-pressed, var(--smtc-ctrl-segmented-sm-padding-rest))"; + +// @public (undocumented) +export const ctrlSegmentedSmPaddingPressedRaw = "--smtc-ctrl-segmented-sm-padding-pressed"; + +// @public (undocumented) +export const ctrlSegmentedSmPaddingRest = "var(--smtc-ctrl-segmented-sm-padding-rest)"; + +// @public (undocumented) +export const ctrlSegmentedSmPaddingRestRaw = "--smtc-ctrl-segmented-sm-padding-rest"; + +// @public (undocumented) +export const ctrlSegmentedStrokeDisabled = "var(--smtc-ctrl-segmented-stroke-disabled, var(--smtc-foreground-ctrl-neutral-secondary-disabled))"; + +// @public (undocumented) +export const ctrlSegmentedStrokeDisabledRaw = "--smtc-ctrl-segmented-stroke-disabled"; + +// @public (undocumented) +export const ctrlSegmentedStrokeHover = "var(--smtc-ctrl-segmented-stroke-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlSegmentedStrokeHoverRaw = "--smtc-ctrl-segmented-stroke-hover"; + +// @public (undocumented) +export const ctrlSegmentedStrokePressed = "var(--smtc-ctrl-segmented-stroke-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlSegmentedStrokePressedRaw = "--smtc-ctrl-segmented-stroke-pressed"; + +// @public (undocumented) +export const ctrlSegmentedStrokeRest = "var(--smtc-ctrl-segmented-stroke-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const ctrlSegmentedStrokeRestRaw = "--smtc-ctrl-segmented-stroke-rest"; + +// @public (undocumented) +export const ctrlSliderBarCorner = "var(--smtc-ctrl-slider-bar-corner, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlSliderBarCornerRaw = "--smtc-ctrl-slider-bar-corner"; + +// @public (undocumented) +export const ctrlSliderBarForegroundEmptyDisabled = "var(--smtc-ctrl-slider-bar-foreground-empty-disabled, var(--smtc-ctrl-progress-background-empty))"; + +// @public (undocumented) +export const ctrlSliderBarForegroundEmptyDisabledRaw = "--smtc-ctrl-slider-bar-foreground-empty-disabled"; + +// @public (undocumented) +export const ctrlSliderBarForegroundEmptyHover = "var(--smtc-ctrl-slider-bar-foreground-empty-hover, var(--smtc-ctrl-progress-background-empty))"; + +// @public (undocumented) +export const ctrlSliderBarForegroundEmptyHoverRaw = "--smtc-ctrl-slider-bar-foreground-empty-hover"; + +// @public (undocumented) +export const ctrlSliderBarForegroundEmptyPressed = "var(--smtc-ctrl-slider-bar-foreground-empty-pressed, var(--smtc-ctrl-progress-background-empty))"; + +// @public (undocumented) +export const ctrlSliderBarForegroundEmptyPressedRaw = "--smtc-ctrl-slider-bar-foreground-empty-pressed"; + +// @public (undocumented) +export const ctrlSliderBarForegroundEmptyRest = "var(--smtc-ctrl-slider-bar-foreground-empty-rest, var(--smtc-ctrl-progress-background-empty))"; + +// @public (undocumented) +export const ctrlSliderBarForegroundEmptyRestRaw = "--smtc-ctrl-slider-bar-foreground-empty-rest"; + +// @public (undocumented) +export const ctrlSliderBarForegroundFilledDisabled = "var(--smtc-ctrl-slider-bar-foreground-filled-disabled, var(--smtc-background-ctrl-brand-disabled))"; + +// @public (undocumented) +export const ctrlSliderBarForegroundFilledDisabledRaw = "--smtc-ctrl-slider-bar-foreground-filled-disabled"; + +// @public (undocumented) +export const ctrlSliderBarForegroundFilledHover = "var(--smtc-ctrl-slider-bar-foreground-filled-hover, var(--smtc-background-ctrl-brand-hover))"; + +// @public (undocumented) +export const ctrlSliderBarForegroundFilledHoverRaw = "--smtc-ctrl-slider-bar-foreground-filled-hover"; + +// @public (undocumented) +export const ctrlSliderBarForegroundFilledPressed = "var(--smtc-ctrl-slider-bar-foreground-filled-pressed, var(--smtc-background-ctrl-brand-pressed))"; + +// @public (undocumented) +export const ctrlSliderBarForegroundFilledPressedRaw = "--smtc-ctrl-slider-bar-foreground-filled-pressed"; + +// @public (undocumented) +export const ctrlSliderBarForegroundFilledRest = "var(--smtc-ctrl-slider-bar-foreground-filled-rest, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlSliderBarForegroundFilledRestRaw = "--smtc-ctrl-slider-bar-foreground-filled-rest"; + +// @public (undocumented) +export const ctrlSliderBarHeight = "var(--smtc-ctrl-slider-bar-height, var(--smtc-ctrl-progress-height-filled))"; + +// @public (undocumented) +export const ctrlSliderBarHeightRaw = "--smtc-ctrl-slider-bar-height"; + +// @public (undocumented) +export const ctrlSliderLgBarHeight = "var(--smtc-ctrl-slider-lg-bar-height, var(--smtc-ctrl-progress-lg-height-filled))"; + +// @public (undocumented) +export const ctrlSliderLgBarHeightRaw = "--smtc-ctrl-slider-lg-bar-height"; + +// @public (undocumented) +export const ctrlSliderLgThumbSizeHover = "var(--smtc-ctrl-slider-lg-thumb-size-hover, var(--smtc-size-ctrl-lg-icon))"; + +// @public (undocumented) +export const ctrlSliderLgThumbSizeHoverRaw = "--smtc-ctrl-slider-lg-thumb-size-hover"; + +// @public (undocumented) +export const ctrlSliderLgThumbSizePressed = "var(--smtc-ctrl-slider-lg-thumb-size-pressed, var(--smtc-size-ctrl-lg-icon))"; + +// @public (undocumented) +export const ctrlSliderLgThumbSizePressedRaw = "--smtc-ctrl-slider-lg-thumb-size-pressed"; + +// @public (undocumented) +export const ctrlSliderLgThumbSizeRest = "var(--smtc-ctrl-slider-lg-thumb-size-rest, var(--smtc-size-ctrl-lg-icon))"; + +// @public (undocumented) +export const ctrlSliderLgThumbSizeRestRaw = "--smtc-ctrl-slider-lg-thumb-size-rest"; + +// @public (undocumented) +export const ctrlSliderSmBarHeight = "var(--smtc-ctrl-slider-sm-bar-height, var(--smtc-ctrl-progress-sm-height-filled))"; + +// @public (undocumented) +export const ctrlSliderSmBarHeightRaw = "--smtc-ctrl-slider-sm-bar-height"; + +// @public (undocumented) +export const ctrlSliderSmThumbSizeHover = "var(--smtc-ctrl-slider-sm-thumb-size-hover, var(--smtc-size-ctrl-sm-icon))"; + +// @public (undocumented) +export const ctrlSliderSmThumbSizeHoverRaw = "--smtc-ctrl-slider-sm-thumb-size-hover"; + +// @public (undocumented) +export const ctrlSliderSmThumbSizePressed = "var(--smtc-ctrl-slider-sm-thumb-size-pressed, var(--smtc-size-ctrl-sm-icon))"; + +// @public (undocumented) +export const ctrlSliderSmThumbSizePressedRaw = "--smtc-ctrl-slider-sm-thumb-size-pressed"; + +// @public (undocumented) +export const ctrlSliderSmThumbSizeRest = "var(--smtc-ctrl-slider-sm-thumb-size-rest, var(--smtc-size-ctrl-sm-icon))"; + +// @public (undocumented) +export const ctrlSliderSmThumbSizeRestRaw = "--smtc-ctrl-slider-sm-thumb-size-rest"; + +// @public (undocumented) +export const ctrlSliderThumbBackgroundDisabled = "var(--smtc-ctrl-slider-thumb-background-disabled, var(--smtc-foreground-ctrl-onbrand-disabled))"; + +// @public (undocumented) +export const ctrlSliderThumbBackgroundDisabledRaw = "--smtc-ctrl-slider-thumb-background-disabled"; + +// @public (undocumented) +export const ctrlSliderThumbBackgroundHover = "var(--smtc-ctrl-slider-thumb-background-hover, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const ctrlSliderThumbBackgroundHoverRaw = "--smtc-ctrl-slider-thumb-background-hover"; + +// @public (undocumented) +export const ctrlSliderThumbBackgroundPressed = "var(--smtc-ctrl-slider-thumb-background-pressed, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const ctrlSliderThumbBackgroundPressedRaw = "--smtc-ctrl-slider-thumb-background-pressed"; + +// @public (undocumented) +export const ctrlSliderThumbBackgroundRest = "var(--smtc-ctrl-slider-thumb-background-rest, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const ctrlSliderThumbBackgroundRestRaw = "--smtc-ctrl-slider-thumb-background-rest"; + +// @public (undocumented) +export const ctrlSliderThumbCorner = "var(--smtc-ctrl-slider-thumb-corner, var(--smtc-corner-circular))"; + +// @public (undocumented) +export const ctrlSliderThumbCornerRaw = "--smtc-ctrl-slider-thumb-corner"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokeDisabled = "var(--smtc-ctrl-slider-thumb-inner-stroke-disabled, var(--smtc-background-ctrl-brand-disabled))"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokeDisabledRaw = "--smtc-ctrl-slider-thumb-inner-stroke-disabled"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokeHover = "var(--smtc-ctrl-slider-thumb-inner-stroke-hover, var(--smtc-background-ctrl-brand-hover))"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokeHoverRaw = "--smtc-ctrl-slider-thumb-inner-stroke-hover"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokePressed = "var(--smtc-ctrl-slider-thumb-inner-stroke-pressed, var(--smtc-background-ctrl-brand-pressed))"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokePressedRaw = "--smtc-ctrl-slider-thumb-inner-stroke-pressed"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokeRest = "var(--smtc-ctrl-slider-thumb-inner-stroke-rest, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokeRestRaw = "--smtc-ctrl-slider-thumb-inner-stroke-rest"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokewidthHover = "var(--smtc-ctrl-slider-thumb-inner-strokewidth-hover, var(--smtc-ctrl-slider-thumb-inner-strokewidth-rest))"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokewidthHoverRaw = "--smtc-ctrl-slider-thumb-inner-strokewidth-hover"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokewidthPressed = "var(--smtc-ctrl-slider-thumb-inner-strokewidth-pressed, var(--smtc-ctrl-slider-thumb-inner-strokewidth-rest))"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokewidthPressedRaw = "--smtc-ctrl-slider-thumb-inner-strokewidth-pressed"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokewidthRest = "var(--smtc-ctrl-slider-thumb-inner-strokewidth-rest)"; + +// @public (undocumented) +export const ctrlSliderThumbInnerStrokewidthRestRaw = "--smtc-ctrl-slider-thumb-inner-strokewidth-rest"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokeDisabled = "var(--smtc-ctrl-slider-thumb-outer-stroke-disabled, var(--smtc-background-ctrl-brand-disabled))"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokeDisabledRaw = "--smtc-ctrl-slider-thumb-outer-stroke-disabled"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokeHover = "var(--smtc-ctrl-slider-thumb-outer-stroke-hover, var(--smtc-background-ctrl-brand-hover))"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokeHoverRaw = "--smtc-ctrl-slider-thumb-outer-stroke-hover"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokePressed = "var(--smtc-ctrl-slider-thumb-outer-stroke-pressed, var(--smtc-background-ctrl-brand-pressed))"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokePressedRaw = "--smtc-ctrl-slider-thumb-outer-stroke-pressed"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokeRest = "var(--smtc-ctrl-slider-thumb-outer-stroke-rest, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokeRestRaw = "--smtc-ctrl-slider-thumb-outer-stroke-rest"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokewidth = "var(--smtc-ctrl-slider-thumb-outer-strokewidth, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlSliderThumbOuterStrokewidthRaw = "--smtc-ctrl-slider-thumb-outer-strokewidth"; + +// @public (undocumented) +export const ctrlSliderThumbSizeHover = "var(--smtc-ctrl-slider-thumb-size-hover, var(--smtc-size-ctrl-icon))"; + +// @public (undocumented) +export const ctrlSliderThumbSizeHoverRaw = "--smtc-ctrl-slider-thumb-size-hover"; + +// @public (undocumented) +export const ctrlSliderThumbSizePressed = "var(--smtc-ctrl-slider-thumb-size-pressed, var(--smtc-size-ctrl-icon))"; + +// @public (undocumented) +export const ctrlSliderThumbSizePressedRaw = "--smtc-ctrl-slider-thumb-size-pressed"; + +// @public (undocumented) +export const ctrlSliderThumbSizeRest = "var(--smtc-ctrl-slider-thumb-size-rest, var(--smtc-size-ctrl-icon))"; + +// @public (undocumented) +export const ctrlSliderThumbSizeRestRaw = "--smtc-ctrl-slider-thumb-size-rest"; + +// @public (undocumented) +export const ctrlSpinnerShowemptytrack = "var(--smtc-ctrl-spinner-showemptytrack)"; + +// @public (undocumented) +export const ctrlSpinnerShowemptytrackRaw = "--smtc-ctrl-spinner-showemptytrack"; + +// @public (undocumented) +export const ctrlSpinnerStrokewidth = "var(--smtc-ctrl-spinner-strokewidth, var(--smtc-ctrl-progress-height-filled))"; + +// @public (undocumented) +export const ctrlSpinnerStrokewidthRaw = "--smtc-ctrl-spinner-strokewidth"; + +// @public (undocumented) +export const ctrlSplitDividerStrokewidth = "var(--smtc-ctrl-split-divider-strokewidth, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlSplitDividerStrokewidthOnoutline = "var(--smtc-ctrl-split-divider-strokewidth-onoutline, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const ctrlSplitDividerStrokewidthOnoutlineRaw = "--smtc-ctrl-split-divider-strokewidth-onoutline"; + +// @public (undocumented) +export const ctrlSplitDividerStrokewidthOnsubtle = "var(--smtc-ctrl-split-divider-strokewidth-onsubtle, unset)"; + +// @public (undocumented) +export const ctrlSplitDividerStrokewidthOnsubtleRaw = "--smtc-ctrl-split-divider-strokewidth-onsubtle"; + +// @public (undocumented) +export const ctrlSplitDividerStrokewidthRaw = "--smtc-ctrl-split-divider-strokewidth"; + +// @public (undocumented) +export const ctrlTooltipBackground = "var(--smtc-ctrl-tooltip-background)"; + +// @public (undocumented) +export const ctrlTooltipBackgroundRaw = "--smtc-ctrl-tooltip-background"; + +// @public (undocumented) +export const ctrlTooltipCorner = "var(--smtc-ctrl-tooltip-corner, var(--smtc-corner-ctrl-rest))"; + +// @public (undocumented) +export const ctrlTooltipCornerRaw = "--smtc-ctrl-tooltip-corner"; + +// @public (undocumented) +export const ctrlTooltipForeground = "var(--smtc-ctrl-tooltip-foreground)"; + +// @public (undocumented) +export const ctrlTooltipForegroundRaw = "--smtc-ctrl-tooltip-foreground"; + +// @public (undocumented) +export const ctrlTooltipShadowAmbientBlur = "var(--smtc-ctrl-tooltip-shadow-ambient-blur, var(--smtc-ctrl-fab-shadow-rest-ambient-blur))"; + +// @public (undocumented) +export const ctrlTooltipShadowAmbientBlurRaw = "--smtc-ctrl-tooltip-shadow-ambient-blur"; + +// @public (undocumented) +export const ctrlTooltipShadowAmbientColor = "var(--smtc-ctrl-tooltip-shadow-ambient-color, var(--smtc-ctrl-fab-shadow-rest-ambient-color))"; + +// @public (undocumented) +export const ctrlTooltipShadowAmbientColorRaw = "--smtc-ctrl-tooltip-shadow-ambient-color"; + +// @public (undocumented) +export const ctrlTooltipShadowAmbientX = "var(--smtc-ctrl-tooltip-shadow-ambient-x, var(--smtc-ctrl-fab-shadow-rest-ambient-x))"; + +// @public (undocumented) +export const ctrlTooltipShadowAmbientXRaw = "--smtc-ctrl-tooltip-shadow-ambient-x"; + +// @public (undocumented) +export const ctrlTooltipShadowAmbientY = "var(--smtc-ctrl-tooltip-shadow-ambient-y, var(--smtc-ctrl-fab-shadow-rest-ambient-y))"; + +// @public (undocumented) +export const ctrlTooltipShadowAmbientYRaw = "--smtc-ctrl-tooltip-shadow-ambient-y"; + +// @public (undocumented) +export const ctrlTooltipShadowKeyBlur = "var(--smtc-ctrl-tooltip-shadow-key-blur, var(--smtc-ctrl-fab-shadow-rest-key-blur))"; + +// @public (undocumented) +export const ctrlTooltipShadowKeyBlurRaw = "--smtc-ctrl-tooltip-shadow-key-blur"; + +// @public (undocumented) +export const ctrlTooltipShadowKeyColor = "var(--smtc-ctrl-tooltip-shadow-key-color, var(--smtc-ctrl-fab-shadow-rest-key-color))"; + +// @public (undocumented) +export const ctrlTooltipShadowKeyColorRaw = "--smtc-ctrl-tooltip-shadow-key-color"; + +// @public (undocumented) +export const ctrlTooltipShadowKeyX = "var(--smtc-ctrl-tooltip-shadow-key-x, var(--smtc-ctrl-fab-shadow-rest-key-x))"; + +// @public (undocumented) +export const ctrlTooltipShadowKeyXRaw = "--smtc-ctrl-tooltip-shadow-key-x"; + +// @public (undocumented) +export const ctrlTooltipShadowKeyY = "var(--smtc-ctrl-tooltip-shadow-key-y, var(--smtc-ctrl-fab-shadow-rest-key-y))"; + +// @public (undocumented) +export const ctrlTooltipShadowKeyYRaw = "--smtc-ctrl-tooltip-shadow-key-y"; + +// @public (undocumented) +export const foregroundContentBrandPrimary = "var(--smtc-foreground-content-brand-primary, var(--smtc-foreground-ctrl-brand-rest))"; + +// @public (undocumented) +export const foregroundContentBrandPrimaryRaw = "--smtc-foreground-content-brand-primary"; + +// @public (undocumented) +export const foregroundContentNeutralPrimary = "var(--smtc-foreground-content-neutral-primary, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundContentNeutralPrimaryRaw = "--smtc-foreground-content-neutral-primary"; + +// @public (undocumented) +export const foregroundContentNeutralSecondary = "var(--smtc-foreground-content-neutral-secondary, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const foregroundContentNeutralSecondaryRaw = "--smtc-foreground-content-neutral-secondary"; + +// @public (undocumented) +export const foregroundCtrlActivebrandDisabled = "var(--smtc-foreground-ctrl-activebrand-disabled, var(--smtc-foreground-ctrl-brand-disabled))"; + +// @public (undocumented) +export const foregroundCtrlActivebrandDisabledRaw = "--smtc-foreground-ctrl-activebrand-disabled"; + +// @public (undocumented) +export const foregroundCtrlActivebrandHover = "var(--smtc-foreground-ctrl-activebrand-hover, var(--smtc-foreground-ctrl-brand-hover))"; + +// @public (undocumented) +export const foregroundCtrlActivebrandHoverRaw = "--smtc-foreground-ctrl-activebrand-hover"; + +// @public (undocumented) +export const foregroundCtrlActivebrandPressed = "var(--smtc-foreground-ctrl-activebrand-pressed, var(--smtc-foreground-ctrl-brand-pressed))"; + +// @public (undocumented) +export const foregroundCtrlActivebrandPressedRaw = "--smtc-foreground-ctrl-activebrand-pressed"; + +// @public (undocumented) +export const foregroundCtrlActivebrandRest = "var(--smtc-foreground-ctrl-activebrand-rest, var(--smtc-foreground-ctrl-brand-rest))"; + +// @public (undocumented) +export const foregroundCtrlActivebrandRestRaw = "--smtc-foreground-ctrl-activebrand-rest"; + +// @public (undocumented) +export const foregroundCtrlBrandDisabled = "var(--smtc-foreground-ctrl-brand-disabled)"; + +// @public (undocumented) +export const foregroundCtrlBrandDisabledRaw = "--smtc-foreground-ctrl-brand-disabled"; + +// @public (undocumented) +export const foregroundCtrlBrandHover = "var(--smtc-foreground-ctrl-brand-hover)"; + +// @public (undocumented) +export const foregroundCtrlBrandHoverRaw = "--smtc-foreground-ctrl-brand-hover"; + +// @public (undocumented) +export const foregroundCtrlBrandPressed = "var(--smtc-foreground-ctrl-brand-pressed)"; + +// @public (undocumented) +export const foregroundCtrlBrandPressedRaw = "--smtc-foreground-ctrl-brand-pressed"; + +// @public (undocumented) +export const foregroundCtrlBrandRest = "var(--smtc-foreground-ctrl-brand-rest)"; + +// @public (undocumented) +export const foregroundCtrlBrandRestRaw = "--smtc-foreground-ctrl-brand-rest"; + +// @public (undocumented) +export const foregroundCtrlHintDefault = "var(--smtc-foreground-ctrl-hint-default, unset)"; + +// @public (undocumented) +export const foregroundCtrlHintDefaultRaw = "--smtc-foreground-ctrl-hint-default"; + +// @public (undocumented) +export const foregroundCtrlIconOnneutralDisabled = "var(--smtc-foreground-ctrl-icon-onneutral-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; + +// @public (undocumented) +export const foregroundCtrlIconOnneutralDisabledRaw = "--smtc-foreground-ctrl-icon-onneutral-disabled"; + +// @public (undocumented) +export const foregroundCtrlIconOnneutralHover = "var(--smtc-foreground-ctrl-icon-onneutral-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnneutralHoverRaw = "--smtc-foreground-ctrl-icon-onneutral-hover"; + +// @public (undocumented) +export const foregroundCtrlIconOnneutralPressed = "var(--smtc-foreground-ctrl-icon-onneutral-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnneutralPressedRaw = "--smtc-foreground-ctrl-icon-onneutral-pressed"; + +// @public (undocumented) +export const foregroundCtrlIconOnneutralRest = "var(--smtc-foreground-ctrl-icon-onneutral-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnneutralRestRaw = "--smtc-foreground-ctrl-icon-onneutral-rest"; + +// @public (undocumented) +export const foregroundCtrlIconOnoutlineDisabled = "var(--smtc-foreground-ctrl-icon-onoutline-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; + +// @public (undocumented) +export const foregroundCtrlIconOnoutlineDisabledRaw = "--smtc-foreground-ctrl-icon-onoutline-disabled"; + +// @public (undocumented) +export const foregroundCtrlIconOnoutlineHover = "var(--smtc-foreground-ctrl-icon-onoutline-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnoutlineHoverRaw = "--smtc-foreground-ctrl-icon-onoutline-hover"; + +// @public (undocumented) +export const foregroundCtrlIconOnoutlinePressed = "var(--smtc-foreground-ctrl-icon-onoutline-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnoutlinePressedRaw = "--smtc-foreground-ctrl-icon-onoutline-pressed"; + +// @public (undocumented) +export const foregroundCtrlIconOnoutlineRest = "var(--smtc-foreground-ctrl-icon-onoutline-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnoutlineRestRaw = "--smtc-foreground-ctrl-icon-onoutline-rest"; + +// @public (undocumented) +export const foregroundCtrlIconOnsubtleDisabled = "var(--smtc-foreground-ctrl-icon-onsubtle-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; + +// @public (undocumented) +export const foregroundCtrlIconOnsubtleDisabledRaw = "--smtc-foreground-ctrl-icon-onsubtle-disabled"; + +// @public (undocumented) +export const foregroundCtrlIconOnsubtleHover = "var(--smtc-foreground-ctrl-icon-onsubtle-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnsubtleHoverRaw = "--smtc-foreground-ctrl-icon-onsubtle-hover"; + +// @public (undocumented) +export const foregroundCtrlIconOnsubtlePressed = "var(--smtc-foreground-ctrl-icon-onsubtle-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnsubtlePressedRaw = "--smtc-foreground-ctrl-icon-onsubtle-pressed"; + +// @public (undocumented) +export const foregroundCtrlIconOnsubtleRest = "var(--smtc-foreground-ctrl-icon-onsubtle-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlIconOnsubtleRestRaw = "--smtc-foreground-ctrl-icon-onsubtle-rest"; + +// @public (undocumented) +export const foregroundCtrlNeutralPrimaryDisabled = "var(--smtc-foreground-ctrl-neutral-primary-disabled, var(--colorNeutralForegroundDisabled))"; + +// @public (undocumented) +export const foregroundCtrlNeutralPrimaryDisabledRaw = "--smtc-foreground-ctrl-neutral-primary-disabled"; + +// @public (undocumented) +export const foregroundCtrlNeutralPrimaryHover = "var(--smtc-foreground-ctrl-neutral-primary-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlNeutralPrimaryHoverRaw = "--smtc-foreground-ctrl-neutral-primary-hover"; + +// @public (undocumented) +export const foregroundCtrlNeutralPrimaryPressed = "var(--smtc-foreground-ctrl-neutral-primary-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlNeutralPrimaryPressedRaw = "--smtc-foreground-ctrl-neutral-primary-pressed"; + +// @public (undocumented) +export const foregroundCtrlNeutralPrimaryRest = "var(--smtc-foreground-ctrl-neutral-primary-rest)"; + +// @public (undocumented) +export const foregroundCtrlNeutralPrimaryRestRaw = "--smtc-foreground-ctrl-neutral-primary-rest"; + +// @public (undocumented) +export const foregroundCtrlNeutralSecondaryDisabled = "var(--smtc-foreground-ctrl-neutral-secondary-disabled)"; + +// @public (undocumented) +export const foregroundCtrlNeutralSecondaryDisabledRaw = "--smtc-foreground-ctrl-neutral-secondary-disabled"; + +// @public (undocumented) +export const foregroundCtrlNeutralSecondaryHover = "var(--smtc-foreground-ctrl-neutral-secondary-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const foregroundCtrlNeutralSecondaryHoverRaw = "--smtc-foreground-ctrl-neutral-secondary-hover"; + +// @public (undocumented) +export const foregroundCtrlNeutralSecondaryPressed = "var(--smtc-foreground-ctrl-neutral-secondary-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const foregroundCtrlNeutralSecondaryPressedRaw = "--smtc-foreground-ctrl-neutral-secondary-pressed"; + +// @public (undocumented) +export const foregroundCtrlNeutralSecondaryRest = "var(--smtc-foreground-ctrl-neutral-secondary-rest)"; + +// @public (undocumented) +export const foregroundCtrlNeutralSecondaryRestRaw = "--smtc-foreground-ctrl-neutral-secondary-rest"; + +// @public (undocumented) +export const foregroundCtrlOnactivebrandDisabled = "var(--smtc-foreground-ctrl-onactivebrand-disabled, var(--smtc-foreground-ctrl-onbrand-disabled))"; + +// @public (undocumented) +export const foregroundCtrlOnactivebrandDisabledRaw = "--smtc-foreground-ctrl-onactivebrand-disabled"; + +// @public (undocumented) +export const foregroundCtrlOnactivebrandHover = "var(--smtc-foreground-ctrl-onactivebrand-hover, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnactivebrandHoverRaw = "--smtc-foreground-ctrl-onactivebrand-hover"; + +// @public (undocumented) +export const foregroundCtrlOnactivebrandPressed = "var(--smtc-foreground-ctrl-onactivebrand-pressed, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnactivebrandPressedRaw = "--smtc-foreground-ctrl-onactivebrand-pressed"; + +// @public (undocumented) +export const foregroundCtrlOnactivebrandRest = "var(--smtc-foreground-ctrl-onactivebrand-rest, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnactivebrandRestRaw = "--smtc-foreground-ctrl-onactivebrand-rest"; + +// @public (undocumented) +export const foregroundCtrlOnbrandDisabled = "var(--smtc-foreground-ctrl-onbrand-disabled)"; + +// @public (undocumented) +export const foregroundCtrlOnbrandDisabledRaw = "--smtc-foreground-ctrl-onbrand-disabled"; + +// @public (undocumented) +export const foregroundCtrlOnbrandHover = "var(--smtc-foreground-ctrl-onbrand-hover, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnbrandHoverRaw = "--smtc-foreground-ctrl-onbrand-hover"; + +// @public (undocumented) +export const foregroundCtrlOnbrandPressed = "var(--smtc-foreground-ctrl-onbrand-pressed, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnbrandPressedRaw = "--smtc-foreground-ctrl-onbrand-pressed"; + +// @public (undocumented) +export const foregroundCtrlOnbrandRest = "var(--smtc-foreground-ctrl-onbrand-rest)"; + +// @public (undocumented) +export const foregroundCtrlOnbrandRestRaw = "--smtc-foreground-ctrl-onbrand-rest"; + +// @public (undocumented) +export const foregroundCtrlOnoutlineDisabled = "var(--smtc-foreground-ctrl-onoutline-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; + +// @public (undocumented) +export const foregroundCtrlOnoutlineDisabledRaw = "--smtc-foreground-ctrl-onoutline-disabled"; + +// @public (undocumented) +export const foregroundCtrlOnoutlineHover = "var(--smtc-foreground-ctrl-onoutline-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnoutlineHoverRaw = "--smtc-foreground-ctrl-onoutline-hover"; + +// @public (undocumented) +export const foregroundCtrlOnoutlinePressed = "var(--smtc-foreground-ctrl-onoutline-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnoutlinePressedRaw = "--smtc-foreground-ctrl-onoutline-pressed"; + +// @public (undocumented) +export const foregroundCtrlOnoutlineRest = "var(--smtc-foreground-ctrl-onoutline-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnoutlineRestRaw = "--smtc-foreground-ctrl-onoutline-rest"; + +// @public (undocumented) +export const foregroundCtrlOnsubtleDisabled = "var(--smtc-foreground-ctrl-onsubtle-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; + +// @public (undocumented) +export const foregroundCtrlOnsubtleDisabledRaw = "--smtc-foreground-ctrl-onsubtle-disabled"; + +// @public (undocumented) +export const foregroundCtrlOnsubtleHover = "var(--smtc-foreground-ctrl-onsubtle-hover, var(--smtc-foreground-ctrl-neutral-primary-hover))"; + +// @public (undocumented) +export const foregroundCtrlOnsubtleHoverRaw = "--smtc-foreground-ctrl-onsubtle-hover"; + +// @public (undocumented) +export const foregroundCtrlOnsubtlePressed = "var(--smtc-foreground-ctrl-onsubtle-pressed, var(--smtc-foreground-ctrl-neutral-primary-pressed))"; + +// @public (undocumented) +export const foregroundCtrlOnsubtlePressedRaw = "--smtc-foreground-ctrl-onsubtle-pressed"; + +// @public (undocumented) +export const foregroundCtrlOnsubtleRest = "var(--smtc-foreground-ctrl-onsubtle-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlOnsubtleRestRaw = "--smtc-foreground-ctrl-onsubtle-rest"; + +// @public (undocumented) +export const foregroundCtrlOntransparentDisabled = "var(--smtc-foreground-ctrl-ontransparent-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; + +// @public (undocumented) +export const foregroundCtrlOntransparentDisabledRaw = "--smtc-foreground-ctrl-ontransparent-disabled"; + +// @public (undocumented) +export const foregroundCtrlOntransparentHover = "var(--smtc-foreground-ctrl-ontransparent-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlOntransparentHoverRaw = "--smtc-foreground-ctrl-ontransparent-hover"; + +// @public (undocumented) +export const foregroundCtrlOntransparentPressed = "var(--smtc-foreground-ctrl-ontransparent-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlOntransparentPressedRaw = "--smtc-foreground-ctrl-ontransparent-pressed"; + +// @public (undocumented) +export const foregroundCtrlOntransparentRest = "var(--smtc-foreground-ctrl-ontransparent-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; + +// @public (undocumented) +export const foregroundCtrlOntransparentRestRaw = "--smtc-foreground-ctrl-ontransparent-rest"; + +// @public (undocumented) +export const gapBetweenContentLarge = "var(--smtc-gap-between-content-large)"; + +// @public (undocumented) +export const gapBetweenContentLargeRaw = "--smtc-gap-between-content-large"; + +// @public (undocumented) +export const gapBetweenContentMedium = "var(--smtc-gap-between-content-medium)"; + +// @public (undocumented) +export const gapBetweenContentMediumRaw = "--smtc-gap-between-content-medium"; + +// @public (undocumented) +export const gapBetweenContentNone = "var(--smtc-gap-between-content-none)"; + +// @public (undocumented) +export const gapBetweenContentNoneRaw = "--smtc-gap-between-content-none"; + +// @public (undocumented) +export const gapBetweenContentSmall = "var(--smtc-gap-between-content-small)"; + +// @public (undocumented) +export const gapBetweenContentSmallRaw = "--smtc-gap-between-content-small"; + +// @public (undocumented) +export const gapBetweenContentXlarge = "var(--smtc-gap-between-content-xlarge)"; + +// @public (undocumented) +export const gapBetweenContentXlargeRaw = "--smtc-gap-between-content-xlarge"; + +// @public (undocumented) +export const gapBetweenContentXsmall = "var(--smtc-gap-between-content-xsmall)"; + +// @public (undocumented) +export const gapBetweenContentXsmallRaw = "--smtc-gap-between-content-xsmall"; + +// @public (undocumented) +export const gapBetweenContentXxlarge = "var(--smtc-gap-between-content-xxlarge)"; + +// @public (undocumented) +export const gapBetweenContentXxlargeRaw = "--smtc-gap-between-content-xxlarge"; + +// @public (undocumented) +export const gapBetweenContentXxsmall = "var(--smtc-gap-between-content-xxsmall)"; + +// @public (undocumented) +export const gapBetweenContentXxsmallRaw = "--smtc-gap-between-content-xxsmall"; + +// @public (undocumented) +export const gapBetweenCtrlDefault = "var(--smtc-gap-between-ctrl-default)"; + +// @public (undocumented) +export const gapBetweenCtrlDefaultRaw = "--smtc-gap-between-ctrl-default"; + +// @public (undocumented) +export const gapBetweenCtrlLgDefault = "var(--smtc-gap-between-ctrl-lg-default)"; + +// @public (undocumented) +export const gapBetweenCtrlLgDefaultRaw = "--smtc-gap-between-ctrl-lg-default"; + +// @public (undocumented) +export const gapBetweenCtrlLgNested = "var(--smtc-gap-between-ctrl-lg-nested, var(--smtc-padding-ctrl-lg-tonestedcontrol))"; + +// @public (undocumented) +export const gapBetweenCtrlLgNestedRaw = "--smtc-gap-between-ctrl-lg-nested"; + +// @public (undocumented) +export const gapBetweenCtrlNested = "var(--smtc-gap-between-ctrl-nested, var(--smtc-padding-ctrl-tonestedcontrol))"; + +// @public (undocumented) +export const gapBetweenCtrlNestedRaw = "--smtc-gap-between-ctrl-nested"; + +// @public (undocumented) +export const gapBetweenCtrlSmDefault = "var(--smtc-gap-between-ctrl-sm-default)"; + +// @public (undocumented) +export const gapBetweenCtrlSmDefaultRaw = "--smtc-gap-between-ctrl-sm-default"; + +// @public (undocumented) +export const gapBetweenCtrlSmNested = "var(--smtc-gap-between-ctrl-sm-nested, var(--smtc-padding-ctrl-sm-tonestedcontrol))"; + +// @public (undocumented) +export const gapBetweenCtrlSmNestedRaw = "--smtc-gap-between-ctrl-sm-nested"; + +// @public (undocumented) +export const gapCard = "var(--smtc-gap-card, var(--smtc-gap-between-content-medium))"; + +// @public (undocumented) +export const gapCardRaw = "--smtc-gap-card"; + +// @public (undocumented) +export const gapInsideCtrlDefault = "var(--smtc-gap-inside-ctrl-default)"; + +// @public (undocumented) +export const gapInsideCtrlDefaultRaw = "--smtc-gap-inside-ctrl-default"; + +// @public (undocumented) +export const gapInsideCtrlLgDefault = "var(--smtc-gap-inside-ctrl-lg-default)"; + +// @public (undocumented) +export const gapInsideCtrlLgDefaultRaw = "--smtc-gap-inside-ctrl-lg-default"; + +// @public (undocumented) +export const gapInsideCtrlLgTolabel = "var(--smtc-gap-inside-ctrl-lg-tolabel)"; + +// @public (undocumented) +export const gapInsideCtrlLgTolabelRaw = "--smtc-gap-inside-ctrl-lg-tolabel"; + +// @public (undocumented) +export const gapInsideCtrlLgTosecondaryicon = "var(--smtc-gap-inside-ctrl-lg-tosecondaryicon)"; + +// @public (undocumented) +export const gapInsideCtrlLgTosecondaryiconRaw = "--smtc-gap-inside-ctrl-lg-tosecondaryicon"; + +// @public (undocumented) +export const gapInsideCtrlSmDefault = "var(--smtc-gap-inside-ctrl-sm-default)"; + +// @public (undocumented) +export const gapInsideCtrlSmDefaultRaw = "--smtc-gap-inside-ctrl-sm-default"; + +// @public (undocumented) +export const gapInsideCtrlSmTolabel = "var(--smtc-gap-inside-ctrl-sm-tolabel)"; + +// @public (undocumented) +export const gapInsideCtrlSmTolabelRaw = "--smtc-gap-inside-ctrl-sm-tolabel"; + +// @public (undocumented) +export const gapInsideCtrlSmTosecondaryicon = "var(--smtc-gap-inside-ctrl-sm-tosecondaryicon)"; + +// @public (undocumented) +export const gapInsideCtrlSmTosecondaryiconRaw = "--smtc-gap-inside-ctrl-sm-tosecondaryicon"; + +// @public (undocumented) +export const gapInsideCtrlTolabel = "var(--smtc-gap-inside-ctrl-tolabel)"; + +// @public (undocumented) +export const gapInsideCtrlTolabelRaw = "--smtc-gap-inside-ctrl-tolabel"; + +// @public (undocumented) +export const gapInsideCtrlTosecondaryicon = "var(--smtc-gap-inside-ctrl-tosecondaryicon)"; + +// @public (undocumented) +export const gapInsideCtrlTosecondaryiconRaw = "--smtc-gap-inside-ctrl-tosecondaryicon"; + +// @public (undocumented) +export const gapList = "var(--smtc-gap-list, var(--smtc-gap-between-content-xxsmall))"; + +// @public (undocumented) +export const gapListRaw = "--smtc-gap-list"; + +// @public (undocumented) +export const gapTextLarge = "var(--smtc-gap-text-large, var(--smtc-gap-between-content-xsmall))"; + +// @public (undocumented) +export const gapTextLargeRaw = "--smtc-gap-text-large"; + +// @public (undocumented) +export const gapTextSmall = "var(--smtc-gap-text-small, var(--smtc-gap-between-content-xxsmall))"; + +// @public (undocumented) +export const gapTextSmallRaw = "--smtc-gap-text-small"; + +// @public (undocumented) +export const iconthemeCtrlChevronDefault = "var(--smtc-icontheme-ctrl-chevron-default, var(--smtc-icontheme-ctrl-default-rest))"; + +// @public (undocumented) +export const iconthemeCtrlChevronDefaultRaw = "--smtc-icontheme-ctrl-chevron-default"; + +// @public (undocumented) +export const iconthemeCtrlChevronSelected = "var(--smtc-icontheme-ctrl-chevron-selected, var(--smtc-icontheme-ctrl-default-selected))"; + +// @public (undocumented) +export const iconthemeCtrlChevronSelectedRaw = "--smtc-icontheme-ctrl-chevron-selected"; + +// @public (undocumented) +export const iconthemeCtrlDefaultHover = "var(--smtc-icontheme-ctrl-default-hover, var(--smtc-icontheme-ctrl-default-rest))"; + +// @public (undocumented) +export const iconthemeCtrlDefaultHoverRaw = "--smtc-icontheme-ctrl-default-hover"; + +// @public (undocumented) +export const iconthemeCtrlDefaultPressed = "var(--smtc-icontheme-ctrl-default-pressed, var(--smtc-icontheme-ctrl-default-rest))"; + +// @public (undocumented) +export const iconthemeCtrlDefaultPressedRaw = "--smtc-icontheme-ctrl-default-pressed"; + +// @public (undocumented) +export const iconthemeCtrlDefaultRest = "var(--smtc-icontheme-ctrl-default-rest)"; + +// @public (undocumented) +export const iconthemeCtrlDefaultRestRaw = "--smtc-icontheme-ctrl-default-rest"; + +// @public (undocumented) +export const iconthemeCtrlDefaultSelected = "var(--smtc-icontheme-ctrl-default-selected)"; + +// @public (undocumented) +export const iconthemeCtrlDefaultSelectedRaw = "--smtc-icontheme-ctrl-default-selected"; + +// @public (undocumented) +export const iconthemeCtrlSubtleHover = "var(--smtc-icontheme-ctrl-subtle-hover, var(--smtc-icontheme-ctrl-default-rest))"; + +// @public (undocumented) +export const iconthemeCtrlSubtleHoverRaw = "--smtc-icontheme-ctrl-subtle-hover"; + +// @public (undocumented) +export const iconthemeCtrlSubtlePressed = "var(--smtc-icontheme-ctrl-subtle-pressed, var(--smtc-icontheme-ctrl-default-rest))"; + +// @public (undocumented) +export const iconthemeCtrlSubtlePressedRaw = "--smtc-icontheme-ctrl-subtle-pressed"; + +// @public (undocumented) +export const iconthemeCtrlSubtleRest = "var(--smtc-icontheme-ctrl-subtle-rest, var(--smtc-icontheme-ctrl-default-rest))"; + +// @public (undocumented) +export const iconthemeCtrlSubtleRestRaw = "--smtc-icontheme-ctrl-subtle-rest"; + +// @public (undocumented) +export const iconthemeCtrlSubtleSelected = "var(--smtc-icontheme-ctrl-subtle-selected, var(--smtc-icontheme-ctrl-default-selected))"; + +// @public (undocumented) +export const iconthemeCtrlSubtleSelectedRaw = "--smtc-icontheme-ctrl-subtle-selected"; + +// @public (undocumented) +export const materialAcrylicBlur = "var(--smtc-material-acrylic-blur)"; + +// @public (undocumented) +export const materialAcrylicBlurRaw = "--smtc-material-acrylic-blur"; + +// @public (undocumented) +export const materialAcrylicDefaultColorblend = "var(--smtc-material-acrylic-default-colorblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialAcrylicDefaultColorblendRaw = "--smtc-material-acrylic-default-colorblend"; + +// @public (undocumented) +export const materialAcrylicDefaultLumblend = "var(--smtc-material-acrylic-default-lumblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialAcrylicDefaultLumblendRaw = "--smtc-material-acrylic-default-lumblend"; + +// @public (undocumented) +export const materialAcrylicDefaultSolid = "var(--smtc-material-acrylic-default-solid, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialAcrylicDefaultSolidRaw = "--smtc-material-acrylic-default-solid"; + +// @public (undocumented) +export const materialAcrylicShellDefaultColorblend = "var(--smtc-material-acrylic-shell-default-colorblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialAcrylicShellDefaultColorblendRaw = "--smtc-material-acrylic-shell-default-colorblend"; + +// @public (undocumented) +export const materialAcrylicShellDefaultLumblend = "var(--smtc-material-acrylic-shell-default-lumblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialAcrylicShellDefaultLumblendRaw = "--smtc-material-acrylic-shell-default-lumblend"; + +// @public (undocumented) +export const materialAcrylicShellDefaultSolid = "var(--smtc-material-acrylic-shell-default-solid, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialAcrylicShellDefaultSolidRaw = "--smtc-material-acrylic-shell-default-solid"; + +// @public (undocumented) +export const materialMicaBlur = "var(--smtc-material-mica-blur)"; + +// @public (undocumented) +export const materialMicaBlurRaw = "--smtc-material-mica-blur"; + +// @public (undocumented) +export const materialMicaDarkerColorblend = "var(--smtc-material-mica-darker-colorblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaDarkerColorblendRaw = "--smtc-material-mica-darker-colorblend"; + +// @public (undocumented) +export const materialMicaDarkerLumblend = "var(--smtc-material-mica-darker-lumblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaDarkerLumblendRaw = "--smtc-material-mica-darker-lumblend"; + +// @public (undocumented) +export const materialMicaDarkerSolid = "var(--smtc-material-mica-darker-solid, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaDarkerSolidRaw = "--smtc-material-mica-darker-solid"; + +// @public (undocumented) +export const materialMicaDefaultColorblend = "var(--smtc-material-mica-default-colorblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaDefaultColorblendRaw = "--smtc-material-mica-default-colorblend"; + +// @public (undocumented) +export const materialMicaDefaultLumblend = "var(--smtc-material-mica-default-lumblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaDefaultLumblendRaw = "--smtc-material-mica-default-lumblend"; + +// @public (undocumented) +export const materialMicaDefaultSolid = "var(--smtc-material-mica-default-solid, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaDefaultSolidRaw = "--smtc-material-mica-default-solid"; + +// @public (undocumented) +export const materialMicaThinColorblend = "var(--smtc-material-mica-thin-colorblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaThinColorblendRaw = "--smtc-material-mica-thin-colorblend"; + +// @public (undocumented) +export const materialMicaThinLumblend = "var(--smtc-material-mica-thin-lumblend, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaThinLumblendRaw = "--smtc-material-mica-thin-lumblend"; + +// @public (undocumented) +export const materialMicaThinSolid = "var(--smtc-material-mica-thin-solid, var(--smtc-background-layer-primarysolid))"; + +// @public (undocumented) +export const materialMicaThinSolidRaw = "--smtc-material-mica-thin-solid"; + +// @public (undocumented) +export const nullColor = "var(--smtc-null-color)"; + +// @public (undocumented) +export const nullColorRaw = "--smtc-null-color"; + +// @public (undocumented) +export const nullNumber = "var(--smtc-null-number)"; + +// @public (undocumented) +export const nullNumberRaw = "--smtc-null-number"; + +// @public (undocumented) +export const nullString = "var(--smtc-null-string)"; + +// @public (undocumented) +export const nullStringRaw = "--smtc-null-string"; + +// @public (undocumented) +export const paddingCardNestedimage = "var(--smtc-padding-card-nestedimage, var(--smtc-padding-content-align-default))"; + +// @public (undocumented) +export const paddingCardNestedimageRaw = "--smtc-padding-card-nestedimage"; + +// @public (undocumented) +export const paddingContentAlignDefault = "var(--smtc-padding-content-align-default)"; + +// @public (undocumented) +export const paddingContentAlignDefaultRaw = "--smtc-padding-content-align-default"; + +// @public (undocumented) +export const paddingContentAlignOutdentIcononsubtle = "var(--smtc-padding-content-align-outdent-icononsubtle)"; + +// @public (undocumented) +export const paddingContentAlignOutdentIcononsubtleRaw = "--smtc-padding-content-align-outdent-icononsubtle"; + +// @public (undocumented) +export const paddingContentAlignOutdentTextonsubtle = "var(--smtc-padding-content-align-outdent-textonsubtle)"; + +// @public (undocumented) +export const paddingContentAlignOutdentTextonsubtleRaw = "--smtc-padding-content-align-outdent-textonsubtle"; + +// @public (undocumented) +export const paddingContentLarge = "var(--smtc-padding-content-large)"; + +// @public (undocumented) +export const paddingContentLargeRaw = "--smtc-padding-content-large"; + +// @public (undocumented) +export const paddingContentMedium = "var(--smtc-padding-content-medium)"; + +// @public (undocumented) +export const paddingContentMediumRaw = "--smtc-padding-content-medium"; + +// @public (undocumented) +export const paddingContentNone = "var(--smtc-padding-content-none)"; + +// @public (undocumented) +export const paddingContentNoneRaw = "--smtc-padding-content-none"; + +// @public (undocumented) +export const paddingContentSmall = "var(--smtc-padding-content-small)"; + +// @public (undocumented) +export const paddingContentSmallRaw = "--smtc-padding-content-small"; + +// @public (undocumented) +export const paddingContentXlarge = "var(--smtc-padding-content-xlarge)"; + +// @public (undocumented) +export const paddingContentXlargeRaw = "--smtc-padding-content-xlarge"; + +// @public (undocumented) +export const paddingContentXsmall = "var(--smtc-padding-content-xsmall)"; + +// @public (undocumented) +export const paddingContentXsmallRaw = "--smtc-padding-content-xsmall"; + +// @public (undocumented) +export const paddingContentXxlarge = "var(--smtc-padding-content-xxlarge)"; + +// @public (undocumented) +export const paddingContentXxlargeRaw = "--smtc-padding-content-xxlarge"; + +// @public (undocumented) +export const paddingContentXxsmall = "var(--smtc-padding-content-xxsmall)"; + +// @public (undocumented) +export const paddingContentXxsmallRaw = "--smtc-padding-content-xxsmall"; + +// @public (undocumented) +export const paddingContentXxxlarge = "var(--smtc-padding-content-xxxlarge)"; + +// @public (undocumented) +export const paddingContentXxxlargeRaw = "--smtc-padding-content-xxxlarge"; + +// @public (undocumented) +export const paddingCtrlHorizontalDefault = "var(--smtc-padding-ctrl-horizontal-default)"; + +// @public (undocumented) +export const paddingCtrlHorizontalDefaultRaw = "--smtc-padding-ctrl-horizontal-default"; + +// @public (undocumented) +export const paddingCtrlHorizontalIcononly = "var(--smtc-padding-ctrl-horizontal-icononly)"; + +// @public (undocumented) +export const paddingCtrlHorizontalIcononlyRaw = "--smtc-padding-ctrl-horizontal-icononly"; + +// @public (undocumented) +export const paddingCtrlLgHorizontalDefault = "var(--smtc-padding-ctrl-lg-horizontal-default)"; + +// @public (undocumented) +export const paddingCtrlLgHorizontalDefaultRaw = "--smtc-padding-ctrl-lg-horizontal-default"; + +// @public (undocumented) +export const paddingCtrlLgHorizontalIcononly = "var(--smtc-padding-ctrl-lg-horizontal-icononly)"; + +// @public (undocumented) +export const paddingCtrlLgHorizontalIcononlyRaw = "--smtc-padding-ctrl-lg-horizontal-icononly"; + +// @public (undocumented) +export const paddingCtrlLgTextbottom = "var(--smtc-padding-ctrl-lg-textbottom, var(--smtc-padding-ctrl-lg-texttop))"; + +// @public (undocumented) +export const paddingCtrlLgTextbottomRaw = "--smtc-padding-ctrl-lg-textbottom"; + +// @public (undocumented) +export const paddingCtrlLgTexttop = "var(--smtc-padding-ctrl-lg-texttop)"; + +// @public (undocumented) +export const paddingCtrlLgTexttopRaw = "--smtc-padding-ctrl-lg-texttop"; + +// @public (undocumented) +export const paddingCtrlLgTonestedcontrol = "var(--smtc-padding-ctrl-lg-tonestedcontrol)"; + +// @public (undocumented) +export const paddingCtrlLgTonestedcontrolRaw = "--smtc-padding-ctrl-lg-tonestedcontrol"; + +// @public (undocumented) +export const paddingCtrlSmHorizontalDefault = "var(--smtc-padding-ctrl-sm-horizontal-default)"; + +// @public (undocumented) +export const paddingCtrlSmHorizontalDefaultRaw = "--smtc-padding-ctrl-sm-horizontal-default"; + +// @public (undocumented) +export const paddingCtrlSmHorizontalIcononly = "var(--smtc-padding-ctrl-sm-horizontal-icononly)"; + +// @public (undocumented) +export const paddingCtrlSmHorizontalIcononlyRaw = "--smtc-padding-ctrl-sm-horizontal-icononly"; + +// @public (undocumented) +export const paddingCtrlSmTextbottom = "var(--smtc-padding-ctrl-sm-textbottom, var(--smtc-padding-ctrl-sm-texttop))"; + +// @public (undocumented) +export const paddingCtrlSmTextbottomRaw = "--smtc-padding-ctrl-sm-textbottom"; + +// @public (undocumented) +export const paddingCtrlSmTexttop = "var(--smtc-padding-ctrl-sm-texttop)"; + +// @public (undocumented) +export const paddingCtrlSmTexttopRaw = "--smtc-padding-ctrl-sm-texttop"; + +// @public (undocumented) +export const paddingCtrlSmTonestedcontrol = "var(--smtc-padding-ctrl-sm-tonestedcontrol)"; + +// @public (undocumented) +export const paddingCtrlSmTonestedcontrolRaw = "--smtc-padding-ctrl-sm-tonestedcontrol"; + +// @public (undocumented) +export const paddingCtrlTextbottom = "var(--smtc-padding-ctrl-textbottom, var(--smtc-padding-ctrl-texttop))"; + +// @public (undocumented) +export const paddingCtrlTextbottomRaw = "--smtc-padding-ctrl-textbottom"; + +// @public (undocumented) +export const paddingCtrlTextside = "var(--smtc-padding-ctrl-textside)"; + +// @public (undocumented) +export const paddingCtrlTextsideRaw = "--smtc-padding-ctrl-textside"; + +// @public (undocumented) +export const paddingCtrlTexttop = "var(--smtc-padding-ctrl-texttop)"; + +// @public (undocumented) +export const paddingCtrlTexttopRaw = "--smtc-padding-ctrl-texttop"; + +// @public (undocumented) +export const paddingCtrlTonestedcontrol = "var(--smtc-padding-ctrl-tonestedcontrol)"; + +// @public (undocumented) +export const paddingCtrlTonestedcontrolRaw = "--smtc-padding-ctrl-tonestedcontrol"; + +// @public (undocumented) +export const paddingFlyoutDefault = "var(--smtc-padding-flyout-default, var(--smtc-padding-content-align-outdent-textonsubtle))"; + +// @public (undocumented) +export const paddingFlyoutDefaultRaw = "--smtc-padding-flyout-default"; + +// @public (undocumented) +export const paddingToolbarInside = "var(--smtc-padding-toolbar-inside, var(--smtc-padding-content-xsmall))"; + +// @public (undocumented) +export const paddingToolbarInsideRaw = "--smtc-padding-toolbar-inside"; + +// @public (undocumented) +export const paddingToolbarOutside = "var(--smtc-padding-toolbar-outside, var(--smtc-padding-content-xxsmall))"; + +// @public (undocumented) +export const paddingToolbarOutsideRaw = "--smtc-padding-toolbar-outside"; + +// @public (undocumented) +export const shadowCardDisabledKeyBlur = "var(--smtc-shadow-card-disabled-key-blur, unset)"; + +// @public (undocumented) +export const shadowCardDisabledKeyBlurRaw = "--smtc-shadow-card-disabled-key-blur"; + +// @public (undocumented) +export const shadowCardDisabledKeyColor = "var(--smtc-shadow-card-disabled-key-color, unset)"; + +// @public (undocumented) +export const shadowCardDisabledKeyColorRaw = "--smtc-shadow-card-disabled-key-color"; + +// @public (undocumented) +export const shadowCardDisabledKeyX = "var(--smtc-shadow-card-disabled-key-x, unset)"; + +// @public (undocumented) +export const shadowCardDisabledKeyXRaw = "--smtc-shadow-card-disabled-key-x"; + +// @public (undocumented) +export const shadowCardDisabledKeyY = "var(--smtc-shadow-card-disabled-key-y, unset)"; + +// @public (undocumented) +export const shadowCardDisabledKeyYRaw = "--smtc-shadow-card-disabled-key-y"; + +// @public (undocumented) +export const shadowCardHoverKeyBlur = "var(--smtc-shadow-card-hover-key-blur, unset)"; + +// @public (undocumented) +export const shadowCardHoverKeyBlurRaw = "--smtc-shadow-card-hover-key-blur"; + +// @public (undocumented) +export const shadowCardHoverKeyColor = "var(--smtc-shadow-card-hover-key-color, unset)"; + +// @public (undocumented) +export const shadowCardHoverKeyColorRaw = "--smtc-shadow-card-hover-key-color"; + +// @public (undocumented) +export const shadowCardHoverKeyX = "var(--smtc-shadow-card-hover-key-x, unset)"; + +// @public (undocumented) +export const shadowCardHoverKeyXRaw = "--smtc-shadow-card-hover-key-x"; + +// @public (undocumented) +export const shadowCardHoverKeyY = "var(--smtc-shadow-card-hover-key-y, unset)"; + +// @public (undocumented) +export const shadowCardHoverKeyYRaw = "--smtc-shadow-card-hover-key-y"; + +// @public (undocumented) +export const shadowCardPressedKeyBlur = "var(--smtc-shadow-card-pressed-key-blur, unset)"; + +// @public (undocumented) +export const shadowCardPressedKeyBlurRaw = "--smtc-shadow-card-pressed-key-blur"; + +// @public (undocumented) +export const shadowCardPressedKeyColor = "var(--smtc-shadow-card-pressed-key-color, unset)"; + +// @public (undocumented) +export const shadowCardPressedKeyColorRaw = "--smtc-shadow-card-pressed-key-color"; + +// @public (undocumented) +export const shadowCardPressedKeyX = "var(--smtc-shadow-card-pressed-key-x, unset)"; + +// @public (undocumented) +export const shadowCardPressedKeyXRaw = "--smtc-shadow-card-pressed-key-x"; + +// @public (undocumented) +export const shadowCardPressedKeyY = "var(--smtc-shadow-card-pressed-key-y, unset)"; + +// @public (undocumented) +export const shadowCardPressedKeyYRaw = "--smtc-shadow-card-pressed-key-y"; + +// @public (undocumented) +export const shadowCardRestAmbientBlur = "var(--smtc-shadow-card-rest-ambient-blur, unset)"; + +// @public (undocumented) +export const shadowCardRestAmbientBlurRaw = "--smtc-shadow-card-rest-ambient-blur"; + +// @public (undocumented) +export const shadowCardRestAmbientColor = "var(--smtc-shadow-card-rest-ambient-color, unset)"; + +// @public (undocumented) +export const shadowCardRestAmbientColorRaw = "--smtc-shadow-card-rest-ambient-color"; + +// @public (undocumented) +export const shadowCardRestAmbientX = "var(--smtc-shadow-card-rest-ambient-x, unset)"; + +// @public (undocumented) +export const shadowCardRestAmbientXRaw = "--smtc-shadow-card-rest-ambient-x"; + +// @public (undocumented) +export const shadowCardRestAmbientY = "var(--smtc-shadow-card-rest-ambient-y, unset)"; + +// @public (undocumented) +export const shadowCardRestAmbientYRaw = "--smtc-shadow-card-rest-ambient-y"; + +// @public (undocumented) +export const shadowCardRestKeyBlur = "var(--smtc-shadow-card-rest-key-blur, unset)"; + +// @public (undocumented) +export const shadowCardRestKeyBlurRaw = "--smtc-shadow-card-rest-key-blur"; + +// @public (undocumented) +export const shadowCardRestKeyColor = "var(--smtc-shadow-card-rest-key-color, unset)"; + +// @public (undocumented) +export const shadowCardRestKeyColorRaw = "--smtc-shadow-card-rest-key-color"; + +// @public (undocumented) +export const shadowCardRestKeyX = "var(--smtc-shadow-card-rest-key-x, unset)"; + +// @public (undocumented) +export const shadowCardRestKeyXRaw = "--smtc-shadow-card-rest-key-x"; + +// @public (undocumented) +export const shadowCardRestKeyY = "var(--smtc-shadow-card-rest-key-y, unset)"; + +// @public (undocumented) +export const shadowCardRestKeyYRaw = "--smtc-shadow-card-rest-key-y"; + +// @public (undocumented) +export const shadowCtrlOndragAmbientBlur = "var(--smtc-shadow-ctrl-ondrag-ambient-blur, var(--smtc-shadow-flyout-ambient-blur))"; + +// @public (undocumented) +export const shadowCtrlOndragAmbientBlurRaw = "--smtc-shadow-ctrl-ondrag-ambient-blur"; + +// @public (undocumented) +export const shadowCtrlOndragAmbientColor = "var(--smtc-shadow-ctrl-ondrag-ambient-color, var(--smtc-shadow-flyout-ambient-color))"; + +// @public (undocumented) +export const shadowCtrlOndragAmbientColorRaw = "--smtc-shadow-ctrl-ondrag-ambient-color"; + +// @public (undocumented) +export const shadowCtrlOndragAmbientX = "var(--smtc-shadow-ctrl-ondrag-ambient-x, var(--smtc-shadow-flyout-ambient-x))"; + +// @public (undocumented) +export const shadowCtrlOndragAmbientXRaw = "--smtc-shadow-ctrl-ondrag-ambient-x"; + +// @public (undocumented) +export const shadowCtrlOndragAmbientY = "var(--smtc-shadow-ctrl-ondrag-ambient-y, var(--smtc-shadow-flyout-ambient-y))"; + +// @public (undocumented) +export const shadowCtrlOndragAmbientYRaw = "--smtc-shadow-ctrl-ondrag-ambient-y"; + +// @public (undocumented) +export const shadowCtrlOndragKeyBlur = "var(--smtc-shadow-ctrl-ondrag-key-blur, var(--smtc-shadow-flyout-key-blur))"; + +// @public (undocumented) +export const shadowCtrlOndragKeyBlurRaw = "--smtc-shadow-ctrl-ondrag-key-blur"; + +// @public (undocumented) +export const shadowCtrlOndragKeyColor = "var(--smtc-shadow-ctrl-ondrag-key-color, var(--smtc-shadow-flyout-key-color))"; + +// @public (undocumented) +export const shadowCtrlOndragKeyColorRaw = "--smtc-shadow-ctrl-ondrag-key-color"; + +// @public (undocumented) +export const shadowCtrlOndragKeyX = "var(--smtc-shadow-ctrl-ondrag-key-x, var(--smtc-shadow-flyout-key-x))"; + +// @public (undocumented) +export const shadowCtrlOndragKeyXRaw = "--smtc-shadow-ctrl-ondrag-key-x"; + +// @public (undocumented) +export const shadowCtrlOndragKeyY = "var(--smtc-shadow-ctrl-ondrag-key-y, var(--smtc-shadow-flyout-key-y))"; + +// @public (undocumented) +export const shadowCtrlOndragKeyYRaw = "--smtc-shadow-ctrl-ondrag-key-y"; + +// @public (undocumented) +export const shadowFlyoutAmbientBlur = "var(--smtc-shadow-flyout-ambient-blur)"; + +// @public (undocumented) +export const shadowFlyoutAmbientBlurRaw = "--smtc-shadow-flyout-ambient-blur"; + +// @public (undocumented) +export const shadowFlyoutAmbientColor = "var(--smtc-shadow-flyout-ambient-color)"; + +// @public (undocumented) +export const shadowFlyoutAmbientColorRaw = "--smtc-shadow-flyout-ambient-color"; + +// @public (undocumented) +export const shadowFlyoutAmbientX = "var(--smtc-shadow-flyout-ambient-x)"; + +// @public (undocumented) +export const shadowFlyoutAmbientXRaw = "--smtc-shadow-flyout-ambient-x"; + +// @public (undocumented) +export const shadowFlyoutAmbientY = "var(--smtc-shadow-flyout-ambient-y)"; + +// @public (undocumented) +export const shadowFlyoutAmbientYRaw = "--smtc-shadow-flyout-ambient-y"; + +// @public (undocumented) +export const shadowFlyoutKeyBlur = "var(--smtc-shadow-flyout-key-blur)"; + +// @public (undocumented) +export const shadowFlyoutKeyBlurRaw = "--smtc-shadow-flyout-key-blur"; + +// @public (undocumented) +export const shadowFlyoutKeyColor = "var(--smtc-shadow-flyout-key-color)"; + +// @public (undocumented) +export const shadowFlyoutKeyColorRaw = "--smtc-shadow-flyout-key-color"; + +// @public (undocumented) +export const shadowFlyoutKeyX = "var(--smtc-shadow-flyout-key-x)"; + +// @public (undocumented) +export const shadowFlyoutKeyXRaw = "--smtc-shadow-flyout-key-x"; + +// @public (undocumented) +export const shadowFlyoutKeyY = "var(--smtc-shadow-flyout-key-y)"; + +// @public (undocumented) +export const shadowFlyoutKeyYRaw = "--smtc-shadow-flyout-key-y"; + +// @public (undocumented) +export const shadowLayerAmbientBlur = "var(--smtc-shadow-layer-ambient-blur, unset)"; + +// @public (undocumented) +export const shadowLayerAmbientBlurRaw = "--smtc-shadow-layer-ambient-blur"; + +// @public (undocumented) +export const shadowLayerAmbientColor = "var(--smtc-shadow-layer-ambient-color, unset)"; + +// @public (undocumented) +export const shadowLayerAmbientColorRaw = "--smtc-shadow-layer-ambient-color"; + +// @public (undocumented) +export const shadowLayerAmbientX = "var(--smtc-shadow-layer-ambient-x, unset)"; + +// @public (undocumented) +export const shadowLayerAmbientXRaw = "--smtc-shadow-layer-ambient-x"; + +// @public (undocumented) +export const shadowLayerAmbientY = "var(--smtc-shadow-layer-ambient-y, unset)"; + +// @public (undocumented) +export const shadowLayerAmbientYRaw = "--smtc-shadow-layer-ambient-y"; + +// @public (undocumented) +export const shadowLayerKeyBlur = "var(--smtc-shadow-layer-key-blur, unset)"; + +// @public (undocumented) +export const shadowLayerKeyBlurRaw = "--smtc-shadow-layer-key-blur"; + +// @public (undocumented) +export const shadowLayerKeyColor = "var(--smtc-shadow-layer-key-color, unset)"; + +// @public (undocumented) +export const shadowLayerKeyColorRaw = "--smtc-shadow-layer-key-color"; + +// @public (undocumented) +export const shadowLayerKeyX = "var(--smtc-shadow-layer-key-x, unset)"; + +// @public (undocumented) +export const shadowLayerKeyXRaw = "--smtc-shadow-layer-key-x"; + +// @public (undocumented) +export const shadowLayerKeyY = "var(--smtc-shadow-layer-key-y, unset)"; + +// @public (undocumented) +export const shadowLayerKeyYRaw = "--smtc-shadow-layer-key-y"; + +// @public (undocumented) +export const shadowToolbarAmbientBlur = "var(--smtc-shadow-toolbar-ambient-blur)"; + +// @public (undocumented) +export const shadowToolbarAmbientBlurRaw = "--smtc-shadow-toolbar-ambient-blur"; + +// @public (undocumented) +export const shadowToolbarAmbientColor = "var(--smtc-shadow-toolbar-ambient-color)"; + +// @public (undocumented) +export const shadowToolbarAmbientColorRaw = "--smtc-shadow-toolbar-ambient-color"; + +// @public (undocumented) +export const shadowToolbarAmbientX = "var(--smtc-shadow-toolbar-ambient-x)"; + +// @public (undocumented) +export const shadowToolbarAmbientXRaw = "--smtc-shadow-toolbar-ambient-x"; + +// @public (undocumented) +export const shadowToolbarAmbientY = "var(--smtc-shadow-toolbar-ambient-y)"; + +// @public (undocumented) +export const shadowToolbarAmbientYRaw = "--smtc-shadow-toolbar-ambient-y"; + +// @public (undocumented) +export const shadowToolbarKeyBlur = "var(--smtc-shadow-toolbar-key-blur)"; + +// @public (undocumented) +export const shadowToolbarKeyBlurRaw = "--smtc-shadow-toolbar-key-blur"; + +// @public (undocumented) +export const shadowToolbarKeyColor = "var(--smtc-shadow-toolbar-key-color)"; + +// @public (undocumented) +export const shadowToolbarKeyColorRaw = "--smtc-shadow-toolbar-key-color"; + +// @public (undocumented) +export const shadowToolbarKeyX = "var(--smtc-shadow-toolbar-key-x)"; + +// @public (undocumented) +export const shadowToolbarKeyXRaw = "--smtc-shadow-toolbar-key-x"; + +// @public (undocumented) +export const shadowToolbarKeyY = "var(--smtc-shadow-toolbar-key-y)"; + +// @public (undocumented) +export const shadowToolbarKeyYRaw = "--smtc-shadow-toolbar-key-y"; + +// @public (undocumented) +export const shadowWindowActiveAmbientBlur = "var(--smtc-shadow-window-active-ambient-blur)"; + +// @public (undocumented) +export const shadowWindowActiveAmbientBlurRaw = "--smtc-shadow-window-active-ambient-blur"; + +// @public (undocumented) +export const shadowWindowActiveAmbientColor = "var(--smtc-shadow-window-active-ambient-color)"; + +// @public (undocumented) +export const shadowWindowActiveAmbientColorRaw = "--smtc-shadow-window-active-ambient-color"; + +// @public (undocumented) +export const shadowWindowActiveAmbientX = "var(--smtc-shadow-window-active-ambient-x)"; + +// @public (undocumented) +export const shadowWindowActiveAmbientXRaw = "--smtc-shadow-window-active-ambient-x"; + +// @public (undocumented) +export const shadowWindowActiveAmbientY = "var(--smtc-shadow-window-active-ambient-y)"; + +// @public (undocumented) +export const shadowWindowActiveAmbientYRaw = "--smtc-shadow-window-active-ambient-y"; + +// @public (undocumented) +export const shadowWindowActiveKeyBlur = "var(--smtc-shadow-window-active-key-blur)"; + +// @public (undocumented) +export const shadowWindowActiveKeyBlurRaw = "--smtc-shadow-window-active-key-blur"; + +// @public (undocumented) +export const shadowWindowActiveKeyColor = "var(--smtc-shadow-window-active-key-color)"; + +// @public (undocumented) +export const shadowWindowActiveKeyColorRaw = "--smtc-shadow-window-active-key-color"; + +// @public (undocumented) +export const shadowWindowActiveKeyX = "var(--smtc-shadow-window-active-key-x)"; + +// @public (undocumented) +export const shadowWindowActiveKeyXRaw = "--smtc-shadow-window-active-key-x"; + +// @public (undocumented) +export const shadowWindowActiveKeyY = "var(--smtc-shadow-window-active-key-y)"; + +// @public (undocumented) +export const shadowWindowActiveKeyYRaw = "--smtc-shadow-window-active-key-y"; + +// @public (undocumented) +export const shadowWindowInactiveAmbientBlur = "var(--smtc-shadow-window-inactive-ambient-blur)"; + +// @public (undocumented) +export const shadowWindowInactiveAmbientBlurRaw = "--smtc-shadow-window-inactive-ambient-blur"; + +// @public (undocumented) +export const shadowWindowInactiveAmbientColor = "var(--smtc-shadow-window-inactive-ambient-color)"; + +// @public (undocumented) +export const shadowWindowInactiveAmbientColorRaw = "--smtc-shadow-window-inactive-ambient-color"; + +// @public (undocumented) +export const shadowWindowInactiveAmbientX = "var(--smtc-shadow-window-inactive-ambient-x)"; + +// @public (undocumented) +export const shadowWindowInactiveAmbientXRaw = "--smtc-shadow-window-inactive-ambient-x"; + +// @public (undocumented) +export const shadowWindowInactiveAmbientY = "var(--smtc-shadow-window-inactive-ambient-y)"; + +// @public (undocumented) +export const shadowWindowInactiveAmbientYRaw = "--smtc-shadow-window-inactive-ambient-y"; + +// @public (undocumented) +export const shadowWindowInactiveKeyBlur = "var(--smtc-shadow-window-inactive-key-blur, var(--smtc-shadow-window-active-key-blur))"; + +// @public (undocumented) +export const shadowWindowInactiveKeyBlurRaw = "--smtc-shadow-window-inactive-key-blur"; + +// @public (undocumented) +export const shadowWindowInactiveKeyColor = "var(--smtc-shadow-window-inactive-key-color, var(--smtc-shadow-window-active-key-color))"; + +// @public (undocumented) +export const shadowWindowInactiveKeyColorRaw = "--smtc-shadow-window-inactive-key-color"; + +// @public (undocumented) +export const shadowWindowInactiveKeyX = "var(--smtc-shadow-window-inactive-key-x, var(--smtc-shadow-window-active-key-x))"; + +// @public (undocumented) +export const shadowWindowInactiveKeyXRaw = "--smtc-shadow-window-inactive-key-x"; + +// @public (undocumented) +export const shadowWindowInactiveKeyY = "var(--smtc-shadow-window-inactive-key-y, var(--smtc-shadow-window-active-key-y))"; + +// @public (undocumented) +export const shadowWindowInactiveKeyYRaw = "--smtc-shadow-window-inactive-key-y"; + +// @public (undocumented) +export const sizeCtrlDefault = "var(--smtc-size-ctrl-default)"; + +// @public (undocumented) +export const sizeCtrlDefaultRaw = "--smtc-size-ctrl-default"; + +// @public (undocumented) +export const sizeCtrlIcon = "var(--smtc-size-ctrl-icon)"; + +// @public (undocumented) +export const sizeCtrlIconFigmaonly = "var(--smtc-size-ctrl-iconfigmaonly)"; + +// @public (undocumented) +export const sizeCtrlIconFigmaonlyRaw = "--smtc-size-ctrl-iconfigmaonly"; + +// @public (undocumented) +export const sizeCtrlIconRaw = "--smtc-size-ctrl-icon"; + +// @public (undocumented) +export const sizeCtrlIconsecondary = "var(--smtc-size-ctrl-iconsecondary)"; + +// @public (undocumented) +export const sizeCtrlIconsecondaryRaw = "--smtc-size-ctrl-iconsecondary"; + +// @public (undocumented) +export const sizeCtrlLgDefault = "var(--smtc-size-ctrl-lg-default)"; + +// @public (undocumented) +export const sizeCtrlLgDefaultRaw = "--smtc-size-ctrl-lg-default"; + +// @public (undocumented) +export const sizeCtrlLgIcon = "var(--smtc-size-ctrl-lg-icon)"; + +// @public (undocumented) +export const sizeCtrlLgIconFigmaonly = "var(--smtc-size-ctrl-lg-iconfigmaonly)"; + +// @public (undocumented) +export const sizeCtrlLgIconFigmaonlyRaw = "--smtc-size-ctrl-lg-iconfigmaonly"; + +// @public (undocumented) +export const sizeCtrlLgIconRaw = "--smtc-size-ctrl-lg-icon"; + +// @public (undocumented) +export const sizeCtrlSmDefault = "var(--smtc-size-ctrl-sm-default)"; + +// @public (undocumented) +export const sizeCtrlSmDefaultRaw = "--smtc-size-ctrl-sm-default"; + +// @public (undocumented) +export const sizeCtrlSmIcon = "var(--smtc-size-ctrl-sm-icon)"; + +// @public (undocumented) +export const sizeCtrlSmIconFigmaonly = "var(--smtc-size-ctrl-sm-iconfigmaonly)"; + +// @public (undocumented) +export const sizeCtrlSmIconFigmaonlyRaw = "--smtc-size-ctrl-sm-iconfigmaonly"; + +// @public (undocumented) +export const sizeCtrlSmIconRaw = "--smtc-size-ctrl-sm-icon"; + +// @public (undocumented) +export const statusAwayForeground = "var(--smtc-status-away-foreground)"; + +// @public (undocumented) +export const statusAwayForegroundRaw = "--smtc-status-away-foreground"; + +// @public (undocumented) +export const statusBrandBackground = "var(--smtc-status-brand-background, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const statusBrandBackgroundRaw = "--smtc-status-brand-background"; + +// @public (undocumented) +export const statusBrandForeground = "var(--smtc-status-brand-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const statusBrandForegroundRaw = "--smtc-status-brand-foreground"; + +// @public (undocumented) +export const statusBrandStroke = "var(--smtc-status-brand-stroke, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const statusBrandStrokeRaw = "--smtc-status-brand-stroke"; + +// @public (undocumented) +export const statusBrandTintBackground = "var(--smtc-status-brand-tint-background)"; + +// @public (undocumented) +export const statusBrandTintBackgroundRaw = "--smtc-status-brand-tint-background"; + +// @public (undocumented) +export const statusBrandTintForeground = "var(--smtc-status-brand-tint-foreground, var(--smtc-foreground-ctrl-brand-rest))"; + +// @public (undocumented) +export const statusBrandTintForegroundRaw = "--smtc-status-brand-tint-foreground"; + +// @public (undocumented) +export const statusBrandTintStroke = "var(--smtc-status-brand-tint-stroke)"; + +// @public (undocumented) +export const statusBrandTintStrokeRaw = "--smtc-status-brand-tint-stroke"; + +// @public (undocumented) +export const statusDangerBackground = "var(--smtc-status-danger-background)"; + +// @public (undocumented) +export const statusDangerBackgroundRaw = "--smtc-status-danger-background"; + +// @public (undocumented) +export const statusDangerForeground = "var(--smtc-status-danger-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const statusDangerForegroundRaw = "--smtc-status-danger-foreground"; + +// @public (undocumented) +export const statusDangerStroke = "var(--smtc-status-danger-stroke, var(--smtc-status-danger-background))"; + +// @public (undocumented) +export const statusDangerStrokeRaw = "--smtc-status-danger-stroke"; + +// @public (undocumented) +export const statusDangerTintBackground = "var(--smtc-status-danger-tint-background)"; + +// @public (undocumented) +export const statusDangerTintBackgroundRaw = "--smtc-status-danger-tint-background"; + +// @public (undocumented) +export const statusDangerTintForeground = "var(--smtc-status-danger-tint-foreground)"; + +// @public (undocumented) +export const statusDangerTintForegroundRaw = "--smtc-status-danger-tint-foreground"; + +// @public (undocumented) +export const statusDangerTintStroke = "var(--smtc-status-danger-tint-stroke)"; + +// @public (undocumented) +export const statusDangerTintStrokeRaw = "--smtc-status-danger-tint-stroke"; + +// @public (undocumented) +export const statusImportantBackground = "var(--smtc-status-important-background)"; + +// @public (undocumented) +export const statusImportantBackgroundRaw = "--smtc-status-important-background"; + +// @public (undocumented) +export const statusImportantForeground = "var(--smtc-status-important-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const statusImportantForegroundRaw = "--smtc-status-important-foreground"; + +// @public (undocumented) +export const statusImportantStroke = "var(--smtc-status-important-stroke, var(--smtc-status-important-background))"; + +// @public (undocumented) +export const statusImportantStrokeRaw = "--smtc-status-important-stroke"; + +// @public (undocumented) +export const statusImportantTintBackground = "var(--smtc-status-important-tint-background)"; + +// @public (undocumented) +export const statusImportantTintBackgroundRaw = "--smtc-status-important-tint-background"; + +// @public (undocumented) +export const statusImportantTintForeground = "var(--smtc-status-important-tint-foreground)"; + +// @public (undocumented) +export const statusImportantTintForegroundRaw = "--smtc-status-important-tint-foreground"; + +// @public (undocumented) +export const statusImportantTintStroke = "var(--smtc-status-important-tint-stroke)"; + +// @public (undocumented) +export const statusImportantTintStrokeRaw = "--smtc-status-important-tint-stroke"; + +// @public (undocumented) +export const statusInformativeBackground = "var(--smtc-status-informative-background)"; + +// @public (undocumented) +export const statusInformativeBackgroundRaw = "--smtc-status-informative-background"; + +// @public (undocumented) +export const statusInformativeForeground = "var(--smtc-status-informative-foreground, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const statusInformativeForegroundRaw = "--smtc-status-informative-foreground"; + +// @public (undocumented) +export const statusInformativeStroke = "var(--smtc-status-informative-stroke, var(--smtc-status-informative-background))"; + +// @public (undocumented) +export const statusInformativeStrokeRaw = "--smtc-status-informative-stroke"; + +// @public (undocumented) +export const statusInformativeTintBackground = "var(--smtc-status-informative-tint-background)"; + +// @public (undocumented) +export const statusInformativeTintBackgroundRaw = "--smtc-status-informative-tint-background"; + +// @public (undocumented) +export const statusInformativeTintForeground = "var(--smtc-status-informative-tint-foreground)"; + +// @public (undocumented) +export const statusInformativeTintForegroundRaw = "--smtc-status-informative-tint-foreground"; + +// @public (undocumented) +export const statusInformativeTintStroke = "var(--smtc-status-informative-tint-stroke)"; + +// @public (undocumented) +export const statusInformativeTintStrokeRaw = "--smtc-status-informative-tint-stroke"; + +// @public (undocumented) +export const statusNeutralBackground = "var(--smtc-status-neutral-background)"; + +// @public (undocumented) +export const statusNeutralBackgroundRaw = "--smtc-status-neutral-background"; + +// @public (undocumented) +export const statusNeutralForeground = "var(--smtc-status-neutral-foreground, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const statusNeutralForegroundRaw = "--smtc-status-neutral-foreground"; + +// @public (undocumented) +export const statusNeutralStroke = "var(--smtc-status-neutral-stroke, var(--smtc-status-neutral-background))"; + +// @public (undocumented) +export const statusNeutralStrokeRaw = "--smtc-status-neutral-stroke"; + +// @public (undocumented) +export const statusNeutralTintBackground = "var(--smtc-status-neutral-tint-background)"; + +// @public (undocumented) +export const statusNeutralTintBackgroundRaw = "--smtc-status-neutral-tint-background"; + +// @public (undocumented) +export const statusNeutralTintForeground = "var(--smtc-status-neutral-tint-foreground, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; + +// @public (undocumented) +export const statusNeutralTintForegroundRaw = "--smtc-status-neutral-tint-foreground"; + +// @public (undocumented) +export const statusNeutralTintStroke = "var(--smtc-status-neutral-tint-stroke)"; + +// @public (undocumented) +export const statusNeutralTintStrokeRaw = "--smtc-status-neutral-tint-stroke"; + +// @public (undocumented) +export const statusOofForeground = "var(--smtc-status-oof-foreground)"; + +// @public (undocumented) +export const statusOofForegroundRaw = "--smtc-status-oof-foreground"; + +// @public (undocumented) +export const statusSuccessBackground = "var(--smtc-status-success-background)"; + +// @public (undocumented) +export const statusSuccessBackgroundRaw = "--smtc-status-success-background"; + +// @public (undocumented) +export const statusSuccessForeground = "var(--smtc-status-success-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const statusSuccessForegroundRaw = "--smtc-status-success-foreground"; + +// @public (undocumented) +export const statusSuccessStroke = "var(--smtc-status-success-stroke, var(--smtc-status-success-background))"; + +// @public (undocumented) +export const statusSuccessStrokeRaw = "--smtc-status-success-stroke"; + +// @public (undocumented) +export const statusSuccessTintBackground = "var(--smtc-status-success-tint-background)"; + +// @public (undocumented) +export const statusSuccessTintBackgroundRaw = "--smtc-status-success-tint-background"; + +// @public (undocumented) +export const statusSuccessTintForeground = "var(--smtc-status-success-tint-foreground)"; + +// @public (undocumented) +export const statusSuccessTintForegroundRaw = "--smtc-status-success-tint-foreground"; + +// @public (undocumented) +export const statusSuccessTintStroke = "var(--smtc-status-success-tint-stroke)"; + +// @public (undocumented) +export const statusSuccessTintStrokeRaw = "--smtc-status-success-tint-stroke"; + +// @public (undocumented) +export const statusWarningBackground = "var(--smtc-status-warning-background)"; + +// @public (undocumented) +export const statusWarningBackgroundRaw = "--smtc-status-warning-background"; + +// @public (undocumented) +export const statusWarningForeground = "var(--smtc-status-warning-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const statusWarningForegroundRaw = "--smtc-status-warning-foreground"; + +// @public (undocumented) +export const statusWarningStroke = "var(--smtc-status-warning-stroke, var(--smtc-status-warning-background))"; + +// @public (undocumented) +export const statusWarningStrokeRaw = "--smtc-status-warning-stroke"; + +// @public (undocumented) +export const statusWarningTintBackground = "var(--smtc-status-warning-tint-background)"; + +// @public (undocumented) +export const statusWarningTintBackgroundRaw = "--smtc-status-warning-tint-background"; + +// @public (undocumented) +export const statusWarningTintForeground = "var(--smtc-status-warning-tint-foreground)"; + +// @public (undocumented) +export const statusWarningTintForegroundRaw = "--smtc-status-warning-tint-foreground"; + +// @public (undocumented) +export const statusWarningTintStroke = "var(--smtc-status-warning-tint-stroke)"; + +// @public (undocumented) +export const statusWarningTintStrokeRaw = "--smtc-status-warning-tint-stroke"; + +// @public (undocumented) +export const strokeCardOnprimaryDisabled = "var(--smtc-stroke-card-onprimary-disabled, unset)"; + +// @public (undocumented) +export const strokeCardOnprimaryDisabledRaw = "--smtc-stroke-card-onprimary-disabled"; + +// @public (undocumented) +export const strokeCardOnprimaryHover = "var(--smtc-stroke-card-onprimary-hover, unset)"; + +// @public (undocumented) +export const strokeCardOnprimaryHoverRaw = "--smtc-stroke-card-onprimary-hover"; + +// @public (undocumented) +export const strokeCardOnprimaryPressed = "var(--smtc-stroke-card-onprimary-pressed, unset)"; + +// @public (undocumented) +export const strokeCardOnprimaryPressedRaw = "--smtc-stroke-card-onprimary-pressed"; + +// @public (undocumented) +export const strokeCardOnprimaryRest = "var(--smtc-stroke-card-onprimary-rest, unset)"; + +// @public (undocumented) +export const strokeCardOnprimaryRestRaw = "--smtc-stroke-card-onprimary-rest"; + +// @public (undocumented) +export const strokeCardOnsecondaryDisabled = "var(--smtc-stroke-card-onsecondary-disabled, unset)"; + +// @public (undocumented) +export const strokeCardOnsecondaryDisabledRaw = "--smtc-stroke-card-onsecondary-disabled"; + +// @public (undocumented) +export const strokeCardOnsecondaryHover = "var(--smtc-stroke-card-onsecondary-hover, unset)"; + +// @public (undocumented) +export const strokeCardOnsecondaryHoverRaw = "--smtc-stroke-card-onsecondary-hover"; + +// @public (undocumented) +export const strokeCardOnsecondaryPressed = "var(--smtc-stroke-card-onsecondary-pressed, unset)"; + +// @public (undocumented) +export const strokeCardOnsecondaryPressedRaw = "--smtc-stroke-card-onsecondary-pressed"; + +// @public (undocumented) +export const strokeCardOnsecondaryRest = "var(--smtc-stroke-card-onsecondary-rest, unset)"; + +// @public (undocumented) +export const strokeCardOnsecondaryRestRaw = "--smtc-stroke-card-onsecondary-rest"; + +// @public (undocumented) +export const strokeCardSelected = "var(--smtc-stroke-card-selected, unset)"; + +// @public (undocumented) +export const strokeCardSelectedRaw = "--smtc-stroke-card-selected"; + +// @public (undocumented) +export const strokeCtrlDividerOnactivebrand = "var(--smtc-stroke-ctrl-divider-onactivebrand, var(--smtc-stroke-ctrl-divider-onbrand))"; + +// @public (undocumented) +export const strokeCtrlDividerOnactivebrandDisabled = "var(--smtc-stroke-ctrl-divider-onactivebrand-disabled, var(--smtc-stroke-ctrl-divider-onbrand))"; + +// @public (undocumented) +export const strokeCtrlDividerOnactivebrandDisabledRaw = "--smtc-stroke-ctrl-divider-onactivebrand-disabled"; + +// @public (undocumented) +export const strokeCtrlDividerOnactivebrandRaw = "--smtc-stroke-ctrl-divider-onactivebrand"; + +// @public (undocumented) +export const strokeCtrlDividerOnbrand = "var(--smtc-stroke-ctrl-divider-onbrand)"; + +// @public (undocumented) +export const strokeCtrlDividerOnbrandDisabled = "var(--smtc-stroke-ctrl-divider-onbrand-disabled, var(--smtc-stroke-ctrl-divider-onbrand))"; + +// @public (undocumented) +export const strokeCtrlDividerOnbrandDisabledRaw = "--smtc-stroke-ctrl-divider-onbrand-disabled"; + +// @public (undocumented) +export const strokeCtrlDividerOnbrandRaw = "--smtc-stroke-ctrl-divider-onbrand"; + +// @public (undocumented) +export const strokeCtrlDividerOnneutral = "var(--smtc-stroke-ctrl-divider-onneutral)"; + +// @public (undocumented) +export const strokeCtrlDividerOnneutralDisabled = "var(--smtc-stroke-ctrl-divider-onneutral-disabled, var(--smtc-stroke-ctrl-divider-onneutral))"; + +// @public (undocumented) +export const strokeCtrlDividerOnneutralDisabledRaw = "--smtc-stroke-ctrl-divider-onneutral-disabled"; + +// @public (undocumented) +export const strokeCtrlDividerOnneutralRaw = "--smtc-stroke-ctrl-divider-onneutral"; + +// @public (undocumented) +export const strokeCtrlDividerOnoutline = "var(--smtc-stroke-ctrl-divider-onoutline)"; + +// @public (undocumented) +export const strokeCtrlDividerOnoutlineDisabled = "var(--smtc-stroke-ctrl-divider-onoutline-disabled, var(--smtc-stroke-ctrl-divider-onoutline))"; + +// @public (undocumented) +export const strokeCtrlDividerOnoutlineDisabledRaw = "--smtc-stroke-ctrl-divider-onoutline-disabled"; + +// @public (undocumented) +export const strokeCtrlDividerOnoutlineRaw = "--smtc-stroke-ctrl-divider-onoutline"; + +// @public (undocumented) +export const strokeCtrlDividerOnsubtle = "var(--smtc-stroke-ctrl-divider-onsubtle, unset)"; + +// @public (undocumented) +export const strokeCtrlDividerOnsubtleDisabled = "var(--smtc-stroke-ctrl-divider-onsubtle-disabled, unset)"; + +// @public (undocumented) +export const strokeCtrlDividerOnsubtleDisabledRaw = "--smtc-stroke-ctrl-divider-onsubtle-disabled"; + +// @public (undocumented) +export const strokeCtrlDividerOnsubtleRaw = "--smtc-stroke-ctrl-divider-onsubtle"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandDisabled = "var(--smtc-stroke-ctrl-onactivebrand-disabled, var(--smtc-stroke-ctrl-onbrand-disabled))"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandDisabledRaw = "--smtc-stroke-ctrl-onactivebrand-disabled"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandDisabledStop2 = "var(--smtc-stroke-ctrl-onactivebrand-disabledstop2, var(--smtc-stroke-ctrl-onbrand-disabled))"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandDisabledStop2Raw = "--smtc-stroke-ctrl-onactivebrand-disabledstop2"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandHover = "var(--smtc-stroke-ctrl-onactivebrand-hover, var(--smtc-stroke-ctrl-onbrand-hover))"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandHoverRaw = "--smtc-stroke-ctrl-onactivebrand-hover"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandHoverStop2 = "var(--smtc-stroke-ctrl-onactivebrand-hoverstop2, var(--smtc-stroke-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandHoverStop2Raw = "--smtc-stroke-ctrl-onactivebrand-hoverstop2"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandPressed = "var(--smtc-stroke-ctrl-onactivebrand-pressed, var(--smtc-stroke-ctrl-onbrand-pressed))"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandPressedRaw = "--smtc-stroke-ctrl-onactivebrand-pressed"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandPressedStop2 = "var(--smtc-stroke-ctrl-onactivebrand-pressedstop2, var(--smtc-stroke-ctrl-onbrand-pressed))"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandPressedStop2Raw = "--smtc-stroke-ctrl-onactivebrand-pressedstop2"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandRest = "var(--smtc-stroke-ctrl-onactivebrand-rest, var(--smtc-stroke-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandRestRaw = "--smtc-stroke-ctrl-onactivebrand-rest"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandRestStop2 = "var(--smtc-stroke-ctrl-onactivebrand-reststop2, var(--smtc-stroke-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const strokeCtrlOnactivebrandRestStop2Raw = "--smtc-stroke-ctrl-onactivebrand-reststop2"; + +// @public (undocumented) +export const strokeCtrlOnbrandDisabled = "var(--smtc-stroke-ctrl-onbrand-disabled, unset)"; + +// @public (undocumented) +export const strokeCtrlOnbrandDisabledRaw = "--smtc-stroke-ctrl-onbrand-disabled"; + +// @public (undocumented) +export const strokeCtrlOnbrandDisabledStop2 = "var(--smtc-stroke-ctrl-onbrand-disabledstop2, var(--smtc-stroke-ctrl-onbrand-disabled))"; + +// @public (undocumented) +export const strokeCtrlOnbrandDisabledStop2Raw = "--smtc-stroke-ctrl-onbrand-disabledstop2"; + +// @public (undocumented) +export const strokeCtrlOnbrandHover = "var(--smtc-stroke-ctrl-onbrand-hover, unset)"; + +// @public (undocumented) +export const strokeCtrlOnbrandHoverRaw = "--smtc-stroke-ctrl-onbrand-hover"; + +// @public (undocumented) +export const strokeCtrlOnbrandHoverStop2 = "var(--smtc-stroke-ctrl-onbrand-hoverstop2, var(--smtc-stroke-ctrl-onbrand-hover))"; + +// @public (undocumented) +export const strokeCtrlOnbrandHoverStop2Raw = "--smtc-stroke-ctrl-onbrand-hoverstop2"; + +// @public (undocumented) +export const strokeCtrlOnbrandPressed = "var(--smtc-stroke-ctrl-onbrand-pressed, unset)"; + +// @public (undocumented) +export const strokeCtrlOnbrandPressedRaw = "--smtc-stroke-ctrl-onbrand-pressed"; + +// @public (undocumented) +export const strokeCtrlOnbrandPressedStop2 = "var(--smtc-stroke-ctrl-onbrand-pressedstop2, var(--smtc-stroke-ctrl-onbrand-pressed))"; + +// @public (undocumented) +export const strokeCtrlOnbrandPressedStop2Raw = "--smtc-stroke-ctrl-onbrand-pressedstop2"; + +// @public (undocumented) +export const strokeCtrlOnbrandRest = "var(--smtc-stroke-ctrl-onbrand-rest, unset)"; + +// @public (undocumented) +export const strokeCtrlOnbrandRestRaw = "--smtc-stroke-ctrl-onbrand-rest"; + +// @public (undocumented) +export const strokeCtrlOnbrandRestStop2 = "var(--smtc-stroke-ctrl-onbrand-reststop2, var(--smtc-stroke-ctrl-onbrand-rest))"; + +// @public (undocumented) +export const strokeCtrlOnbrandRestStop2Raw = "--smtc-stroke-ctrl-onbrand-reststop2"; + +// @public (undocumented) +export const strokeCtrlOnneutralDisabled = "var(--smtc-stroke-ctrl-onneutral-disabled, unset)"; + +// @public (undocumented) +export const strokeCtrlOnneutralDisabledRaw = "--smtc-stroke-ctrl-onneutral-disabled"; + +// @public (undocumented) +export const strokeCtrlOnneutralDisabledStop2 = "var(--smtc-stroke-ctrl-onneutral-disabledstop2, var(--smtc-stroke-ctrl-onneutral-disabled))"; + +// @public (undocumented) +export const strokeCtrlOnneutralDisabledStop2Raw = "--smtc-stroke-ctrl-onneutral-disabledstop2"; + +// @public (undocumented) +export const strokeCtrlOnneutralHover = "var(--smtc-stroke-ctrl-onneutral-hover, unset)"; + +// @public (undocumented) +export const strokeCtrlOnneutralHoverRaw = "--smtc-stroke-ctrl-onneutral-hover"; + +// @public (undocumented) +export const strokeCtrlOnneutralHoverStop2 = "var(--smtc-stroke-ctrl-onneutral-hoverstop2, var(--smtc-stroke-ctrl-onneutral-pressed))"; + +// @public (undocumented) +export const strokeCtrlOnneutralHoverStop2Raw = "--smtc-stroke-ctrl-onneutral-hoverstop2"; + +// @public (undocumented) +export const strokeCtrlOnneutralPressed = "var(--smtc-stroke-ctrl-onneutral-pressed, unset)"; + +// @public (undocumented) +export const strokeCtrlOnneutralPressedRaw = "--smtc-stroke-ctrl-onneutral-pressed"; + +// @public (undocumented) +export const strokeCtrlOnneutralPressedStop2 = "var(--smtc-stroke-ctrl-onneutral-pressedstop2, var(--smtc-stroke-ctrl-onneutral-hover))"; + +// @public (undocumented) +export const strokeCtrlOnneutralPressedStop2Raw = "--smtc-stroke-ctrl-onneutral-pressedstop2"; + +// @public (undocumented) +export const strokeCtrlOnneutralRest = "var(--smtc-stroke-ctrl-onneutral-rest, unset)"; + +// @public (undocumented) +export const strokeCtrlOnneutralRestRaw = "--smtc-stroke-ctrl-onneutral-rest"; + +// @public (undocumented) +export const strokeCtrlOnneutralRestStop2 = "var(--smtc-stroke-ctrl-onneutral-reststop2, var(--smtc-stroke-ctrl-onneutral-rest))"; + +// @public (undocumented) +export const strokeCtrlOnneutralRestStop2Raw = "--smtc-stroke-ctrl-onneutral-reststop2"; + +// @public (undocumented) +export const strokeCtrlOnoutlineDisabled = "var(--smtc-stroke-ctrl-onoutline-disabled)"; + +// @public (undocumented) +export const strokeCtrlOnoutlineDisabledRaw = "--smtc-stroke-ctrl-onoutline-disabled"; + +// @public (undocumented) +export const strokeCtrlOnoutlineDisabledStop2 = "var(--smtc-stroke-ctrl-onoutline-disabledstop2, var(--smtc-stroke-ctrl-onoutline-disabled))"; + +// @public (undocumented) +export const strokeCtrlOnoutlineDisabledStop2Raw = "--smtc-stroke-ctrl-onoutline-disabledstop2"; + +// @public (undocumented) +export const strokeCtrlOnoutlineHover = "var(--smtc-stroke-ctrl-onoutline-hover)"; + +// @public (undocumented) +export const strokeCtrlOnoutlineHoverRaw = "--smtc-stroke-ctrl-onoutline-hover"; + +// @public (undocumented) +export const strokeCtrlOnoutlineHoverStop2 = "var(--smtc-stroke-ctrl-onoutline-hoverstop2, var(--smtc-stroke-ctrl-onoutline-hover))"; + +// @public (undocumented) +export const strokeCtrlOnoutlineHoverStop2Raw = "--smtc-stroke-ctrl-onoutline-hoverstop2"; + +// @public (undocumented) +export const strokeCtrlOnoutlinePressed = "var(--smtc-stroke-ctrl-onoutline-pressed)"; + +// @public (undocumented) +export const strokeCtrlOnoutlinePressedRaw = "--smtc-stroke-ctrl-onoutline-pressed"; + +// @public (undocumented) +export const strokeCtrlOnoutlinePressedStop2 = "var(--smtc-stroke-ctrl-onoutline-pressedstop2, var(--smtc-stroke-ctrl-onoutline-pressed))"; + +// @public (undocumented) +export const strokeCtrlOnoutlinePressedStop2Raw = "--smtc-stroke-ctrl-onoutline-pressedstop2"; + +// @public (undocumented) +export const strokeCtrlOnoutlineRest = "var(--smtc-stroke-ctrl-onoutline-rest)"; + +// @public (undocumented) +export const strokeCtrlOnoutlineRestRaw = "--smtc-stroke-ctrl-onoutline-rest"; + +// @public (undocumented) +export const strokeCtrlOnoutlineRestStop2 = "var(--smtc-stroke-ctrl-onoutline-reststop2, var(--smtc-stroke-ctrl-onoutline-rest))"; + +// @public (undocumented) +export const strokeCtrlOnoutlineRestStop2Raw = "--smtc-stroke-ctrl-onoutline-reststop2"; + +// @public (undocumented) +export const strokeCtrlOnsubtleDisabled = "var(--smtc-stroke-ctrl-onsubtle-disabled, unset)"; + +// @public (undocumented) +export const strokeCtrlOnsubtleDisabledRaw = "--smtc-stroke-ctrl-onsubtle-disabled"; + +// @public (undocumented) +export const strokeCtrlOnsubtleHover = "var(--smtc-stroke-ctrl-onsubtle-hover, unset)"; + +// @public (undocumented) +export const strokeCtrlOnsubtleHoverRaw = "--smtc-stroke-ctrl-onsubtle-hover"; + +// @public (undocumented) +export const strokeCtrlOnsubtleHoversplit = "var(--smtc-stroke-ctrl-onsubtle-hoversplit, unset)"; + +// @public (undocumented) +export const strokeCtrlOnsubtleHoversplitRaw = "--smtc-stroke-ctrl-onsubtle-hoversplit"; + +// @public (undocumented) +export const strokeCtrlOnsubtlePressed = "var(--smtc-stroke-ctrl-onsubtle-pressed, unset)"; + +// @public (undocumented) +export const strokeCtrlOnsubtlePressedRaw = "--smtc-stroke-ctrl-onsubtle-pressed"; + +// @public (undocumented) +export const strokeCtrlOnsubtleRest = "var(--smtc-stroke-ctrl-onsubtle-rest, unset)"; + +// @public (undocumented) +export const strokeCtrlOnsubtleRestRaw = "--smtc-stroke-ctrl-onsubtle-rest"; + +// @public (undocumented) +export const strokeDividerBrand = "var(--smtc-stroke-divider-brand, var(--smtc-background-ctrl-brand-rest))"; + +// @public (undocumented) +export const strokeDividerBrandRaw = "--smtc-stroke-divider-brand"; + +// @public (undocumented) +export const strokeDividerDefault = "var(--smtc-stroke-divider-default)"; + +// @public (undocumented) +export const strokeDividerDefaultRaw = "--smtc-stroke-divider-default"; + +// @public (undocumented) +export const strokeDividerStrong = "var(--smtc-stroke-divider-strong, var(--smtc-stroke-divider-default))"; + +// @public (undocumented) +export const strokeDividerStrongRaw = "--smtc-stroke-divider-strong"; + +// @public (undocumented) +export const strokeDividerSubtle = "var(--smtc-stroke-divider-subtle, var(--smtc-stroke-divider-default))"; + +// @public (undocumented) +export const strokeDividerSubtleRaw = "--smtc-stroke-divider-subtle"; + +// @public (undocumented) +export const strokeFlyout = "var(--smtc-stroke-flyout, unset)"; + +// @public (undocumented) +export const strokeFlyoutRaw = "--smtc-stroke-flyout"; + +// @public (undocumented) +export const strokeImage = "var(--smtc-stroke-image, unset)"; + +// @public (undocumented) +export const strokeImageRaw = "--smtc-stroke-image"; + +// @public (undocumented) +export const strokeLayer = "var(--smtc-stroke-layer, unset)"; + +// @public (undocumented) +export const strokeLayerRaw = "--smtc-stroke-layer"; + +// @public (undocumented) +export const strokeToolbar = "var(--smtc-stroke-toolbar, var(--smtc-stroke-card-onprimary-rest))"; + +// @public (undocumented) +export const strokeToolbarRaw = "--smtc-stroke-toolbar"; + +// @public (undocumented) +export const strokewidthCtrlOutlineHover = "var(--smtc-strokewidth-ctrl-outline-hover, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const strokewidthCtrlOutlineHoverRaw = "--smtc-strokewidth-ctrl-outline-hover"; + +// @public (undocumented) +export const strokewidthCtrlOutlinePressed = "var(--smtc-strokewidth-ctrl-outline-pressed, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const strokewidthCtrlOutlinePressedRaw = "--smtc-strokewidth-ctrl-outline-pressed"; + +// @public (undocumented) +export const strokewidthCtrlOutlineRest = "var(--smtc-strokewidth-ctrl-outline-rest, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const strokewidthCtrlOutlineRestRaw = "--smtc-strokewidth-ctrl-outline-rest"; + +// @public (undocumented) +export const strokewidthCtrlOutlineSelected = "var(--smtc-strokewidth-ctrl-outline-selected, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const strokewidthCtrlOutlineSelectedRaw = "--smtc-strokewidth-ctrl-outline-selected"; + +// @public (undocumented) +export const strokewidthDefault = "var(--smtc-strokewidth-default, var(--strokeWidthThin))"; + +// @public (undocumented) +export const strokewidthDefaultRaw = "--smtc-strokewidth-default"; + +// @public (undocumented) +export const strokewidthDividerDefault = "var(--smtc-strokewidth-divider-default, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const strokewidthDividerDefaultRaw = "--smtc-strokewidth-divider-default"; + +// @public (undocumented) +export const strokewidthDividerStrong = "var(--smtc-strokewidth-divider-strong, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const strokewidthDividerStrongRaw = "--smtc-strokewidth-divider-strong"; + +// @public (undocumented) +export const strokewidthWindowDefault = "var(--smtc-strokewidth-window-default, var(--smtc-strokewidth-default))"; + +// @public (undocumented) +export const strokewidthWindowDefaultRaw = "--smtc-strokewidth-window-default"; + +// @public (undocumented) +export const strokeWindowActive = "var(--smtc-stroke-window-active)"; + +// @public (undocumented) +export const strokeWindowActiveRaw = "--smtc-stroke-window-active"; + +// @public (undocumented) +export const strokeWindowInactive = "var(--smtc-stroke-window-inactive, var(--smtc-stroke-window-active))"; + +// @public (undocumented) +export const strokeWindowInactiveRaw = "--smtc-stroke-window-inactive"; + +// @public (undocumented) +export const textCtrlButtonWeightDefault = "var(--smtc-text-ctrl-button-weight-default, var(--smtc-text-style-default-regular-weight))"; + +// @public (undocumented) +export const textCtrlButtonWeightDefaultRaw = "--smtc-text-ctrl-button-weight-default"; + +// @public (undocumented) +export const textCtrlButtonWeightSelected = "var(--smtc-text-ctrl-button-weight-selected, var(--smtc-text-ctrl-weight-selected))"; + +// @public (undocumented) +export const textCtrlButtonWeightSelectedRaw = "--smtc-text-ctrl-button-weight-selected"; + +// @public (undocumented) +export const textCtrlWeightDefault = "var(--smtc-text-ctrl-weight-default, var(--smtc-text-style-default-regular-weight))"; + +// @public (undocumented) +export const textCtrlWeightDefaultRaw = "--smtc-text-ctrl-weight-default"; + +// @public (undocumented) +export const textCtrlWeightSelected = "var(--smtc-text-ctrl-weight-selected)"; + +// @public (undocumented) +export const textCtrlWeightSelectedRaw = "--smtc-text-ctrl-weight-selected"; + +// @public (undocumented) +export const textGlobalBody1Fontsize = "var(--smtc-text-global-body1-fontsize)"; + +// @public (undocumented) +export const textGlobalBody1FontsizeRaw = "--smtc-text-global-body1-fontsize"; + +// @public (undocumented) +export const textGlobalBody1Lineheight = "var(--smtc-text-global-body1-lineheight)"; + +// @public (undocumented) +export const textGlobalBody1LineheightRaw = "--smtc-text-global-body1-lineheight"; + +// @public (undocumented) +export const textGlobalBody2Fontsize = "var(--smtc-text-global-body2-fontsize)"; + +// @public (undocumented) +export const textGlobalBody2FontsizeRaw = "--smtc-text-global-body2-fontsize"; + +// @public (undocumented) +export const textGlobalBody2Lineheight = "var(--smtc-text-global-body2-lineheight)"; + +// @public (undocumented) +export const textGlobalBody2LineheightRaw = "--smtc-text-global-body2-lineheight"; + +// @public (undocumented) +export const textGlobalBody3Fontsize = "var(--smtc-text-global-body3-fontsize, var(--fontSizeBase300))"; + +// @public (undocumented) +export const textGlobalBody3FontsizeRaw = "--smtc-text-global-body3-fontsize"; + +// @public (undocumented) +export const textGlobalBody3Lineheight = "var(--smtc-text-global-body3-lineheight)"; + +// @public (undocumented) +export const textGlobalBody3LineheightRaw = "--smtc-text-global-body3-lineheight"; + +// @public (undocumented) +export const textGlobalCaption1Fontsize = "var(--smtc-text-global-caption1-fontsize)"; + +// @public (undocumented) +export const textGlobalCaption1FontsizeRaw = "--smtc-text-global-caption1-fontsize"; + +// @public (undocumented) +export const textGlobalCaption1Lineheight = "var(--smtc-text-global-caption1-lineheight)"; + +// @public (undocumented) +export const textGlobalCaption1LineheightRaw = "--smtc-text-global-caption1-lineheight"; + +// @public (undocumented) +export const textGlobalCaption2Fontsize = "var(--smtc-text-global-caption2-fontsize)"; + +// @public (undocumented) +export const textGlobalCaption2FontsizeRaw = "--smtc-text-global-caption2-fontsize"; + +// @public (undocumented) +export const textGlobalCaption2Lineheight = "var(--smtc-text-global-caption2-lineheight)"; + +// @public (undocumented) +export const textGlobalCaption2LineheightRaw = "--smtc-text-global-caption2-lineheight"; + +// @public (undocumented) +export const textGlobalDisplay1Fontsize = "var(--smtc-text-global-display1-fontsize)"; + +// @public (undocumented) +export const textGlobalDisplay1FontsizeRaw = "--smtc-text-global-display1-fontsize"; + +// @public (undocumented) +export const textGlobalDisplay1Lineheight = "var(--smtc-text-global-display1-lineheight)"; + +// @public (undocumented) +export const textGlobalDisplay1LineheightRaw = "--smtc-text-global-display1-lineheight"; + +// @public (undocumented) +export const textGlobalDisplay2Fontsize = "var(--smtc-text-global-display2-fontsize)"; + +// @public (undocumented) +export const textGlobalDisplay2FontsizeRaw = "--smtc-text-global-display2-fontsize"; + +// @public (undocumented) +export const textGlobalDisplay2Lineheight = "var(--smtc-text-global-display2-lineheight)"; + +// @public (undocumented) +export const textGlobalDisplay2LineheightRaw = "--smtc-text-global-display2-lineheight"; + +// @public (undocumented) +export const textGlobalSubtitle1Fontsize = "var(--smtc-text-global-subtitle1-fontsize)"; + +// @public (undocumented) +export const textGlobalSubtitle1FontsizeRaw = "--smtc-text-global-subtitle1-fontsize"; + +// @public (undocumented) +export const textGlobalSubtitle1Lineheight = "var(--smtc-text-global-subtitle1-lineheight)"; + +// @public (undocumented) +export const textGlobalSubtitle1LineheightRaw = "--smtc-text-global-subtitle1-lineheight"; + +// @public (undocumented) +export const textGlobalSubtitle2Fontsize = "var(--smtc-text-global-subtitle2-fontsize)"; + +// @public (undocumented) +export const textGlobalSubtitle2FontsizeRaw = "--smtc-text-global-subtitle2-fontsize"; + +// @public (undocumented) +export const textGlobalSubtitle2Lineheight = "var(--smtc-text-global-subtitle2-lineheight)"; + +// @public (undocumented) +export const textGlobalSubtitle2LineheightRaw = "--smtc-text-global-subtitle2-lineheight"; + +// @public (undocumented) +export const textGlobalTitle1Fontsize = "var(--smtc-text-global-title1-fontsize)"; + +// @public (undocumented) +export const textGlobalTitle1FontsizeRaw = "--smtc-text-global-title1-fontsize"; + +// @public (undocumented) +export const textGlobalTitle1Lineheight = "var(--smtc-text-global-title1-lineheight)"; + +// @public (undocumented) +export const textGlobalTitle1LineheightRaw = "--smtc-text-global-title1-lineheight"; + +// @public (undocumented) +export const textGlobalTitle2Fontsize = "var(--smtc-text-global-title2-fontsize)"; + +// @public (undocumented) +export const textGlobalTitle2FontsizeRaw = "--smtc-text-global-title2-fontsize"; + +// @public (undocumented) +export const textGlobalTitle2Lineheight = "var(--smtc-text-global-title2-lineheight)"; + +// @public (undocumented) +export const textGlobalTitle2LineheightRaw = "--smtc-text-global-title2-lineheight"; + +// @public (undocumented) +export const textRampItembodyFontsize = "var(--smtc-text-ramp-itembody-fontsize, var(--smtc-text-global-body3-fontsize))"; + +// @public (undocumented) +export const textRampItembodyFontsizeRaw = "--smtc-text-ramp-itembody-fontsize"; + +// @public (undocumented) +export const textRampItembodyLineheight = "var(--smtc-text-ramp-itembody-lineheight, var(--smtc-text-global-body3-lineheight))"; + +// @public (undocumented) +export const textRampItembodyLineheightRaw = "--smtc-text-ramp-itembody-lineheight"; + +// @public (undocumented) +export const textRampItemheaderFontsize = "var(--smtc-text-ramp-itemheader-fontsize, var(--smtc-text-global-body2-fontsize))"; + +// @public (undocumented) +export const textRampItemheaderFontsizeRaw = "--smtc-text-ramp-itemheader-fontsize"; + +// @public (undocumented) +export const textRampItemheaderLineheight = "var(--smtc-text-ramp-itemheader-lineheight, var(--smtc-text-global-body2-lineheight))"; + +// @public (undocumented) +export const textRampItemheaderLineheightRaw = "--smtc-text-ramp-itemheader-lineheight"; + +// @public (undocumented) +export const textRampLegalFontsize = "var(--smtc-text-ramp-legal-fontsize, var(--smtc-text-global-caption2-fontsize))"; + +// @public (undocumented) +export const textRampLegalFontsizeRaw = "--smtc-text-ramp-legal-fontsize"; + +// @public (undocumented) +export const textRampLegalLineheight = "var(--smtc-text-ramp-legal-lineheight, var(--smtc-text-global-caption2-lineheight))"; + +// @public (undocumented) +export const textRampLegalLineheightRaw = "--smtc-text-ramp-legal-lineheight"; + +// @public (undocumented) +export const textRampLgItembodyFontsize = "var(--smtc-text-ramp-lg-itembody-fontsize, var(--smtc-text-global-body2-fontsize))"; + +// @public (undocumented) +export const textRampLgItembodyFontsizeRaw = "--smtc-text-ramp-lg-itembody-fontsize"; + +// @public (undocumented) +export const textRampLgItembodyLineheight = "var(--smtc-text-ramp-lg-itembody-lineheight, var(--smtc-text-global-body2-lineheight))"; + +// @public (undocumented) +export const textRampLgItembodyLineheightRaw = "--smtc-text-ramp-lg-itembody-lineheight"; + +// @public (undocumented) +export const textRampLgItemheaderFontsize = "var(--smtc-text-ramp-lg-itemheader-fontsize, var(--smtc-text-global-subtitle2-fontsize))"; + +// @public (undocumented) +export const textRampLgItemheaderFontsizeRaw = "--smtc-text-ramp-lg-itemheader-fontsize"; + +// @public (undocumented) +export const textRampLgItemheaderLineheight = "var(--smtc-text-ramp-lg-itemheader-lineheight, var(--smtc-text-global-subtitle2-lineheight))"; + +// @public (undocumented) +export const textRampLgItemheaderLineheightRaw = "--smtc-text-ramp-lg-itemheader-lineheight"; + +// @public (undocumented) +export const textRampLgLegalFontsize = "var(--smtc-text-ramp-lg-legal-fontsize, var(--smtc-text-global-caption1-fontsize))"; + +// @public (undocumented) +export const textRampLgLegalFontsizeRaw = "--smtc-text-ramp-lg-legal-fontsize"; + +// @public (undocumented) +export const textRampLgLegalLineheight = "var(--smtc-text-ramp-lg-legal-lineheight, var(--smtc-text-global-caption1-lineheight))"; + +// @public (undocumented) +export const textRampLgLegalLineheightRaw = "--smtc-text-ramp-lg-legal-lineheight"; + +// @public (undocumented) +export const textRampLgMetadataFontsize = "var(--smtc-text-ramp-lg-metadata-fontsize, var(--smtc-text-global-body3-fontsize))"; + +// @public (undocumented) +export const textRampLgMetadataFontsizeRaw = "--smtc-text-ramp-lg-metadata-fontsize"; + +// @public (undocumented) +export const textRampLgMetadataLineheight = "var(--smtc-text-ramp-lg-metadata-lineheight, var(--smtc-text-global-body3-lineheight))"; + +// @public (undocumented) +export const textRampLgMetadataLineheightRaw = "--smtc-text-ramp-lg-metadata-lineheight"; + +// @public (undocumented) +export const textRampLgPageheaderFontsize = "var(--smtc-text-ramp-lg-pageheader-fontsize, var(--smtc-text-global-title1-fontsize))"; + +// @public (undocumented) +export const textRampLgPageheaderFontsizeRaw = "--smtc-text-ramp-lg-pageheader-fontsize"; + +// @public (undocumented) +export const textRampLgPageheaderLineheight = "var(--smtc-text-ramp-lg-pageheader-lineheight, var(--smtc-text-global-title1-lineheight))"; + +// @public (undocumented) +export const textRampLgPageheaderLineheightRaw = "--smtc-text-ramp-lg-pageheader-lineheight"; + +// @public (undocumented) +export const textRampLgReadingbodyFontsize = "var(--smtc-text-ramp-lg-readingbody-fontsize, var(--smtc-text-global-body1-fontsize))"; + +// @public (undocumented) +export const textRampLgReadingbodyFontsizeRaw = "--smtc-text-ramp-lg-readingbody-fontsize"; + +// @public (undocumented) +export const textRampLgReadingbodyLineheight = "var(--smtc-text-ramp-lg-readingbody-lineheight, var(--smtc-text-global-body1-lineheight))"; + +// @public (undocumented) +export const textRampLgReadingbodyLineheightRaw = "--smtc-text-ramp-lg-readingbody-lineheight"; + +// @public (undocumented) +export const textRampLgSectionheaderFontsize = "var(--smtc-text-ramp-lg-sectionheader-fontsize, var(--smtc-text-global-title2-fontsize))"; + +// @public (undocumented) +export const textRampLgSectionheaderFontsizeRaw = "--smtc-text-ramp-lg-sectionheader-fontsize"; + +// @public (undocumented) +export const textRampLgSectionheaderLineheight = "var(--smtc-text-ramp-lg-sectionheader-lineheight, var(--smtc-text-global-title2-lineheight))"; + +// @public (undocumented) +export const textRampLgSectionheaderLineheightRaw = "--smtc-text-ramp-lg-sectionheader-lineheight"; + +// @public (undocumented) +export const textRampLgSubsectionheaderFontsize = "var(--smtc-text-ramp-lg-subsectionheader-fontsize, var(--smtc-text-global-subtitle1-fontsize))"; + +// @public (undocumented) +export const textRampLgSubsectionheaderFontsizeRaw = "--smtc-text-ramp-lg-subsectionheader-fontsize"; + +// @public (undocumented) +export const textRampLgSubsectionheaderLineheight = "var(--smtc-text-ramp-lg-subsectionheader-lineheight, var(--smtc-text-global-subtitle1-lineheight))"; + +// @public (undocumented) +export const textRampLgSubsectionheaderLineheightRaw = "--smtc-text-ramp-lg-subsectionheader-lineheight"; + +// @public (undocumented) +export const textRampMetadataFontsize = "var(--smtc-text-ramp-metadata-fontsize, var(--smtc-text-global-caption1-fontsize))"; + +// @public (undocumented) +export const textRampMetadataFontsizeRaw = "--smtc-text-ramp-metadata-fontsize"; + +// @public (undocumented) +export const textRampMetadataLineheight = "var(--smtc-text-ramp-metadata-lineheight, var(--smtc-text-global-caption1-lineheight))"; + +// @public (undocumented) +export const textRampMetadataLineheightRaw = "--smtc-text-ramp-metadata-lineheight"; + +// @public (undocumented) +export const textRampPageheaderFontsize = "var(--smtc-text-ramp-pageheader-fontsize, var(--smtc-text-global-title2-fontsize))"; + +// @public (undocumented) +export const textRampPageheaderFontsizeRaw = "--smtc-text-ramp-pageheader-fontsize"; + +// @public (undocumented) +export const textRampPageheaderLineheight = "var(--smtc-text-ramp-pageheader-lineheight, var(--smtc-text-global-title2-lineheight))"; + +// @public (undocumented) +export const textRampPageheaderLineheightRaw = "--smtc-text-ramp-pageheader-lineheight"; + +// @public (undocumented) +export const textRampReadingbodyFontsize = "var(--smtc-text-ramp-readingbody-fontsize, var(--smtc-text-global-body2-fontsize))"; + +// @public (undocumented) +export const textRampReadingbodyFontsizeRaw = "--smtc-text-ramp-readingbody-fontsize"; + +// @public (undocumented) +export const textRampReadingbodyLineheight = "var(--smtc-text-ramp-readingbody-lineheight, var(--smtc-text-global-body2-lineheight))"; + +// @public (undocumented) +export const textRampReadingbodyLineheightRaw = "--smtc-text-ramp-readingbody-lineheight"; + +// @public (undocumented) +export const textRampSectionheaderFontsize = "var(--smtc-text-ramp-sectionheader-fontsize, var(--smtc-text-global-subtitle1-fontsize))"; + +// @public (undocumented) +export const textRampSectionheaderFontsizeRaw = "--smtc-text-ramp-sectionheader-fontsize"; + +// @public (undocumented) +export const textRampSectionheaderLineheight = "var(--smtc-text-ramp-sectionheader-lineheight, var(--smtc-text-global-subtitle1-lineheight))"; + +// @public (undocumented) +export const textRampSectionheaderLineheightRaw = "--smtc-text-ramp-sectionheader-lineheight"; + +// @public (undocumented) +export const textRampSmItembodyFontsize = "var(--smtc-text-ramp-sm-itembody-fontsize, var(--smtc-text-global-caption1-fontsize))"; + +// @public (undocumented) +export const textRampSmItembodyFontsizeRaw = "--smtc-text-ramp-sm-itembody-fontsize"; + +// @public (undocumented) +export const textRampSmItembodyLineheight = "var(--smtc-text-ramp-sm-itembody-lineheight, var(--smtc-text-global-caption1-lineheight))"; + +// @public (undocumented) +export const textRampSmItembodyLineheightRaw = "--smtc-text-ramp-sm-itembody-lineheight"; + +// @public (undocumented) +export const textRampSmItemheaderFontsize = "var(--smtc-text-ramp-sm-itemheader-fontsize, var(--smtc-text-global-body3-fontsize))"; + +// @public (undocumented) +export const textRampSmItemheaderFontsizeRaw = "--smtc-text-ramp-sm-itemheader-fontsize"; + +// @public (undocumented) +export const textRampSmItemheaderLineheight = "var(--smtc-text-ramp-sm-itemheader-lineheight, var(--smtc-text-global-body3-lineheight))"; + +// @public (undocumented) +export const textRampSmItemheaderLineheightRaw = "--smtc-text-ramp-sm-itemheader-lineheight"; + +// @public (undocumented) +export const textRampSmLegalFontsize = "var(--smtc-text-ramp-sm-legal-fontsize, var(--smtc-text-global-caption2-fontsize))"; + +// @public (undocumented) +export const textRampSmLegalFontsizeRaw = "--smtc-text-ramp-sm-legal-fontsize"; + +// @public (undocumented) +export const textRampSmLegalLineheight = "var(--smtc-text-ramp-sm-legal-lineheight, var(--smtc-text-global-caption2-lineheight))"; + +// @public (undocumented) +export const textRampSmLegalLineheightRaw = "--smtc-text-ramp-sm-legal-lineheight"; + +// @public (undocumented) +export const textRampSmMetadataFontsize = "var(--smtc-text-ramp-sm-metadata-fontsize, var(--smtc-text-global-caption1-fontsize))"; + +// @public (undocumented) +export const textRampSmMetadataFontsizeRaw = "--smtc-text-ramp-sm-metadata-fontsize"; + +// @public (undocumented) +export const textRampSmMetadataLineheight = "var(--smtc-text-ramp-sm-metadata-lineheight, var(--smtc-text-global-caption1-lineheight))"; + +// @public (undocumented) +export const textRampSmMetadataLineheightRaw = "--smtc-text-ramp-sm-metadata-lineheight"; + +// @public (undocumented) +export const textRampSmPageheaderFontsize = "var(--smtc-text-ramp-sm-pageheader-fontsize, var(--smtc-text-global-subtitle1-fontsize))"; + +// @public (undocumented) +export const textRampSmPageheaderFontsizeRaw = "--smtc-text-ramp-sm-pageheader-fontsize"; + +// @public (undocumented) +export const textRampSmPageheaderLineheight = "var(--smtc-text-ramp-sm-pageheader-lineheight, var(--smtc-text-global-subtitle1-lineheight))"; + +// @public (undocumented) +export const textRampSmPageheaderLineheightRaw = "--smtc-text-ramp-sm-pageheader-lineheight"; + +// @public (undocumented) +export const textRampSmReadingbodyFontsize = "var(--smtc-text-ramp-sm-readingbody-fontsize, var(--smtc-text-global-body3-fontsize))"; + +// @public (undocumented) +export const textRampSmReadingbodyFontsizeRaw = "--smtc-text-ramp-sm-readingbody-fontsize"; + +// @public (undocumented) +export const textRampSmReadingbodyLineheight = "var(--smtc-text-ramp-sm-readingbody-lineheight, var(--smtc-text-global-body3-lineheight))"; + +// @public (undocumented) +export const textRampSmReadingbodyLineheightRaw = "--smtc-text-ramp-sm-readingbody-lineheight"; + +// @public (undocumented) +export const textRampSmSectionheaderFontsize = "var(--smtc-text-ramp-sm-sectionheader-fontsize, var(--smtc-text-global-subtitle2-fontsize))"; + +// @public (undocumented) +export const textRampSmSectionheaderFontsizeRaw = "--smtc-text-ramp-sm-sectionheader-fontsize"; + +// @public (undocumented) +export const textRampSmSectionheaderLineheight = "var(--smtc-text-ramp-sm-sectionheader-lineheight, var(--smtc-text-global-subtitle2-lineheight))"; + +// @public (undocumented) +export const textRampSmSectionheaderLineheightRaw = "--smtc-text-ramp-sm-sectionheader-lineheight"; + +// @public (undocumented) +export const textRampSmSubsectionheaderFontsize = "var(--smtc-text-ramp-sm-subsectionheader-fontsize, var(--smtc-text-global-body1-fontsize))"; + +// @public (undocumented) +export const textRampSmSubsectionheaderFontsizeRaw = "--smtc-text-ramp-sm-subsectionheader-fontsize"; + +// @public (undocumented) +export const textRampSmSubsectionheaderLineheight = "var(--smtc-text-ramp-sm-subsectionheader-lineheight, var(--smtc-text-global-body1-lineheight))"; + +// @public (undocumented) +export const textRampSmSubsectionheaderLineheightRaw = "--smtc-text-ramp-sm-subsectionheader-lineheight"; + +// @public (undocumented) +export const textRampSubsectionheaderFontsize = "var(--smtc-text-ramp-subsectionheader-fontsize, var(--smtc-text-global-subtitle2-fontsize))"; + +// @public (undocumented) +export const textRampSubsectionheaderFontsizeRaw = "--smtc-text-ramp-subsectionheader-fontsize"; + +// @public (undocumented) +export const textRampSubsectionheaderLineheight = "var(--smtc-text-ramp-subsectionheader-lineheight, var(--smtc-text-global-subtitle2-lineheight))"; + +// @public (undocumented) +export const textRampSubsectionheaderLineheightRaw = "--smtc-text-ramp-subsectionheader-lineheight"; + +// @public (undocumented) +export const textStyleAiHeaderCase = "var(--smtc-text-style-ai-header-case, unset)"; + +// @public (undocumented) +export const textStyleAiHeaderCaseRaw = "--smtc-text-style-ai-header-case"; + +// @public (undocumented) +export const textStyleAiHeaderFontfamily = "var(--smtc-text-style-ai-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleAiHeaderFontfamilyRaw = "--smtc-text-style-ai-header-fontfamily"; + +// @public (undocumented) +export const textStyleAiHeaderLetterspacing = "var(--smtc-text-style-ai-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleAiHeaderLetterspacingRaw = "--smtc-text-style-ai-header-letterspacing"; + +// @public (undocumented) +export const textStyleAiHeaderWeight = "var(--smtc-text-style-ai-header-weight, var(--smtc-text-style-default-header-weight))"; + +// @public (undocumented) +export const textStyleAiHeaderWeightRaw = "--smtc-text-style-ai-header-weight"; + +// @public (undocumented) +export const textStyleAiRegularFontfamily = "var(--smtc-text-style-ai-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleAiRegularFontfamilyRaw = "--smtc-text-style-ai-regular-fontfamily"; + +// @public (undocumented) +export const textStyleAiRegularLetterspacing = "var(--smtc-text-style-ai-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleAiRegularLetterspacingRaw = "--smtc-text-style-ai-regular-letterspacing"; + +// @public (undocumented) +export const textStyleAiRegularWeight = "var(--smtc-text-style-ai-regular-weight, var(--smtc-text-style-default-regular-weight))"; + +// @public (undocumented) +export const textStyleAiRegularWeightRaw = "--smtc-text-style-ai-regular-weight"; + +// @public (undocumented) +export const textStyleArticleHeaderCase = "var(--smtc-text-style-article-header-case, unset)"; + +// @public (undocumented) +export const textStyleArticleHeaderCaseRaw = "--smtc-text-style-article-header-case"; + +// @public (undocumented) +export const textStyleArticleHeaderFontfamily = "var(--smtc-text-style-article-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleArticleHeaderFontfamilyRaw = "--smtc-text-style-article-header-fontfamily"; + +// @public (undocumented) +export const textStyleArticleHeaderLetterspacing = "var(--smtc-text-style-article-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleArticleHeaderLetterspacingRaw = "--smtc-text-style-article-header-letterspacing"; + +// @public (undocumented) +export const textStyleArticleHeaderWeight = "var(--smtc-text-style-article-header-weight, var(--smtc-text-style-default-header-weight))"; + +// @public (undocumented) +export const textStyleArticleHeaderWeightRaw = "--smtc-text-style-article-header-weight"; + +// @public (undocumented) +export const textStyleArticleRegularFontfamily = "var(--smtc-text-style-article-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleArticleRegularFontfamilyRaw = "--smtc-text-style-article-regular-fontfamily"; + +// @public (undocumented) +export const textStyleArticleRegularLetterspacing = "var(--smtc-text-style-article-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleArticleRegularLetterspacingRaw = "--smtc-text-style-article-regular-letterspacing"; + +// @public (undocumented) +export const textStyleArticleRegularWeight = "var(--smtc-text-style-article-regular-weight, var(--smtc-text-style-default-regular-weight))"; + +// @public (undocumented) +export const textStyleArticleRegularWeightRaw = "--smtc-text-style-article-regular-weight"; + +// @public (undocumented) +export const textStyleCodeHeaderCase = "var(--smtc-text-style-code-header-case, unset)"; + +// @public (undocumented) +export const textStyleCodeHeaderCaseRaw = "--smtc-text-style-code-header-case"; + +// @public (undocumented) +export const textStyleCodeHeaderFontfamily = "var(--smtc-text-style-code-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleCodeHeaderFontfamilyRaw = "--smtc-text-style-code-header-fontfamily"; + +// @public (undocumented) +export const textStyleCodeHeaderLetterspacing = "var(--smtc-text-style-code-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleCodeHeaderLetterspacingRaw = "--smtc-text-style-code-header-letterspacing"; + +// @public (undocumented) +export const textStyleCodeHeaderWeight = "var(--smtc-text-style-code-header-weight, var(--smtc-text-style-default-header-weight))"; + +// @public (undocumented) +export const textStyleCodeHeaderWeightRaw = "--smtc-text-style-code-header-weight"; + +// @public (undocumented) +export const textStyleCodeRegularFontfamily = "var(--smtc-text-style-code-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleCodeRegularFontfamilyRaw = "--smtc-text-style-code-regular-fontfamily"; + +// @public (undocumented) +export const textStyleCodeRegularLetterspacing = "var(--smtc-text-style-code-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleCodeRegularLetterspacingRaw = "--smtc-text-style-code-regular-letterspacing"; + +// @public (undocumented) +export const textStyleCodeRegularWeight = "var(--smtc-text-style-code-regular-weight, var(--smtc-text-style-default-regular-weight))"; + +// @public (undocumented) +export const textStyleCodeRegularWeightRaw = "--smtc-text-style-code-regular-weight"; + +// @public (undocumented) +export const textStyleDatavizHeaderCase = "var(--smtc-text-style-dataviz-header-case, unset)"; + +// @public (undocumented) +export const textStyleDatavizHeaderCaseRaw = "--smtc-text-style-dataviz-header-case"; + +// @public (undocumented) +export const textStyleDatavizHeaderFontfamily = "var(--smtc-text-style-dataviz-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleDatavizHeaderFontfamilyRaw = "--smtc-text-style-dataviz-header-fontfamily"; + +// @public (undocumented) +export const textStyleDatavizHeaderLetterspacing = "var(--smtc-text-style-dataviz-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleDatavizHeaderLetterspacingRaw = "--smtc-text-style-dataviz-header-letterspacing"; + +// @public (undocumented) +export const textStyleDatavizHeaderWeight = "var(--smtc-text-style-dataviz-header-weight, var(--smtc-text-style-default-header-weight))"; + +// @public (undocumented) +export const textStyleDatavizHeaderWeightRaw = "--smtc-text-style-dataviz-header-weight"; + +// @public (undocumented) +export const textStyleDatavizRegularFontfamily = "var(--smtc-text-style-dataviz-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleDatavizRegularFontfamilyRaw = "--smtc-text-style-dataviz-regular-fontfamily"; + +// @public (undocumented) +export const textStyleDatavizRegularLetterspacing = "var(--smtc-text-style-dataviz-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleDatavizRegularLetterspacingRaw = "--smtc-text-style-dataviz-regular-letterspacing"; + +// @public (undocumented) +export const textStyleDatavizRegularWeight = "var(--smtc-text-style-dataviz-regular-weight, var(--smtc-text-style-default-regular-weight))"; + +// @public (undocumented) +export const textStyleDatavizRegularWeightRaw = "--smtc-text-style-dataviz-regular-weight"; + +// @public (undocumented) +export const textStyleDefaultHeaderCase = "var(--smtc-text-style-default-header-case, unset)"; + +// @public (undocumented) +export const textStyleDefaultHeaderCaseRaw = "--smtc-text-style-default-header-case"; + +// @public (undocumented) +export const textStyleDefaultHeaderFontfamily = "var(--smtc-text-style-default-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleDefaultHeaderFontfamilyRaw = "--smtc-text-style-default-header-fontfamily"; + +// @public (undocumented) +export const textStyleDefaultHeaderLetterspacing = "var(--smtc-text-style-default-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleDefaultHeaderLetterspacingRaw = "--smtc-text-style-default-header-letterspacing"; + +// @public (undocumented) +export const textStyleDefaultHeaderWeight = "var(--smtc-text-style-default-header-weight)"; + +// @public (undocumented) +export const textStyleDefaultHeaderWeightRaw = "--smtc-text-style-default-header-weight"; + +// @public (undocumented) +export const textStyleDefaultRegularFontfamily = "var(--smtc-text-style-default-regular-fontfamily, var(--fontFamilyBase))"; + +// @public (undocumented) +export const textStyleDefaultRegularFontfamilyRaw = "--smtc-text-style-default-regular-fontfamily"; + +// @public (undocumented) +export const textStyleDefaultRegularLetterspacing = "var(--smtc-text-style-default-regular-letterspacing)"; + +// @public (undocumented) +export const textStyleDefaultRegularLetterspacingRaw = "--smtc-text-style-default-regular-letterspacing"; + +// @public (undocumented) +export const textStyleDefaultRegularWeight = "var(--smtc-text-style-default-regular-weight, var(--fontWeightRegular))"; + +// @public (undocumented) +export const textStyleDefaultRegularWeightRaw = "--smtc-text-style-default-regular-weight"; + +// @public (undocumented) +export const textStyleQuoteHeaderCase = "var(--smtc-text-style-quote-header-case, unset)"; + +// @public (undocumented) +export const textStyleQuoteHeaderCaseRaw = "--smtc-text-style-quote-header-case"; + +// @public (undocumented) +export const textStyleQuoteHeaderFontfamily = "var(--smtc-text-style-quote-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleQuoteHeaderFontfamilyRaw = "--smtc-text-style-quote-header-fontfamily"; + +// @public (undocumented) +export const textStyleQuoteHeaderLetterspacing = "var(--smtc-text-style-quote-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleQuoteHeaderLetterspacingRaw = "--smtc-text-style-quote-header-letterspacing"; + +// @public (undocumented) +export const textStyleQuoteHeaderWeight = "var(--smtc-text-style-quote-header-weight, var(--smtc-text-style-default-header-weight))"; + +// @public (undocumented) +export const textStyleQuoteHeaderWeightRaw = "--smtc-text-style-quote-header-weight"; + +// @public (undocumented) +export const textStyleQuoteRegularFontfamily = "var(--smtc-text-style-quote-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; + +// @public (undocumented) +export const textStyleQuoteRegularFontfamilyRaw = "--smtc-text-style-quote-regular-fontfamily"; + +// @public (undocumented) +export const textStyleQuoteRegularLetterspacing = "var(--smtc-text-style-quote-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; + +// @public (undocumented) +export const textStyleQuoteRegularLetterspacingRaw = "--smtc-text-style-quote-regular-letterspacing"; + +// @public (undocumented) +export const textStyleQuoteRegularWeight = "var(--smtc-text-style-quote-regular-weight, var(--smtc-text-style-default-regular-weight))"; + +// @public (undocumented) +export const textStyleQuoteRegularWeightRaw = "--smtc-text-style-quote-regular-weight"; + +// (No @packageDocumentation comment for this package) + +``` diff --git a/packages/semantic-tokens/jest.config.js b/packages/semantic-tokens/jest.config.js new file mode 100644 index 0000000000000..8360c356c1c5a --- /dev/null +++ b/packages/semantic-tokens/jest.config.js @@ -0,0 +1,33 @@ +// @ts-check +/* eslint-disable */ + +const { readFileSync } = require('node:fs'); +const { join } = require('node:path'); + +// Reading the SWC compilation config and remove the "exclude" +// for the test files to be compiled by SWC +const { exclude: _, ...swcJestConfig } = JSON.parse(readFileSync(join(__dirname, '.swcrc'), 'utf-8')); + +// disable .swcrc look-up by SWC core because we're passing in swcJestConfig ourselves. +// If we do not disable this, SWC Core will read .swcrc and won't transform our test files due to "exclude" +if (swcJestConfig.swcrc === undefined) { + swcJestConfig.swcrc = false; +} + +// Uncomment if using global setup/teardown files being transformed via swc +// https://nx.dev/packages/jest/documents/overview#global-setup/teardown-with-nx-libraries +// jest needs EsModule Interop to find the default exported setup/teardown functions +// swcJestConfig.module.noInterop = false; + +/** + * @type {import('@jest/types').Config.InitialOptions} + */ +module.exports = { + displayName: 'semantic-tokens', + preset: '../../jest.preset.js', + transform: { + '^.+\\.tsx?$': ['@swc/jest', swcJestConfig], + }, + coverageDirectory: './coverage', + setupFilesAfterEnv: ['./config/tests.js'], +}; diff --git a/packages/semantic-tokens/package.json b/packages/semantic-tokens/package.json new file mode 100644 index 0000000000000..4b938f54d7c17 --- /dev/null +++ b/packages/semantic-tokens/package.json @@ -0,0 +1,47 @@ +{ + "name": "@fluentui/semantic-tokens", + "version": "0.0.0-alpha.1", + "description": "Fluent UI Theme semantic-tokens", + "main": "lib-commonjs/index.js", + "module": "lib/index.js", + "typings": "./dist/index.d.ts", + "sideEffects": false, + "repository": { + "type": "git", + "url": "https://github.com/microsoft/fluentui" + }, + "license": "MIT", + "devDependencies": { + "@fluentui/eslint-plugin": "*", + "@fluentui/scripts-api-extractor": "*", + "@fluentui/tokens": ">=1.0.0-alpha", + "@swc/helpers": "^0.5.1" + }, + "dependencies": {}, + "beachball": { + "disallowedChangeTypes": [ + "major", + "minor", + "patch" + ] + }, + "exports": { + ".": { + "types": "./dist/index.d.ts", + "node": "./lib-commonjs/index.js", + "import": "./lib/index.js", + "require": "./lib-commonjs/index.js" + }, + "./package.json": "./package.json" + }, + "files": [ + "*.md", + "dist/*.d.ts", + "lib", + "lib-commonjs" + ], + "scripts": { + "generate-tokens": "npx ts-node scripts/tokenGen.ts", + "generate-legacy-tokens": "npx ts-node scripts/legacyTokens.ts" + } +} diff --git a/packages/semantic-tokens/playwright.config.ts b/packages/semantic-tokens/playwright.config.ts new file mode 100644 index 0000000000000..83dee12790dc5 --- /dev/null +++ b/packages/semantic-tokens/playwright.config.ts @@ -0,0 +1,41 @@ +/* eslint-disable import/no-extraneous-dependencies */ +import type { PlaywrightTestConfig } from '@playwright/test'; +import { devices } from '@playwright/test'; + +const config: PlaywrightTestConfig = { + reporter: 'list', + retries: 3, + fullyParallel: process.env.CI ? false : true, + timeout: process.env.CI ? 10000 : 30000, + use: { + baseURL: 'http://localhost:6006', + viewport: { + height: 720, + width: 1280, + }, + }, + projects: [ + { + name: 'chromium', + use: { ...devices['Desktop Chrome'] }, + testMatch: /.*\.spec-e2e\.ts$/, + }, + // { + // name: 'firefox', + // use: { ...devices['Desktop Firefox'] }, + // testMatch: [/set-theme\.spec\.ts$/], + // }, + // { + // name: 'webkit', + // use: { ...devices['Desktop Safari'] }, + // testMatch: [/set-theme\.spec\.ts$/], + // }, + ], + webServer: { + command: `node scripts/server.js --port 6006`, + port: 6006, + reuseExistingServer: process.env.CI ? false : true, + }, +}; + +export default config; diff --git a/packages/semantic-tokens/project.json b/packages/semantic-tokens/project.json new file mode 100644 index 0000000000000..28d906bd209be --- /dev/null +++ b/packages/semantic-tokens/project.json @@ -0,0 +1,19 @@ +{ + "name": "semantic-tokens", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "projectType": "library", + "implicitDependencies": [], + "sourceRoot": "packages/semantic-tokens/src", + "tags": ["vNext", "platform:web"], + "targets": { + "e2e": { + "dependsOn": ["build"] + }, + "token-pipeline": { + "command": "node -r ../../scripts/ts-node/src/register ../../scripts/generators/src/token-pipeline.ts", + "options": { + "cwd": "{projectRoot}" + } + } + } +} diff --git a/packages/semantic-tokens/scripts/fluentOverrides.ts b/packages/semantic-tokens/scripts/fluentOverrides.ts new file mode 100644 index 0000000000000..413cb2cf5cc8d --- /dev/null +++ b/packages/semantic-tokens/scripts/fluentOverrides.ts @@ -0,0 +1,30 @@ +export type FluentOverrideValue = + | { + f2Token: string; + rawValue?: never; + } + | { + f2Token?: never; + rawValue: string; + }; + +export interface FluentOverrides { + [key: string]: FluentOverrideValue; +} + +export const fluentOverrides: FluentOverrides = { + ctrlFocusOuterStroke: { + f2Token: 'colorStrokeFocus2', + }, + ctrlLinkForegroundBrandRest: { f2Token: 'colorBrandForegroundLink' }, + textStyleDefaultRegularFontfamily: { f2Token: 'fontFamilyBase' }, + textGlobalBody3Fontsize: { f2Token: 'fontSizeBase300' }, + textStyleDefaultRegularWeight: { f2Token: 'fontWeightRegular' }, + strokewidthDefault: { f2Token: 'strokeWidthThin' }, + ctrlLinkForegroundBrandHover: { f2Token: 'colorBrandForegroundLinkHover' }, + ctrlLinkForegroundBrandPressed: { f2Token: 'colorBrandForegroundLinkPressed' }, + ctrlLinkForegroundNeutralRest: { f2Token: 'colorNeutralForeground2' }, + ctrlLinkForegroundNeutralPressed: { f2Token: 'colorNeutralForeground2Pressed' }, + ctrlLinkForegroundNeutralHover: { f2Token: 'colorNeutralForeground2Hover' }, + foregroundCtrlNeutralPrimaryDisabled: { f2Token: 'colorNeutralForegroundDisabled' }, +}; diff --git a/packages/semantic-tokens/scripts/legacyTokens.ts b/packages/semantic-tokens/scripts/legacyTokens.ts new file mode 100644 index 0000000000000..50c8584085c66 --- /dev/null +++ b/packages/semantic-tokens/scripts/legacyTokens.ts @@ -0,0 +1,35 @@ +import fs from 'node:fs'; +import path from 'node:path'; + +import * as tokensPackage from '@fluentui/tokens'; + +main(); + +function main() { + console.log('Importing all fluent legacy tokens as flat export'); + + const fluentTokens = Object.keys(tokensPackage.tokens); + const comment = '// THIS FILE IS GENERATED AS PART OF THE BUILD PROCESS. DO NOT MANUALLY MODIFY THIS FILE\n'; + + const generatedTokens = fluentTokens.reduce((acc, t) => { + const token = ` +/** + * CSS custom property value for the {@link @fluentui/tokens#${t} | \`${t}\`} design token. + * @public + */ +export const ${t} = 'var(--${t})'; +`; + return acc + token; + }, ''); + + const dir = path.join(__dirname, '../src/legacy'); + + if (!fs.existsSync(dir)) { + fs.mkdirSync(dir, { recursive: true }); + } + + fs.writeFile(path.join(dir, 'tokens.ts'), comment + generatedTokens, err => { + if (err) throw err; + console.log('Legacy tokens reference created'); + }); +} diff --git a/packages/semantic-tokens/scripts/server.js b/packages/semantic-tokens/scripts/server.js new file mode 100644 index 0000000000000..02faf5439eb8d --- /dev/null +++ b/packages/semantic-tokens/scripts/server.js @@ -0,0 +1,34 @@ +// @ts-check + +const { parseArgs } = require('node:util'); +const path = require('node:path'); +const express = require('express'); + +main(); + +function main() { + const argv = processArgs(); + + const app = express(); + const port = argv.port; + + app.use(express.static(path.join(__dirname))); + app.use('/lib', express.static(path.join(__dirname, '../lib'))); + + app.listen(port, () => { + console.log(`Example app listening on port ${port}`); + }); +} + +function processArgs() { + const options = /** @type {const} */ ({ + port: { + type: 'string', + default: '6006', + }, + }); + + const { values } = parseArgs({ options, allowPositionals: false }); + + return values; +} diff --git a/packages/semantic-tokens/scripts/test-esm.html b/packages/semantic-tokens/scripts/test-esm.html new file mode 100644 index 0000000000000..4bb12e0d739e5 --- /dev/null +++ b/packages/semantic-tokens/scripts/test-esm.html @@ -0,0 +1,71 @@ + + + + + + native ESM for @fluentui/tokens + + + + + +

Native ESM / @fluentui/tokens

+
+ + diff --git a/packages/semantic-tokens/scripts/tokenGen.ts b/packages/semantic-tokens/scripts/tokenGen.ts new file mode 100644 index 0000000000000..7a772d09c2a98 --- /dev/null +++ b/packages/semantic-tokens/scripts/tokenGen.ts @@ -0,0 +1,333 @@ +/* + * Token generation script + * Takes in a Figma token export file and generates token raw strings and CSS Var files + */ +import tokensJSONRaw from './tokens.json'; +import { fluentOverrides as fluentFallbacksRaw, FluentOverrideValue, type FluentOverrides } from './fluentOverrides'; +import fs from 'fs'; +import { Project } from 'ts-morph'; +import { format } from 'prettier'; + +const project = new Project({ + tsConfigFilePath: './tsconfig.json', +}); + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +const tokensJSON: Record = tokensJSONRaw; +const fluentFallbacks: FluentOverrides = fluentFallbacksRaw; +// Store exports so we can add them to index.ts at the end +// eslint-disable-next-line @typescript-eslint/no-explicit-any +const exportList: Record = {}; + +interface Token { + no: number; + name: string; + // eslint-disable-next-line @typescript-eslint/naming-convention + fst_reference: string; + optional: boolean; + nullable: boolean; + description: string; + components: string[]; + contrast: string; + fallback: string; + exceptions: string[]; + cssName: string; +} + +interface ComponentTokenMap { + [component: string]: string; +} + +function generateTokens() { + console.log('Generating tokens...'); + // Simple for now, just generate the raw strings and variables + generateTokenRawStrings(); + generateTokenVariables(); +} + +function escapeInlineToken(token: string) { + return `\$\{${token}\}`; +} + +function escapeMixedInlineToken(token: FluentOverrideValue) { + // The FluentOverrideValue type has two mutually exclusive properties: f2Token and rawValue + // We need to check which one is defined and use that value + if (token.f2Token !== undefined) { + return `\$\{${token.f2Token}\}`; + } else { + // we only have a raw value so we should print it directly. + return `${token.rawValue}`; + } +} + +function cleanFSTTokenName(originalTokenName: string) { + // Handle any name housekeeping or small token name fixes + + let newtokenName = originalTokenName.replace('-', '/'); + // Ignore space + newtokenName = newtokenName.replace(' ', ''); + // Ignore brackets (w/ leading slash) + newtokenName = newtokenName.replace('/(', '/'); + // Ignore brackets + newtokenName = newtokenName.replace('(', '/').replace(')', ''); + + return newtokenName; +} + +function generateTokenRawStrings() { + let optionalRawTokens = ''; + let controlRawTokens = ''; + let nullableRawTokens = ''; + const componentTokens: ComponentTokenMap = {}; + const optionalVarFile = './src/optional/variables.ts'; + exportList[optionalVarFile] = []; + const controlVarFile = './src/control/variables.ts'; + exportList[controlVarFile] = []; + const nullableVarFile = './src/nullable/variables.ts'; + exportList[nullableVarFile] = []; + const getComponentFile = (component: string) => `./src/components/${component}/variables.ts`; + + for (const token in tokensJSON) { + if (tokensJSON.hasOwnProperty(token)) { + const tokenData: Token = tokensJSON[token]; + const tokenName = tokenData.cssName; + const tokenRawString = `export const ${token}Raw = '${tokenName}';\n`; + + if (tokenData.name.startsWith('CTRL/')) { + // We have a component level control token + const component = tokenData.name.split('/')[1]; + if (!componentTokens[component]) { + componentTokens[component] = ''; + } + componentTokens[component] += tokenRawString; + + if (!exportList[getComponentFile(component)]) { + const fileLoc = getComponentFile(component); + exportList[fileLoc] = []; + } + exportList[getComponentFile(component)].push(`${token}Raw`); + } else { + if (tokenData.optional) { + optionalRawTokens += tokenRawString; + exportList[optionalVarFile].push(`${token}Raw`); + } else if (tokenData.nullable) { + nullableRawTokens += tokenRawString; + exportList[nullableVarFile].push(`${token}Raw`); + } else { + controlRawTokens += tokenRawString; + exportList[controlVarFile].push(`${token}Raw`); + } + } + } + } + + fs.writeFileSync(optionalVarFile, optionalRawTokens); + fs.writeFileSync(controlVarFile, controlRawTokens); + fs.writeFileSync(nullableVarFile, nullableRawTokens); + project.addSourceFileAtPathIfExists(optionalVarFile); + project.addSourceFileAtPathIfExists(controlVarFile); + project.addSourceFileAtPathIfExists(nullableVarFile); + + for (const component in componentTokens) { + if (componentTokens.hasOwnProperty(component)) { + const dir = `./src/components/${component}/`; + + if (!fs.existsSync(dir)) { + fs.mkdirSync(dir, { recursive: true }); + } + const variablePath = getComponentFile(component); + fs.writeFileSync(variablePath, componentTokens[component]); + project.addSourceFileAtPathIfExists(variablePath); + } + } +} + +function toCamelCase(str: string) { + const formattedString = cleanFSTTokenName(str); + + return formattedString + .split('/') + .map((word: string, index: number) => { + // If it is the first word make sure to lowercase all the chars. + if (index === 0) { + return word.toLowerCase(); + } + // If it is not the first word only upper case the first char and lowercase the rest. + return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase(); + }) + .join(''); +} + +function generateTokenVariables() { + // Default our files to token imports + // TODO: Add raw token imports + let optionalTokens = ''; + let controlTokens = ''; + let nullableTokens = ''; + const componentTokens: ComponentTokenMap = {}; + + const optionalVarFile = './src/optional/tokens.ts'; + exportList[optionalVarFile] = []; + const controlVarFile = './src/control/tokens.ts'; + exportList[controlVarFile] = []; + const nullableVarFile = './src/nullable/tokens.ts'; + exportList[nullableVarFile] = []; + const getComponentFile = (component: string) => `./src/components/${component}/tokens.ts`; + + for (const token in tokensJSON) { + if (token.includes('(figma only)')) { + // Superfluous tokens - SKIP + continue; + } + + const tokenData: Token = tokensJSON[token]; + const tokenNameRaw = token + 'Raw'; + + let tokenSemanticRef: null | string = null; + let tokenSemanticName: null | string = null; + + if (tokenData.fst_reference.length > 0) { + tokenSemanticName = toCamelCase(cleanFSTTokenName(tokenData.fst_reference)); + tokenSemanticRef = tokenSemanticName + 'Raw'; + } + + /** + * TODO, we need to account for the fact that the fallbacks can be nullable tokens and as such we need to ensure + * that they are not wrapped in the var() css function. This is because `unset` is not a variable and a statement. + * We also need to ensure legacy F2 tokens are not wrapped in the var() css function because they have the var() css function + * already in the token value. Any other values should probably include the var() css function. + */ + + // Our default token value if no fallbacks found. + let resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)})`; + + if (tokenSemanticRef && fluentFallbacks[token]) { + // Token has a FST fallback and a fluent override fallback + resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)}, var(${escapeInlineToken( + tokenSemanticRef, + )}, ${escapeMixedInlineToken(fluentFallbacks[token])}))`; + } else if (fluentFallbacks[token]) { + // Token has a fluent override fallback only + resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)}, ${escapeMixedInlineToken( + fluentFallbacks[token], + )})`; + } else if (tokenData.nullable && tokenSemanticRef) { + // nullable tokens should always resolve to unset + resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)}, unset)`; + } else if (tokenSemanticRef) { + // Token has a FST reference fallback only + resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)}, var(${escapeInlineToken(tokenSemanticRef)}))`; + } + + if (tokenData.name.startsWith('CTRL/')) { + // We have a component level control token + const component = tokenData.name.split('/')[1]; + if (!componentTokens[component]) { + componentTokens[component] = ''; + } + componentTokens[component] += `export const ${token} = \`${resolvedTokenFallback}\`;\n`; + + if (!exportList[getComponentFile(component)]) { + const fileLoc = getComponentFile(component); + exportList[fileLoc] = []; + } + // Add to our list of exports for later + exportList[getComponentFile(component)].push(token); + } else { + // We have a global token + if (tokenData.optional) { + optionalTokens += `export const ${token} = \`${resolvedTokenFallback}\`;\n`; + // Add to our list of exports for later + exportList[optionalVarFile].push(token); + } else if (tokenData.nullable) { + nullableTokens += `export const ${token} = \`${resolvedTokenFallback}\`;\n`; + // Add to our list of exports for later + exportList[nullableVarFile].push(token); + } else { + controlTokens += `export const ${token} = \`${resolvedTokenFallback}\`;\n`; + // Add to our list of exports for later + exportList[controlVarFile].push(token); + } + } + } + + // Write files + fs.writeFileSync('./src/optional/tokens.ts', optionalTokens); + fs.writeFileSync('./src/control/tokens.ts', controlTokens); + fs.writeFileSync('./src/nullable/tokens.ts', nullableTokens); + + // Add source files for import statements + project.addSourceFileAtPath('./src/legacy/tokens.ts'); + project.addSourceFileAtPath('./src/optional/tokens.ts'); + project.addSourceFileAtPath('./src/control/tokens.ts'); + project.addSourceFileAtPath('./src/nullable/tokens.ts'); + + for (const component in componentTokens) { + if (componentTokens.hasOwnProperty(component)) { + const dir = `./src/components/${component}/`; + + if (!fs.existsSync(dir)) { + fs.mkdirSync(dir, { recursive: true }); + } + const componentTokensPath = `./src/components/${component}/tokens.ts`; + fs.writeFileSync(componentTokensPath, componentTokens[component]); + // Add component source files for import statements + project.addSourceFileAtPath(componentTokensPath); + } + } + + // Add import statements + project.getSourceFiles().forEach(sourceFile => { + console.log('Fix missing imports from:', sourceFile.getFilePath()); + sourceFile.fixMissingImports().organizeImports().fixUnusedIdentifiers().formatText(); + + // Format our text to match prettier rules + const rawText = sourceFile.getText(); + let formattedText = format(rawText, { + parser: 'typescript', + singleQuote: true, + printWidth: 120, + }); + + // Format our text to match prettier rules + sourceFile.replaceWithText(formattedText); + }); + + // Save changes so far + project.saveSync(); + console.log('Added import statements'); + + // Add export statements in index.ts + const indexFilePath = './src/index.ts'; + // Clear index file and rewrite exports + fs.truncateSync(indexFilePath, 0); + // Add source file after we've cleaned it + const indexSourceFile = project.addSourceFileAtPath(indexFilePath); + for (const file in exportList) { + if (exportList.hasOwnProperty(file)) { + // Specifier should be relative and not include .ts + const importFilePath = file.replace('./src/', './').replace('.ts', ''); + indexSourceFile.addExportDeclaration({ + namedExports: exportList[file], + moduleSpecifier: importFilePath, + }); + } + } + + const rawText = indexSourceFile.getText(); + const formattedText = format(rawText, { + parser: 'typescript', + singleQuote: true, + printWidth: 120, + }); + + // Format our text to match prettier rules + indexSourceFile.replaceWithText(formattedText); + + // Save exports + project.saveSync(); + console.log('Added export statements'); +} + +// Run script +generateTokens(); diff --git a/packages/semantic-tokens/scripts/tokens.json b/packages/semantic-tokens/scripts/tokens.json new file mode 100644 index 0000000000000..aa4c5103c0fb9 --- /dev/null +++ b/packages/semantic-tokens/scripts/tokens.json @@ -0,0 +1,13131 @@ +{ + "textGlobalDisplay1Fontsize": { + "no": 1, + "name": "text/global/display1/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Font-size/1000", + "exceptions": [], + "cssName": "--smtc-text-global-display1-fontsize" + }, + "textGlobalDisplay1Lineheight": { + "no": 2, + "name": "text/global/display1/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Line-height/1000", + "exceptions": [], + "cssName": "--smtc-text-global-display1-lineheight" + }, + "textGlobalDisplay2Fontsize": { + "no": 3, + "name": "text/global/display2/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-display2-fontsize" + }, + "textGlobalDisplay2Lineheight": { + "no": 4, + "name": "text/global/display2/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-display2-lineheight" + }, + "textGlobalTitle1Fontsize": { + "no": 5, + "name": "text/global/title1/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Font-size/900", + "exceptions": [], + "cssName": "--smtc-text-global-title1-fontsize" + }, + "textGlobalTitle1Lineheight": { + "no": 6, + "name": "text/global/title1/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Line-height/900", + "exceptions": [], + "cssName": "--smtc-text-global-title1-lineheight" + }, + "textGlobalTitle2Fontsize": { + "no": 7, + "name": "text/global/title2/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-title2-fontsize" + }, + "textGlobalTitle2Lineheight": { + "no": 8, + "name": "text/global/title2/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-title2-lineheight" + }, + "textGlobalSubtitle1Fontsize": { + "no": 9, + "name": "text/global/subtitle1/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Inline drawer", "Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-subtitle1-fontsize" + }, + "textGlobalSubtitle1Lineheight": { + "no": 10, + "name": "text/global/subtitle1/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Inline drawer", "Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-subtitle1-lineheight" + }, + "textGlobalSubtitle2Fontsize": { + "no": 11, + "name": "text/global/subtitle2/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-subtitle2-fontsize" + }, + "textGlobalSubtitle2Lineheight": { + "no": 12, + "name": "text/global/subtitle2/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-subtitle2-lineheight" + }, + "textGlobalBody1Fontsize": { + "no": 13, + "name": "text/global/body1/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-body1-fontsize" + }, + "textGlobalBody1Lineheight": { + "no": 14, + "name": "text/global/body1/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-body1-lineheight" + }, + "textGlobalBody2Fontsize": { + "no": 15, + "name": "text/global/body2/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Field"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-body2-fontsize" + }, + "textGlobalBody2Lineheight": { + "no": 16, + "name": "text/global/body2/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Field"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-global-body2-lineheight" + }, + "textGlobalBody3Fontsize": { + "no": 17, + "name": "text/global/body3/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog", "Spinner"], + "contrast": "", + "fallback": "Font-size/300", + "exceptions": [], + "cssName": "--smtc-text-global-body3-fontsize" + }, + "textGlobalBody3Lineheight": { + "no": 18, + "name": "text/global/body3/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "FAB", + " Radio", + " Checkbox", + "Dialog", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Field", + "Label", + "Inline link", + "Page link", + "Lite Filter Button", + "Spinner" + ], + "contrast": "", + "fallback": "Line-height/300", + "exceptions": [], + "cssName": "--smtc-text-global-body3-lineheight" + }, + "textGlobalCaption1Fontsize": { + "no": 19, + "name": "text/global/caption1/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer", "Tooltip", "MessageBar"], + "contrast": "", + "fallback": "Font-size/200", + "exceptions": [], + "cssName": "--smtc-text-global-caption1-fontsize" + }, + "textGlobalCaption1Lineheight": { + "no": 20, + "name": "text/global/caption1/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer", "Tooltip", "MessageBar"], + "contrast": "", + "fallback": "Line-height/200", + "exceptions": [], + "cssName": "--smtc-text-global-caption1-lineheight" + }, + "textGlobalCaption2Fontsize": { + "no": 21, + "name": "text/global/caption2/fontSize", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Inline drawer", "Overlay drawer", "Field"], + "contrast": "", + "fallback": "Font-size/100", + "exceptions": [], + "cssName": "--smtc-text-global-caption2-fontsize" + }, + "textGlobalCaption2Lineheight": { + "no": 22, + "name": "text/global/caption2/lineHeight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Inline drawer", "Overlay drawer", "Field"], + "contrast": "", + "fallback": "Line-height/100", + "exceptions": [], + "cssName": "--smtc-text-global-caption2-lineheight" + }, + "textStyleDefaultRegularFontfamily": { + "no": 23, + "name": "text/style/default/regular/fontFamily", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "FAB", + "Split button", + "Button", + " Radio", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Field", + "Label", + "Inline link", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "Tooltip", + "Rating", + "Spinner", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-default-regular-fontfamily" + }, + "textStyleDefaultRegularWeight": { + "no": 24, + "name": "text/style/default/regular/weight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "FAB", + " Radio", + " Checkbox", + "Dialog", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Field", + "Label", + "Inline link", + "Page link", + "Lite Filter Button", + "Lite filter", + "Tooltip", + "Rating", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-default-regular-weight" + }, + "textStyleDefaultRegularLetterspacing": { + "no": 25, + "name": "text/style/default/regular/letterSpacing", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "FAB", + "Split button", + "Button", + " Radio", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Field", + "Label", + "Inline link", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "Tooltip", + "Rating", + "Spinner", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-default-regular-letterspacing" + }, + "textStyleDefaultHeaderFontfamily": { + "no": 26, + "name": "text/style/default/header/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": ["Avatar", "Dialog", "Inline drawer", "Overlay drawer", "Field", "MessageBar"], + "contrast": "", + "fallback": "Font-family/Base", + "exceptions": [], + "cssName": "--smtc-text-style-default-header-fontfamily" + }, + "textStyleDefaultHeaderWeight": { + "no": 27, + "name": "text/style/default/header/weight", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Avatar", "Dialog", "Inline drawer", "Overlay drawer", "Field", "Label", "MessageBar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-default-header-weight" + }, + "textStyleDefaultHeaderLetterspacing": { + "no": 28, + "name": "text/style/default/header/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": ["Avatar", "Dialog", "Inline drawer", "Overlay drawer", "Field", "MessageBar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-default-header-letterspacing" + }, + "textStyleDefaultHeaderCase": { + "no": 29, + "name": "text/style/default/header/case", + "fst_reference": "NULL/string", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-default-header-case" + }, + "textStyleAiRegularFontfamily": { + "no": 30, + "name": "text/style/ai/regular/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-ai-regular-fontfamily" + }, + "textStyleAiRegularWeight": { + "no": 31, + "name": "text/style/ai/regular/weight", + "fst_reference": "text/style/default/regular/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-ai-regular-weight" + }, + "textStyleAiRegularLetterspacing": { + "no": 32, + "name": "text/style/ai/regular/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-ai-regular-letterspacing" + }, + "textStyleAiHeaderFontfamily": { + "no": 33, + "name": "text/style/ai/header/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-ai-header-fontfamily" + }, + "textStyleAiHeaderWeight": { + "no": 34, + "name": "text/style/ai/header/weight", + "fst_reference": "text/style/default/header/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-ai-header-weight" + }, + "textStyleAiHeaderLetterspacing": { + "no": 35, + "name": "text/style/ai/header/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-ai-header-letterspacing" + }, + "textStyleAiHeaderCase": { + "no": 36, + "name": "text/style/ai/header/case", + "fst_reference": "NULL/string", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-ai-header-case" + }, + "textStyleArticleRegularFontfamily": { + "no": 37, + "name": "text/style/article/regular/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-article-regular-fontfamily" + }, + "textStyleArticleRegularWeight": { + "no": 38, + "name": "text/style/article/regular/weight", + "fst_reference": "text/style/default/regular/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-article-regular-weight" + }, + "textStyleArticleRegularLetterspacing": { + "no": 39, + "name": "text/style/article/regular/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-article-regular-letterspacing" + }, + "textStyleArticleHeaderFontfamily": { + "no": 40, + "name": "text/style/article/header/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-article-header-fontfamily" + }, + "textStyleArticleHeaderWeight": { + "no": 41, + "name": "text/style/article/header/weight", + "fst_reference": "text/style/default/header/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-article-header-weight" + }, + "textStyleArticleHeaderLetterspacing": { + "no": 42, + "name": "text/style/article/header/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-article-header-letterspacing" + }, + "textStyleArticleHeaderCase": { + "no": 43, + "name": "text/style/article/header/case", + "fst_reference": "NULL/string", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-article-header-case" + }, + "textStyleCodeRegularFontfamily": { + "no": 44, + "name": "text/style/code/regular/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-code-regular-fontfamily" + }, + "textStyleCodeRegularWeight": { + "no": 45, + "name": "text/style/code/regular/weight", + "fst_reference": "text/style/default/regular/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-code-regular-weight" + }, + "textStyleCodeRegularLetterspacing": { + "no": 46, + "name": "text/style/code/regular/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-code-regular-letterspacing" + }, + "textStyleCodeHeaderFontfamily": { + "no": 47, + "name": "text/style/code/header/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-code-header-fontfamily" + }, + "textStyleCodeHeaderWeight": { + "no": 48, + "name": "text/style/code/header/weight", + "fst_reference": "text/style/default/header/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-code-header-weight" + }, + "textStyleCodeHeaderLetterspacing": { + "no": 49, + "name": "text/style/code/header/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-code-header-letterspacing" + }, + "textStyleCodeHeaderCase": { + "no": 50, + "name": "text/style/code/header/case", + "fst_reference": "NULL/string", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-code-header-case" + }, + "textStyleDatavizRegularFontfamily": { + "no": 51, + "name": "text/style/dataViz/regular/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-dataviz-regular-fontfamily" + }, + "textStyleDatavizRegularWeight": { + "no": 52, + "name": "text/style/dataViz/regular/weight", + "fst_reference": "text/style/default/regular/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-dataviz-regular-weight" + }, + "textStyleDatavizRegularLetterspacing": { + "no": 53, + "name": "text/style/dataViz/regular/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-dataviz-regular-letterspacing" + }, + "textStyleDatavizHeaderFontfamily": { + "no": 54, + "name": "text/style/dataViz/header/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-dataviz-header-fontfamily" + }, + "textStyleDatavizHeaderWeight": { + "no": 55, + "name": "text/style/dataViz/header/weight", + "fst_reference": "text/style/default/header/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-dataviz-header-weight" + }, + "textStyleDatavizHeaderLetterspacing": { + "no": 56, + "name": "text/style/dataViz/header/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-dataviz-header-letterspacing" + }, + "textStyleDatavizHeaderCase": { + "no": 57, + "name": "text/style/dataViz/header/case", + "fst_reference": "NULL/string", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-dataviz-header-case" + }, + "textStyleQuoteRegularFontfamily": { + "no": 58, + "name": "text/style/quote/regular/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-quote-regular-fontfamily" + }, + "textStyleQuoteRegularWeight": { + "no": 59, + "name": "text/style/quote/regular/weight", + "fst_reference": "text/style/default/regular/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-quote-regular-weight" + }, + "textStyleQuoteRegularLetterspacing": { + "no": 60, + "name": "text/style/quote/regular/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-quote-regular-letterspacing" + }, + "textStyleQuoteHeaderFontfamily": { + "no": 61, + "name": "text/style/quote/header/fontFamily", + "fst_reference": "text/style/default/regular/fontFamily", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-quote-header-fontfamily" + }, + "textStyleQuoteHeaderWeight": { + "no": 62, + "name": "text/style/quote/header/weight", + "fst_reference": "text/style/default/header/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-quote-header-weight" + }, + "textStyleQuoteHeaderLetterspacing": { + "no": 63, + "name": "text/style/quote/header/letterSpacing", + "fst_reference": "text/style/default/regular/letterSpacing", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-quote-header-letterspacing" + }, + "textStyleQuoteHeaderCase": { + "no": 64, + "name": "text/style/quote/header/case", + "fst_reference": "NULL/string", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-style-quote-header-case" + }, + "textRampPageheaderFontsize": { + "no": 65, + "name": "text/ramp/pageHeader/fontSize", + "fst_reference": "text/global/title2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle1/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-pageheader-fontsize" + }, + "textRampPageheaderLineheight": { + "no": 66, + "name": "text/ramp/pageHeader/lineHeight", + "fst_reference": "text/global/title2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle1/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-pageheader-lineheight" + }, + "textRampSectionheaderFontsize": { + "no": 67, + "name": "text/ramp/sectionHeader/fontSize", + "fst_reference": "text/global/subtitle1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle2/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-sectionheader-fontsize" + }, + "textRampSectionheaderLineheight": { + "no": 68, + "name": "text/ramp/sectionHeader/lineHeight", + "fst_reference": "text/global/subtitle1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle2/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-sectionheader-lineheight" + }, + "textRampSubsectionheaderFontsize": { + "no": 69, + "name": "text/ramp/subsectionHeader/fontSize", + "fst_reference": "text/global/subtitle2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle2/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-subsectionheader-fontsize" + }, + "textRampSubsectionheaderLineheight": { + "no": 70, + "name": "text/ramp/subsectionHeader/lineHeight", + "fst_reference": "text/global/subtitle2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle2/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-subsectionheader-lineheight" + }, + "textRampReadingbodyFontsize": { + "no": 71, + "name": "text/ramp/readingBody/fontSize", + "fst_reference": "text/global/body2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body2/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-readingbody-fontsize" + }, + "textRampReadingbodyLineheight": { + "no": 72, + "name": "text/ramp/readingBody/lineHeight", + "fst_reference": "text/global/body2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body2/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-readingbody-lineheight" + }, + "textRampItemheaderFontsize": { + "no": 73, + "name": "text/ramp/itemHeader/fontSize", + "fst_reference": "text/global/body2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body2/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-itemheader-fontsize" + }, + "textRampItemheaderLineheight": { + "no": 74, + "name": "text/ramp/itemHeader/lineHeight", + "fst_reference": "text/global/body2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body2/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-itemheader-lineheight" + }, + "textRampItembodyFontsize": { + "no": 75, + "name": "text/ramp/itemBody/fontSize", + "fst_reference": "text/global/body3/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + " Radio", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Field", + "Label", + "Inline link", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "Rating", + "MessageBar" + ], + "contrast": "", + "fallback": "Font-size/300", + "exceptions": [], + "cssName": "--smtc-text-ramp-itembody-fontsize" + }, + "textRampItembodyLineheight": { + "no": 76, + "name": "text/ramp/itemBody/lineHeight", + "fst_reference": "text/global/body3/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + " Radio", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Lite filter", + "Title bar", + "Rating", + "MessageBar" + ], + "contrast": "", + "fallback": "Line-height/300", + "exceptions": [], + "cssName": "--smtc-text-ramp-itembody-lineheight" + }, + "textRampMetadataFontsize": { + "no": 77, + "name": "text/ramp/metadata/fontSize", + "fst_reference": "text/global/caption1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-metadata-fontsize" + }, + "textRampMetadataLineheight": { + "no": 78, + "name": "text/ramp/metadata/lineHeight", + "fst_reference": "text/global/caption1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-metadata-lineheight" + }, + "textRampLegalFontsize": { + "no": 79, + "name": "text/ramp/legal/fontSize", + "fst_reference": "text/global/caption2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-legal-fontsize" + }, + "textRampLegalLineheight": { + "no": 80, + "name": "text/ramp/legal/lineHeight", + "fst_reference": "text/global/caption2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-legal-lineheight" + }, + "textRampSmPageheaderFontsize": { + "no": 81, + "name": "text/ramp-sm/pageHeader/fontSize", + "fst_reference": "text/global/subtitle1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle2/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-pageheader-fontsize" + }, + "textRampSmPageheaderLineheight": { + "no": 82, + "name": "text/ramp-sm/pageHeader/lineHeight", + "fst_reference": "text/global/subtitle1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle2/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-pageheader-lineheight" + }, + "textRampSmSectionheaderFontsize": { + "no": 83, + "name": "text/ramp-sm/sectionHeader/fontSize", + "fst_reference": "text/global/subtitle2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body1/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-sectionheader-fontsize" + }, + "textRampSmSectionheaderLineheight": { + "no": 84, + "name": "text/ramp-sm/sectionHeader/lineHeight", + "fst_reference": "text/global/subtitle2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body1/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-sectionheader-lineheight" + }, + "textRampSmSubsectionheaderFontsize": { + "no": 85, + "name": "text/ramp-sm/subsectionHeader/fontSize", + "fst_reference": "text/global/body1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body1/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-subsectionheader-fontsize" + }, + "textRampSmSubsectionheaderLineheight": { + "no": 86, + "name": "text/ramp-sm/subsectionHeader/lineHeight", + "fst_reference": "text/global/body1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body1/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-subsectionheader-lineheight" + }, + "textRampSmReadingbodyFontsize": { + "no": 87, + "name": "text/ramp-sm/readingBody/fontSize", + "fst_reference": "text/global/body3/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body3/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-readingbody-fontsize" + }, + "textRampSmReadingbodyLineheight": { + "no": 88, + "name": "text/ramp-sm/readingBody/lineHeight", + "fst_reference": "text/global/body3/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body3/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-readingbody-lineheight" + }, + "textRampSmItemheaderFontsize": { + "no": 89, + "name": "text/ramp-sm/itemHeader/fontSize", + "fst_reference": "text/global/body3/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body3/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-itemheader-fontsize" + }, + "textRampSmItemheaderLineheight": { + "no": 90, + "name": "text/ramp-sm/itemHeader/lineHeight", + "fst_reference": "text/global/body3/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body3/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-itemheader-lineheight" + }, + "textRampSmItembodyFontsize": { + "no": 91, + "name": "text/ramp-sm/itemBody/fontSize", + "fst_reference": "text/global/caption1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-itembody-fontsize" + }, + "textRampSmItembodyLineheight": { + "no": 92, + "name": "text/ramp-sm/itemBody/lineHeight", + "fst_reference": "text/global/caption1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-itembody-lineheight" + }, + "textRampSmMetadataFontsize": { + "no": 93, + "name": "text/ramp-sm/metadata/fontSize", + "fst_reference": "text/global/caption1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-metadata-fontsize" + }, + "textRampSmMetadataLineheight": { + "no": 94, + "name": "text/ramp-sm/metadata/lineHeight", + "fst_reference": "text/global/caption1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-metadata-lineheight" + }, + "textRampSmLegalFontsize": { + "no": 95, + "name": "text/ramp-sm/legal/fontSize", + "fst_reference": "text/global/caption2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-legal-fontsize" + }, + "textRampSmLegalLineheight": { + "no": 96, + "name": "text/ramp-sm/legal/lineHeight", + "fst_reference": "text/global/caption2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-sm-legal-lineheight" + }, + "textRampLgPageheaderFontsize": { + "no": 97, + "name": "text/ramp-lg/pageHeader/fontSize", + "fst_reference": "text/global/title1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/title2/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-pageheader-fontsize" + }, + "textRampLgPageheaderLineheight": { + "no": 98, + "name": "text/ramp-lg/pageHeader/lineHeight", + "fst_reference": "text/global/title1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/title2/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-pageheader-lineheight" + }, + "textRampLgSectionheaderFontsize": { + "no": 99, + "name": "text/ramp-lg/sectionHeader/fontSize", + "fst_reference": "text/global/title2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle1/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-sectionheader-fontsize" + }, + "textRampLgSectionheaderLineheight": { + "no": 100, + "name": "text/ramp-lg/sectionHeader/lineHeight", + "fst_reference": "text/global/title2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle1/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-sectionheader-lineheight" + }, + "textRampLgSubsectionheaderFontsize": { + "no": 101, + "name": "text/ramp-lg/subsectionHeader/fontSize", + "fst_reference": "text/global/subtitle1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle1/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-subsectionheader-fontsize" + }, + "textRampLgSubsectionheaderLineheight": { + "no": 102, + "name": "text/ramp-lg/subsectionHeader/lineHeight", + "fst_reference": "text/global/subtitle1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/subtitle1/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-subsectionheader-lineheight" + }, + "textRampLgReadingbodyFontsize": { + "no": 103, + "name": "text/ramp-lg/readingBody/fontSize", + "fst_reference": "text/global/body1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body1/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-readingbody-fontsize" + }, + "textRampLgReadingbodyLineheight": { + "no": 104, + "name": "text/ramp-lg/readingBody/lineHeight", + "fst_reference": "text/global/body1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body1/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-readingbody-lineheight" + }, + "textRampLgItemheaderFontsize": { + "no": 105, + "name": "text/ramp-lg/itemHeader/fontSize", + "fst_reference": "text/global/subtitle2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body1/fontSize", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-itemheader-fontsize" + }, + "textRampLgItemheaderLineheight": { + "no": 106, + "name": "text/ramp-lg/itemHeader/lineHeight", + "fst_reference": "text/global/subtitle2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "text/global/body1/lineHeight", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-itemheader-lineheight" + }, + "textRampLgItembodyFontsize": { + "no": 107, + "name": "text/ramp-lg/itemBody/fontSize", + "fst_reference": "text/global/body2/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "Font-size/400", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-itembody-fontsize" + }, + "textRampLgItembodyLineheight": { + "no": 108, + "name": "text/ramp-lg/itemBody/lineHeight", + "fst_reference": "text/global/body2/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Line-height/400", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-itembody-lineheight" + }, + "textRampLgMetadataFontsize": { + "no": 109, + "name": "text/ramp-lg/metadata/fontSize", + "fst_reference": "text/global/body3/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-metadata-fontsize" + }, + "textRampLgMetadataLineheight": { + "no": 110, + "name": "text/ramp-lg/metadata/lineHeight", + "fst_reference": "text/global/body3/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-metadata-lineheight" + }, + "textRampLgLegalFontsize": { + "no": 111, + "name": "text/ramp-lg/legal/fontSize", + "fst_reference": "text/global/caption1/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-legal-fontsize" + }, + "textRampLgLegalLineheight": { + "no": 112, + "name": "text/ramp-lg/legal/lineHeight", + "fst_reference": "text/global/caption1/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ramp-lg-legal-lineheight" + }, + "textCtrlWeightDefault": { + "no": 113, + "name": "text/ctrl/weight/default", + "fst_reference": "text/style/default/regular/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ctrl-weight-default" + }, + "textCtrlButtonWeightDefault": { + "no": 114, + "name": "text/ctrl/button/weight/default", + "fst_reference": "text/style/default/regular/weight", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ctrl-button-weight-default" + }, + "textCtrlButtonWeightSelected": { + "no": 115, + "name": "text/ctrl/button/weight/selected", + "fst_reference": "text/ctrl/weight/selected", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Lite Filter Button", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ctrl-button-weight-selected" + }, + "sizeCtrlDefault": { + "no": 116, + "name": "size/ctrl/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + " Radio", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "Slider", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-default" + }, + "sizeCtrlIcon": { + "no": 117, + "name": "size/ctrl/icon", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "FAB", + "Split button", + "Button", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Editable dropdown", + "Editable spin button", + "Inline link", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "Rating", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-icon" + }, + "sizeCtrlIconFigmaonly": { + "no": 118, + "name": "size/ctrl/icon(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Editable dropdown", + "Editable spin button", + "Inline link", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-iconfigmaonly" + }, + "sizeCtrlIconsecondary": { + "no": 119, + "name": "size/ctrl/iconSecondary", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Editable spin button", + "Lite Filter Button", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-iconsecondary" + }, + "textCtrlWeightSelected": { + "no": 120, + "name": "text/ctrl/weight/selected", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-text-ctrl-weight-selected" + }, + "sizeCtrlSmDefault": { + "no": 121, + "name": "size/ctrl-sm/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer", "Editable dropdown", "Editable spin button"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-sm-default" + }, + "sizeCtrlSmIcon": { + "no": 122, + "name": "size/ctrl-sm/icon", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-sm-icon" + }, + "sizeCtrlLgDefault": { + "no": 123, + "name": "size/ctrl-lg/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-lg-default" + }, + "sizeCtrlLgIcon": { + "no": 124, + "name": "size/ctrl-lg/icon", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-lg-icon" + }, + "sizeCtrlSmIconFigmaonly": { + "no": 125, + "name": "size/ctrl-sm/icon(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-sm-iconfigmaonly" + }, + "sizeCtrlLgIconFigmaonly": { + "no": 126, + "name": "size/ctrl-lg/icon(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-size-ctrl-lg-iconfigmaonly" + }, + "paddingContentAlignDefault": { + "no": 127, + "name": "padding/content/align/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Inline drawer", "Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-align-default" + }, + "paddingContentAlignOutdentIcononsubtle": { + "no": 128, + "name": "padding/content/align/outdent-iconOnSubtle", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-align-outdent-icononsubtle" + }, + "paddingContentAlignOutdentTextonsubtle": { + "no": 129, + "name": "padding/content/align/outdent-textOnSubtle", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-align-outdent-textonsubtle" + }, + "paddingContentNone": { + "no": 130, + "name": "padding/content/none", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-none" + }, + "paddingContentXxsmall": { + "no": 131, + "name": "padding/content/xxSmall", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-xxsmall" + }, + "paddingContentXsmall": { + "no": 132, + "name": "padding/content/xSmall", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-xsmall" + }, + "paddingContentSmall": { + "no": 133, + "name": "padding/content/small", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-small" + }, + "paddingContentMedium": { + "no": 134, + "name": "padding/content/medium", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-medium" + }, + "paddingContentLarge": { + "no": 135, + "name": "padding/content/large", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog", "Footer", "Consent Dialog/footer", "Inline drawer", "Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-large" + }, + "paddingContentXlarge": { + "no": 136, + "name": "padding/content/xLarge", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-xlarge" + }, + "paddingContentXxlarge": { + "no": 137, + "name": "padding/content/xxLarge", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-xxlarge" + }, + "paddingContentXxxlarge": { + "no": 138, + "name": "padding/content/xxxLarge", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-content-xxxlarge" + }, + "paddingToolbarInside": { + "no": 139, + "name": "padding/toolbar/inside", + "fst_reference": "padding/content/xSmall", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-toolbar-inside" + }, + "paddingToolbarOutside": { + "no": 140, + "name": "padding/toolbar/outside", + "fst_reference": "padding/content/xxSmall", + "optional": true, + "nullable": false, + "description": "", + "components": ["Title bar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-toolbar-outside" + }, + "paddingFlyoutDefault": { + "no": 141, + "name": "padding/flyout/default", + "fst_reference": "padding/content/align/outdent-textOnSubtle", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-flyout-default" + }, + "paddingCardNestedimage": { + "no": 142, + "name": "padding/card/nestedImage", + "fst_reference": "padding/content/align/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Image"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-card-nestedimage" + }, + "paddingCtrlHorizontalDefault": { + "no": 143, + "name": "padding/ctrl/horizontal-default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Page link", + "Lite filter", + "Tooltip", + "Slider", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-horizontal-default" + }, + "paddingCtrlHorizontalIcononly": { + "no": 144, + "name": "padding/ctrl/horizontal-iconOnly", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Inline drawer", + "Overlay drawer", + "Lite Filter Button", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-horizontal-icononly" + }, + "paddingCtrlTexttop": { + "no": 145, + "name": "padding/ctrl/textTop", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Field", + "Label", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "Tooltip", + "Rating", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-texttop" + }, + "paddingCtrlTextbottom": { + "no": 146, + "name": "padding/ctrl/textBottom", + "fst_reference": "padding/ctrl/textTop", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Field", + "Label", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "Tooltip", + "Rating", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-textbottom" + }, + "paddingCtrlTextside": { + "no": 147, + "name": "padding/ctrl/textSide", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-textside" + }, + "paddingCtrlTonestedcontrol": { + "no": 148, + "name": "padding/ctrl/toNestedControl", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Text input box", "Search box", "Password input box", "Editable dropdown", "Editable spin button"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-tonestedcontrol" + }, + "paddingCtrlSmHorizontalDefault": { + "no": 149, + "name": "padding/ctrl-sm/horizontal-default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer", "Editable spin button"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-sm-horizontal-default" + }, + "paddingCtrlSmHorizontalIcononly": { + "no": 150, + "name": "padding/ctrl-sm/horizontal-iconOnly", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Editable dropdown"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-sm-horizontal-icononly" + }, + "paddingCtrlSmTexttop": { + "no": 151, + "name": "padding/ctrl-sm/textTop", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-sm-texttop" + }, + "paddingCtrlSmTextbottom": { + "no": 152, + "name": "padding/ctrl-sm/textBottom", + "fst_reference": "padding/ctrl-sm/textTop", + "optional": true, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-sm-textbottom" + }, + "paddingCtrlSmTonestedcontrol": { + "no": 153, + "name": "padding/ctrl-sm/toNestedControl", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-sm-tonestedcontrol" + }, + "paddingCtrlLgHorizontalDefault": { + "no": 154, + "name": "padding/ctrl-lg/horizontal-default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-lg-horizontal-default" + }, + "paddingCtrlLgHorizontalIcononly": { + "no": 155, + "name": "padding/ctrl-lg/horizontal-iconOnly", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-lg-horizontal-icononly" + }, + "paddingCtrlLgTexttop": { + "no": 156, + "name": "padding/ctrl-lg/textTop", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB", "MessageBar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-lg-texttop" + }, + "paddingCtrlLgTextbottom": { + "no": 157, + "name": "padding/ctrl-lg/textBottom", + "fst_reference": "padding/ctrl-lg/textTop", + "optional": true, + "nullable": false, + "description": "", + "components": ["FAB", "MessageBar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-lg-textbottom" + }, + "paddingCtrlLgTonestedcontrol": { + "no": 158, + "name": "padding/ctrl-lg/toNestedControl", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-padding-ctrl-lg-tonestedcontrol" + }, + "gapBetweenContentNone": { + "no": 159, + "name": "gap/between/content/none", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-content-none" + }, + "gapBetweenContentXxsmall": { + "no": 160, + "name": "gap/between/content/xxSmall", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Field"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-content-xxsmall" + }, + "gapBetweenContentXsmall": { + "no": 161, + "name": "gap/between/content/xSmall", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-content-xsmall" + }, + "gapBetweenContentSmall": { + "no": 162, + "name": "gap/between/content/small", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-content-small" + }, + "gapBetweenCtrlDefault": { + "no": 163, + "name": "gap/between/ctrl/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-ctrl-default" + }, + "gapBetweenContentMedium": { + "no": 164, + "name": "gap/between/content/medium", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-content-medium" + }, + "gapBetweenContentLarge": { + "no": 165, + "name": "gap/between/content/large", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-content-large" + }, + "gapBetweenContentXlarge": { + "no": 166, + "name": "gap/between/content/xLarge", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-content-xlarge" + }, + "gapBetweenCtrlNested": { + "no": 167, + "name": "gap/between/ctrl/nested", + "fst_reference": "padding/ctrl/toNestedControl", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-ctrl-nested" + }, + "gapBetweenContentXxlarge": { + "no": 168, + "name": "gap/between/content/xxLarge", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-content-xxlarge" + }, + "gapBetweenCtrlLgDefault": { + "no": 169, + "name": "gap/between/ctrl-lg/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-ctrl-lg-default" + }, + "gapTextSmall": { + "no": 170, + "name": "gap/text-small", + "fst_reference": "gap/between/content/xxSmall", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog", "Field", "MessageBar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-text-small" + }, + "gapTextLarge": { + "no": 171, + "name": "gap/text-large", + "fst_reference": "gap/between/content/xSmall", + "optional": true, + "nullable": false, + "description": "", + "components": ["MessageBar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-text-large" + }, + "gapBetweenCtrlLgNested": { + "no": 172, + "name": "gap/between/ctrl-lg/nested", + "fst_reference": "padding/ctrl-lg/toNestedControl", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-ctrl-lg-nested" + }, + "gapBetweenCtrlSmDefault": { + "no": 173, + "name": "gap/between/ctrl-sm/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Text input box", "Editable dropdown", "Editable spin button"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-ctrl-sm-default" + }, + "gapBetweenCtrlSmNested": { + "no": 174, + "name": "gap/between/ctrl-sm/nested", + "fst_reference": "padding/ctrl-sm/toNestedControl", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-between-ctrl-sm-nested" + }, + "gapList": { + "no": 175, + "name": "gap/list", + "fst_reference": "gap/between/content/xxSmall", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-list" + }, + "gapCard": { + "no": 176, + "name": "gap/card", + "fst_reference": "gap/between/content/medium", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-card" + }, + "gapInsideCtrlDefault": { + "no": 177, + "name": "gap/inside/ctrl/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-default" + }, + "gapInsideCtrlSmDefault": { + "no": 178, + "name": "gap/inside/ctrl-sm/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-sm-default" + }, + "gapInsideCtrlSmTosecondaryicon": { + "no": 179, + "name": "gap/inside/ctrl-sm/toSecondaryIcon", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Editable dropdown"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-sm-tosecondaryicon" + }, + "gapInsideCtrlLgDefault": { + "no": 180, + "name": "gap/inside/ctrl-lg/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-lg-default" + }, + "gapInsideCtrlLgTosecondaryicon": { + "no": 181, + "name": "gap/inside/ctrl-lg/toSecondaryIcon", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-lg-tosecondaryicon" + }, + "gapInsideCtrlTosecondaryicon": { + "no": 182, + "name": "gap/inside/ctrl/toSecondaryIcon", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + " Radio", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Field", + "Label", + "Inline link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-tosecondaryicon" + }, + "gapInsideCtrlTolabel": { + "no": 183, + "name": "gap/inside/ctrl/toLabel", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Radio", " Checkbox", "Rating", "Spinner", "MessageBar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-tolabel" + }, + "gapInsideCtrlSmTolabel": { + "no": 184, + "name": "gap/inside/ctrl-sm/toLabel", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-sm-tolabel" + }, + "gapInsideCtrlLgTolabel": { + "no": 185, + "name": "gap/inside/ctrl-lg/toLabel", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-gap-inside-ctrl-lg-tolabel" + }, + "cornerCircular": { + "no": 186, + "name": "corner/circular", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Presence badge", "Badge", "Lite Filter Button", "Lite filter"], + "contrast": "", + "fallback": "Circular", + "exceptions": [], + "cssName": "--smtc-corner-circular" + }, + "strokewidthDefault": { + "no": 187, + "name": "strokeWidth/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Badge", + "FAB", + "Split button", + "Button", + "Card/Primary", + "Card/Secondary", + "Card/Tint (needed?)", + "Card/Outline", + " Switch", + " Radio", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Image", + "Editable dropdown", + "Editable spin button", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-strokewidth-default" + }, + "strokewidthDividerDefault": { + "no": 188, + "name": "strokeWidth/divider/default", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer", "Divider"], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-strokewidth-divider-default" + }, + "strokewidthDividerStrong": { + "no": 189, + "name": "strokeWidth/divider/strong", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-strokewidth-divider-strong" + }, + "strokewidthCtrlOutlineRest": { + "no": 190, + "name": "strokeWidth/ctrl/outline/rest", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Lite Filter Button" + ], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-strokewidth-ctrl-outline-rest" + }, + "strokewidthCtrlOutlineHover": { + "no": 191, + "name": "strokeWidth/ctrl/outline/hover", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-strokewidth-ctrl-outline-hover" + }, + "strokewidthCtrlOutlinePressed": { + "no": 192, + "name": "strokeWidth/ctrl/outline/pressed", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-strokewidth-ctrl-outline-pressed" + }, + "strokewidthCtrlOutlineSelected": { + "no": 193, + "name": "strokeWidth/ctrl/outline/selected", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-strokewidth-ctrl-outline-selected" + }, + "strokewidthWindowDefault": { + "no": 194, + "name": "strokeWidth/window/default", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-strokewidth-window-default" + }, + "backgroundToolbar": { + "no": 195, + "name": "background/toolbar", + "fst_reference": "background/card/onPrimary/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-background-toolbar" + }, + "backgroundSmoke": { + "no": 196, + "name": "background/smoke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-smoke" + }, + "strokeLayer": { + "no": 197, + "name": "stroke/layer", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-layer" + }, + "strokeImage": { + "no": 198, + "name": "stroke/image", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Image"], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-image" + }, + "strokeToolbar": { + "no": 199, + "name": "stroke/toolbar", + "fst_reference": "stroke/card/onPrimary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-toolbar" + }, + "strokeFlyout": { + "no": 200, + "name": "stroke/flyout", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-flyout" + }, + "strokeCtrlOnbrandRest": { + "no": 201, + "name": "stroke/ctrl/onBrand/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog", "Footer", "Inline drawer", "Overlay drawer", "Tooltip"], + "contrast": "", + "fallback": "NULL/color", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onbrand-rest" + }, + "strokeCtrlOnbrandHover": { + "no": 202, + "name": "stroke/ctrl/onBrand/hover", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/color", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onbrand-hover" + }, + "strokeCtrlOnbrandPressed": { + "no": 203, + "name": "stroke/ctrl/onBrand/pressed", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/color", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onbrand-pressed" + }, + "strokeCtrlOnbrandDisabled": { + "no": 204, + "name": "stroke/ctrl/onBrand/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/color", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onbrand-disabled" + }, + "strokeCtrlOnbrandRestStop2": { + "no": 205, + "name": "stroke/ctrl/onBrand/rest(stop2)", + "fst_reference": "stroke/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog", "Footer", "Inline drawer", "Overlay drawer"], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onbrand-reststop2" + }, + "strokeCtrlOnbrandHoverStop2": { + "no": 206, + "name": "stroke/ctrl/onBrand/hover(stop2)", + "fst_reference": "stroke/ctrl/onBrand/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/hover", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onbrand-hoverstop2" + }, + "strokeCtrlOnbrandPressedStop2": { + "no": 207, + "name": "stroke/ctrl/onBrand/pressed(stop2)", + "fst_reference": "stroke/ctrl/onBrand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/pressed", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onbrand-pressedstop2" + }, + "strokeCtrlOnbrandDisabledStop2": { + "no": 208, + "name": "stroke/ctrl/onBrand/disabled(stop2)", + "fst_reference": "stroke/ctrl/onBrand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/disabled", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onbrand-disabledstop2" + }, + "strokeCtrlOnneutralRest": { + "no": 209, + "name": "stroke/ctrl/onNeutral/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog", "Footer", "Consent Dialog/footer", "Inline drawer", "Overlay drawer", "MessageBar"], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onneutral-rest" + }, + "strokeCtrlOnneutralHover": { + "no": 210, + "name": "stroke/ctrl/onNeutral/hover", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Hover", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onneutral-hover" + }, + "strokeCtrlOnneutralPressed": { + "no": 211, + "name": "stroke/ctrl/onNeutral/pressed", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Pressed", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onneutral-pressed" + }, + "strokeCtrlOnneutralDisabled": { + "no": 212, + "name": "stroke/ctrl/onNeutral/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onneutral-disabled" + }, + "strokeCtrlOnneutralRestStop2": { + "no": 213, + "name": "stroke/ctrl/onNeutral/rest(stop2)", + "fst_reference": "stroke/ctrl/onNeutral/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog", "Footer", "Consent Dialog/footer", "Inline drawer", "Overlay drawer", "MessageBar"], + "contrast": "", + "fallback": "stroke/ctrl/onNeutral/rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onneutral-reststop2" + }, + "strokeCtrlOnneutralHoverStop2": { + "no": 214, + "name": "stroke/ctrl/onNeutral/hover(stop2)", + "fst_reference": "stroke/ctrl/onNeutral/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onNeutral/hover", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onneutral-hoverstop2" + }, + "strokeCtrlOnneutralPressedStop2": { + "no": 215, + "name": "stroke/ctrl/onNeutral/pressed(stop2)", + "fst_reference": "stroke/ctrl/onNeutral/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onNeutral/pressed", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onneutral-pressedstop2" + }, + "strokeCtrlOnneutralDisabledStop2": { + "no": 216, + "name": "stroke/ctrl/onNeutral/disabled(stop2)", + "fst_reference": "stroke/ctrl/onNeutral/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onNeutral/disabled", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onneutral-disabledstop2" + }, + "strokeCtrlOnoutlineRest": { + "no": 217, + "name": "stroke/ctrl/onOutline/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onoutline-rest" + }, + "strokeCtrlOnoutlineHover": { + "no": 218, + "name": "stroke/ctrl/onOutline/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Hover", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onoutline-hover" + }, + "strokeCtrlOnoutlinePressed": { + "no": 219, + "name": "stroke/ctrl/onOutline/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Pressed", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onoutline-pressed" + }, + "strokeCtrlOnoutlineDisabled": { + "no": 220, + "name": "stroke/ctrl/onOutline/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onoutline-disabled" + }, + "strokeCtrlOnoutlineRestStop2": { + "no": 221, + "name": "stroke/ctrl/onOutline/rest(stop2)", + "fst_reference": "stroke/ctrl/onOutline/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "stroke/ctrl/onOutline/rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onoutline-reststop2" + }, + "strokeCtrlOnoutlineHoverStop2": { + "no": 222, + "name": "stroke/ctrl/onOutline/hover(stop2)", + "fst_reference": "stroke/ctrl/onOutline/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onOutline/hover", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onoutline-hoverstop2" + }, + "strokeCtrlOnoutlinePressedStop2": { + "no": 223, + "name": "stroke/ctrl/onOutline/pressed(stop2)", + "fst_reference": "stroke/ctrl/onOutline/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onOutline/pressed", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onoutline-pressedstop2" + }, + "strokeCtrlOnoutlineDisabledStop2": { + "no": 224, + "name": "stroke/ctrl/onOutline/disabled(stop2)", + "fst_reference": "stroke/ctrl/onOutline/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite Filter Button"], + "contrast": "", + "fallback": "stroke/ctrl/divider/onOutline", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onoutline-disabledstop2" + }, + "strokeCtrlOnsubtleRest": { + "no": 225, + "name": "stroke/ctrl/onSubtle/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [ + "Dialog", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Editable spin button", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onsubtle-rest" + }, + "strokeCtrlOnsubtleHover": { + "no": 226, + "name": "stroke/ctrl/onSubtle/hover", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onsubtle-hover" + }, + "strokeCtrlOnsubtlePressed": { + "no": 227, + "name": "stroke/ctrl/onSubtle/pressed", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onsubtle-pressed" + }, + "strokeCtrlOnsubtleDisabled": { + "no": 228, + "name": "stroke/ctrl/onSubtle/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onsubtle-disabled" + }, + "strokeCtrlOnsubtleHoversplit": { + "no": 229, + "name": "stroke/ctrl/onSubtle/hoverSplit", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onsubtle-hoversplit" + }, + "strokeCtrlOnactivebrandRest": { + "no": 230, + "name": "stroke/ctrl/onActiveBrand/rest", + "fst_reference": "stroke/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onactivebrand-rest" + }, + "strokeCtrlDividerOnbrand": { + "no": 231, + "name": "stroke/ctrl/divider/onBrand", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/onBrand/2/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onbrand" + }, + "strokeCtrlDividerOnbrandDisabled": { + "no": 232, + "name": "stroke/ctrl/divider/onBrand-disabled", + "fst_reference": "stroke/ctrl/divider/onBrand", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/onBrand/2/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onbrand-disabled" + }, + "strokeCtrlDividerOnneutral": { + "no": 233, + "name": "stroke/ctrl/divider/onNeutral", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onneutral" + }, + "strokeCtrlDividerOnneutralDisabled": { + "no": 234, + "name": "stroke/ctrl/divider/onNeutral-disabled", + "fst_reference": "stroke/ctrl/divider/onNeutral", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onneutral-disabled" + }, + "strokeCtrlDividerOnoutline": { + "no": 235, + "name": "stroke/ctrl/divider/onOutline", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Lite Filter Button"], + "contrast": "", + "fallback": "Neutral/Stroke/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onoutline" + }, + "strokeCtrlDividerOnoutlineDisabled": { + "no": 236, + "name": "stroke/ctrl/divider/onOutline-disabled", + "fst_reference": "stroke/ctrl/divider/onOutline", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onoutline-disabled" + }, + "strokeCtrlDividerOnsubtle": { + "no": 237, + "name": "stroke/ctrl/divider/onSubtle", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onsubtle" + }, + "strokeCtrlDividerOnsubtleDisabled": { + "no": 238, + "name": "stroke/ctrl/divider/onSubtle-disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Split button"], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onsubtle-disabled" + }, + "strokeCtrlDividerOnactivebrand": { + "no": 239, + "name": "stroke/ctrl/divider/onActiveBrand", + "fst_reference": "stroke/ctrl/divider/onBrand", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/divider/onBrand", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onactivebrand" + }, + "strokeCtrlDividerOnactivebrandDisabled": { + "no": 240, + "name": "stroke/ctrl/divider/onActiveBrand-disabled", + "fst_reference": "stroke/ctrl/divider/onBrand", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/divider/onBrand", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-divider-onactivebrand-disabled" + }, + "strokeCtrlOnactivebrandHover": { + "no": 241, + "name": "stroke/ctrl/onActiveBrand/hover", + "fst_reference": "stroke/ctrl/onBrand/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/hover", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onactivebrand-hover" + }, + "strokeCtrlOnactivebrandPressed": { + "no": 242, + "name": "stroke/ctrl/onActiveBrand/pressed", + "fst_reference": "stroke/ctrl/onBrand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/pressed", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onactivebrand-pressed" + }, + "strokeCtrlOnactivebrandDisabled": { + "no": 243, + "name": "stroke/ctrl/onActiveBrand/disabled", + "fst_reference": "stroke/ctrl/onBrand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [" Switch", " Radio", " Checkbox"], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/disabled", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onactivebrand-disabled" + }, + "strokeCtrlOnactivebrandRestStop2": { + "no": 244, + "name": "stroke/ctrl/onActiveBrand/rest(stop2)", + "fst_reference": "stroke/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onActiveBrand/rest", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onactivebrand-reststop2" + }, + "strokeCtrlOnactivebrandHoverStop2": { + "no": 245, + "name": "stroke/ctrl/onActiveBrand/hover(stop2)", + "fst_reference": "stroke/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onActiveBrand/hover", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onactivebrand-hoverstop2" + }, + "strokeCtrlOnactivebrandPressedStop2": { + "no": 246, + "name": "stroke/ctrl/onActiveBrand/pressed(stop2)", + "fst_reference": "stroke/ctrl/onBrand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onActiveBrand/pressed", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onactivebrand-pressedstop2" + }, + "strokeCtrlOnactivebrandDisabledStop2": { + "no": 247, + "name": "stroke/ctrl/onActiveBrand/disabled(stop2)", + "fst_reference": "stroke/ctrl/onBrand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "stroke/ctrl/onActiveBrand/disabled", + "exceptions": [], + "cssName": "--smtc-stroke-ctrl-onactivebrand-disabledstop2" + }, + "strokeDividerDefault": { + "no": 248, + "name": "stroke/divider/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer", "Inline drawer"], + "contrast": "", + "fallback": "Neutral/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-divider-default" + }, + "strokeDividerSubtle": { + "no": 249, + "name": "stroke/divider/subtle", + "fst_reference": "stroke/divider/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/3/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-divider-subtle" + }, + "strokeDividerStrong": { + "no": 250, + "name": "stroke/divider/strong", + "fst_reference": "stroke/divider/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-divider-strong" + }, + "strokeDividerBrand": { + "no": 251, + "name": "stroke/divider/brand", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Divider"], + "contrast": "", + "fallback": "Brand/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-divider-brand" + }, + "strokeCardSelected": { + "no": 252, + "name": "stroke/card/selected", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Selected", + "exceptions": [], + "cssName": "--smtc-stroke-card-selected" + }, + "strokeCardOnprimaryRest": { + "no": 253, + "name": "stroke/card/onPrimary/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Card/Primary"], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-card-onprimary-rest" + }, + "strokeCardOnprimaryHover": { + "no": 254, + "name": "stroke/card/onPrimary/hover", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-card-onprimary-hover" + }, + "strokeCardOnprimaryPressed": { + "no": 255, + "name": "stroke/card/onPrimary/pressed", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-card-onprimary-pressed" + }, + "strokeCardOnprimaryDisabled": { + "no": 256, + "name": "stroke/card/onPrimary/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-card-onprimary-disabled" + }, + "strokeCardOnsecondaryRest": { + "no": 257, + "name": "stroke/card/onSecondary/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Card/Secondary"], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-card-onsecondary-rest" + }, + "strokeCardOnsecondaryHover": { + "no": 258, + "name": "stroke/card/onSecondary/hover", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-card-onsecondary-hover" + }, + "strokeCardOnsecondaryPressed": { + "no": 259, + "name": "stroke/card/onSecondary/pressed", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-card-onsecondary-pressed" + }, + "strokeCardOnsecondaryDisabled": { + "no": 260, + "name": "stroke/card/onSecondary/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-card-onsecondary-disabled" + }, + "strokeWindowActive": { + "no": 261, + "name": "stroke/window/active", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-window-active" + }, + "strokeWindowInactive": { + "no": 262, + "name": "stroke/window/inactive", + "fst_reference": "stroke/window/active", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-stroke-window-inactive" + }, + "backgroundWindowPrimarySolid": { + "no": 263, + "name": "background/window/primary/(solid)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-primary-solid" + }, + "backgroundWindowPrimaryColorblend": { + "no": 264, + "name": "background/window/primary/(colorBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-primary-colorblend" + }, + "backgroundWindowPrimaryLumblend": { + "no": 265, + "name": "background/window/primary/(lumBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-primary-lumblend" + }, + "backgroundWindowSecondarySolid": { + "no": 266, + "name": "background/window/secondary/(solid)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-secondary-solid" + }, + "backgroundWindowSecondaryColorblend": { + "no": 267, + "name": "background/window/secondary/(colorBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-secondary-colorblend" + }, + "backgroundWindowSecondaryLumblend": { + "no": 268, + "name": "background/window/secondary/(lumBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-secondary-lumblend" + }, + "backgroundWindowTabbandColorblend": { + "no": 269, + "name": "background/window/tabBand/(colorBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-tabband-colorblend" + }, + "backgroundWindowTabbandLumblend": { + "no": 270, + "name": "background/window/tabBand/(lumBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-tabband-lumblend" + }, + "backgroundWindowTabbandSolid": { + "no": 271, + "name": "background/window/tabBand/(solid)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-window-tabband-solid" + }, + "backgroundWebpagePrimary": { + "no": 272, + "name": "background/webPage/primary", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-webpage-primary" + }, + "backgroundWebpageSecondary": { + "no": 273, + "name": "background/webPage/secondary", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-webpage-secondary" + }, + "backgroundLayerPrimarySolid": { + "no": 274, + "name": "background/layer/primary(solid)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-background-layer-primarysolid" + }, + "backgroundLayerPrimaryStop1": { + "no": 275, + "name": "background/layer/primary(stop1)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-layer-primarystop1" + }, + "backgroundLayerPrimaryStop2": { + "no": 276, + "name": "background/layer/primary(stop2)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-layer-primarystop2" + }, + "backgroundLayerPrimaryStop3": { + "no": 277, + "name": "background/layer/primary(stop3)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-layer-primarystop3" + }, + "backgroundLayerSecondary": { + "no": 278, + "name": "background/layer/secondary", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/2/Rest", + "exceptions": [], + "cssName": "--smtc-background-layer-secondary" + }, + "backgroundLayerTertiary": { + "no": 279, + "name": "background/layer/tertiary", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/3/Rest", + "exceptions": [], + "cssName": "--smtc-background-layer-tertiary" + }, + "backgroundCardOnprimaryDefaultRest": { + "no": 280, + "name": "background/card/onPrimary/default/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Card/Primary"], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-default-rest" + }, + "backgroundCardOnprimaryAltRest": { + "no": 281, + "name": "background/card/onPrimary/alt/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Card/Secondary"], + "contrast": "", + "fallback": "background/card/onPrimary/default/rest", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-alt-rest" + }, + "backgroundCardOnprimaryAltHover": { + "no": 282, + "name": "background/card/onPrimary/alt/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/hover", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-alt-hover" + }, + "backgroundCardOnprimaryAltPressed": { + "no": 283, + "name": "background/card/onPrimary/alt/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/pressed", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-alt-pressed" + }, + "backgroundCardOnprimaryAltDisabled": { + "no": 284, + "name": "background/card/onPrimary/alt/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/pressed", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-alt-disabled" + }, + "backgroundCardOnprimaryDefaultHover": { + "no": 285, + "name": "background/card/onPrimary/default/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Hover", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-default-hover" + }, + "backgroundCardOnprimaryDefaultPressed": { + "no": 286, + "name": "background/card/onPrimary/default/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Pressed", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-default-pressed" + }, + "backgroundCardOnprimaryDefaultDisabled": { + "no": 287, + "name": "background/card/onPrimary/default/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-default-disabled" + }, + "backgroundCardOnprimaryDefaultSelected": { + "no": 288, + "name": "background/card/onPrimary/default/selected", + "fst_reference": "background/card/onPrimary/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Selected", + "exceptions": [], + "cssName": "--smtc-background-card-onprimary-default-selected" + }, + "backgroundFlyoutSolid": { + "no": 289, + "name": "background/flyout/(solid)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-flyout-solid" + }, + "backgroundCtrlBrandRest": { + "no": 290, + "name": "background/ctrl/brand/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog", "Footer", "Inline drawer", "Overlay drawer", "Tooltip"], + "contrast": "", + "fallback": "Brand/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-brand-rest" + }, + "backgroundCtrlBrandHover": { + "no": 291, + "name": "background/ctrl/brand/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/1/Hover", + "exceptions": [], + "cssName": "--smtc-background-ctrl-brand-hover" + }, + "backgroundCtrlBrandPressed": { + "no": 292, + "name": "background/ctrl/brand/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/1/Selected", + "exceptions": [], + "cssName": "--smtc-background-ctrl-brand-pressed" + }, + "backgroundCtrlBrandDisabled": { + "no": 293, + "name": "background/ctrl/brand/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-background-ctrl-brand-disabled" + }, + "backgroundCtrlActivebrandRest": { + "no": 294, + "name": "background/ctrl/activeBrand/rest", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/ctrl/brand/rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-activebrand-rest" + }, + "backgroundCtrlActivebrandHover": { + "no": 295, + "name": "background/ctrl/activeBrand/hover", + "fst_reference": "background/ctrl/brand/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/ctrl/brand/hover", + "exceptions": [], + "cssName": "--smtc-background-ctrl-activebrand-hover" + }, + "backgroundCtrlActivebrandPressed": { + "no": 296, + "name": "background/ctrl/activeBrand/pressed", + "fst_reference": "background/ctrl/brand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/ctrl/brand/pressed", + "exceptions": [], + "cssName": "--smtc-background-ctrl-activebrand-pressed" + }, + "backgroundCtrlActivebrandDisabled": { + "no": 297, + "name": "background/ctrl/activeBrand/disabled", + "fst_reference": "background/ctrl/brand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [" Switch", " Radio", " Checkbox"], + "contrast": "", + "fallback": "background/ctrl/brand/disabled", + "exceptions": [], + "cssName": "--smtc-background-ctrl-activebrand-disabled" + }, + "backgroundCtrlNeutralRest": { + "no": 298, + "name": "background/ctrl/neutral/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog", "Footer", "Consent Dialog/footer", "Inline drawer", "Overlay drawer", "MessageBar"], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-neutral-rest" + }, + "backgroundCtrlNeutralHover": { + "no": 299, + "name": "background/ctrl/neutral/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Hover", + "exceptions": [], + "cssName": "--smtc-background-ctrl-neutral-hover" + }, + "backgroundCtrlNeutralPressed": { + "no": 300, + "name": "background/ctrl/neutral/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Pressed", + "exceptions": [], + "cssName": "--smtc-background-ctrl-neutral-pressed" + }, + "backgroundCtrlNeutralDisabled": { + "no": 301, + "name": "background/ctrl/neutral/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Progress Bar"], + "contrast": "", + "fallback": "Neutral/Background/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-neutral-disabled" + }, + "backgroundCtrlOutlineRest": { + "no": 302, + "name": "background/ctrl/outline/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-outline-rest" + }, + "backgroundCtrlOutlineHover": { + "no": 303, + "name": "background/ctrl/outline/hover", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Hover", + "exceptions": [], + "cssName": "--smtc-background-ctrl-outline-hover" + }, + "backgroundCtrlOutlinePressed": { + "no": 304, + "name": "background/ctrl/outline/pressed", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Pressed", + "exceptions": [], + "cssName": "--smtc-background-ctrl-outline-pressed" + }, + "backgroundCtrlOutlineDisabled": { + "no": 305, + "name": "background/ctrl/outline/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Lite Filter Button"], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-outline-disabled" + }, + "backgroundCtrlSubtleRest": { + "no": 306, + "name": "background/ctrl/subtle/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [ + "Dialog", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Editable spin button", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "Neutral/Background/Subtle/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-subtle-rest" + }, + "backgroundCtrlShapesafeActivebrandRest": { + "no": 307, + "name": "background/ctrl/shapeSafe/activeBrand/rest", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Stroke/Compound/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-shapesafe-activebrand-rest" + }, + "backgroundCtrlShapesafeActivebrandDisabled": { + "no": 308, + "name": "background/ctrl/shapeSafe/activeBrand/disabled", + "fst_reference": "background/ctrl/brand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-shapesafe-activebrand-disabled" + }, + "backgroundCtrlShapesafeNeutralRest": { + "no": 309, + "name": "background/ctrl/shapeSafe/neutral/rest", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Rating"], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Hover", + "exceptions": [], + "cssName": "--smtc-background-ctrl-shapesafe-neutral-rest" + }, + "backgroundCtrlShapesafeNeutralHover": { + "no": 310, + "name": "background/ctrl/shapeSafe/neutral/hover", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Hover", + "exceptions": [], + "cssName": "--smtc-background-ctrl-shapesafe-neutral-hover" + }, + "backgroundCtrlShapesafeNeutralPressed": { + "no": 311, + "name": "background/ctrl/shapeSafe/neutral/pressed", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Pressed", + "exceptions": [], + "cssName": "--smtc-background-ctrl-shapesafe-neutral-pressed" + }, + "backgroundCtrlShapesafeNeutralDisabled": { + "no": 312, + "name": "background/ctrl/shapeSafe/neutral/disabled", + "fst_reference": "foreground/ctrl/neutral/secondary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-shapesafe-neutral-disabled" + }, + "backgroundCtrlSubtleHover": { + "no": 313, + "name": "background/ctrl/subtle/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Subtle/Hover", + "exceptions": [], + "cssName": "--smtc-background-ctrl-subtle-hover" + }, + "backgroundCtrlSubtlePressed": { + "no": 314, + "name": "background/ctrl/subtle/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Subtle/Pressed", + "exceptions": [], + "cssName": "--smtc-background-ctrl-subtle-pressed" + }, + "backgroundCtrlSubtleDisabled": { + "no": 315, + "name": "background/ctrl/subtle/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-subtle-disabled" + }, + "backgroundCtrlSubtleHoversplit": { + "no": 316, + "name": "background/ctrl/subtle/hoverSplit", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-background-ctrl-subtle-hoversplit" + }, + "backgroundFlyoutLumblend": { + "no": 317, + "name": "background/flyout/(lumBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-background-flyout-lumblend" + }, + "backgroundFlyoutColorblend": { + "no": 318, + "name": "background/flyout/(colorBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-background-flyout-colorblend" + }, + "cornerZero": { + "no": 319, + "name": "corner/zero", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "None", + "exceptions": [], + "cssName": "--smtc-corner-zero" + }, + "cornerBezel": { + "no": 320, + "name": "corner/bezel", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-bezel" + }, + "cornerWindowDefault": { + "no": 321, + "name": "corner/window/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-window-default" + }, + "cornerFlyoutRest": { + "no": 322, + "name": "corner/flyout/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-corner-flyout-rest" + }, + "cornerFlyoutHover": { + "no": 323, + "name": "corner/flyout/hover", + "fst_reference": "corner/flyout/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-corner-flyout-hover" + }, + "cornerFlyoutPressed": { + "no": 324, + "name": "corner/flyout/pressed", + "fst_reference": "corner/flyout/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-corner-flyout-pressed" + }, + "cornerLayerDefault": { + "no": 325, + "name": "corner/layer/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-layer-default" + }, + "cornerLayerIntersection": { + "no": 326, + "name": "corner/layer/intersection", + "fst_reference": "corner/zero", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-layer-intersection" + }, + "cornerCardRest": { + "no": 327, + "name": "corner/card/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-card-rest" + }, + "cornerCardHover": { + "no": 328, + "name": "corner/card/hover", + "fst_reference": "corner/card/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-card-hover" + }, + "cornerCardPressed": { + "no": 329, + "name": "corner/card/pressed", + "fst_reference": "corner/card/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-card-pressed" + }, + "cornerToolbarDefault": { + "no": 330, + "name": "corner/toolbar/default", + "fst_reference": "corner/card/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-toolbar-default" + }, + "cornerImageOnpage": { + "no": 331, + "name": "corner/image/onPage", + "fst_reference": "corner/card/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-image-onpage" + }, + "cornerCtrlRest": { + "no": 332, + "name": "corner/ctrl/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area", + "Inline link", + "Page link", + "Title bar", + "Tooltip", + "MessageBar" + ], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-rest" + }, + "cornerCtrlHover": { + "no": 333, + "name": "corner/ctrl/hover", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-hover" + }, + "cornerCtrlPressed": { + "no": 334, + "name": "corner/ctrl/pressed", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-pressed" + }, + "cornerCtrlSmRest": { + "no": 335, + "name": "corner/ctrl-sm/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer", "Editable dropdown", "Editable spin button"], + "contrast": "", + "fallback": "Small", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-sm-rest" + }, + "cornerCtrlSmHover": { + "no": 336, + "name": "corner/ctrl-sm/hover", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Small", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-sm-hover" + }, + "cornerCtrlSmPressed": { + "no": 337, + "name": "corner/ctrl-sm/pressed", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Small", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-sm-pressed" + }, + "cornerCtrlLgRest": { + "no": 338, + "name": "corner/ctrl-lg/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-lg-rest" + }, + "cornerCtrlLgHover": { + "no": 339, + "name": "corner/ctrl-lg/hover", + "fst_reference": "corner/ctrl-lg/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-lg-hover" + }, + "cornerCtrlLgPressed": { + "no": 340, + "name": "corner/ctrl-lg/pressed", + "fst_reference": "corner/ctrl-lg/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-ctrl-lg-pressed" + }, + "cornerImageIncard": { + "no": 341, + "name": "corner/image/inCard", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Inline drawer", "Overlay drawer", "Image"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-image-incard" + }, + "foregroundContentNeutralPrimary": { + "no": 342, + "name": "foreground/content/neutral/primary", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [" Radio", " Checkbox", "Dialog", "Inline drawer", "Overlay drawer", "Field", "Label", "Spinner"], + "contrast": "", + "fallback": "Neutral/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-content-neutral-primary" + }, + "foregroundContentNeutralSecondary": { + "no": 343, + "name": "foreground/content/neutral/secondary", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "Neutral/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-content-neutral-secondary" + }, + "foregroundContentBrandPrimary": { + "no": 344, + "name": "foreground/content/brand/primary", + "fst_reference": "foreground/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Foreground/Link/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-content-brand-primary" + }, + "foregroundCtrlNeutralPrimaryRest": { + "no": 345, + "name": "foreground/ctrl/neutral/primary/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Rating", + "MessageBar" + ], + "contrast": "", + "fallback": "Neutral/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-neutral-primary-rest" + }, + "foregroundCtrlNeutralPrimaryHover": { + "no": 346, + "name": "foreground/ctrl/neutral/primary/hover", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/1/Hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-neutral-primary-hover" + }, + "foregroundCtrlNeutralPrimaryPressed": { + "no": 347, + "name": "foreground/ctrl/neutral/primary/pressed", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/1/Pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-neutral-primary-pressed" + }, + "foregroundCtrlNeutralPrimaryDisabled": { + "no": 348, + "name": "foreground/ctrl/neutral/primary/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-neutral-primary-disabled" + }, + "foregroundCtrlNeutralSecondaryRest": { + "no": 349, + "name": "foreground/ctrl/neutral/secondary/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Text input box", "Editable dropdown", "Editable spin button", "Text area", "Field"], + "contrast": "", + "fallback": "Neutral/Foreground/4/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-neutral-secondary-rest" + }, + "foregroundCtrlNeutralSecondaryHover": { + "no": 350, + "name": "foreground/ctrl/neutral/secondary/hover", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/4/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-neutral-secondary-hover" + }, + "foregroundCtrlNeutralSecondaryPressed": { + "no": 351, + "name": "foreground/ctrl/neutral/secondary/pressed", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/4/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-neutral-secondary-pressed" + }, + "foregroundCtrlNeutralSecondaryDisabled": { + "no": 352, + "name": "foreground/ctrl/neutral/secondary/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Search box", "Password input box"], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-neutral-secondary-disabled" + }, + "foregroundCtrlIconOnneutralRest": { + "no": 353, + "name": "foreground/ctrl/icon/onNeutral/rest", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Editable dropdown", + "Editable spin button", + "MessageBar" + ], + "contrast": "", + "fallback": "Neutral/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onneutral-rest" + }, + "foregroundCtrlIconOnneutralHover": { + "no": 354, + "name": "foreground/ctrl/icon/onNeutral/hover", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onneutral-hover" + }, + "foregroundCtrlIconOnneutralPressed": { + "no": 355, + "name": "foreground/ctrl/icon/onNeutral/pressed", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onneutral-pressed" + }, + "foregroundCtrlIconOnneutralDisabled": { + "no": 356, + "name": "foreground/ctrl/icon/onNeutral/disabled", + "fst_reference": "foreground/ctrl/neutral/primary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Search box"], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onneutral-disabled" + }, + "foregroundCtrlIconOnoutlineRest": { + "no": 357, + "name": "foreground/ctrl/icon/onOutline/rest", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "Neutral/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onoutline-rest" + }, + "foregroundCtrlIconOnoutlineHover": { + "no": 358, + "name": "foreground/ctrl/icon/onOutline/hover", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onoutline-hover" + }, + "foregroundCtrlIconOnoutlinePressed": { + "no": 359, + "name": "foreground/ctrl/icon/onOutline/pressed", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onoutline-pressed" + }, + "foregroundCtrlIconOnoutlineDisabled": { + "no": 360, + "name": "foreground/ctrl/icon/onOutline/disabled", + "fst_reference": "foreground/ctrl/neutral/primary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite Filter Button"], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onoutline-disabled" + }, + "foregroundCtrlIconOnsubtleRest": { + "no": 361, + "name": "foreground/ctrl/icon/onSubtle/rest", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog", "Inline drawer", "Overlay drawer", "Title bar", "MessageBar"], + "contrast": "", + "fallback": "Neutral/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onsubtle-rest" + }, + "foregroundCtrlIconOnsubtleHover": { + "no": 362, + "name": "foreground/ctrl/icon/onSubtle/hover", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Brand/Hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onsubtle-hover" + }, + "foregroundCtrlIconOnsubtlePressed": { + "no": 363, + "name": "foreground/ctrl/icon/onSubtle/pressed", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Brand/Pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onsubtle-pressed" + }, + "foregroundCtrlIconOnsubtleDisabled": { + "no": 364, + "name": "foreground/ctrl/icon/onSubtle/disabled", + "fst_reference": "foreground/ctrl/neutral/primary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-icon-onsubtle-disabled" + }, + "foregroundCtrlBrandRest": { + "no": 365, + "name": "foreground/ctrl/brand/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["MessageBar"], + "contrast": "", + "fallback": "Neutral/Foreground/2/Brand/Selected", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-brand-rest" + }, + "foregroundCtrlBrandHover": { + "no": 366, + "name": "foreground/ctrl/brand/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Brand/Hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-brand-hover" + }, + "foregroundCtrlBrandPressed": { + "no": 367, + "name": "foreground/ctrl/brand/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Brand/Pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-brand-pressed" + }, + "foregroundCtrlBrandDisabled": { + "no": 368, + "name": "foreground/ctrl/brand/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-brand-disabled" + }, + "foregroundCtrlOnbrandRest": { + "no": 369, + "name": "foreground/ctrl/onBrand/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog", "Footer", "Inline drawer", "Overlay drawer", "Tooltip"], + "contrast": "", + "fallback": "Neutral/Foreground/OnBrand/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onbrand-rest" + }, + "foregroundCtrlOnbrandHover": { + "no": 370, + "name": "foreground/ctrl/onBrand/hover", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/OnBrand/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onbrand-hover" + }, + "foregroundCtrlOnbrandPressed": { + "no": 371, + "name": "foreground/ctrl/onBrand/pressed", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/OnBrand/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onbrand-pressed" + }, + "foregroundCtrlOnbrandDisabled": { + "no": 372, + "name": "foreground/ctrl/onBrand/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onbrand-disabled" + }, + "foregroundCtrlActivebrandRest": { + "no": 373, + "name": "foreground/ctrl/activeBrand/rest", + "fst_reference": "foreground/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/brand/rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-activebrand-rest" + }, + "foregroundCtrlActivebrandHover": { + "no": 374, + "name": "foreground/ctrl/activeBrand/hover", + "fst_reference": "foreground/ctrl/brand/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/brand/hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-activebrand-hover" + }, + "foregroundCtrlActivebrandPressed": { + "no": 375, + "name": "foreground/ctrl/activeBrand/pressed", + "fst_reference": "foreground/ctrl/brand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/brand/pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-activebrand-pressed" + }, + "foregroundCtrlActivebrandDisabled": { + "no": 376, + "name": "foreground/ctrl/activeBrand/disabled", + "fst_reference": "foreground/ctrl/brand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Split button", "Button"], + "contrast": "", + "fallback": "foreground/ctrl/brand/disabled", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-activebrand-disabled" + }, + "foregroundCtrlOnactivebrandRest": { + "no": 377, + "name": "foreground/ctrl/onActiveBrand/rest", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "foreground/ctrl/onBrand/rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onactivebrand-rest" + }, + "foregroundCtrlOnactivebrandHover": { + "no": 378, + "name": "foreground/ctrl/onActiveBrand/hover", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/onBrand/hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onactivebrand-hover" + }, + "foregroundCtrlOnactivebrandPressed": { + "no": 379, + "name": "foreground/ctrl/onActiveBrand/pressed", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/onBrand/pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onactivebrand-pressed" + }, + "foregroundCtrlOnactivebrandDisabled": { + "no": 380, + "name": "foreground/ctrl/onActiveBrand/disabled", + "fst_reference": "foreground/ctrl/onBrand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [" Switch", " Radio", " Checkbox"], + "contrast": "", + "fallback": "foreground/ctrl/onBrand/disabled", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onactivebrand-disabled" + }, + "foregroundCtrlOnoutlineRest": { + "no": 381, + "name": "foreground/ctrl/onOutline/rest", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "Neutral/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onoutline-rest" + }, + "foregroundCtrlOnoutlineHover": { + "no": 382, + "name": "foreground/ctrl/onOutline/hover", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/1/Hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onoutline-hover" + }, + "foregroundCtrlOnoutlinePressed": { + "no": 383, + "name": "foreground/ctrl/onOutline/pressed", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/1/Pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onoutline-pressed" + }, + "foregroundCtrlOnoutlineDisabled": { + "no": 384, + "name": "foreground/ctrl/onOutline/disabled", + "fst_reference": "foreground/ctrl/neutral/primary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite Filter Button"], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onoutline-disabled" + }, + "foregroundCtrlOnsubtleRest": { + "no": 385, + "name": "foreground/ctrl/onSubtle/rest", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog", "Inline drawer", "Overlay drawer", "Editable spin button", "Title bar", "MessageBar"], + "contrast": "", + "fallback": "Neutral/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onsubtle-rest" + }, + "foregroundCtrlOnsubtleHover": { + "no": 386, + "name": "foreground/ctrl/onSubtle/hover", + "fst_reference": "foreground/ctrl/neutral/primary/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onsubtle-hover" + }, + "foregroundCtrlOnsubtlePressed": { + "no": 387, + "name": "foreground/ctrl/onSubtle/pressed", + "fst_reference": "foreground/ctrl/neutral/primary/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onsubtle-pressed" + }, + "foregroundCtrlOnsubtleDisabled": { + "no": 388, + "name": "foreground/ctrl/onSubtle/disabled", + "fst_reference": "foreground/ctrl/neutral/primary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-onsubtle-disabled" + }, + "foregroundCtrlOntransparentRest": { + "no": 389, + "name": "foreground/ctrl/onTransparent/rest", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-ontransparent-rest" + }, + "foregroundCtrlOntransparentHover": { + "no": 390, + "name": "foreground/ctrl/onTransparent/hover", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Brand/Hover", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-ontransparent-hover" + }, + "foregroundCtrlOntransparentPressed": { + "no": 391, + "name": "foreground/ctrl/onTransparent/pressed", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Brand/Pressed", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-ontransparent-pressed" + }, + "foregroundCtrlOntransparentDisabled": { + "no": 392, + "name": "foreground/ctrl/onTransparent/disabled", + "fst_reference": "foreground/ctrl/neutral/primary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-ontransparent-disabled" + }, + "foregroundCtrlHintDefault": { + "no": 393, + "name": "foreground/ctrl/hint/default", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Rest", + "exceptions": [], + "cssName": "--smtc-foreground-ctrl-hint-default" + }, + "shadowCardRestKeyX": { + "no": 394, + "name": "shadow/card/rest/(key)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-rest-key-x" + }, + "shadowCardRestKeyY": { + "no": 395, + "name": "shadow/card/rest/(key)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-rest-key-y" + }, + "shadowCardRestKeyBlur": { + "no": 396, + "name": "shadow/card/rest/(key)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-rest-key-blur" + }, + "shadowCardRestKeyColor": { + "no": 397, + "name": "shadow/card/rest/(key)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Key", + "exceptions": [], + "cssName": "--smtc-shadow-card-rest-key-color" + }, + "shadowCardHoverKeyX": { + "no": 398, + "name": "shadow/card/hover/(key)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-hover-key-x" + }, + "shadowCardHoverKeyY": { + "no": 399, + "name": "shadow/card/hover/(key)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-hover-key-y" + }, + "shadowCardHoverKeyBlur": { + "no": 400, + "name": "shadow/card/hover/(key)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-hover-key-blur" + }, + "shadowCardHoverKeyColor": { + "no": 401, + "name": "shadow/card/hover/(key)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-hover-key-color" + }, + "shadowCardPressedKeyX": { + "no": 402, + "name": "shadow/card/pressed/(key)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-pressed-key-x" + }, + "shadowCardPressedKeyY": { + "no": 403, + "name": "shadow/card/pressed/(key)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-pressed-key-y" + }, + "shadowCardPressedKeyBlur": { + "no": 404, + "name": "shadow/card/pressed/(key)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-pressed-key-blur" + }, + "shadowCardPressedKeyColor": { + "no": 405, + "name": "shadow/card/pressed/(key)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-pressed-key-color" + }, + "shadowCardDisabledKeyX": { + "no": 406, + "name": "shadow/card/disabled/(key)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-disabled-key-x" + }, + "shadowCardDisabledKeyY": { + "no": 407, + "name": "shadow/card/disabled/(key)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-disabled-key-y" + }, + "shadowCardDisabledKeyBlur": { + "no": 408, + "name": "shadow/card/disabled/(key)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-disabled-key-blur" + }, + "shadowCardDisabledKeyColor": { + "no": 409, + "name": "shadow/card/disabled/(key)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-disabled-key-color" + }, + "shadowCardRestAmbientX": { + "no": 410, + "name": "shadow/card/rest/(ambient)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-rest-ambient-x" + }, + "shadowCardRestAmbientY": { + "no": 411, + "name": "shadow/card/rest/(ambient)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-rest-ambient-y" + }, + "shadowCardRestAmbientBlur": { + "no": 412, + "name": "shadow/card/rest/(ambient)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-card-rest-ambient-blur" + }, + "shadowCardRestAmbientColor": { + "no": 413, + "name": "shadow/card/rest/(ambient)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Ambient", + "exceptions": [], + "cssName": "--smtc-shadow-card-rest-ambient-color" + }, + "shadowFlyoutKeyX": { + "no": 414, + "name": "shadow/flyout/(key)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-flyout-key-x" + }, + "shadowFlyoutKeyY": { + "no": 415, + "name": "shadow/flyout/(key)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-flyout-key-y" + }, + "shadowFlyoutKeyBlur": { + "no": 416, + "name": "shadow/flyout/(key)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-flyout-key-blur" + }, + "shadowFlyoutKeyColor": { + "no": 417, + "name": "shadow/flyout/(key)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-flyout-key-color" + }, + "shadowFlyoutAmbientX": { + "no": 418, + "name": "shadow/flyout/(ambient)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-flyout-ambient-x" + }, + "shadowFlyoutAmbientY": { + "no": 419, + "name": "shadow/flyout/(ambient)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-flyout-ambient-y" + }, + "shadowFlyoutAmbientBlur": { + "no": 420, + "name": "shadow/flyout/(ambient)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-flyout-ambient-blur" + }, + "shadowFlyoutAmbientColor": { + "no": 421, + "name": "shadow/flyout/(ambient)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-flyout-ambient-color" + }, + "shadowCtrlOndragKeyY": { + "no": 422, + "name": "shadow/ctrl/onDrag/(key)/(y)", + "fst_reference": "shadow/flyout/(key)/(y)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-ctrl-ondrag-key-y" + }, + "shadowCtrlOndragKeyX": { + "no": 423, + "name": "shadow/ctrl/onDrag/(key)/(x)", + "fst_reference": "shadow/flyout/(key)/(x)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-ctrl-ondrag-key-x" + }, + "shadowCtrlOndragKeyBlur": { + "no": 424, + "name": "shadow/ctrl/onDrag/(key)/(blur)", + "fst_reference": "shadow/flyout/(key)/(blur)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-ctrl-ondrag-key-blur" + }, + "shadowCtrlOndragKeyColor": { + "no": 425, + "name": "shadow/ctrl/onDrag/(key)/(color)", + "fst_reference": "shadow/flyout/(key)/(color)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-ctrl-ondrag-key-color" + }, + "shadowCtrlOndragAmbientY": { + "no": 426, + "name": "shadow/ctrl/onDrag/(ambient)/(y)", + "fst_reference": "shadow/flyout/(ambient)/(y)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-ctrl-ondrag-ambient-y" + }, + "shadowCtrlOndragAmbientX": { + "no": 427, + "name": "shadow/ctrl/onDrag/(ambient)/(x)", + "fst_reference": "shadow/flyout/(ambient)/(x)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-ctrl-ondrag-ambient-x" + }, + "shadowCtrlOndragAmbientBlur": { + "no": 428, + "name": "shadow/ctrl/onDrag/(ambient)/(blur)", + "fst_reference": "shadow/flyout/(ambient)/(blur)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-ctrl-ondrag-ambient-blur" + }, + "shadowCtrlOndragAmbientColor": { + "no": 429, + "name": "shadow/ctrl/onDrag/(ambient)/(color)", + "fst_reference": "shadow/flyout/(ambient)/(color)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-ctrl-ondrag-ambient-color" + }, + "shadowLayerKeyX": { + "no": 430, + "name": "shadow/layer/(key)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-layer-key-x" + }, + "shadowToolbarKeyX": { + "no": 431, + "name": "shadow/toolbar/(key)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-toolbar-key-x" + }, + "shadowToolbarKeyY": { + "no": 432, + "name": "shadow/toolbar/(key)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-toolbar-key-y" + }, + "shadowToolbarKeyBlur": { + "no": 433, + "name": "shadow/toolbar/(key)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-toolbar-key-blur" + }, + "shadowToolbarKeyColor": { + "no": 434, + "name": "shadow/toolbar/(key)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Ambientlighter", + "exceptions": [], + "cssName": "--smtc-shadow-toolbar-key-color" + }, + "shadowToolbarAmbientX": { + "no": 435, + "name": "shadow/toolbar/(ambient)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-toolbar-ambient-x" + }, + "shadowToolbarAmbientY": { + "no": 436, + "name": "shadow/toolbar/(ambient)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-toolbar-ambient-y" + }, + "shadowToolbarAmbientBlur": { + "no": 437, + "name": "shadow/toolbar/(ambient)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-toolbar-ambient-blur" + }, + "shadowToolbarAmbientColor": { + "no": 438, + "name": "shadow/toolbar/(ambient)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-toolbar-ambient-color" + }, + "shadowLayerKeyY": { + "no": 439, + "name": "shadow/layer/(key)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-layer-key-y" + }, + "shadowLayerKeyBlur": { + "no": 440, + "name": "shadow/layer/(key)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-layer-key-blur" + }, + "shadowLayerKeyColor": { + "no": 441, + "name": "shadow/layer/(key)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-layer-key-color" + }, + "shadowLayerAmbientX": { + "no": 442, + "name": "shadow/layer/(ambient)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-layer-ambient-x" + }, + "shadowLayerAmbientY": { + "no": 443, + "name": "shadow/layer/(ambient)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-layer-ambient-y" + }, + "shadowLayerAmbientBlur": { + "no": 444, + "name": "shadow/layer/(ambient)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-layer-ambient-blur" + }, + "shadowLayerAmbientColor": { + "no": 445, + "name": "shadow/layer/(ambient)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-layer-ambient-color" + }, + "materialAcrylicDefaultSolid": { + "no": 446, + "name": "material/acrylic/default/(solid)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-material-acrylic-default-solid" + }, + "materialAcrylicDefaultColorblend": { + "no": 447, + "name": "material/acrylic/default/(colorBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-material-acrylic-default-colorblend" + }, + "materialAcrylicDefaultLumblend": { + "no": 448, + "name": "material/acrylic/default/(lumBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-material-acrylic-default-lumblend" + }, + "materialAcrylicBlur": { + "no": 449, + "name": "material/acrylic/blur", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Overlay drawer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-acrylic-blur" + }, + "materialMicaBlur": { + "no": 450, + "name": "material/mica/blur", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-mica-blur" + }, + "materialMicaDefaultSolid": { + "no": 451, + "name": "material/mica/default/(solid)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-mica-default-solid" + }, + "materialMicaDefaultColorblend": { + "no": 452, + "name": "material/mica/default/(colorBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-mica-default-colorblend" + }, + "materialMicaDefaultLumblend": { + "no": 453, + "name": "material/mica/default/(lumBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-mica-default-lumblend" + }, + "materialMicaDarkerSolid": { + "no": 454, + "name": "material/mica/darker/(solid)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-mica-darker-solid" + }, + "materialMicaDarkerColorblend": { + "no": 455, + "name": "material/mica/darker/(colorBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-mica-darker-colorblend" + }, + "materialMicaDarkerLumblend": { + "no": 456, + "name": "material/mica/darker/(lumBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-mica-darker-lumblend" + }, + "materialMicaThinSolid": { + "no": 457, + "name": "material/mica/thin/(solid)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-material-mica-thin-solid" + }, + "materialMicaThinColorblend": { + "no": 458, + "name": "material/mica/thin/(colorBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-material-mica-thin-colorblend" + }, + "materialMicaThinLumblend": { + "no": 459, + "name": "material/mica/thin/(lumBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-material-mica-thin-lumblend" + }, + "ctrlTooltipShadowKeyX": { + "no": 460, + "name": "CTRL/tooltip/shadow/(key)/(x)", + "fst_reference": "CTRL/fab/shadow/rest/(key)/(x)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Tooltip"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-shadow-key-x" + }, + "ctrlTooltipShadowKeyY": { + "no": 461, + "name": "CTRL/tooltip/shadow/(key)/(y)", + "fst_reference": "CTRL/fab/shadow/rest/(key)/(y)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Tooltip"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-shadow-key-y" + }, + "ctrlTooltipShadowKeyBlur": { + "no": 462, + "name": "CTRL/tooltip/shadow/(key)/(blur)", + "fst_reference": "CTRL/fab/shadow/rest/(key)/(blur)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Tooltip"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-shadow-key-blur" + }, + "ctrlTooltipShadowKeyColor": { + "no": 463, + "name": "CTRL/tooltip/shadow/(key)/(color)", + "fst_reference": "CTRL/fab/shadow/rest/(key)/(color)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Tooltip"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-shadow-key-color" + }, + "ctrlTooltipShadowAmbientX": { + "no": 464, + "name": "CTRL/tooltip/shadow/(ambient)/(x)", + "fst_reference": "CTRL/fab/shadow/rest/(ambient)/(x)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Tooltip"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-shadow-ambient-x" + }, + "ctrlTooltipShadowAmbientY": { + "no": 465, + "name": "CTRL/tooltip/shadow/(ambient)/(y)", + "fst_reference": "CTRL/fab/shadow/rest/(ambient)/(y)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Tooltip"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-shadow-ambient-y" + }, + "ctrlTooltipShadowAmbientBlur": { + "no": 466, + "name": "CTRL/tooltip/shadow/(ambient)/(blur)", + "fst_reference": "CTRL/fab/shadow/rest/(ambient)/(blur)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Tooltip"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-shadow-ambient-blur" + }, + "ctrlTooltipShadowAmbientColor": { + "no": 467, + "name": "CTRL/tooltip/shadow/(ambient)/(color)", + "fst_reference": "CTRL/fab/shadow/rest/(ambient)/(color)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Tooltip"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-shadow-ambient-color" + }, + "iconthemeCtrlDefaultRest": { + "no": 468, + "name": "iconTheme/ctrl/default/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "FAB", + "Split button", + "Button", + " Checkbox", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Text input box", + "Search box", + "Editable dropdown", + "Editable spin button", + "Inline link", + "Page link", + "Lite Filter Button", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-default-rest" + }, + "iconthemeCtrlDefaultHover": { + "no": 469, + "name": "iconTheme/ctrl/default/hover", + "fst_reference": "iconTheme/ctrl/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-default-hover" + }, + "iconthemeCtrlDefaultPressed": { + "no": 470, + "name": "iconTheme/ctrl/default/pressed", + "fst_reference": "iconTheme/ctrl/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Inline link", "Page link"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-default-pressed" + }, + "iconthemeCtrlDefaultSelected": { + "no": 471, + "name": "iconTheme/ctrl/default/selected", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Split button", "Button", "Lite filter"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-default-selected" + }, + "iconthemeCtrlSubtleRest": { + "no": 472, + "name": "iconTheme/ctrl/subtle/rest", + "fst_reference": "iconTheme/ctrl/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-subtle-rest" + }, + "iconthemeCtrlSubtleHover": { + "no": 473, + "name": "iconTheme/ctrl/subtle/hover", + "fst_reference": "iconTheme/ctrl/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-subtle-hover" + }, + "iconthemeCtrlSubtlePressed": { + "no": 474, + "name": "iconTheme/ctrl/subtle/pressed", + "fst_reference": "iconTheme/ctrl/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-subtle-pressed" + }, + "iconthemeCtrlSubtleSelected": { + "no": 475, + "name": "iconTheme/ctrl/subtle/selected", + "fst_reference": "iconTheme/ctrl/default/selected", + "optional": true, + "nullable": false, + "description": "", + "components": ["Split button"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-subtle-selected" + }, + "iconthemeCtrlChevronDefault": { + "no": 476, + "name": "iconTheme/ctrl/chevron/default", + "fst_reference": "iconTheme/ctrl/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Button", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Editable spin button", + "Lite Filter Button", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-chevron-default" + }, + "iconthemeCtrlChevronSelected": { + "no": 477, + "name": "iconTheme/ctrl/chevron/selected", + "fst_reference": "iconTheme/ctrl/default/selected", + "optional": true, + "nullable": false, + "description": "", + "components": ["Split button", "Lite filter"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-icontheme-ctrl-chevron-selected" + }, + "ctrlAvatarSize": { + "no": 478, + "name": "CTRL/avatar/size", + "fst_reference": "size/ctrl/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Avatar"], + "contrast": "", + "fallback": "Size/Avatar/Size", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-size" + }, + "ctrlAvatarCornerItem": { + "no": 479, + "name": "CTRL/avatar/corner/item", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": ["Avatar"], + "contrast": "", + "fallback": "corner/circular", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-corner-item" + }, + "ctrlAvatarBackground": { + "no": 480, + "name": "CTRL/avatar/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Avatar"], + "contrast": "", + "fallback": "Neutral/Background/6/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-background" + }, + "ctrlAvatarForeground": { + "no": 481, + "name": "CTRL/avatar/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Avatar"], + "contrast": "", + "fallback": "Neutral/Foreground/3/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-foreground" + }, + "ctrlAvatarIconSize": { + "no": 482, + "name": "CTRL/avatar/icon/size", + "fst_reference": "size/ctrl/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-icon-size" + }, + "ctrlAvatarPresencebadgeSize": { + "no": 483, + "name": "CTRL/avatar/presenceBadge/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Presence badge"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-presencebadge-size" + }, + "ctrlAvatarActiveringSize": { + "no": 484, + "name": "CTRL/avatar/activeRing/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-activering-size" + }, + "ctrlAvatarPresencebadgePaddingBottomrightoffset": { + "no": 485, + "name": "CTRL/avatar/presenceBadge/padding/bottomRightOffset", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-presencebadge-padding-bottomrightoffset" + }, + "ctrlAvatarCornerGroup": { + "no": 486, + "name": "CTRL/avatar/corner/group", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Avatar"], + "contrast": "", + "fallback": "Size/Avatar/Corner/Group", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-corner-group" + }, + "ctrlAvatarActiveringStrokewidth": { + "no": 487, + "name": "CTRL/avatar/activeRing/strokeWidth", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-activering-strokewidth" + }, + "ctrlAvatarPresencebadgeStrokewidth": { + "no": 488, + "name": "CTRL/avatar/presenceBadge/strokeWidth", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Presence badge"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-presencebadge-strokewidth" + }, + "ctrlAvatarTextFontsize": { + "no": 489, + "name": "CTRL/avatar/text/fontSize", + "fst_reference": "text/global/body3/fontSize", + "optional": true, + "nullable": false, + "description": "", + "components": ["Avatar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-text-fontsize" + }, + "ctrlAvatarTextLineheight": { + "no": 490, + "name": "CTRL/avatar/text/lineHeight", + "fst_reference": "text/global/body3/lineHeight", + "optional": true, + "nullable": false, + "description": "", + "components": ["Avatar"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-text-lineheight" + }, + "ctrlAvatarTextPaddingTopoffset": { + "no": 491, + "name": "CTRL/avatar/text/padding/topOffset", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-text-padding-topoffset" + }, + "ctrlAvatarActiveringStroke": { + "no": 492, + "name": "CTRL/avatar/activeRing/stroke", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Color/Avatar/Activering", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-activering-stroke" + }, + "ctrlAvatarShowcutout": { + "no": 493, + "name": "CTRL/avatar/showCutout", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-showcutout" + }, + "ctrlBadgeTextPaddingTop": { + "no": 494, + "name": "CTRL/badge/text/padding/top", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-text-padding-top" + }, + "ctrlBadgeTextPaddingBottom": { + "no": 495, + "name": "CTRL/badge/text/padding/bottom", + "fst_reference": "CTRL/badge/text/padding/top", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-text-padding-bottom" + }, + "ctrlBadgeSmTextPaddingTop": { + "no": 496, + "name": "CTRL/badge/sm/text/padding/top", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-sm-text-padding-top" + }, + "ctrlBadgeSmTextPaddingBottom": { + "no": 497, + "name": "CTRL/badge/sm/text/padding/bottom", + "fst_reference": "CTRL/badge/sm/text/padding/top", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-sm-text-padding-bottom" + }, + "ctrlBadgeLgTextPaddingTop": { + "no": 498, + "name": "CTRL/badge/lg/text/padding/top", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-lg-text-padding-top" + }, + "ctrlBadgeLgTextPaddingBottom": { + "no": 499, + "name": "CTRL/badge/lg/text/padding/bottom", + "fst_reference": "CTRL/badge/lg/text/padding/top", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-lg-text-padding-bottom" + }, + "ctrlBadgeIconTheme": { + "no": 500, + "name": "CTRL/badge/icon/theme", + "fst_reference": "iconTheme/ctrl/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-icon-theme" + }, + "ctrlBadgeBeaconSize": { + "no": 501, + "name": "CTRL/badge/beacon/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Badge"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-beacon-size" + }, + "ctrlBadgeSize": { + "no": 502, + "name": "CTRL/badge/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-size" + }, + "ctrlBadgeCorner": { + "no": 503, + "name": "CTRL/badge/corner", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-corner" + }, + "ctrlBadgeIconSizeFigmaonly": { + "no": 504, + "name": "CTRL/badge/icon/size(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-icon-sizefigmaonly" + }, + "ctrlBadgeGap": { + "no": 505, + "name": "CTRL/badge/gap", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-gap" + }, + "ctrlBadgeIconSize": { + "no": 506, + "name": "CTRL/badge/icon/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-icon-size" + }, + "ctrlBadgePadding": { + "no": 507, + "name": "CTRL/badge/padding", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-padding" + }, + "ctrlBadgeSmSize": { + "no": 508, + "name": "CTRL/badge/sm/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-sm-size" + }, + "ctrlBadgeSmCorner": { + "no": 509, + "name": "CTRL/badge/sm/corner", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-sm-corner" + }, + "ctrlBadgeSmIconSizeFigmaonly": { + "no": 510, + "name": "CTRL/badge/sm/icon/size(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-sm-icon-sizefigmaonly" + }, + "ctrlBadgeSmIconSize": { + "no": 511, + "name": "CTRL/badge/sm/icon/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-sm-icon-size" + }, + "ctrlBadgeSmPadding": { + "no": 512, + "name": "CTRL/badge/sm/padding", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-sm-padding" + }, + "ctrlBadgeLgSize": { + "no": 513, + "name": "CTRL/badge/lg/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-lg-size" + }, + "ctrlBadgeLgIconSizeFigmaonly": { + "no": 514, + "name": "CTRL/badge/lg/icon/size(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-lg-icon-sizefigmaonly" + }, + "ctrlBadgeLgIconSize": { + "no": 515, + "name": "CTRL/badge/lg/icon/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-lg-icon-size" + }, + "ctrlBadgeLgCorner": { + "no": 516, + "name": "CTRL/badge/lg/corner", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-lg-corner" + }, + "ctrlBadgeLgPadding": { + "no": 517, + "name": "CTRL/badge/lg/padding", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-badge-lg-padding" + }, + "ctrlChoicePaddingHorizontal": { + "no": 518, + "name": "CTRL/choice/padding/horizontal", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Radio", " Checkbox"], + "contrast": "", + "fallback": "Horizontal/S", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-padding-horizontal" + }, + "ctrlChoicePaddingVertical": { + "no": 519, + "name": "CTRL/choice/padding/vertical", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Radio", " Checkbox"], + "contrast": "", + "fallback": "Vertical/None", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-padding-vertical" + }, + "ctrlChoiceBaseSize": { + "no": 520, + "name": "CTRL/choice/base/size", + "fst_reference": "size/ctrl/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [" Radio", " Checkbox"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-size" + }, + "ctrlChoiceIconTheme": { + "no": 521, + "name": "CTRL/choice/icon/theme", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Checkbox"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-icon-theme" + }, + "ctrlChoiceBaseBackgroundRest": { + "no": 522, + "name": "CTRL/choice/base/background/rest", + "fst_reference": "background/ctrl/outline/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-background-rest" + }, + "ctrlChoiceBaseBackgroundHover": { + "no": 523, + "name": "CTRL/choice/base/background/hover", + "fst_reference": "background/ctrl/outline/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-background-hover" + }, + "ctrlChoiceBaseBackgroundPressed": { + "no": 524, + "name": "CTRL/choice/base/background/pressed", + "fst_reference": "background/ctrl/outline/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-background-pressed" + }, + "ctrlChoiceBaseBackgroundDisabled": { + "no": 525, + "name": "CTRL/choice/base/background/disabled", + "fst_reference": "background/ctrl/outline/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-background-disabled" + }, + "ctrlChoiceBaseStrokeRest": { + "no": 526, + "name": "CTRL/choice/base/stroke/rest", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-stroke-rest" + }, + "ctrlChoiceBaseStrokeHover": { + "no": 527, + "name": "CTRL/choice/base/stroke/hover", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-stroke-hover" + }, + "ctrlChoiceBaseStrokePressed": { + "no": 528, + "name": "CTRL/choice/base/stroke/pressed", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-stroke-pressed" + }, + "ctrlChoiceBaseStrokeDisabled": { + "no": 529, + "name": "CTRL/choice/base/stroke/disabled", + "fst_reference": "foreground/ctrl/neutral/secondary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-base-stroke-disabled" + }, + "ctrlChoiceCheckboxIconSize": { + "no": 530, + "name": "CTRL/choice/checkbox/icon/size", + "fst_reference": "size/ctrl/iconSecondary", + "optional": true, + "nullable": false, + "description": "", + "components": [" Checkbox"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-checkbox-icon-size" + }, + "ctrlChoiceCheckboxCorner": { + "no": 531, + "name": "CTRL/choice/checkbox/corner", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Checkbox"], + "contrast": "", + "fallback": "Small", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-checkbox-corner" + }, + "ctrlChoiceCheckboxIndeterminateCorner": { + "no": 532, + "name": "CTRL/choice/checkbox/indeterminate/corner", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-checkbox-indeterminate-corner" + }, + "ctrlChoiceCheckboxIndeterminateHeight": { + "no": 533, + "name": "CTRL/choice/checkbox/indeterminate/height", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-checkbox-indeterminate-height" + }, + "ctrlChoiceCheckboxIndeterminateWidth": { + "no": 534, + "name": "CTRL/choice/checkbox/indeterminate/width", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-checkbox-indeterminate-width" + }, + "ctrlChoiceRadioCorner": { + "no": 535, + "name": "CTRL/choice/radio/corner", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "corner/circular", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-radio-corner" + }, + "ctrlChoiceSwitchCorner": { + "no": 536, + "name": "CTRL/choice/switch/corner", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "corner/circular", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-corner" + }, + "ctrlChoiceRadioDotSizeRest": { + "no": 537, + "name": "CTRL/choice/radio/dot/size/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Radio"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-radio-dot-size-rest" + }, + "ctrlChoiceRadioDotSizeHover": { + "no": 538, + "name": "CTRL/choice/radio/dot/size/hover", + "fst_reference": "CTRL/choice/radio/dot/size/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-radio-dot-size-hover" + }, + "ctrlChoiceRadioDotSizePressed": { + "no": 539, + "name": "CTRL/choice/radio/dot/size/pressed", + "fst_reference": "CTRL/choice/radio/dot/size/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-radio-dot-size-pressed" + }, + "ctrlChoiceSwitchPaddingRest": { + "no": 540, + "name": "CTRL/choice/switch/padding/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Switch"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-padding-rest" + }, + "ctrlChoiceSwitchPaddingHover": { + "no": 541, + "name": "CTRL/choice/switch/padding/hover", + "fst_reference": "CTRL/choice/switch/padding/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-padding-hover" + }, + "ctrlChoiceSwitchPaddingPressed": { + "no": 542, + "name": "CTRL/choice/switch/padding/pressed", + "fst_reference": "CTRL/choice/switch/padding/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-padding-pressed" + }, + "ctrlChoiceSwitchHeight": { + "no": 543, + "name": "CTRL/choice/switch/height", + "fst_reference": "size/ctrl/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [" Switch"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-height" + }, + "ctrlChoiceSwitchWidth": { + "no": 544, + "name": "CTRL/choice/switch/width", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Switch"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-width" + }, + "ctrlChoiceSwitchThumbWidthRest": { + "no": 545, + "name": "CTRL/choice/switch/thumb/width/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [" Switch"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-width-rest" + }, + "ctrlChoiceSwitchThumbWidthHover": { + "no": 546, + "name": "CTRL/choice/switch/thumb/width/hover", + "fst_reference": "CTRL/choice/switch/thumb/width/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-width-hover" + }, + "ctrlChoiceSwitchThumbWidthPressed": { + "no": 547, + "name": "CTRL/choice/switch/thumb/width/pressed", + "fst_reference": "CTRL/choice/switch/thumb/width/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-width-pressed" + }, + "ctrlChoiceSwitchThumbShadowKeyX": { + "no": 548, + "name": "CTRL/choice/switch/thumb/shadow/(key)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/number", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-key-x" + }, + "ctrlChoiceSwitchThumbShadowKeyY": { + "no": 549, + "name": "CTRL/choice/switch/thumb/shadow/(key)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/number", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-key-y" + }, + "ctrlChoiceSwitchThumbShadowKeyBlur": { + "no": 550, + "name": "CTRL/choice/switch/thumb/shadow/(key)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/number", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-key-blur" + }, + "ctrlChoiceSwitchThumbShadowKeyColor": { + "no": 551, + "name": "CTRL/choice/switch/thumb/shadow/(key)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/color", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-key-color" + }, + "ctrlChoiceSwitchThumbShadowAmbientX": { + "no": 552, + "name": "CTRL/choice/switch/thumb/shadow/(ambient)/(x)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/number", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-ambient-x" + }, + "ctrlChoiceSwitchThumbShadowAmbientY": { + "no": 553, + "name": "CTRL/choice/switch/thumb/shadow/(ambient)/(y)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/number", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-ambient-y" + }, + "ctrlChoiceSwitchThumbShadowAmbientBlur": { + "no": 554, + "name": "CTRL/choice/switch/thumb/shadow/(ambient)/(blur)", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/number", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-ambient-blur" + }, + "ctrlChoiceSwitchThumbShadowAmbientColor": { + "no": 555, + "name": "CTRL/choice/switch/thumb/shadow/(ambient)/(color)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/color", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-ambient-color" + }, + "ctrlChoiceSmBaseSize": { + "no": 556, + "name": "CTRL/choice/sm/base/size", + "fst_reference": "size/ctrl-sm/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-base-size" + }, + "ctrlChoiceSmCheckboxCorner": { + "no": 557, + "name": "CTRL/choice/sm/checkbox/corner", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Small", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-checkbox-corner" + }, + "ctrlChoiceSmCheckboxIconSize": { + "no": 558, + "name": "CTRL/choice/sm/checkbox/icon/size", + "fst_reference": "size/ctrl/iconSecondary", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-checkbox-icon-size" + }, + "ctrlChoiceSmCheckboxIconSizeFigmaonly": { + "no": 559, + "name": "CTRL/choice/sm/checkbox/icon/size(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-checkbox-icon-sizefigmaonly" + }, + "ctrlChoiceSmRadioDotSize": { + "no": 560, + "name": "CTRL/choice/sm/radio/dot/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-radio-dot-size" + }, + "ctrlChoiceSmSwitchWidth": { + "no": 561, + "name": "CTRL/choice/sm/switch/width", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-switch-width" + }, + "ctrlChoiceSmSwitchHeight": { + "no": 562, + "name": "CTRL/choice/sm/switch/height", + "fst_reference": "size/ctrl-sm/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-switch-height" + }, + "ctrlChoiceSmSwitchThumbWidthRest": { + "no": 563, + "name": "CTRL/choice/sm/switch/thumb/width/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-switch-thumb-width-rest" + }, + "ctrlChoiceSmSwitchThumbWidthHover": { + "no": 564, + "name": "CTRL/choice/sm/switch/thumb/width/hover", + "fst_reference": "CTRL/choice/sm/switch/thumb/width/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-switch-thumb-width-hover" + }, + "ctrlChoiceSmSwitchThumbWidthPressed": { + "no": 565, + "name": "CTRL/choice/sm/switch/thumb/width/pressed", + "fst_reference": "CTRL/choice/sm/switch/thumb/width/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-sm-switch-thumb-width-pressed" + }, + "ctrlChoiceLgBaseSize": { + "no": 566, + "name": "CTRL/choice/lg/base/size", + "fst_reference": "size/ctrl-lg/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-base-size" + }, + "ctrlChoiceLgCheckboxCorner": { + "no": 567, + "name": "CTRL/choice/lg/checkbox/corner", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Small", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-checkbox-corner" + }, + "ctrlChoiceLgCheckboxIconSize": { + "no": 568, + "name": "CTRL/choice/lg/checkbox/icon/size", + "fst_reference": "size/ctrl/iconSecondary", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-checkbox-icon-size" + }, + "ctrlChoiceLgCheckboxIconSizeFigmaonly": { + "no": 569, + "name": "CTRL/choice/lg/checkbox/icon/size(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-checkbox-icon-sizefigmaonly" + }, + "ctrlChoiceLgRadioDotSizeRest": { + "no": 570, + "name": "CTRL/choice/lg/radio/dot/size/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-radio-dot-size-rest" + }, + "ctrlChoiceLgRadioDotSizeHover": { + "no": 571, + "name": "CTRL/choice/lg/radio/dot/size/hover", + "fst_reference": "CTRL/choice/lg/radio/dot/size/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-radio-dot-size-hover" + }, + "ctrlChoiceLgRadioDotSizePressed": { + "no": 572, + "name": "CTRL/choice/lg/radio/dot/size/pressed", + "fst_reference": "CTRL/choice/lg/radio/dot/size/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-radio-dot-size-pressed" + }, + "ctrlChoiceLgSwitchWidth": { + "no": 573, + "name": "CTRL/choice/lg/switch/width", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-switch-width" + }, + "ctrlChoiceLgSwitchHeight": { + "no": 574, + "name": "CTRL/choice/lg/switch/height", + "fst_reference": "size/ctrl-lg/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-switch-height" + }, + "ctrlChoiceLgSwitchThumbWidthRest": { + "no": 575, + "name": "CTRL/choice/lg/switch/thumb/width/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-switch-thumb-width-rest" + }, + "ctrlChoiceLgSwitchThumbWidthHover": { + "no": 576, + "name": "CTRL/choice/lg/switch/thumb/width/hover", + "fst_reference": "CTRL/choice/lg/switch/thumb/width/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-switch-thumb-width-hover" + }, + "ctrlChoiceLgSwitchThumbWidthPressed": { + "no": 577, + "name": "CTRL/choice/lg/switch/thumb/width/pressed", + "fst_reference": "CTRL/choice/lg/switch/thumb/width/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-choice-lg-switch-thumb-width-pressed" + }, + "ctrlDialogBackground": { + "no": 578, + "name": "CTRL/dialog/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-background" + }, + "ctrlDialogStroke": { + "no": 579, + "name": "CTRL/dialog/stroke", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "Neutral/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-stroke" + }, + "ctrlDialogBaseCorner": { + "no": 580, + "name": "CTRL/dialog/base/corner", + "fst_reference": "corner/card/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "X-Large", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-corner" + }, + "ctrlDialogBaseShadowKeyX": { + "no": 581, + "name": "CTRL/dialog/base/shadow/(key)/(X)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-shadow-key-x" + }, + "ctrlDialogBaseShadowKeyY": { + "no": 582, + "name": "CTRL/dialog/base/shadow/(key)/(Y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-shadow-key-y" + }, + "ctrlDialogBaseShadowKeyBlur": { + "no": 583, + "name": "CTRL/dialog/base/shadow/(key)/(Blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-shadow-key-blur" + }, + "ctrlDialogBaseShadowKeyColor": { + "no": 584, + "name": "CTRL/dialog/base/shadow/(key)/(Color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-shadow-key-color" + }, + "ctrlDialogBaseShadowAmbientX": { + "no": 585, + "name": "CTRL/dialog/base/shadow/(ambient)/(X)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-shadow-ambient-x" + }, + "ctrlDialogBaseShadowAmbientY": { + "no": 586, + "name": "CTRL/dialog/base/shadow/(ambient)/(Y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-shadow-ambient-y" + }, + "ctrlDialogBaseShadowAmbientBlur": { + "no": 587, + "name": "CTRL/dialog/base/shadow/(ambient)/(Blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-shadow-ambient-blur" + }, + "ctrlDialogBaseShadowAmbientColor": { + "no": 588, + "name": "CTRL/dialog/base/shadow/(ambient)/(Color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-base-shadow-ambient-color" + }, + "ctrlDialogLayerBackground": { + "no": 589, + "name": "CTRL/dialog/layer/background", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-layer-background" + }, + "ctrlDialogLayerPaddingBottom": { + "no": 590, + "name": "CTRL/dialog/layer/padding-bottom", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-dialog-layer-padding-bottom" + }, + "ctrlDividerFixedlineLength": { + "no": 591, + "name": "CTRL/divider/fixedLine/length", + "fst_reference": "padding/content/align/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-divider-fixedline-length" + }, + "ctrlDragBackgroundSolid": { + "no": 592, + "name": "CTRL/drag/background/(solid)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-drag-background-solid" + }, + "ctrlDragBackgroundColorblend": { + "no": 593, + "name": "CTRL/drag/background/(colorBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-drag-background-colorblend" + }, + "ctrlDragBackgroundLumblend": { + "no": 594, + "name": "CTRL/drag/background/(lumBlend)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-drag-background-lumblend" + }, + "ctrlFabBackgroundRest": { + "no": 595, + "name": "CTRL/fab/background/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-background-rest" + }, + "ctrlFocusPositionFigmaonly": { + "no": 596, + "name": "CTRL/focus/position(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-focus-positionfigmaonly" + }, + "ctrlFocusInnerStrokewidth": { + "no": 597, + "name": "CTRL/focus/inner/strokeWidth", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Card/Primary", + "Card/Secondary", + "Card/Tint (needed?)", + "Card/Outline", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Inline link", + "Page link", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-focus-inner-strokewidth" + }, + "ctrlFocusInnerStroke": { + "no": 598, + "name": "CTRL/focus/inner/stroke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Card/Primary", + "Card/Secondary", + "Card/Tint (needed?)", + "Card/Outline", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Inline link", + "Page link", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "Neutral/Stroke/Focus/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-focus-inner-stroke" + }, + "ctrlFocusOuterStrokewidth": { + "no": 599, + "name": "CTRL/focus/outer/strokeWidth", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Card/Primary", + "Card/Secondary", + "Card/Tint (needed?)", + "Card/Outline", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Inline link", + "Page link", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-focus-outer-strokewidth" + }, + "ctrlFocusOuterStroke": { + "no": 600, + "name": "CTRL/focus/outer/stroke", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Card/Primary", + "Card/Secondary", + "Card/Tint (needed?)", + "Card/Outline", + "Dialog", + "Footer", + "Consent Dialog/footer", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Inline link", + "Page link", + "Lite filter", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "Neutral/Stroke/Focus/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-focus-outer-stroke" + }, + "ctrlFabBackgroundHover": { + "no": 601, + "name": "CTRL/fab/background/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-background-hover" + }, + "ctrlFabBackgroundPressed": { + "no": 602, + "name": "CTRL/fab/background/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-background-pressed" + }, + "ctrlFabBackgroundDisabled": { + "no": 603, + "name": "CTRL/fab/background/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-background-disabled" + }, + "ctrlFabCornerRest": { + "no": 604, + "name": "CTRL/fab/corner/rest", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "Circular", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-corner-rest" + }, + "ctrlFabShadowRestKeyX": { + "no": 605, + "name": "CTRL/fab/shadow/rest/(key)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-rest-key-x" + }, + "ctrlFabShadowRestKeyY": { + "no": 606, + "name": "CTRL/fab/shadow/rest/(key)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-rest-key-y" + }, + "ctrlFabShadowRestKeyBlur": { + "no": 607, + "name": "CTRL/fab/shadow/rest/(key)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-rest-key-blur" + }, + "ctrlFabShadowRestKeyColor": { + "no": 608, + "name": "CTRL/fab/shadow/rest/(key)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-rest-key-color" + }, + "ctrlFabShadowRestAmbientX": { + "no": 609, + "name": "CTRL/fab/shadow/rest/(ambient)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-rest-ambient-x" + }, + "ctrlFabShadowRestAmbientY": { + "no": 610, + "name": "CTRL/fab/shadow/rest/(ambient)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-rest-ambient-y" + }, + "ctrlFabShadowRestAmbientBlur": { + "no": 611, + "name": "CTRL/fab/shadow/rest/(ambient)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-rest-ambient-blur" + }, + "ctrlFabShadowRestAmbientColor": { + "no": 612, + "name": "CTRL/fab/shadow/rest/(ambient)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-rest-ambient-color" + }, + "ctrlFabShadowHoverKeyX": { + "no": 613, + "name": "CTRL/fab/shadow/hover/(key)/(x)", + "fst_reference": "shadow/flyout/(key)/(x)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-hover-key-x" + }, + "ctrlFabShadowHoverKeyY": { + "no": 614, + "name": "CTRL/fab/shadow/hover/(key)/(y)", + "fst_reference": "shadow/flyout/(key)/(y)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-hover-key-y" + }, + "ctrlFabShadowHoverKeyBlur": { + "no": 615, + "name": "CTRL/fab/shadow/hover/(key)/(blur)", + "fst_reference": "shadow/flyout/(key)/(blur)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-hover-key-blur" + }, + "ctrlFabShadowHoverKeyColor": { + "no": 616, + "name": "CTRL/fab/shadow/hover/(key)/(color)", + "fst_reference": "shadow/flyout/(key)/(color)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-hover-key-color" + }, + "ctrlFabShadowPressedKeyX": { + "no": 617, + "name": "CTRL/fab/shadow/pressed/(key)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-pressed-key-x" + }, + "ctrlFabShadowPressedKeyY": { + "no": 618, + "name": "CTRL/fab/shadow/pressed/(key)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-pressed-key-y" + }, + "ctrlFabShadowPressedKeyBlur": { + "no": 619, + "name": "CTRL/fab/shadow/pressed/(key)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-pressed-key-blur" + }, + "ctrlFabShadowPressedKeyColor": { + "no": 620, + "name": "CTRL/fab/shadow/pressed/(key)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-pressed-key-color" + }, + "ctrlFabShadowDisabledKeyX": { + "no": 621, + "name": "CTRL/fab/shadow/disabled/(key)/(x)", + "fst_reference": "CTRL/fab/shadow/pressed/(key)/(x)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-disabled-key-x" + }, + "ctrlFabShadowDisabledKeyY": { + "no": 622, + "name": "CTRL/fab/shadow/disabled/(key)/(y)", + "fst_reference": "CTRL/fab/shadow/pressed/(key)/(y)", + "optional": true, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-disabled-key-y" + }, + "ctrlFabShadowDisabledKeyBlur": { + "no": 623, + "name": "CTRL/fab/shadow/disabled/(key)/(blur)", + "fst_reference": "CTRL/fab/shadow/pressed/(key)/(blur)", + "optional": true, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-disabled-key-blur" + }, + "ctrlFabShadowDisabledKeyColor": { + "no": 624, + "name": "CTRL/fab/shadow/disabled/(key)/(color)", + "fst_reference": "CTRL/fab/shadow/pressed/(key)/(color)", + "optional": true, + "nullable": false, + "description": "", + "components": ["FAB"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-shadow-disabled-key-color" + }, + "ctrlFabCornerHover": { + "no": 625, + "name": "CTRL/fab/corner/hover", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Circular", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-corner-hover" + }, + "ctrlFabCornerPressed": { + "no": 626, + "name": "CTRL/fab/corner/pressed", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Circular", + "exceptions": [], + "cssName": "--smtc-ctrl-fab-corner-pressed" + }, + "ctrlInputBackgroundRest": { + "no": 627, + "name": "CTRL/input/background/rest", + "fst_reference": "background/ctrl/neutral/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-background-rest" + }, + "ctrlInputBackgroundHover": { + "no": 628, + "name": "CTRL/input/background/hover", + "fst_reference": "background/ctrl/neutral/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-background-hover" + }, + "ctrlInputBackgroundPressed": { + "no": 629, + "name": "CTRL/input/background/pressed", + "fst_reference": "background/ctrl/neutral/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-background-pressed" + }, + "ctrlInputBackgroundDisabled": { + "no": 630, + "name": "CTRL/input/background/disabled", + "fst_reference": "background/ctrl/neutral/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area" + ], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-background-disabled" + }, + "ctrlInputBackgroundSelected": { + "no": 631, + "name": "CTRL/input/background/selected", + "fst_reference": "background/ctrl/neutral/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-background-selected" + }, + "ctrlInputBackgroundError": { + "no": 632, + "name": "CTRL/input/background/error", + "fst_reference": "background/ctrl/neutral/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-background-error" + }, + "ctrlInputStrokeRest": { + "no": 633, + "name": "CTRL/input/stroke/rest", + "fst_reference": "stroke/ctrl/onOutline/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-stroke-rest" + }, + "ctrlInputBottomlineStrokewidthRest": { + "no": 634, + "name": "CTRL/input/bottomLine/strokeWidth/rest", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area" + ], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-strokewidth-rest" + }, + "ctrlInputStrokewidthRest": { + "no": 635, + "name": "CTRL/input/strokeWidth/rest", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-input-strokewidth-rest" + }, + "ctrlInputTextselectionBackground": { + "no": 636, + "name": "CTRL/input/textSelection/background", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/ctrl/activeBrand/rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-textselection-background" + }, + "ctrlInputTextselectionForeground": { + "no": 637, + "name": "CTRL/input/textSelection/foreground", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/4/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-textselection-foreground" + }, + "ctrlInputStrokewidthHover": { + "no": 638, + "name": "CTRL/input/strokeWidth/hover", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-input-strokewidth-hover" + }, + "ctrlInputStrokewidthPressed": { + "no": 639, + "name": "CTRL/input/strokeWidth/pressed", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-input-strokewidth-pressed" + }, + "ctrlInputStrokewidthSelected": { + "no": 640, + "name": "CTRL/input/strokeWidth/selected", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-input-strokewidth-selected" + }, + "ctrlInputBottomlineStrokewidthHover": { + "no": 641, + "name": "CTRL/input/bottomLine/strokeWidth/hover", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-strokewidth-hover" + }, + "ctrlInputBottomlineStrokewidthPressed": { + "no": 642, + "name": "CTRL/input/bottomLine/strokeWidth/pressed", + "fst_reference": "CTRL/input/bottomLine/strokeWidth/selected", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-strokewidth-pressed" + }, + "ctrlInputBottomlineStrokewidthSelected": { + "no": 643, + "name": "CTRL/input/bottomLine/strokeWidth/selected", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-strokewidth-selected" + }, + "ctrlInputBottomlineStrokeRest": { + "no": 644, + "name": "CTRL/input/bottomLine/stroke/rest", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-stroke-rest" + }, + "ctrlInputBottomlineStrokeHover": { + "no": 645, + "name": "CTRL/input/bottomLine/stroke/hover", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-stroke-hover" + }, + "ctrlInputBottomlineStrokePressed": { + "no": 646, + "name": "CTRL/input/bottomLine/stroke/pressed", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-stroke-pressed" + }, + "ctrlInputBottomlineStrokeDisabled": { + "no": 647, + "name": "CTRL/input/bottomLine/stroke/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [ + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area" + ], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-stroke-disabled" + }, + "ctrlInputBottomlineStrokeSelected": { + "no": 648, + "name": "CTRL/input/bottomLine/stroke/selected", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-stroke-selected" + }, + "ctrlInputBottomlineStrokeError": { + "no": 649, + "name": "CTRL/input/bottomLine/stroke/error", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-bottomline-stroke-error" + }, + "ctrlInputStrokeHover": { + "no": 650, + "name": "CTRL/input/stroke/hover", + "fst_reference": "stroke/ctrl/onOutline/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-input-stroke-hover" + }, + "ctrlInputStrokePressed": { + "no": 651, + "name": "CTRL/input/stroke/pressed", + "fst_reference": "stroke/ctrl/onOutline/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-input-stroke-pressed" + }, + "ctrlInputStrokeDisabled": { + "no": 652, + "name": "CTRL/input/stroke/disabled", + "fst_reference": "stroke/ctrl/onOutline/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [ + "Text input box", + "Search box", + "Password input box", + "Editable dropdown", + "Editable spin button", + "Text area" + ], + "contrast": "", + "fallback": "Neutral/Stroke/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-stroke-disabled" + }, + "ctrlInputStrokeSelected": { + "no": 653, + "name": "CTRL/input/stroke/selected", + "fst_reference": "stroke/ctrl/onOutline/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Selected", + "exceptions": [], + "cssName": "--smtc-ctrl-input-stroke-selected" + }, + "ctrlInputStrokeError": { + "no": 654, + "name": "CTRL/input/stroke/error", + "fst_reference": "STATUS/danger/stroke", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Danger/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-input-stroke-error" + }, + "ctrlLinkForegroundNeutralRest": { + "no": 655, + "name": "CTRL/link/foreground/neutral/rest", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/neutral/primary/rest", + "exceptions": [], + "cssName": "--smtc-ctrl-link-foreground-neutral-rest" + }, + "ctrlLinkInlineStrokewidthRest": { + "no": 656, + "name": "CTRL/link/inline/strokeWidth/rest", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Inline link", "Page link"], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-link-inline-strokewidth-rest" + }, + "ctrlLinkInlineStrokewidthHover": { + "no": 657, + "name": "CTRL/link/inline/strokeWidth/hover", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-link-inline-strokewidth-hover" + }, + "ctrlLinkInlineUnderlineDashed": { + "no": 658, + "name": "CTRL/link/inline/underline/dashed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Inline link"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-link-inline-underline-dashed" + }, + "ctrlLinkInlineUnderlineSolidFigmaonly": { + "no": 659, + "name": "CTRL/link/inline/underline/solid(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Inline link"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-link-inline-underline-solidfigmaonly" + }, + "ctrlLinkForegroundNeutralHover": { + "no": 660, + "name": "CTRL/link/foreground/neutral/hover", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/neutral/primary/hover", + "exceptions": [], + "cssName": "--smtc-ctrl-link-foreground-neutral-hover" + }, + "ctrlLinkForegroundNeutralPressed": { + "no": 661, + "name": "CTRL/link/foreground/neutral/pressed", + "fst_reference": "foreground/ctrl/neutral/primary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Inline link", "Page link"], + "contrast": "", + "fallback": "foreground/ctrl/neutral/primary/pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-link-foreground-neutral-pressed" + }, + "ctrlLinkForegroundBrandRest": { + "no": 662, + "name": "CTRL/link/foreground/brand/rest", + "fst_reference": "foreground/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "foreground/ctrl/brand/rest", + "exceptions": [], + "cssName": "--smtc-ctrl-link-foreground-brand-rest" + }, + "ctrlLinkForegroundBrandHover": { + "no": 663, + "name": "CTRL/link/foreground/brand/hover", + "fst_reference": "foreground/ctrl/brand/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/brand/hover", + "exceptions": [], + "cssName": "--smtc-ctrl-link-foreground-brand-hover" + }, + "ctrlLinkForegroundBrandPressed": { + "no": 664, + "name": "CTRL/link/foreground/brand/pressed", + "fst_reference": "foreground/ctrl/brand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "foreground/ctrl/brand/pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-link-foreground-brand-pressed" + }, + "ctrlLinkOnpageStrokewidthRest": { + "no": 665, + "name": "CTRL/link/onPage/strokeWidth/rest", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-link-onpage-strokewidth-rest" + }, + "ctrlLinkOnpageStrokewidthHover": { + "no": 666, + "name": "CTRL/link/onPage/strokeWidth/hover", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-link-onpage-strokewidth-hover" + }, + "ctrlLinkOnpageUnderlineDashed": { + "no": 667, + "name": "CTRL/link/onPage/underline/dashed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Page link"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-link-onpage-underline-dashed" + }, + "ctrlLinkOnpageUnderlineSolidFigmaonly": { + "no": 668, + "name": "CTRL/link/onPage/underline/solid(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Page link"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-link-onpage-underline-solidfigmaonly" + }, + "ctrlLinkInlineShowunderlineatrest": { + "no": 669, + "name": "CTRL/link/inline/showUnderlineAtRest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-link-inline-showunderlineatrest" + }, + "ctrlLinkOnpageShowunderlineatrest": { + "no": 670, + "name": "CTRL/link/onPage/showUnderlineAtRest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Consent Dialog/footer"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-link-onpage-showunderlineatrest" + }, + "ctrlListPillWidth": { + "no": 671, + "name": "CTRL/list/pill/width", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thicker", + "exceptions": [], + "cssName": "--smtc-ctrl-list-pill-width" + }, + "ctrlListPillFullwidth": { + "no": 672, + "name": "CTRL/list/pill/fullWidth", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-pill-fullwidth" + }, + "ctrlListPillStretchPaddingDefault": { + "no": 673, + "name": "CTRL/list/pill/stretch/padding/default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-pill-stretch-padding-default" + }, + "ctrlListPillStretchPaddingHint": { + "no": 674, + "name": "CTRL/list/pill/stretch/padding/hint", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-pill-stretch-padding-hint" + }, + "ctrlListPillLengthRest": { + "no": 675, + "name": "CTRL/list/pill/length/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-pill-length-rest" + }, + "ctrlListPillLengthHover": { + "no": 676, + "name": "CTRL/list/pill/length/hover", + "fst_reference": "CTRL/list/pill/length/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-pill-length-hover" + }, + "ctrlListPillLengthPressed": { + "no": 677, + "name": "CTRL/list/pill/length/pressed", + "fst_reference": "CTRL/list/pill/length/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-pill-length-pressed" + }, + "ctrlListPillLengthHint": { + "no": 678, + "name": "CTRL/list/pill/length/hint", + "fst_reference": "CTRL/list/pill/length/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-pill-length-hint" + }, + "ctrlListCornerRest": { + "no": 679, + "name": "CTRL/list/corner/rest", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-corner-rest" + }, + "ctrlListCornerHover": { + "no": 680, + "name": "CTRL/list/corner/hover", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-corner-hover" + }, + "ctrlListCornerPressed": { + "no": 681, + "name": "CTRL/list/corner/pressed", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-corner-pressed" + }, + "ctrlListIndentLevel1": { + "no": 682, + "name": "CTRL/list/indent/level1", + "fst_reference": "padding/ctrl/horizontal-default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-indent-level1" + }, + "ctrlListIndentLevel2": { + "no": 683, + "name": "CTRL/list/indent/(level2)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-indent-level2" + }, + "ctrlListIndentLevel3": { + "no": 684, + "name": "CTRL/list/indent/(level3)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-indent-level3" + }, + "ctrlListBackgroundSelectedRest": { + "no": 685, + "name": "CTRL/list/background/selected-rest", + "fst_reference": "background/ctrl/subtle/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/ctrl/subtle/rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-background-selected-rest" + }, + "ctrlListBackgroundSelectedHover": { + "no": 686, + "name": "CTRL/list/background/selected-hover", + "fst_reference": "background/ctrl/subtle/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/ctrl/subtle/hover", + "exceptions": [], + "cssName": "--smtc-ctrl-list-background-selected-hover" + }, + "ctrlListBackgroundSelectedPressed": { + "no": 687, + "name": "CTRL/list/background/selected-pressed", + "fst_reference": "background/ctrl/subtle/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/ctrl/subtle/pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-list-background-selected-pressed" + }, + "ctrlListBackgroundSelectedDisabled": { + "no": 688, + "name": "CTRL/list/background/selected-disabled", + "fst_reference": "background/ctrl/subtle/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/ctrl/subtle/disabled", + "exceptions": [], + "cssName": "--smtc-ctrl-list-background-selected-disabled" + }, + "ctrlListChoiceBackgroundRest": { + "no": 689, + "name": "CTRL/list/choice/background/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-background-rest" + }, + "ctrlListChoiceStrokeRest": { + "no": 690, + "name": "CTRL/list/choice/stroke/rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-stroke-rest" + }, + "ctrlListChoiceStrokeDisabled": { + "no": 691, + "name": "CTRL/list/choice/stroke/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-stroke-disabled" + }, + "ctrlListChoiceStrokeSelectedRest": { + "no": 692, + "name": "CTRL/list/choice/stroke/selected-rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-stroke-selected-rest" + }, + "ctrlListChoiceStrokeSelectedDisabled": { + "no": 693, + "name": "CTRL/list/choice/stroke/selected-disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-stroke-selected-disabled" + }, + "ctrlListChoiceForegroundHover": { + "no": 694, + "name": "CTRL/list/choice/foreground/hover", + "fst_reference": "foreground/ctrl/hint/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-foreground-hover" + }, + "ctrlListChoiceForegroundSelectedRest": { + "no": 695, + "name": "CTRL/list/choice/foreground/selected-rest", + "fst_reference": "foreground/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-foreground-selected-rest" + }, + "ctrlListChoiceForegroundSelectedDisabled": { + "no": 696, + "name": "CTRL/list/choice/foreground/selected-disabled", + "fst_reference": "foreground/ctrl/brand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-foreground-selected-disabled" + }, + "ctrlListChoiceBackgroundDisabled": { + "no": 697, + "name": "CTRL/list/choice/background/disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-background-disabled" + }, + "ctrlListChoiceBackgroundSelectedRest": { + "no": 698, + "name": "CTRL/list/choice/background/selected-rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-background-selected-rest" + }, + "ctrlListChoiceBackgroundSelectedDisabled": { + "no": 699, + "name": "CTRL/list/choice/background/selected-disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-background-selected-disabled" + }, + "ctrlListChoiceCheckboxCorner": { + "no": 700, + "name": "CTRL/list/choice/checkbox/corner", + "fst_reference": "CTRL/choice/checkbox/corner", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-checkbox-corner" + }, + "ctrlListChoiceCheckboxIconSize": { + "no": 701, + "name": "CTRL/list/choice/checkbox/icon/size", + "fst_reference": "size/ctrl/iconSecondary", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-checkbox-icon-size" + }, + "ctrlListChoiceCheckboxIconSizeFigmaonly": { + "no": 702, + "name": "CTRL/list/choice/checkbox/icon/size(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-checkbox-icon-sizefigmaonly" + }, + "ctrlListChoiceDotSize": { + "no": 703, + "name": "CTRL/list/choice/dot/size", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-dot-size" + }, + "ctrlListChoiceDotSizeFigmaonly": { + "no": 704, + "name": "CTRL/list/choice/dot/size(figmaonly)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-choice-dot-sizefigmaonly" + }, + "ctrlListSplitDividerPaddingInset": { + "no": 705, + "name": "CTRL/list/split/divider/padding/inset", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Split button"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-split-divider-padding-inset" + }, + "ctrlListSplitDividerStroke": { + "no": 706, + "name": "CTRL/list/split/divider/stroke", + "fst_reference": "stroke/ctrl/divider/onNeutral", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-list-split-divider-stroke" + }, + "ctrlListSmCornerRest": { + "no": 707, + "name": "CTRL/list/sm/corner/rest", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-sm-corner-rest" + }, + "ctrlListSmCornerHover": { + "no": 708, + "name": "CTRL/list/sm/corner/hover", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-sm-corner-hover" + }, + "ctrlListSmCornerPressed": { + "no": 709, + "name": "CTRL/list/sm/corner/pressed", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-sm-corner-pressed" + }, + "ctrlListSmIndentLevel1": { + "no": 710, + "name": "CTRL/list/sm/indent/level1", + "fst_reference": "padding/ctrl-sm/horizontal-default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-sm-indent-level1" + }, + "ctrlListSmIndentLevel2": { + "no": 711, + "name": "CTRL/list/sm/indent/(level2)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-sm-indent-level2" + }, + "ctrlListSmIndentLevel3": { + "no": 712, + "name": "CTRL/list/sm/indent/(level3)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-sm-indent-level3" + }, + "ctrlListLgCornerRest": { + "no": 713, + "name": "CTRL/list/lg/corner/rest", + "fst_reference": "corner/ctrl-lg/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-lg-corner-rest" + }, + "ctrlListLgCornerHover": { + "no": 714, + "name": "CTRL/list/lg/corner/hover", + "fst_reference": "corner/ctrl-lg/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-lg-corner-hover" + }, + "ctrlListLgCornerPressed": { + "no": 715, + "name": "CTRL/list/lg/corner/pressed", + "fst_reference": "corner/ctrl-lg/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-list-lg-corner-pressed" + }, + "ctrlListLgIndentLevel1": { + "no": 716, + "name": "CTRL/list/lg/indent/level1", + "fst_reference": "padding/ctrl-lg/horizontal-default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-lg-indent-level1" + }, + "ctrlListLgIndentLevel2": { + "no": 717, + "name": "CTRL/list/lg/indent/(level2)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-lg-indent-level2" + }, + "ctrlListLgIndentLevel3": { + "no": 718, + "name": "CTRL/list/lg/indent/(level3)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-lg-indent-level3" + }, + "ctrlLitefilterBackgroundSelected": { + "no": 719, + "name": "CTRL/liteFilter/background/selected", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "background/ctrl/brand/rest", + "exceptions": [], + "cssName": "--smtc-ctrl-litefilter-background-selected" + }, + "ctrlLitefilterStrokeSelected": { + "no": 720, + "name": "CTRL/liteFilter/stroke/selected", + "fst_reference": "stroke/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "stroke/ctrl/onBrand/rest", + "exceptions": [], + "cssName": "--smtc-ctrl-litefilter-stroke-selected" + }, + "ctrlLitefilterForegroundSelected": { + "no": 721, + "name": "CTRL/liteFilter/foreground/selected", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "foreground/ctrl/onBrand/rest", + "exceptions": [], + "cssName": "--smtc-ctrl-litefilter-foreground-selected" + }, + "ctrlProgressBackgroundEmpty": { + "no": 722, + "name": "CTRL/progress/background/empty", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Spinner", "Progress Bar"], + "contrast": "", + "fallback": "Neutral/Background/6/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-background-empty" + }, + "ctrlProgressBackgroundFilled": { + "no": 723, + "name": "CTRL/progress/background/filled", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Spinner"], + "contrast": "", + "fallback": "background/ctrl/activeBrand/rest", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-background-filled" + }, + "ctrlProgressCorner": { + "no": 724, + "name": "CTRL/progress/corner", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": ["Progress Bar"], + "contrast": "", + "fallback": "Circular", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-corner" + }, + "ctrlProgressHeightFilled": { + "no": 725, + "name": "CTRL/progress/height/filled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Progress Bar"], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-height-filled" + }, + "ctrlProgressHeightEmpty": { + "no": 726, + "name": "CTRL/progress/height/empty", + "fst_reference": "CTRL/progress/height/filled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Progress Bar"], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-height-empty" + }, + "ctrlProgressSmHeightFilled": { + "no": 727, + "name": "CTRL/progress/sm/height/filled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-sm-height-filled" + }, + "ctrlProgressSmHeightEmpty": { + "no": 728, + "name": "CTRL/progress/sm/height/empty", + "fst_reference": "CTRL/progress/sm/height/filled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-sm-height-empty" + }, + "ctrlRatingIconTheme": { + "no": 729, + "name": "CTRL/rating/icon/theme", + "fst_reference": "iconTheme/ctrl/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-rating-icon-theme" + }, + "ctrlRatingIconGap": { + "no": 730, + "name": "CTRL/rating/icon/gap", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Rating"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-rating-icon-gap" + }, + "ctrlRatingIconForegroundFilled": { + "no": 731, + "name": "CTRL/rating/icon/foreground/filled", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Rating"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-rating-icon-foreground-filled" + }, + "ctrlRatingIconForegroundEmpty": { + "no": 732, + "name": "CTRL/rating/icon/foreground/empty", + "fst_reference": "CTRL/progress/background/empty", + "optional": true, + "nullable": false, + "description": "", + "components": ["Rating"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-rating-icon-foreground-empty" + }, + "ctrlRatingIconSize": { + "no": 733, + "name": "CTRL/rating/icon/size", + "fst_reference": "size/ctrl/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-rating-icon-size" + }, + "ctrlSegmentedBackgroundRest": { + "no": 734, + "name": "CTRL/segmented/background/rest", + "fst_reference": "background/ctrl/outline/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-background-rest" + }, + "ctrlSegmentedBackgroundHover": { + "no": 735, + "name": "CTRL/segmented/background/hover", + "fst_reference": "background/ctrl/outline/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-background-hover" + }, + "ctrlSegmentedBackgroundPressed": { + "no": 736, + "name": "CTRL/segmented/background/pressed", + "fst_reference": "background/ctrl/outline/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-background-pressed" + }, + "ctrlSegmentedBackgroundDisabled": { + "no": 737, + "name": "CTRL/segmented/background/disabled", + "fst_reference": "background/ctrl/outline/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Transparent/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-background-disabled" + }, + "ctrlSegmentedStrokeRest": { + "no": 738, + "name": "CTRL/segmented/stroke/rest", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-stroke-rest" + }, + "ctrlSegmentedStrokeHover": { + "no": 739, + "name": "CTRL/segmented/stroke/hover", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-stroke-hover" + }, + "ctrlSegmentedStrokePressed": { + "no": 740, + "name": "CTRL/segmented/stroke/pressed", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-stroke-pressed" + }, + "ctrlSegmentedStrokeDisabled": { + "no": 741, + "name": "CTRL/segmented/stroke/disabled", + "fst_reference": "foreground/ctrl/neutral/secondary/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-stroke-disabled" + }, + "ctrlSegmentedCornerRest": { + "no": 742, + "name": "CTRL/segmented/corner/rest", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-corner-rest" + }, + "ctrlSegmentedCornerHover": { + "no": 743, + "name": "CTRL/segmented/corner/hover", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-corner-hover" + }, + "ctrlSegmentedCornerPressed": { + "no": 744, + "name": "CTRL/segmented/corner/pressed", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-corner-pressed" + }, + "ctrlSegmentedPaddingRest": { + "no": 745, + "name": "CTRL/segmented/padding/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-padding-rest" + }, + "ctrlSegmentedPaddingHover": { + "no": 746, + "name": "CTRL/segmented/padding/hover", + "fst_reference": "CTRL/segmented/padding/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-padding-hover" + }, + "ctrlSegmentedPaddingPressed": { + "no": 747, + "name": "CTRL/segmented/padding/pressed", + "fst_reference": "CTRL/segmented/padding/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-padding-pressed" + }, + "ctrlSegmentedGap": { + "no": 748, + "name": "CTRL/segmented/gap", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-gap" + }, + "ctrlSegmentedItemCornerRest": { + "no": 749, + "name": "CTRL/segmented/Item/corner/rest", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-item-corner-rest" + }, + "ctrlSegmentedItemCornerHover": { + "no": 750, + "name": "CTRL/segmented/Item/corner/hover", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-item-corner-hover" + }, + "ctrlSegmentedItemCornerPressed": { + "no": 751, + "name": "CTRL/segmented/Item/corner/pressed", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-item-corner-pressed" + }, + "ctrlSliderBarHeight": { + "no": 752, + "name": "CTRL/slider/bar/height", + "fst_reference": "CTRL/progress/height/filled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-height" + }, + "ctrlSplitDividerStrokewidth": { + "no": 753, + "name": "CTRL/split/divider/strokeWidth", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Split button"], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-split-divider-strokewidth" + }, + "ctrlSplitDividerStrokewidthOnoutline": { + "no": 754, + "name": "CTRL/split/divider/strokeWidth-onOutline", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-split-divider-strokewidth-onoutline" + }, + "ctrlSplitDividerStrokewidthOnsubtle": { + "no": 755, + "name": "CTRL/split/divider/strokeWidth-onSubtle", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": ["Split button"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-split-divider-strokewidth-onsubtle" + }, + "ctrlSpinnerStrokewidth": { + "no": 756, + "name": "CTRL/spinner/strokeWidth", + "fst_reference": "CTRL/progress/height/filled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Spinner"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-spinner-strokewidth" + }, + "ctrlSpinnerShowemptytrack": { + "no": 757, + "name": "CTRL/spinner/showEmptyTrack", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Spinner"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-spinner-showemptytrack" + }, + "ctrlTooltipCorner": { + "no": 758, + "name": "CTRL/tooltip/corner", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Medium", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-corner" + }, + "ctrlTooltipBackground": { + "no": 759, + "name": "CTRL/tooltip/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-background" + }, + "ctrlTooltipForeground": { + "no": 760, + "name": "CTRL/tooltip/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-tooltip-foreground" + }, + "ctrlSliderBarCorner": { + "no": 761, + "name": "CTRL/slider/bar/corner", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "Circular", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-corner" + }, + "ctrlSliderBarForegroundFilledRest": { + "no": 762, + "name": "CTRL/slider/bar/foreground/filled/rest", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/Compound/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-foreground-filled-rest" + }, + "ctrlSliderBarForegroundEmptyRest": { + "no": 763, + "name": "CTRL/slider/bar/foreground/empty/rest", + "fst_reference": "CTRL/progress/background/empty", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-foreground-empty-rest" + }, + "ctrlSliderBarForegroundEmptyHover": { + "no": 764, + "name": "CTRL/slider/bar/foreground/empty/hover", + "fst_reference": "CTRL/progress/background/empty", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-foreground-empty-hover" + }, + "ctrlSliderBarForegroundEmptyPressed": { + "no": 765, + "name": "CTRL/slider/bar/foreground/empty/pressed", + "fst_reference": "CTRL/progress/background/empty", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-foreground-empty-pressed" + }, + "ctrlSliderBarForegroundEmptyDisabled": { + "no": 766, + "name": "CTRL/slider/bar/foreground/empty/disabled", + "fst_reference": "CTRL/progress/background/empty", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "Neutral/Stroke/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-foreground-empty-disabled" + }, + "ctrlSliderBarForegroundFilledHover": { + "no": 767, + "name": "CTRL/slider/bar/foreground/filled/hover", + "fst_reference": "background/ctrl/brand/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/Compound/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-foreground-filled-hover" + }, + "ctrlSliderBarForegroundFilledPressed": { + "no": 768, + "name": "CTRL/slider/bar/foreground/filled/pressed", + "fst_reference": "background/ctrl/brand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/Compound/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-foreground-filled-pressed" + }, + "ctrlSliderBarForegroundFilledDisabled": { + "no": 769, + "name": "CTRL/slider/bar/foreground/filled/disabled", + "fst_reference": "background/ctrl/brand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-bar-foreground-filled-disabled" + }, + "ctrlSliderThumbCorner": { + "no": 770, + "name": "CTRL/slider/thumb/corner", + "fst_reference": "corner/circular", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "Circular", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-corner" + }, + "ctrlSliderThumbSizeRest": { + "no": 771, + "name": "CTRL/slider/thumb/size/rest", + "fst_reference": "size/ctrl/icon", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-size-rest" + }, + "ctrlSliderThumbSizeHover": { + "no": 772, + "name": "CTRL/slider/thumb/size/hover", + "fst_reference": "size/ctrl/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-size-hover" + }, + "ctrlSliderThumbSizePressed": { + "no": 773, + "name": "CTRL/slider/thumb/size/pressed", + "fst_reference": "size/ctrl/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-size-pressed" + }, + "ctrlSliderThumbBackgroundRest": { + "no": 774, + "name": "CTRL/slider/thumb/background/rest", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/Compound/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-background-rest" + }, + "ctrlSliderThumbBackgroundHover": { + "no": 775, + "name": "CTRL/slider/thumb/background/hover", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/Compound/Hover", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-background-hover" + }, + "ctrlSliderThumbBackgroundPressed": { + "no": 776, + "name": "CTRL/slider/thumb/background/pressed", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/Compound/Pressed", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-background-pressed" + }, + "ctrlSliderThumbBackgroundDisabled": { + "no": 777, + "name": "CTRL/slider/thumb/background/disabled", + "fst_reference": "foreground/ctrl/onBrand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "Neutral/Foreground/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-background-disabled" + }, + "ctrlSliderThumbInnerStrokewidthRest": { + "no": 778, + "name": "CTRL/slider/thumb/inner/strokeWidth/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-inner-strokewidth-rest" + }, + "ctrlSliderThumbInnerStrokewidthHover": { + "no": 779, + "name": "CTRL/slider/thumb/inner/strokeWidth/hover", + "fst_reference": "CTRL/slider/thumb/inner/strokeWidth/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-inner-strokewidth-hover" + }, + "ctrlSliderThumbInnerStrokewidthPressed": { + "no": 780, + "name": "CTRL/slider/thumb/inner/strokeWidth/pressed", + "fst_reference": "CTRL/slider/thumb/inner/strokeWidth/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-inner-strokewidth-pressed" + }, + "ctrlSliderThumbInnerStrokeRest": { + "no": 781, + "name": "CTRL/slider/thumb/inner/stroke/rest", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-inner-stroke-rest" + }, + "ctrlSliderThumbInnerStrokeHover": { + "no": 782, + "name": "CTRL/slider/thumb/inner/stroke/hover", + "fst_reference": "background/ctrl/brand/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-inner-stroke-hover" + }, + "ctrlSliderThumbInnerStrokePressed": { + "no": 783, + "name": "CTRL/slider/thumb/inner/stroke/pressed", + "fst_reference": "background/ctrl/brand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-inner-stroke-pressed" + }, + "ctrlSliderThumbInnerStrokeDisabled": { + "no": 784, + "name": "CTRL/slider/thumb/inner/stroke/disabled", + "fst_reference": "background/ctrl/brand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-inner-stroke-disabled" + }, + "ctrlSliderThumbOuterStrokewidth": { + "no": 785, + "name": "CTRL/slider/thumb/outer/strokeWidth", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-outer-strokewidth" + }, + "ctrlSliderThumbOuterStrokeRest": { + "no": 786, + "name": "CTRL/slider/thumb/outer/stroke/rest", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-outer-stroke-rest" + }, + "ctrlSliderThumbOuterStrokeHover": { + "no": 787, + "name": "CTRL/slider/thumb/outer/stroke/hover", + "fst_reference": "background/ctrl/brand/hover", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-outer-stroke-hover" + }, + "ctrlSliderThumbOuterStrokePressed": { + "no": 788, + "name": "CTRL/slider/thumb/outer/stroke/pressed", + "fst_reference": "background/ctrl/brand/pressed", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-outer-stroke-pressed" + }, + "ctrlSliderThumbOuterStrokeDisabled": { + "no": 789, + "name": "CTRL/slider/thumb/outer/stroke/disabled", + "fst_reference": "background/ctrl/brand/disabled", + "optional": true, + "nullable": false, + "description": "", + "components": ["Slider"], + "contrast": "", + "fallback": "Neutral/Stroke/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-thumb-outer-stroke-disabled" + }, + "ctrlSliderSmThumbSizeRest": { + "no": 790, + "name": "CTRL/slider/sm/thumb/size/rest", + "fst_reference": "size/ctrl-sm/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-sm-thumb-size-rest" + }, + "ctrlSliderSmThumbSizeHover": { + "no": 791, + "name": "CTRL/slider/sm/thumb/size/hover", + "fst_reference": "size/ctrl-sm/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-sm-thumb-size-hover" + }, + "ctrlSliderSmThumbSizePressed": { + "no": 792, + "name": "CTRL/slider/sm/thumb/size/pressed", + "fst_reference": "size/ctrl-sm/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-sm-thumb-size-pressed" + }, + "ctrlSliderSmBarHeight": { + "no": 793, + "name": "CTRL/slider/sm/bar/height", + "fst_reference": "CTRL/progress/sm/height/filled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-sm-bar-height" + }, + "ctrlSliderLgThumbSizeRest": { + "no": 794, + "name": "CTRL/slider/lg/thumb/size/rest", + "fst_reference": "size/ctrl-lg/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-lg-thumb-size-rest" + }, + "ctrlSliderLgBarHeight": { + "no": 795, + "name": "CTRL/slider/lg/bar/height", + "fst_reference": "CTRL/progress/lg/height/filled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-lg-bar-height" + }, + "ctrlSliderLgThumbSizeHover": { + "no": 796, + "name": "CTRL/slider/lg/thumb/size/hover", + "fst_reference": "size/ctrl-lg/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-lg-thumb-size-hover" + }, + "ctrlSliderLgThumbSizePressed": { + "no": 797, + "name": "CTRL/slider/lg/thumb/size/pressed", + "fst_reference": "size/ctrl-lg/icon", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-slider-lg-thumb-size-pressed" + }, + "ctrlListSplitDividerShowdivider": { + "no": 798, + "name": "CTRL/list/split/divider/showDivider", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-split-divider-showdivider" + }, + "ctrlAvatarPresencebadgeBackgroundBehindbadge": { + "no": 799, + "name": "CTRL/avatar/presenceBadge/background/behindBadge", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": ["Presence badge"], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-avatar-presencebadge-background-behindbadge" + }, + "statusBrandBackground": { + "no": 800, + "name": "STATUS/brand/background", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Badge"], + "contrast": "", + "fallback": "Brand/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-brand-background" + }, + "statusBrandStroke": { + "no": 801, + "name": "STATUS/brand/stroke", + "fst_reference": "background/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-brand-stroke" + }, + "statusBrandForeground": { + "no": 802, + "name": "STATUS/brand/foreground", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/OnBrand/Rest", + "exceptions": [], + "cssName": "--smtc-status-brand-foreground" + }, + "statusBrandTintBackground": { + "no": 803, + "name": "STATUS/brand/tint/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Background/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-brand-tint-background" + }, + "statusBrandTintStroke": { + "no": 804, + "name": "STATUS/brand/tint/stroke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-brand-tint-stroke" + }, + "statusBrandTintForeground": { + "no": 805, + "name": "STATUS/brand/tint/foreground", + "fst_reference": "foreground/ctrl/brand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Brand/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-brand-tint-foreground" + }, + "statusDangerBackground": { + "no": 806, + "name": "STATUS/danger/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Danger/Background/3/Rest", + "exceptions": [], + "cssName": "--smtc-status-danger-background" + }, + "statusDangerStroke": { + "no": 807, + "name": "STATUS/danger/stroke", + "fst_reference": "STATUS/danger/background", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Danger/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-danger-stroke" + }, + "statusDangerForeground": { + "no": 808, + "name": "STATUS/danger/foreground", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/OnBrand/Rest", + "exceptions": [], + "cssName": "--smtc-status-danger-foreground" + }, + "statusDangerTintBackground": { + "no": 809, + "name": "STATUS/danger/tint/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["MessageBar"], + "contrast": "", + "fallback": "Status/Danger/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-danger-tint-background" + }, + "statusDangerTintStroke": { + "no": 810, + "name": "STATUS/danger/tint/stroke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["MessageBar"], + "contrast": "", + "fallback": "Status/Danger/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-danger-tint-stroke" + }, + "statusDangerTintForeground": { + "no": 811, + "name": "STATUS/danger/tint/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Presence badge", " Radio", " Checkbox", "Field", "Label", "MessageBar"], + "contrast": "", + "fallback": "Status/Danger/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-danger-tint-foreground" + }, + "statusWarningBackground": { + "no": 812, + "name": "STATUS/warning/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Warning/Background/3/Rest", + "exceptions": [], + "cssName": "--smtc-status-warning-background" + }, + "statusWarningStroke": { + "no": 813, + "name": "STATUS/warning/stroke", + "fst_reference": "STATUS/warning/background", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Warning/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-warning-stroke" + }, + "statusWarningForeground": { + "no": 814, + "name": "STATUS/warning/foreground", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/Static/Rest", + "exceptions": [], + "cssName": "--smtc-status-warning-foreground" + }, + "statusWarningTintBackground": { + "no": 815, + "name": "STATUS/warning/tint/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Warning/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-warning-tint-background" + }, + "statusWarningTintStroke": { + "no": 816, + "name": "STATUS/warning/tint/stroke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Warning/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-warning-tint-stroke" + }, + "statusWarningTintForeground": { + "no": 817, + "name": "STATUS/warning/tint/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Warning/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-warning-tint-foreground" + }, + "statusSuccessBackground": { + "no": 818, + "name": "STATUS/success/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Success/Background/3/Rest", + "exceptions": [], + "cssName": "--smtc-status-success-background" + }, + "statusSuccessStroke": { + "no": 819, + "name": "STATUS/success/stroke", + "fst_reference": "STATUS/success/background", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Success/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-success-stroke" + }, + "statusSuccessForeground": { + "no": 820, + "name": "STATUS/success/foreground", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/OnBrand/Rest", + "exceptions": [], + "cssName": "--smtc-status-success-foreground" + }, + "statusSuccessTintBackground": { + "no": 821, + "name": "STATUS/success/tint/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Success/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-success-tint-background" + }, + "statusSuccessTintStroke": { + "no": 822, + "name": "STATUS/success/tint/stroke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Success/Stroke/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-success-tint-stroke" + }, + "statusSuccessTintForeground": { + "no": 823, + "name": "STATUS/success/tint/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Success/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-success-tint-foreground" + }, + "statusImportantBackground": { + "no": 824, + "name": "STATUS/important/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/1/Rest", + "exceptions": [], + "cssName": "--smtc-status-important-background" + }, + "statusImportantStroke": { + "no": 825, + "name": "STATUS/important/stroke", + "fst_reference": "STATUS/important/background", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Accessible/Rest", + "exceptions": [], + "cssName": "--smtc-status-important-stroke" + }, + "statusImportantForeground": { + "no": 826, + "name": "STATUS/important/foreground", + "fst_reference": "foreground/ctrl/onBrand/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/OnBrand/Rest", + "exceptions": [], + "cssName": "--smtc-status-important-foreground" + }, + "statusImportantTintBackground": { + "no": 827, + "name": "STATUS/important/tint/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-status-important-tint-background" + }, + "statusImportantTintStroke": { + "no": 828, + "name": "STATUS/important/tint/stroke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-status-important-tint-stroke" + }, + "statusImportantTintForeground": { + "no": 829, + "name": "STATUS/important/tint/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-status-important-tint-foreground" + }, + "statusInformativeBackground": { + "no": 830, + "name": "STATUS/informative/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/5/Rest", + "exceptions": [], + "cssName": "--smtc-status-informative-background" + }, + "statusInformativeStroke": { + "no": 831, + "name": "STATUS/informative/stroke", + "fst_reference": "STATUS/informative/background", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-informative-stroke" + }, + "statusInformativeForeground": { + "no": 832, + "name": "STATUS/informative/foreground", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/3/Rest", + "exceptions": [], + "cssName": "--smtc-status-informative-foreground" + }, + "statusInformativeTintForeground": { + "no": 833, + "name": "STATUS/informative/tint/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Field"], + "contrast": "", + "fallback": "Neutral/Foreground/3/Rest", + "exceptions": [], + "cssName": "--smtc-status-informative-tint-foreground" + }, + "statusInformativeTintStroke": { + "no": 834, + "name": "STATUS/informative/tint/stroke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-informative-tint-stroke" + }, + "statusInformativeTintBackground": { + "no": 835, + "name": "STATUS/informative/tint/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Field"], + "contrast": "", + "fallback": "Neutral/Background/4/Rest", + "exceptions": [], + "cssName": "--smtc-status-informative-tint-background" + }, + "statusAwayForeground": { + "no": 836, + "name": "STATUS/away/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Warning/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-away-foreground" + }, + "statusOofForeground": { + "no": 837, + "name": "STATUS/oof/foreground", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Status/Warning/Foreground/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-oof-foreground" + }, + "ctrlBooleanSelectionhint": { + "no": 838, + "name": "CTRL/boolean/selectionHint", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-boolean-selectionhint" + }, + "ctrlComposerInputBottomStrokeWidthSelectedRest": { + "no": 839, + "name": "CTRL/composer/Input/Bottom-Stroke-Width/Selected-Rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottom-stroke-width-selected-rest" + }, + "ctrlComposerInputBottomStrokeWidthRest": { + "no": 840, + "name": "CTRL/composer/Input/Bottom-Stroke-Width/Rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottom-stroke-width-rest" + }, + "ctrlComposerInputBottomStrokeWidthHover": { + "no": 841, + "name": "CTRL/composer/Input/Bottom-Stroke-Width/Hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottom-stroke-width-hover" + }, + "ctrlComposerInputBottomStrokeWidthPressed": { + "no": 842, + "name": "CTRL/composer/Input/Bottom-Stroke-Width/Pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottom-stroke-width-pressed" + }, + "ctrlComposerInputCornerRest": { + "no": 843, + "name": "CTRL/composer/Input/Corner/Rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "corner/circular", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-corner-rest" + }, + "ctrlComposerInputCornerHover": { + "no": 844, + "name": "CTRL/composer/Input/Corner/Hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "corner/circular", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-corner-hover" + }, + "ctrlComposerInputCornerPressed": { + "no": 845, + "name": "CTRL/composer/Input/Corner/Pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "corner/circular", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-corner-pressed" + }, + "ctrlComposerInputBackgroundRest": { + "no": 846, + "name": "CTRL/composer/Input/Background/Rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-background-rest" + }, + "ctrlComposerInputBackgroundPressed": { + "no": 847, + "name": "CTRL/composer/Input/Background/Pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-background-pressed" + }, + "ctrlComposerInputBackgroundDisabled": { + "no": 848, + "name": "CTRL/composer/Input/Background/Disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-background-disabled" + }, + "ctrlComposerInputBackgroundSelectedRest": { + "no": 849, + "name": "CTRL/composer/Input/Background/Selected-Rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-background-selected-rest" + }, + "ctrlComposerInputBackgroundHover": { + "no": 850, + "name": "CTRL/composer/Input/Background/Hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/2/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-background-hover" + }, + "ctrlComposerInputStrokeRest": { + "no": 851, + "name": "CTRL/composer/Input/Stroke/Rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-rest" + }, + "ctrlComposerInputStrokeHoverUsesgradient": { + "no": 852, + "name": "CTRL/composer/Input/Stroke/Hover(UsesGradient)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-hoverusesgradient" + }, + "ctrlComposerInputStrokePressedUsesgradient": { + "no": 853, + "name": "CTRL/composer/Input/Stroke/Pressed(UsesGradient)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-pressedusesgradient" + }, + "ctrlComposerInputStrokeDisabledUsesgradient": { + "no": 854, + "name": "CTRL/composer/Input/Stroke/Disabled(UsesGradient)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-disabledusesgradient" + }, + "ctrlComposerInputStrokeSelectedRestUsesgradient": { + "no": 855, + "name": "CTRL/composer/Input/Stroke/Selected-Rest(UsesGradient)", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-selected-restusesgradient" + }, + "ctrlComposerInputStrokeWidthRest": { + "no": 856, + "name": "CTRL/composer/Input/Stroke-Width/Rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-width-rest" + }, + "ctrlComposerInputStrokeWidthHover": { + "no": 857, + "name": "CTRL/composer/Input/Stroke-Width/Hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-width-hover" + }, + "ctrlComposerInputStrokeWidthPressed": { + "no": 858, + "name": "CTRL/composer/Input/Stroke-Width/Pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-width-pressed" + }, + "ctrlComposerInputStrokeWidthSelectedRest": { + "no": 859, + "name": "CTRL/composer/Input/Stroke-Width/Selected-Rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-stroke-width-selected-rest" + }, + "ctrlComposerInputBottomstrokeRest": { + "no": 860, + "name": "CTRL/composer/Input/BottomStroke/Rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottomstroke-rest" + }, + "ctrlComposerInputBottomstrokeHover": { + "no": 861, + "name": "CTRL/composer/Input/BottomStroke/Hover", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottomstroke-hover" + }, + "ctrlComposerInputBottomstrokePressed": { + "no": 862, + "name": "CTRL/composer/Input/BottomStroke/Pressed", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottomstroke-pressed" + }, + "ctrlComposerInputBottomstrokeDisabled": { + "no": 863, + "name": "CTRL/composer/Input/BottomStroke/Disabled", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottomstroke-disabled" + }, + "ctrlComposerInputBottomstrokeSelectedRest": { + "no": 864, + "name": "CTRL/composer/Input/BottomStroke/Selected-Rest", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/Transparent/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-bottomstroke-selected-rest" + }, + "ctrlComposerInputShadowXOffset": { + "no": 865, + "name": "CTRL/composer/Input/Shadow/(X-offset)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-shadow-x-offset" + }, + "ctrlComposerInputShadowY": { + "no": 866, + "name": "CTRL/composer/Input/Shadow/(Y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-shadow-y" + }, + "ctrlComposerInputShadowBlur": { + "no": 867, + "name": "CTRL/composer/Input/Shadow/(Blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-shadow-blur" + }, + "ctrlComposerInputShadowColor": { + "no": 868, + "name": "CTRL/composer/Input/Shadow/(Color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-input-shadow-color" + }, + "ctrlComposerContainerCorner": { + "no": 869, + "name": "CTRL/composer/Container/Corner", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "corner/circular", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-corner" + }, + "ctrlComposerContainerBackgroundDefault": { + "no": 870, + "name": "CTRL/composer/Container/Background/Default", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-background-default" + }, + "ctrlComposerContainerBackgroundAcryliccolorblend": { + "no": 871, + "name": "CTRL/composer/Container/Background/(AcrylicColorBlend)", + "fst_reference": "background/flyout/(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-background-acryliccolorblend" + }, + "ctrlComposerContainerBackgroundAcryliclumblend": { + "no": 872, + "name": "CTRL/composer/Container/Background/(AcrylicLumBlend)", + "fst_reference": "background/flyout/(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-background-acryliclumblend" + }, + "ctrlComposerContainerShadowKeyX": { + "no": 873, + "name": "CTRL/composer/Container/Shadow/Key/(X)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-shadow-key-x" + }, + "ctrlComposerContainerShadowKeyY": { + "no": 874, + "name": "CTRL/composer/Container/Shadow/Key/(Y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-shadow-key-y" + }, + "ctrlComposerContainerShadowKeyBlur": { + "no": 875, + "name": "CTRL/composer/Container/Shadow/Key/(Blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-shadow-key-blur" + }, + "ctrlComposerContainerShadowKeyColor": { + "no": 876, + "name": "CTRL/composer/Container/Shadow/Key/(Color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Ambientlighter", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-shadow-key-color" + }, + "ctrlComposerContainerShadowAmbientX": { + "no": 877, + "name": "CTRL/composer/Container/Shadow/Ambient/(X)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-shadow-ambient-x" + }, + "ctrlComposerContainerShadowAmbientY": { + "no": 878, + "name": "CTRL/composer/Container/Shadow/Ambient/(Y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-shadow-ambient-y" + }, + "ctrlComposerContainerShadowAmbientBlur": { + "no": 879, + "name": "CTRL/composer/Container/Shadow/Ambient/(Blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-shadow-ambient-blur" + }, + "ctrlComposerContainerShadowAmbientColor": { + "no": 880, + "name": "CTRL/composer/Container/Shadow/Ambient/(Color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Ambientdarker", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-shadow-ambient-color" + }, + "ctrlComposerContainerStrokeDefault": { + "no": 881, + "name": "CTRL/composer/Container/Stroke/Default", + "fst_reference": "NULL/color", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-composer-container-stroke-default" + }, + "aiBrandStop1": { + "no": 882, + "name": "AI/brand/(stop1)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ai-brand-stop1" + }, + "aiBrandStop2": { + "no": 883, + "name": "AI/brand/(stop2)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ai-brand-stop2" + }, + "aiBrandStop3": { + "no": 884, + "name": "AI/brand/(stop3)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ai-brand-stop3" + }, + "aiBrandStop4": { + "no": 885, + "name": "AI/brand/(stop4)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ai-brand-stop4" + }, + "aiShimmerStop1": { + "no": 886, + "name": "AI/shimmer/(stop1)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ai-shimmer-stop1" + }, + "aiShimmerStop2": { + "no": 887, + "name": "AI/shimmer/(stop2)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ai-shimmer-stop2" + }, + "aiShimmerStop3": { + "no": 888, + "name": "AI/shimmer/(stop3)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ai-shimmer-stop3" + }, + "aiShimmerStop4": { + "no": 889, + "name": "AI/shimmer/(stop4)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ai-shimmer-stop4" + }, + "shadowWindowActiveKeyX": { + "no": 890, + "name": "shadow/window/active/(key)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-active-key-x" + }, + "shadowWindowActiveKeyY": { + "no": 891, + "name": "shadow/window/active/(key)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-active-key-y" + }, + "shadowWindowActiveKeyBlur": { + "no": 892, + "name": "shadow/window/active/(key)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-active-key-blur" + }, + "shadowWindowActiveKeyColor": { + "no": 893, + "name": "shadow/window/active/(key)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Ambientlighter", + "exceptions": [], + "cssName": "--smtc-shadow-window-active-key-color" + }, + "shadowWindowActiveAmbientX": { + "no": 894, + "name": "shadow/window/active/(ambient)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-active-ambient-x" + }, + "shadowWindowActiveAmbientY": { + "no": 895, + "name": "shadow/window/active/(ambient)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-active-ambient-y" + }, + "shadowWindowActiveAmbientBlur": { + "no": 896, + "name": "shadow/window/active/(ambient)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-active-ambient-blur" + }, + "shadowWindowActiveAmbientColor": { + "no": 897, + "name": "shadow/window/active/(ambient)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Ambientdarker", + "exceptions": [], + "cssName": "--smtc-shadow-window-active-ambient-color" + }, + "shadowWindowInactiveKeyX": { + "no": 898, + "name": "shadow/window/inactive/(key)/(x)", + "fst_reference": "shadow/window/active/(key)/(x)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-inactive-key-x" + }, + "shadowWindowInactiveKeyY": { + "no": 899, + "name": "shadow/window/inactive/(key)/(y)", + "fst_reference": "shadow/window/active/(key)/(y)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-inactive-key-y" + }, + "shadowWindowInactiveKeyBlur": { + "no": 900, + "name": "shadow/window/inactive/(key)/(blur)", + "fst_reference": "shadow/window/active/(key)/(blur)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-inactive-key-blur" + }, + "shadowWindowInactiveKeyColor": { + "no": 901, + "name": "shadow/window/inactive/(key)/(Color)", + "fst_reference": "shadow/window/active/(key)/(color)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Ambientlighter", + "exceptions": [], + "cssName": "--smtc-shadow-window-inactive-key-color" + }, + "shadowWindowInactiveAmbientX": { + "no": 902, + "name": "shadow/window/inactive/(ambient)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-inactive-ambient-x" + }, + "shadowWindowInactiveAmbientY": { + "no": 903, + "name": "shadow/window/inactive/(ambient)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-inactive-ambient-y" + }, + "shadowWindowInactiveAmbientBlur": { + "no": 904, + "name": "shadow/window/inactive/(ambient)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-shadow-window-inactive-ambient-blur" + }, + "shadowWindowInactiveAmbientColor": { + "no": 905, + "name": "shadow/window/inactive/(ambient)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Shadow/Ambientdarker", + "exceptions": [], + "cssName": "--smtc-shadow-window-inactive-ambient-color" + }, + "nullColor": { + "no": 906, + "name": "NULL/color", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [ + "Split button", + "Button", + "Dialog", + "Inline drawer", + "Overlay drawer", + "Editable dropdown", + "Editable spin button", + "Title bar", + "MessageBar" + ], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-null-color" + }, + "ctrlCardStateRest": { + "no": 907, + "name": "CTRL/card/state/(rest)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-card-state-rest" + }, + "ctrlCardStateHover": { + "no": 908, + "name": "CTRL/card/state/(hover)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-card-state-hover" + }, + "ctrlCardStatePressed": { + "no": 909, + "name": "CTRL/card/state/(pressed)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-card-state-pressed" + }, + "ctrlCardStateDisabled": { + "no": 910, + "name": "CTRL/card/state/(disabled)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-card-state-disabled" + }, + "ctrlListShadowSelectedKeyY2": { + "no": 911, + "name": "CTRL/list/shadow/selected/(key)/(y)2", + "fst_reference": "NULL/number", + "optional": false, + "nullable": true, + "description": "", + "components": [], + "contrast": "", + "fallback": "NULL/number", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-key-y2" + }, + "ctrlListShadowSelectedKeyX": { + "no": 912, + "name": "CTRL/list/shadow/selected/(key)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-key-x" + }, + "ctrlListShadowSelectedKeyY": { + "no": 913, + "name": "CTRL/list/shadow/selected/(key)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-key-y" + }, + "ctrlListShadowSelectedKeyBlur": { + "no": 914, + "name": "CTRL/list/shadow/selected/(key)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-key-blur" + }, + "ctrlListShadowSelectedKeyColor": { + "no": 915, + "name": "CTRL/list/shadow/selected/(key)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-key-color" + }, + "ctrlListShadowSelectedAmbientX": { + "no": 916, + "name": "CTRL/list/shadow/selected/(ambient)/(x)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-ambient-x" + }, + "ctrlListShadowSelectedAmbientY": { + "no": 917, + "name": "CTRL/list/shadow/selected/(ambient)/(y)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-ambient-y" + }, + "ctrlListShadowSelectedAmbientBlur": { + "no": 918, + "name": "CTRL/list/shadow/selected/(ambient)/(blur)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-ambient-blur" + }, + "ctrlListShadowSelectedAmbientColor": { + "no": 919, + "name": "CTRL/list/shadow/selected/(ambient)/(color)", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-list-shadow-selected-ambient-color" + }, + "statusNeutralBackground": { + "no": 920, + "name": "STATUS/neutral/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/5/Rest", + "exceptions": [], + "cssName": "--smtc-status-neutral-background" + }, + "statusNeutralStroke": { + "no": 921, + "name": "STATUS/neutral/stroke", + "fst_reference": "STATUS/neutral/background", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Stroke/2/Rest", + "exceptions": [], + "cssName": "--smtc-status-neutral-stroke" + }, + "statusNeutralForeground": { + "no": 922, + "name": "STATUS/neutral/foreground", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Foreground/3/Rest", + "exceptions": [], + "cssName": "--smtc-status-neutral-foreground" + }, + "statusNeutralTintBackground": { + "no": 923, + "name": "STATUS/neutral/tint/background", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": ["Dialog", "Inline drawer", "Overlay drawer"], + "contrast": "", + "fallback": "Neutral/Background/4/Rest", + "exceptions": [], + "cssName": "--smtc-status-neutral-tint-background" + }, + "statusNeutralTintStroke": { + "no": 924, + "name": "STATUS/neutral/tint/stroke", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/4/Rest", + "exceptions": [], + "cssName": "--smtc-status-neutral-tint-stroke" + }, + "statusNeutralTintForeground": { + "no": 925, + "name": "STATUS/neutral/tint/foreground", + "fst_reference": "foreground/ctrl/neutral/secondary/rest", + "optional": true, + "nullable": false, + "description": "", + "components": ["Dialog", "Inline drawer", "Overlay drawer"], + "contrast": "", + "fallback": "Neutral/Foreground/3/Rest", + "exceptions": [], + "cssName": "--smtc-status-neutral-tint-foreground" + }, + "cornerFlyoutShellRest": { + "no": 926, + "name": "corner/flyout/shell-rest", + "fst_reference": "corner/flyout/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-corner-flyout-shell-rest" + }, + "nullNumber": { + "no": 927, + "name": "NULL/number", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-null-number" + }, + "nullString": { + "no": 928, + "name": "NULL/string", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-null-string" + }, + "ctrlSegmentedSmPaddingRest": { + "no": 929, + "name": "CTRL/segmented/sm/padding/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-padding-rest" + }, + "ctrlSegmentedSmPaddingHover": { + "no": 930, + "name": "CTRL/segmented/sm/padding/hover", + "fst_reference": "CTRL/segmented/sm/padding/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-padding-hover" + }, + "ctrlSegmentedSmPaddingPressed": { + "no": 931, + "name": "CTRL/segmented/sm/padding/pressed", + "fst_reference": "CTRL/segmented/sm/padding/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-padding-pressed" + }, + "ctrlSegmentedLgPaddingRest": { + "no": 932, + "name": "CTRL/segmented/lg/padding/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-padding-rest" + }, + "ctrlSegmentedLgPaddingHover": { + "no": 933, + "name": "CTRL/segmented/lg/padding/hover", + "fst_reference": "CTRL/segmented/lg/padding/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-padding-hover" + }, + "ctrlSegmentedLgPaddingPressed": { + "no": 934, + "name": "CTRL/segmented/lg/padding/pressed", + "fst_reference": "CTRL/segmented/lg/padding/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-padding-pressed" + }, + "ctrlSegmentedSmItemCornerRest": { + "no": 935, + "name": "CTRL/segmented/sm/item/corner/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-item-corner-rest" + }, + "ctrlSegmentedSmItemCornerHover": { + "no": 936, + "name": "CTRL/segmented/sm/item/corner/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-item-corner-hover" + }, + "ctrlSegmentedSmItemCornerPressed": { + "no": 937, + "name": "CTRL/segmented/sm/item/corner/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-item-corner-pressed" + }, + "ctrlSegmentedLgItemCornerRest": { + "no": 938, + "name": "CTRL/segmented/lg/item/corner/rest", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-item-corner-rest" + }, + "ctrlSegmentedLgItemCornerHover": { + "no": 939, + "name": "CTRL/segmented/lg/item/corner/hover", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-item-corner-hover" + }, + "ctrlSegmentedLgItemCornerPressed": { + "no": 940, + "name": "CTRL/segmented/lg/item/corner/pressed", + "fst_reference": "corner/ctrl/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-item-corner-pressed" + }, + "ctrlSegmentedSmCornerRest": { + "no": 941, + "name": "CTRL/segmented/sm/corner/rest", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-corner-rest" + }, + "ctrlSegmentedSmCornerHover": { + "no": 942, + "name": "CTRL/segmented/sm/corner/hover", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-corner-hover" + }, + "ctrlSegmentedSmCornerPressed": { + "no": 943, + "name": "CTRL/segmented/sm/corner/pressed", + "fst_reference": "corner/ctrl-sm/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-sm-corner-pressed" + }, + "ctrlSegmentedLgCornerRest": { + "no": 944, + "name": "CTRL/segmented/lg/corner/rest", + "fst_reference": "corner/ctrl-lg/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-corner-rest" + }, + "ctrlSegmentedLgCornerHover": { + "no": 945, + "name": "CTRL/segmented/lg/corner/hover", + "fst_reference": "corner/ctrl-lg/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-corner-hover" + }, + "ctrlSegmentedLgCornerPressed": { + "no": 946, + "name": "CTRL/segmented/lg/corner/pressed", + "fst_reference": "corner/ctrl-lg/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "", + "exceptions": [], + "cssName": "--smtc-ctrl-segmented-lg-corner-pressed" + }, + "ctrlLitefilterStrokewidthSelected": { + "no": 947, + "name": "CTRL/liteFilter/strokeWidth/selected", + "fst_reference": "strokeWidth/default", + "optional": true, + "nullable": false, + "description": "", + "components": ["Lite filter"], + "contrast": "", + "fallback": "Thin", + "exceptions": [], + "cssName": "--smtc-ctrl-litefilter-strokewidth-selected" + }, + "materialAcrylicShellDefaultSolid": { + "no": 948, + "name": "material/acrylic/shell-default/(solid)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-material-acrylic-shell-default-solid" + }, + "materialAcrylicShellDefaultColorblend": { + "no": 949, + "name": "material/acrylic/shell-default/(colorBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-material-acrylic-shell-default-colorblend" + }, + "materialAcrylicShellDefaultLumblend": { + "no": 950, + "name": "material/acrylic/shell-default/(lumBlend)", + "fst_reference": "background/layer/primary(solid)", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-material-acrylic-shell-default-lumblend" + }, + "backgroundCardOnsecondaryDefaultRest": { + "no": 951, + "name": "background/card/onSecondary/default/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Rest", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-default-rest" + }, + "backgroundCardOnsecondaryAltRest": { + "no": 952, + "name": "background/card/onSecondary/alt/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/rest", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-alt-rest" + }, + "backgroundCardOnsecondaryAltHover": { + "no": 953, + "name": "background/card/onSecondary/alt/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/hover", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-alt-hover" + }, + "backgroundCardOnsecondaryAltPressed": { + "no": 954, + "name": "background/card/onSecondary/alt/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/pressed", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-alt-pressed" + }, + "backgroundCardOnsecondaryAltDisabled": { + "no": 955, + "name": "background/card/onSecondary/alt/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/pressed", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-alt-disabled" + }, + "backgroundCardOnsecondaryDefaultHover": { + "no": 956, + "name": "background/card/onSecondary/default/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Hover", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-default-hover" + }, + "backgroundCardOnsecondaryDefaultPressed": { + "no": 957, + "name": "background/card/onSecondary/default/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Pressed", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-default-pressed" + }, + "backgroundCardOnsecondaryDefaultDisabled": { + "no": 958, + "name": "background/card/onSecondary/default/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/Disabled/Rest", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-default-disabled" + }, + "backgroundCardOnsecondaryDefaultSelected": { + "no": 959, + "name": "background/card/onSecondary/default/selected", + "fst_reference": "background/card/onSecondary/default/rest", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Neutral/Background/1/Selected", + "exceptions": [], + "cssName": "--smtc-background-card-onsecondary-default-selected" + }, + "backgroundCardOnflyoutDefaultRest": { + "no": 960, + "name": "background/card/onFlyout/default/rest", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/rest", + "exceptions": [], + "cssName": "--smtc-background-card-onflyout-default-rest" + }, + "backgroundCardOnflyoutDefaultHover": { + "no": 961, + "name": "background/card/onFlyout/default/hover", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/hover", + "exceptions": [], + "cssName": "--smtc-background-card-onflyout-default-hover" + }, + "backgroundCardOnflyoutDefaultPressed": { + "no": 962, + "name": "background/card/onFlyout/default/pressed", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/pressed", + "exceptions": [], + "cssName": "--smtc-background-card-onflyout-default-pressed" + }, + "backgroundCardOnflyoutDefaultDisabled": { + "no": 963, + "name": "background/card/onFlyout/default/disabled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "background/card/onPrimary/default/pressed", + "exceptions": [], + "cssName": "--smtc-background-card-onflyout-default-disabled" + }, + "ctrlProgressLgHeightFilled": { + "no": 964, + "name": "CTRL/progress/lg/height/filled", + "fst_reference": "", + "optional": false, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-lg-height-filled" + }, + "ctrlProgressLgHeightEmpty": { + "no": 965, + "name": "CTRL/progress/lg/height/empty", + "fst_reference": "CTRL/progress/lg/height/filled", + "optional": true, + "nullable": false, + "description": "", + "components": [], + "contrast": "", + "fallback": "Thick", + "exceptions": [], + "cssName": "--smtc-ctrl-progress-lg-height-empty" + } +} diff --git a/packages/semantic-tokens/src/native-esm.spec-e2e.ts b/packages/semantic-tokens/src/native-esm.spec-e2e.ts new file mode 100644 index 0000000000000..b7223455f1039 --- /dev/null +++ b/packages/semantic-tokens/src/native-esm.spec-e2e.ts @@ -0,0 +1,8 @@ +import { expect, test } from '@playwright/test'; + +// Dummy test for now to pass E2E +test.describe('Native ESM', () => { + test('Dummy test', async () => { + expect(0).toEqual(0); + }); +}); diff --git a/packages/semantic-tokens/tsconfig.e2e.json b/packages/semantic-tokens/tsconfig.e2e.json new file mode 100644 index 0000000000000..8296283fbc75c --- /dev/null +++ b/packages/semantic-tokens/tsconfig.e2e.json @@ -0,0 +1,7 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "types": ["node"] + }, + "include": ["playwright.config.ts", "**/*.spec-e2e.ts"] +} diff --git a/packages/semantic-tokens/tsconfig.json b/packages/semantic-tokens/tsconfig.json new file mode 100644 index 0000000000000..479e95aadcbcc --- /dev/null +++ b/packages/semantic-tokens/tsconfig.json @@ -0,0 +1,33 @@ +{ + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "target": "ES2019", + "noEmit": true, + "isolatedModules": true, + "importHelpers": true, + "noUnusedLocals": true, + "preserveConstEnums": true + }, + "include": [], + "files": [], + "references": [ + { + "path": "./tsconfig.lib.json" + }, + { + "path": "./tsconfig.spec.json" + }, + { + "path": "./tsconfig.e2e.json" + } + ], + "ts-node": { + // these options are overrides used only by ts-node + // same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable + "compilerOptions": { + "module": "commonjs", + "resolveJsonModule": true, + "esModuleInterop": true + } + } +} diff --git a/packages/semantic-tokens/tsconfig.lib.json b/packages/semantic-tokens/tsconfig.lib.json new file mode 100644 index 0000000000000..050276d9ee283 --- /dev/null +++ b/packages/semantic-tokens/tsconfig.lib.json @@ -0,0 +1,16 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "noEmit": false, + "lib": ["ES2019", "dom"], + "declaration": true, + "declarationDir": "../../dist/out-tsc/types", + "outDir": "../../dist/out-tsc", + "inlineSources": true, + "types": ["static-assets", "environment", "node"], + "resolveJsonModule": true, + "allowSyntheticDefaultImports": true + }, + "exclude": ["**/*.spec.ts", "**/*.test.ts", "**/*.spec-e2e.ts"], + "include": ["./src/**/*.ts", "./scripts/**/*.ts"] +} diff --git a/packages/semantic-tokens/tsconfig.spec.json b/packages/semantic-tokens/tsconfig.spec.json new file mode 100644 index 0000000000000..4d20fc98b71dd --- /dev/null +++ b/packages/semantic-tokens/tsconfig.spec.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "module": "CommonJS", + "outDir": "dist", + "types": ["jest", "node"] + }, + "include": ["**/*.spec.ts", "**/*.test.ts", "**/*.d.ts"] +} diff --git a/tsconfig.base.all.json b/tsconfig.base.all.json index 4277a03934720..848811e70e3c1 100644 --- a/tsconfig.base.all.json +++ b/tsconfig.base.all.json @@ -262,6 +262,7 @@ "@fluentui/recipes": ["packages/react-components/recipes/src/index.ts"], "@fluentui/theme-designer": ["packages/react-components/theme-designer/src/index.ts"], "@fluentui/tokens": ["packages/tokens/src/index.ts"], + "@fluentui/semantic-tokens": ["packages/semantic-tokens/src/index.ts"], "@fluentui/visual-regression-utilities": ["tools/visual-regression-utilities/src/index.ts"], "@fluentui/workspace-plugin": ["tools/workspace-plugin/src/index.ts"] } diff --git a/tsconfig.base.json b/tsconfig.base.json index 89f2cbf81dfbb..e4152f0724db3 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -194,6 +194,7 @@ "@fluentui/react-virtualizer": ["packages/react-components/react-virtualizer/library/src/index.ts"], "@fluentui/react-virtualizer-stories": ["packages/react-components/react-virtualizer/stories/src/index.ts"], "@fluentui/recipes": ["packages/react-components/recipes/src/index.ts"], + "@fluentui/semantic-tokens": ["packages/semantic-tokens/src/index.ts"], "@fluentui/theme-designer": ["packages/react-components/theme-designer/src/index.ts"], "@fluentui/tokens": ["packages/tokens/src/index.ts"], "@fluentui/visual-regression-utilities": ["tools/visual-regression-utilities/src/index.ts"], diff --git a/tsconfig.base.wc.json b/tsconfig.base.wc.json index 8884bb799a86f..d86ffaf7df1f1 100644 --- a/tsconfig.base.wc.json +++ b/tsconfig.base.wc.json @@ -14,7 +14,8 @@ "paths": { "@fluentui/chart-web-components": ["packages/charts/chart-web-components/src/index.ts"], "@fluentui/web-components": ["packages/web-components/src/index.ts"], - "@fluentui/tokens": ["packages/tokens/src/index.ts"] + "@fluentui/tokens": ["packages/tokens/src/index.ts"], + "@fluentui/semantic-tokens": ["packages/semantic-tokens/src/index.ts"] } } } From 099a4858a643f12c28659612712ee84fd69c6b7d Mon Sep 17 00:00:00 2001 From: Mitch-At-Work Date: Mon, 31 Mar 2025 09:33:26 -0700 Subject: [PATCH 2/4] Remove non-structure files for now --- packages/semantic-tokens/README.md | 2 +- .../scripts/fluentOverrides.ts | 30 - .../semantic-tokens/scripts/legacyTokens.ts | 35 - packages/semantic-tokens/scripts/tokenGen.ts | 333 - packages/semantic-tokens/scripts/tokens.json | 13131 ---------------- 5 files changed, 1 insertion(+), 13530 deletions(-) delete mode 100644 packages/semantic-tokens/scripts/fluentOverrides.ts delete mode 100644 packages/semantic-tokens/scripts/legacyTokens.ts delete mode 100644 packages/semantic-tokens/scripts/tokenGen.ts delete mode 100644 packages/semantic-tokens/scripts/tokens.json diff --git a/packages/semantic-tokens/README.md b/packages/semantic-tokens/README.md index 4315a348dfa0b..f93c32e7bd93c 100644 --- a/packages/semantic-tokens/README.md +++ b/packages/semantic-tokens/README.md @@ -2,7 +2,7 @@ **Fluent UI Theme semantic-tokens** -The semantic tokens package provides finely tuneable theme control via component level CSSVars with fallbacks. +The semantic tokens package provides finely tuneable theme control via generic and component level CSSVars with fallbacks. This package extends upon the core @fluentui/tokens set in a tree-shakeable and backwards compatible manner. diff --git a/packages/semantic-tokens/scripts/fluentOverrides.ts b/packages/semantic-tokens/scripts/fluentOverrides.ts deleted file mode 100644 index 413cb2cf5cc8d..0000000000000 --- a/packages/semantic-tokens/scripts/fluentOverrides.ts +++ /dev/null @@ -1,30 +0,0 @@ -export type FluentOverrideValue = - | { - f2Token: string; - rawValue?: never; - } - | { - f2Token?: never; - rawValue: string; - }; - -export interface FluentOverrides { - [key: string]: FluentOverrideValue; -} - -export const fluentOverrides: FluentOverrides = { - ctrlFocusOuterStroke: { - f2Token: 'colorStrokeFocus2', - }, - ctrlLinkForegroundBrandRest: { f2Token: 'colorBrandForegroundLink' }, - textStyleDefaultRegularFontfamily: { f2Token: 'fontFamilyBase' }, - textGlobalBody3Fontsize: { f2Token: 'fontSizeBase300' }, - textStyleDefaultRegularWeight: { f2Token: 'fontWeightRegular' }, - strokewidthDefault: { f2Token: 'strokeWidthThin' }, - ctrlLinkForegroundBrandHover: { f2Token: 'colorBrandForegroundLinkHover' }, - ctrlLinkForegroundBrandPressed: { f2Token: 'colorBrandForegroundLinkPressed' }, - ctrlLinkForegroundNeutralRest: { f2Token: 'colorNeutralForeground2' }, - ctrlLinkForegroundNeutralPressed: { f2Token: 'colorNeutralForeground2Pressed' }, - ctrlLinkForegroundNeutralHover: { f2Token: 'colorNeutralForeground2Hover' }, - foregroundCtrlNeutralPrimaryDisabled: { f2Token: 'colorNeutralForegroundDisabled' }, -}; diff --git a/packages/semantic-tokens/scripts/legacyTokens.ts b/packages/semantic-tokens/scripts/legacyTokens.ts deleted file mode 100644 index 50c8584085c66..0000000000000 --- a/packages/semantic-tokens/scripts/legacyTokens.ts +++ /dev/null @@ -1,35 +0,0 @@ -import fs from 'node:fs'; -import path from 'node:path'; - -import * as tokensPackage from '@fluentui/tokens'; - -main(); - -function main() { - console.log('Importing all fluent legacy tokens as flat export'); - - const fluentTokens = Object.keys(tokensPackage.tokens); - const comment = '// THIS FILE IS GENERATED AS PART OF THE BUILD PROCESS. DO NOT MANUALLY MODIFY THIS FILE\n'; - - const generatedTokens = fluentTokens.reduce((acc, t) => { - const token = ` -/** - * CSS custom property value for the {@link @fluentui/tokens#${t} | \`${t}\`} design token. - * @public - */ -export const ${t} = 'var(--${t})'; -`; - return acc + token; - }, ''); - - const dir = path.join(__dirname, '../src/legacy'); - - if (!fs.existsSync(dir)) { - fs.mkdirSync(dir, { recursive: true }); - } - - fs.writeFile(path.join(dir, 'tokens.ts'), comment + generatedTokens, err => { - if (err) throw err; - console.log('Legacy tokens reference created'); - }); -} diff --git a/packages/semantic-tokens/scripts/tokenGen.ts b/packages/semantic-tokens/scripts/tokenGen.ts deleted file mode 100644 index 7a772d09c2a98..0000000000000 --- a/packages/semantic-tokens/scripts/tokenGen.ts +++ /dev/null @@ -1,333 +0,0 @@ -/* - * Token generation script - * Takes in a Figma token export file and generates token raw strings and CSS Var files - */ -import tokensJSONRaw from './tokens.json'; -import { fluentOverrides as fluentFallbacksRaw, FluentOverrideValue, type FluentOverrides } from './fluentOverrides'; -import fs from 'fs'; -import { Project } from 'ts-morph'; -import { format } from 'prettier'; - -const project = new Project({ - tsConfigFilePath: './tsconfig.json', -}); - -// eslint-disable-next-line @typescript-eslint/no-explicit-any -const tokensJSON: Record = tokensJSONRaw; -const fluentFallbacks: FluentOverrides = fluentFallbacksRaw; -// Store exports so we can add them to index.ts at the end -// eslint-disable-next-line @typescript-eslint/no-explicit-any -const exportList: Record = {}; - -interface Token { - no: number; - name: string; - // eslint-disable-next-line @typescript-eslint/naming-convention - fst_reference: string; - optional: boolean; - nullable: boolean; - description: string; - components: string[]; - contrast: string; - fallback: string; - exceptions: string[]; - cssName: string; -} - -interface ComponentTokenMap { - [component: string]: string; -} - -function generateTokens() { - console.log('Generating tokens...'); - // Simple for now, just generate the raw strings and variables - generateTokenRawStrings(); - generateTokenVariables(); -} - -function escapeInlineToken(token: string) { - return `\$\{${token}\}`; -} - -function escapeMixedInlineToken(token: FluentOverrideValue) { - // The FluentOverrideValue type has two mutually exclusive properties: f2Token and rawValue - // We need to check which one is defined and use that value - if (token.f2Token !== undefined) { - return `\$\{${token.f2Token}\}`; - } else { - // we only have a raw value so we should print it directly. - return `${token.rawValue}`; - } -} - -function cleanFSTTokenName(originalTokenName: string) { - // Handle any name housekeeping or small token name fixes - - let newtokenName = originalTokenName.replace('-', '/'); - // Ignore space - newtokenName = newtokenName.replace(' ', ''); - // Ignore brackets (w/ leading slash) - newtokenName = newtokenName.replace('/(', '/'); - // Ignore brackets - newtokenName = newtokenName.replace('(', '/').replace(')', ''); - - return newtokenName; -} - -function generateTokenRawStrings() { - let optionalRawTokens = ''; - let controlRawTokens = ''; - let nullableRawTokens = ''; - const componentTokens: ComponentTokenMap = {}; - const optionalVarFile = './src/optional/variables.ts'; - exportList[optionalVarFile] = []; - const controlVarFile = './src/control/variables.ts'; - exportList[controlVarFile] = []; - const nullableVarFile = './src/nullable/variables.ts'; - exportList[nullableVarFile] = []; - const getComponentFile = (component: string) => `./src/components/${component}/variables.ts`; - - for (const token in tokensJSON) { - if (tokensJSON.hasOwnProperty(token)) { - const tokenData: Token = tokensJSON[token]; - const tokenName = tokenData.cssName; - const tokenRawString = `export const ${token}Raw = '${tokenName}';\n`; - - if (tokenData.name.startsWith('CTRL/')) { - // We have a component level control token - const component = tokenData.name.split('/')[1]; - if (!componentTokens[component]) { - componentTokens[component] = ''; - } - componentTokens[component] += tokenRawString; - - if (!exportList[getComponentFile(component)]) { - const fileLoc = getComponentFile(component); - exportList[fileLoc] = []; - } - exportList[getComponentFile(component)].push(`${token}Raw`); - } else { - if (tokenData.optional) { - optionalRawTokens += tokenRawString; - exportList[optionalVarFile].push(`${token}Raw`); - } else if (tokenData.nullable) { - nullableRawTokens += tokenRawString; - exportList[nullableVarFile].push(`${token}Raw`); - } else { - controlRawTokens += tokenRawString; - exportList[controlVarFile].push(`${token}Raw`); - } - } - } - } - - fs.writeFileSync(optionalVarFile, optionalRawTokens); - fs.writeFileSync(controlVarFile, controlRawTokens); - fs.writeFileSync(nullableVarFile, nullableRawTokens); - project.addSourceFileAtPathIfExists(optionalVarFile); - project.addSourceFileAtPathIfExists(controlVarFile); - project.addSourceFileAtPathIfExists(nullableVarFile); - - for (const component in componentTokens) { - if (componentTokens.hasOwnProperty(component)) { - const dir = `./src/components/${component}/`; - - if (!fs.existsSync(dir)) { - fs.mkdirSync(dir, { recursive: true }); - } - const variablePath = getComponentFile(component); - fs.writeFileSync(variablePath, componentTokens[component]); - project.addSourceFileAtPathIfExists(variablePath); - } - } -} - -function toCamelCase(str: string) { - const formattedString = cleanFSTTokenName(str); - - return formattedString - .split('/') - .map((word: string, index: number) => { - // If it is the first word make sure to lowercase all the chars. - if (index === 0) { - return word.toLowerCase(); - } - // If it is not the first word only upper case the first char and lowercase the rest. - return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase(); - }) - .join(''); -} - -function generateTokenVariables() { - // Default our files to token imports - // TODO: Add raw token imports - let optionalTokens = ''; - let controlTokens = ''; - let nullableTokens = ''; - const componentTokens: ComponentTokenMap = {}; - - const optionalVarFile = './src/optional/tokens.ts'; - exportList[optionalVarFile] = []; - const controlVarFile = './src/control/tokens.ts'; - exportList[controlVarFile] = []; - const nullableVarFile = './src/nullable/tokens.ts'; - exportList[nullableVarFile] = []; - const getComponentFile = (component: string) => `./src/components/${component}/tokens.ts`; - - for (const token in tokensJSON) { - if (token.includes('(figma only)')) { - // Superfluous tokens - SKIP - continue; - } - - const tokenData: Token = tokensJSON[token]; - const tokenNameRaw = token + 'Raw'; - - let tokenSemanticRef: null | string = null; - let tokenSemanticName: null | string = null; - - if (tokenData.fst_reference.length > 0) { - tokenSemanticName = toCamelCase(cleanFSTTokenName(tokenData.fst_reference)); - tokenSemanticRef = tokenSemanticName + 'Raw'; - } - - /** - * TODO, we need to account for the fact that the fallbacks can be nullable tokens and as such we need to ensure - * that they are not wrapped in the var() css function. This is because `unset` is not a variable and a statement. - * We also need to ensure legacy F2 tokens are not wrapped in the var() css function because they have the var() css function - * already in the token value. Any other values should probably include the var() css function. - */ - - // Our default token value if no fallbacks found. - let resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)})`; - - if (tokenSemanticRef && fluentFallbacks[token]) { - // Token has a FST fallback and a fluent override fallback - resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)}, var(${escapeInlineToken( - tokenSemanticRef, - )}, ${escapeMixedInlineToken(fluentFallbacks[token])}))`; - } else if (fluentFallbacks[token]) { - // Token has a fluent override fallback only - resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)}, ${escapeMixedInlineToken( - fluentFallbacks[token], - )})`; - } else if (tokenData.nullable && tokenSemanticRef) { - // nullable tokens should always resolve to unset - resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)}, unset)`; - } else if (tokenSemanticRef) { - // Token has a FST reference fallback only - resolvedTokenFallback = `var(${escapeInlineToken(tokenNameRaw)}, var(${escapeInlineToken(tokenSemanticRef)}))`; - } - - if (tokenData.name.startsWith('CTRL/')) { - // We have a component level control token - const component = tokenData.name.split('/')[1]; - if (!componentTokens[component]) { - componentTokens[component] = ''; - } - componentTokens[component] += `export const ${token} = \`${resolvedTokenFallback}\`;\n`; - - if (!exportList[getComponentFile(component)]) { - const fileLoc = getComponentFile(component); - exportList[fileLoc] = []; - } - // Add to our list of exports for later - exportList[getComponentFile(component)].push(token); - } else { - // We have a global token - if (tokenData.optional) { - optionalTokens += `export const ${token} = \`${resolvedTokenFallback}\`;\n`; - // Add to our list of exports for later - exportList[optionalVarFile].push(token); - } else if (tokenData.nullable) { - nullableTokens += `export const ${token} = \`${resolvedTokenFallback}\`;\n`; - // Add to our list of exports for later - exportList[nullableVarFile].push(token); - } else { - controlTokens += `export const ${token} = \`${resolvedTokenFallback}\`;\n`; - // Add to our list of exports for later - exportList[controlVarFile].push(token); - } - } - } - - // Write files - fs.writeFileSync('./src/optional/tokens.ts', optionalTokens); - fs.writeFileSync('./src/control/tokens.ts', controlTokens); - fs.writeFileSync('./src/nullable/tokens.ts', nullableTokens); - - // Add source files for import statements - project.addSourceFileAtPath('./src/legacy/tokens.ts'); - project.addSourceFileAtPath('./src/optional/tokens.ts'); - project.addSourceFileAtPath('./src/control/tokens.ts'); - project.addSourceFileAtPath('./src/nullable/tokens.ts'); - - for (const component in componentTokens) { - if (componentTokens.hasOwnProperty(component)) { - const dir = `./src/components/${component}/`; - - if (!fs.existsSync(dir)) { - fs.mkdirSync(dir, { recursive: true }); - } - const componentTokensPath = `./src/components/${component}/tokens.ts`; - fs.writeFileSync(componentTokensPath, componentTokens[component]); - // Add component source files for import statements - project.addSourceFileAtPath(componentTokensPath); - } - } - - // Add import statements - project.getSourceFiles().forEach(sourceFile => { - console.log('Fix missing imports from:', sourceFile.getFilePath()); - sourceFile.fixMissingImports().organizeImports().fixUnusedIdentifiers().formatText(); - - // Format our text to match prettier rules - const rawText = sourceFile.getText(); - let formattedText = format(rawText, { - parser: 'typescript', - singleQuote: true, - printWidth: 120, - }); - - // Format our text to match prettier rules - sourceFile.replaceWithText(formattedText); - }); - - // Save changes so far - project.saveSync(); - console.log('Added import statements'); - - // Add export statements in index.ts - const indexFilePath = './src/index.ts'; - // Clear index file and rewrite exports - fs.truncateSync(indexFilePath, 0); - // Add source file after we've cleaned it - const indexSourceFile = project.addSourceFileAtPath(indexFilePath); - for (const file in exportList) { - if (exportList.hasOwnProperty(file)) { - // Specifier should be relative and not include .ts - const importFilePath = file.replace('./src/', './').replace('.ts', ''); - indexSourceFile.addExportDeclaration({ - namedExports: exportList[file], - moduleSpecifier: importFilePath, - }); - } - } - - const rawText = indexSourceFile.getText(); - const formattedText = format(rawText, { - parser: 'typescript', - singleQuote: true, - printWidth: 120, - }); - - // Format our text to match prettier rules - indexSourceFile.replaceWithText(formattedText); - - // Save exports - project.saveSync(); - console.log('Added export statements'); -} - -// Run script -generateTokens(); diff --git a/packages/semantic-tokens/scripts/tokens.json b/packages/semantic-tokens/scripts/tokens.json deleted file mode 100644 index aa4c5103c0fb9..0000000000000 --- a/packages/semantic-tokens/scripts/tokens.json +++ /dev/null @@ -1,13131 +0,0 @@ -{ - "textGlobalDisplay1Fontsize": { - "no": 1, - "name": "text/global/display1/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Font-size/1000", - "exceptions": [], - "cssName": "--smtc-text-global-display1-fontsize" - }, - "textGlobalDisplay1Lineheight": { - "no": 2, - "name": "text/global/display1/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Line-height/1000", - "exceptions": [], - "cssName": "--smtc-text-global-display1-lineheight" - }, - "textGlobalDisplay2Fontsize": { - "no": 3, - "name": "text/global/display2/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-display2-fontsize" - }, - "textGlobalDisplay2Lineheight": { - "no": 4, - "name": "text/global/display2/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-display2-lineheight" - }, - "textGlobalTitle1Fontsize": { - "no": 5, - "name": "text/global/title1/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Font-size/900", - "exceptions": [], - "cssName": "--smtc-text-global-title1-fontsize" - }, - "textGlobalTitle1Lineheight": { - "no": 6, - "name": "text/global/title1/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Line-height/900", - "exceptions": [], - "cssName": "--smtc-text-global-title1-lineheight" - }, - "textGlobalTitle2Fontsize": { - "no": 7, - "name": "text/global/title2/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-title2-fontsize" - }, - "textGlobalTitle2Lineheight": { - "no": 8, - "name": "text/global/title2/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-title2-lineheight" - }, - "textGlobalSubtitle1Fontsize": { - "no": 9, - "name": "text/global/subtitle1/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Inline drawer", "Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-subtitle1-fontsize" - }, - "textGlobalSubtitle1Lineheight": { - "no": 10, - "name": "text/global/subtitle1/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Inline drawer", "Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-subtitle1-lineheight" - }, - "textGlobalSubtitle2Fontsize": { - "no": 11, - "name": "text/global/subtitle2/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-subtitle2-fontsize" - }, - "textGlobalSubtitle2Lineheight": { - "no": 12, - "name": "text/global/subtitle2/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-subtitle2-lineheight" - }, - "textGlobalBody1Fontsize": { - "no": 13, - "name": "text/global/body1/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-body1-fontsize" - }, - "textGlobalBody1Lineheight": { - "no": 14, - "name": "text/global/body1/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-body1-lineheight" - }, - "textGlobalBody2Fontsize": { - "no": 15, - "name": "text/global/body2/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Field"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-body2-fontsize" - }, - "textGlobalBody2Lineheight": { - "no": 16, - "name": "text/global/body2/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Field"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-global-body2-lineheight" - }, - "textGlobalBody3Fontsize": { - "no": 17, - "name": "text/global/body3/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog", "Spinner"], - "contrast": "", - "fallback": "Font-size/300", - "exceptions": [], - "cssName": "--smtc-text-global-body3-fontsize" - }, - "textGlobalBody3Lineheight": { - "no": 18, - "name": "text/global/body3/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "FAB", - " Radio", - " Checkbox", - "Dialog", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Field", - "Label", - "Inline link", - "Page link", - "Lite Filter Button", - "Spinner" - ], - "contrast": "", - "fallback": "Line-height/300", - "exceptions": [], - "cssName": "--smtc-text-global-body3-lineheight" - }, - "textGlobalCaption1Fontsize": { - "no": 19, - "name": "text/global/caption1/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer", "Tooltip", "MessageBar"], - "contrast": "", - "fallback": "Font-size/200", - "exceptions": [], - "cssName": "--smtc-text-global-caption1-fontsize" - }, - "textGlobalCaption1Lineheight": { - "no": 20, - "name": "text/global/caption1/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer", "Tooltip", "MessageBar"], - "contrast": "", - "fallback": "Line-height/200", - "exceptions": [], - "cssName": "--smtc-text-global-caption1-lineheight" - }, - "textGlobalCaption2Fontsize": { - "no": 21, - "name": "text/global/caption2/fontSize", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Inline drawer", "Overlay drawer", "Field"], - "contrast": "", - "fallback": "Font-size/100", - "exceptions": [], - "cssName": "--smtc-text-global-caption2-fontsize" - }, - "textGlobalCaption2Lineheight": { - "no": 22, - "name": "text/global/caption2/lineHeight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Inline drawer", "Overlay drawer", "Field"], - "contrast": "", - "fallback": "Line-height/100", - "exceptions": [], - "cssName": "--smtc-text-global-caption2-lineheight" - }, - "textStyleDefaultRegularFontfamily": { - "no": 23, - "name": "text/style/default/regular/fontFamily", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "FAB", - "Split button", - "Button", - " Radio", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Field", - "Label", - "Inline link", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "Tooltip", - "Rating", - "Spinner", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-default-regular-fontfamily" - }, - "textStyleDefaultRegularWeight": { - "no": 24, - "name": "text/style/default/regular/weight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "FAB", - " Radio", - " Checkbox", - "Dialog", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Field", - "Label", - "Inline link", - "Page link", - "Lite Filter Button", - "Lite filter", - "Tooltip", - "Rating", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-default-regular-weight" - }, - "textStyleDefaultRegularLetterspacing": { - "no": 25, - "name": "text/style/default/regular/letterSpacing", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "FAB", - "Split button", - "Button", - " Radio", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Field", - "Label", - "Inline link", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "Tooltip", - "Rating", - "Spinner", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-default-regular-letterspacing" - }, - "textStyleDefaultHeaderFontfamily": { - "no": 26, - "name": "text/style/default/header/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": ["Avatar", "Dialog", "Inline drawer", "Overlay drawer", "Field", "MessageBar"], - "contrast": "", - "fallback": "Font-family/Base", - "exceptions": [], - "cssName": "--smtc-text-style-default-header-fontfamily" - }, - "textStyleDefaultHeaderWeight": { - "no": 27, - "name": "text/style/default/header/weight", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Avatar", "Dialog", "Inline drawer", "Overlay drawer", "Field", "Label", "MessageBar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-default-header-weight" - }, - "textStyleDefaultHeaderLetterspacing": { - "no": 28, - "name": "text/style/default/header/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": ["Avatar", "Dialog", "Inline drawer", "Overlay drawer", "Field", "MessageBar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-default-header-letterspacing" - }, - "textStyleDefaultHeaderCase": { - "no": 29, - "name": "text/style/default/header/case", - "fst_reference": "NULL/string", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-default-header-case" - }, - "textStyleAiRegularFontfamily": { - "no": 30, - "name": "text/style/ai/regular/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-ai-regular-fontfamily" - }, - "textStyleAiRegularWeight": { - "no": 31, - "name": "text/style/ai/regular/weight", - "fst_reference": "text/style/default/regular/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-ai-regular-weight" - }, - "textStyleAiRegularLetterspacing": { - "no": 32, - "name": "text/style/ai/regular/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-ai-regular-letterspacing" - }, - "textStyleAiHeaderFontfamily": { - "no": 33, - "name": "text/style/ai/header/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-ai-header-fontfamily" - }, - "textStyleAiHeaderWeight": { - "no": 34, - "name": "text/style/ai/header/weight", - "fst_reference": "text/style/default/header/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-ai-header-weight" - }, - "textStyleAiHeaderLetterspacing": { - "no": 35, - "name": "text/style/ai/header/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-ai-header-letterspacing" - }, - "textStyleAiHeaderCase": { - "no": 36, - "name": "text/style/ai/header/case", - "fst_reference": "NULL/string", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-ai-header-case" - }, - "textStyleArticleRegularFontfamily": { - "no": 37, - "name": "text/style/article/regular/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-article-regular-fontfamily" - }, - "textStyleArticleRegularWeight": { - "no": 38, - "name": "text/style/article/regular/weight", - "fst_reference": "text/style/default/regular/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-article-regular-weight" - }, - "textStyleArticleRegularLetterspacing": { - "no": 39, - "name": "text/style/article/regular/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-article-regular-letterspacing" - }, - "textStyleArticleHeaderFontfamily": { - "no": 40, - "name": "text/style/article/header/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-article-header-fontfamily" - }, - "textStyleArticleHeaderWeight": { - "no": 41, - "name": "text/style/article/header/weight", - "fst_reference": "text/style/default/header/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-article-header-weight" - }, - "textStyleArticleHeaderLetterspacing": { - "no": 42, - "name": "text/style/article/header/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-article-header-letterspacing" - }, - "textStyleArticleHeaderCase": { - "no": 43, - "name": "text/style/article/header/case", - "fst_reference": "NULL/string", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-article-header-case" - }, - "textStyleCodeRegularFontfamily": { - "no": 44, - "name": "text/style/code/regular/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-code-regular-fontfamily" - }, - "textStyleCodeRegularWeight": { - "no": 45, - "name": "text/style/code/regular/weight", - "fst_reference": "text/style/default/regular/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-code-regular-weight" - }, - "textStyleCodeRegularLetterspacing": { - "no": 46, - "name": "text/style/code/regular/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-code-regular-letterspacing" - }, - "textStyleCodeHeaderFontfamily": { - "no": 47, - "name": "text/style/code/header/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-code-header-fontfamily" - }, - "textStyleCodeHeaderWeight": { - "no": 48, - "name": "text/style/code/header/weight", - "fst_reference": "text/style/default/header/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-code-header-weight" - }, - "textStyleCodeHeaderLetterspacing": { - "no": 49, - "name": "text/style/code/header/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-code-header-letterspacing" - }, - "textStyleCodeHeaderCase": { - "no": 50, - "name": "text/style/code/header/case", - "fst_reference": "NULL/string", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-code-header-case" - }, - "textStyleDatavizRegularFontfamily": { - "no": 51, - "name": "text/style/dataViz/regular/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-dataviz-regular-fontfamily" - }, - "textStyleDatavizRegularWeight": { - "no": 52, - "name": "text/style/dataViz/regular/weight", - "fst_reference": "text/style/default/regular/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-dataviz-regular-weight" - }, - "textStyleDatavizRegularLetterspacing": { - "no": 53, - "name": "text/style/dataViz/regular/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-dataviz-regular-letterspacing" - }, - "textStyleDatavizHeaderFontfamily": { - "no": 54, - "name": "text/style/dataViz/header/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-dataviz-header-fontfamily" - }, - "textStyleDatavizHeaderWeight": { - "no": 55, - "name": "text/style/dataViz/header/weight", - "fst_reference": "text/style/default/header/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-dataviz-header-weight" - }, - "textStyleDatavizHeaderLetterspacing": { - "no": 56, - "name": "text/style/dataViz/header/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-dataviz-header-letterspacing" - }, - "textStyleDatavizHeaderCase": { - "no": 57, - "name": "text/style/dataViz/header/case", - "fst_reference": "NULL/string", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-dataviz-header-case" - }, - "textStyleQuoteRegularFontfamily": { - "no": 58, - "name": "text/style/quote/regular/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-quote-regular-fontfamily" - }, - "textStyleQuoteRegularWeight": { - "no": 59, - "name": "text/style/quote/regular/weight", - "fst_reference": "text/style/default/regular/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-quote-regular-weight" - }, - "textStyleQuoteRegularLetterspacing": { - "no": 60, - "name": "text/style/quote/regular/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-quote-regular-letterspacing" - }, - "textStyleQuoteHeaderFontfamily": { - "no": 61, - "name": "text/style/quote/header/fontFamily", - "fst_reference": "text/style/default/regular/fontFamily", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-quote-header-fontfamily" - }, - "textStyleQuoteHeaderWeight": { - "no": 62, - "name": "text/style/quote/header/weight", - "fst_reference": "text/style/default/header/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-quote-header-weight" - }, - "textStyleQuoteHeaderLetterspacing": { - "no": 63, - "name": "text/style/quote/header/letterSpacing", - "fst_reference": "text/style/default/regular/letterSpacing", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-quote-header-letterspacing" - }, - "textStyleQuoteHeaderCase": { - "no": 64, - "name": "text/style/quote/header/case", - "fst_reference": "NULL/string", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-style-quote-header-case" - }, - "textRampPageheaderFontsize": { - "no": 65, - "name": "text/ramp/pageHeader/fontSize", - "fst_reference": "text/global/title2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle1/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-pageheader-fontsize" - }, - "textRampPageheaderLineheight": { - "no": 66, - "name": "text/ramp/pageHeader/lineHeight", - "fst_reference": "text/global/title2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle1/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-pageheader-lineheight" - }, - "textRampSectionheaderFontsize": { - "no": 67, - "name": "text/ramp/sectionHeader/fontSize", - "fst_reference": "text/global/subtitle1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle2/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-sectionheader-fontsize" - }, - "textRampSectionheaderLineheight": { - "no": 68, - "name": "text/ramp/sectionHeader/lineHeight", - "fst_reference": "text/global/subtitle1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle2/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-sectionheader-lineheight" - }, - "textRampSubsectionheaderFontsize": { - "no": 69, - "name": "text/ramp/subsectionHeader/fontSize", - "fst_reference": "text/global/subtitle2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle2/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-subsectionheader-fontsize" - }, - "textRampSubsectionheaderLineheight": { - "no": 70, - "name": "text/ramp/subsectionHeader/lineHeight", - "fst_reference": "text/global/subtitle2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle2/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-subsectionheader-lineheight" - }, - "textRampReadingbodyFontsize": { - "no": 71, - "name": "text/ramp/readingBody/fontSize", - "fst_reference": "text/global/body2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body2/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-readingbody-fontsize" - }, - "textRampReadingbodyLineheight": { - "no": 72, - "name": "text/ramp/readingBody/lineHeight", - "fst_reference": "text/global/body2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body2/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-readingbody-lineheight" - }, - "textRampItemheaderFontsize": { - "no": 73, - "name": "text/ramp/itemHeader/fontSize", - "fst_reference": "text/global/body2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body2/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-itemheader-fontsize" - }, - "textRampItemheaderLineheight": { - "no": 74, - "name": "text/ramp/itemHeader/lineHeight", - "fst_reference": "text/global/body2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body2/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-itemheader-lineheight" - }, - "textRampItembodyFontsize": { - "no": 75, - "name": "text/ramp/itemBody/fontSize", - "fst_reference": "text/global/body3/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - " Radio", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Field", - "Label", - "Inline link", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "Rating", - "MessageBar" - ], - "contrast": "", - "fallback": "Font-size/300", - "exceptions": [], - "cssName": "--smtc-text-ramp-itembody-fontsize" - }, - "textRampItembodyLineheight": { - "no": 76, - "name": "text/ramp/itemBody/lineHeight", - "fst_reference": "text/global/body3/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - " Radio", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Lite filter", - "Title bar", - "Rating", - "MessageBar" - ], - "contrast": "", - "fallback": "Line-height/300", - "exceptions": [], - "cssName": "--smtc-text-ramp-itembody-lineheight" - }, - "textRampMetadataFontsize": { - "no": 77, - "name": "text/ramp/metadata/fontSize", - "fst_reference": "text/global/caption1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-metadata-fontsize" - }, - "textRampMetadataLineheight": { - "no": 78, - "name": "text/ramp/metadata/lineHeight", - "fst_reference": "text/global/caption1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-metadata-lineheight" - }, - "textRampLegalFontsize": { - "no": 79, - "name": "text/ramp/legal/fontSize", - "fst_reference": "text/global/caption2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-legal-fontsize" - }, - "textRampLegalLineheight": { - "no": 80, - "name": "text/ramp/legal/lineHeight", - "fst_reference": "text/global/caption2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-legal-lineheight" - }, - "textRampSmPageheaderFontsize": { - "no": 81, - "name": "text/ramp-sm/pageHeader/fontSize", - "fst_reference": "text/global/subtitle1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle2/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-pageheader-fontsize" - }, - "textRampSmPageheaderLineheight": { - "no": 82, - "name": "text/ramp-sm/pageHeader/lineHeight", - "fst_reference": "text/global/subtitle1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle2/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-pageheader-lineheight" - }, - "textRampSmSectionheaderFontsize": { - "no": 83, - "name": "text/ramp-sm/sectionHeader/fontSize", - "fst_reference": "text/global/subtitle2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body1/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-sectionheader-fontsize" - }, - "textRampSmSectionheaderLineheight": { - "no": 84, - "name": "text/ramp-sm/sectionHeader/lineHeight", - "fst_reference": "text/global/subtitle2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body1/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-sectionheader-lineheight" - }, - "textRampSmSubsectionheaderFontsize": { - "no": 85, - "name": "text/ramp-sm/subsectionHeader/fontSize", - "fst_reference": "text/global/body1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body1/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-subsectionheader-fontsize" - }, - "textRampSmSubsectionheaderLineheight": { - "no": 86, - "name": "text/ramp-sm/subsectionHeader/lineHeight", - "fst_reference": "text/global/body1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body1/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-subsectionheader-lineheight" - }, - "textRampSmReadingbodyFontsize": { - "no": 87, - "name": "text/ramp-sm/readingBody/fontSize", - "fst_reference": "text/global/body3/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body3/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-readingbody-fontsize" - }, - "textRampSmReadingbodyLineheight": { - "no": 88, - "name": "text/ramp-sm/readingBody/lineHeight", - "fst_reference": "text/global/body3/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body3/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-readingbody-lineheight" - }, - "textRampSmItemheaderFontsize": { - "no": 89, - "name": "text/ramp-sm/itemHeader/fontSize", - "fst_reference": "text/global/body3/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body3/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-itemheader-fontsize" - }, - "textRampSmItemheaderLineheight": { - "no": 90, - "name": "text/ramp-sm/itemHeader/lineHeight", - "fst_reference": "text/global/body3/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body3/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-itemheader-lineheight" - }, - "textRampSmItembodyFontsize": { - "no": 91, - "name": "text/ramp-sm/itemBody/fontSize", - "fst_reference": "text/global/caption1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-itembody-fontsize" - }, - "textRampSmItembodyLineheight": { - "no": 92, - "name": "text/ramp-sm/itemBody/lineHeight", - "fst_reference": "text/global/caption1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-itembody-lineheight" - }, - "textRampSmMetadataFontsize": { - "no": 93, - "name": "text/ramp-sm/metadata/fontSize", - "fst_reference": "text/global/caption1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-metadata-fontsize" - }, - "textRampSmMetadataLineheight": { - "no": 94, - "name": "text/ramp-sm/metadata/lineHeight", - "fst_reference": "text/global/caption1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-metadata-lineheight" - }, - "textRampSmLegalFontsize": { - "no": 95, - "name": "text/ramp-sm/legal/fontSize", - "fst_reference": "text/global/caption2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-legal-fontsize" - }, - "textRampSmLegalLineheight": { - "no": 96, - "name": "text/ramp-sm/legal/lineHeight", - "fst_reference": "text/global/caption2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-sm-legal-lineheight" - }, - "textRampLgPageheaderFontsize": { - "no": 97, - "name": "text/ramp-lg/pageHeader/fontSize", - "fst_reference": "text/global/title1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/title2/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-pageheader-fontsize" - }, - "textRampLgPageheaderLineheight": { - "no": 98, - "name": "text/ramp-lg/pageHeader/lineHeight", - "fst_reference": "text/global/title1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/title2/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-pageheader-lineheight" - }, - "textRampLgSectionheaderFontsize": { - "no": 99, - "name": "text/ramp-lg/sectionHeader/fontSize", - "fst_reference": "text/global/title2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle1/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-sectionheader-fontsize" - }, - "textRampLgSectionheaderLineheight": { - "no": 100, - "name": "text/ramp-lg/sectionHeader/lineHeight", - "fst_reference": "text/global/title2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle1/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-sectionheader-lineheight" - }, - "textRampLgSubsectionheaderFontsize": { - "no": 101, - "name": "text/ramp-lg/subsectionHeader/fontSize", - "fst_reference": "text/global/subtitle1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle1/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-subsectionheader-fontsize" - }, - "textRampLgSubsectionheaderLineheight": { - "no": 102, - "name": "text/ramp-lg/subsectionHeader/lineHeight", - "fst_reference": "text/global/subtitle1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/subtitle1/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-subsectionheader-lineheight" - }, - "textRampLgReadingbodyFontsize": { - "no": 103, - "name": "text/ramp-lg/readingBody/fontSize", - "fst_reference": "text/global/body1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body1/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-readingbody-fontsize" - }, - "textRampLgReadingbodyLineheight": { - "no": 104, - "name": "text/ramp-lg/readingBody/lineHeight", - "fst_reference": "text/global/body1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body1/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-readingbody-lineheight" - }, - "textRampLgItemheaderFontsize": { - "no": 105, - "name": "text/ramp-lg/itemHeader/fontSize", - "fst_reference": "text/global/subtitle2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body1/fontSize", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-itemheader-fontsize" - }, - "textRampLgItemheaderLineheight": { - "no": 106, - "name": "text/ramp-lg/itemHeader/lineHeight", - "fst_reference": "text/global/subtitle2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "text/global/body1/lineHeight", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-itemheader-lineheight" - }, - "textRampLgItembodyFontsize": { - "no": 107, - "name": "text/ramp-lg/itemBody/fontSize", - "fst_reference": "text/global/body2/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "Font-size/400", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-itembody-fontsize" - }, - "textRampLgItembodyLineheight": { - "no": 108, - "name": "text/ramp-lg/itemBody/lineHeight", - "fst_reference": "text/global/body2/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Line-height/400", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-itembody-lineheight" - }, - "textRampLgMetadataFontsize": { - "no": 109, - "name": "text/ramp-lg/metadata/fontSize", - "fst_reference": "text/global/body3/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-metadata-fontsize" - }, - "textRampLgMetadataLineheight": { - "no": 110, - "name": "text/ramp-lg/metadata/lineHeight", - "fst_reference": "text/global/body3/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-metadata-lineheight" - }, - "textRampLgLegalFontsize": { - "no": 111, - "name": "text/ramp-lg/legal/fontSize", - "fst_reference": "text/global/caption1/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-legal-fontsize" - }, - "textRampLgLegalLineheight": { - "no": 112, - "name": "text/ramp-lg/legal/lineHeight", - "fst_reference": "text/global/caption1/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ramp-lg-legal-lineheight" - }, - "textCtrlWeightDefault": { - "no": 113, - "name": "text/ctrl/weight/default", - "fst_reference": "text/style/default/regular/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ctrl-weight-default" - }, - "textCtrlButtonWeightDefault": { - "no": 114, - "name": "text/ctrl/button/weight/default", - "fst_reference": "text/style/default/regular/weight", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ctrl-button-weight-default" - }, - "textCtrlButtonWeightSelected": { - "no": 115, - "name": "text/ctrl/button/weight/selected", - "fst_reference": "text/ctrl/weight/selected", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Lite Filter Button", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ctrl-button-weight-selected" - }, - "sizeCtrlDefault": { - "no": 116, - "name": "size/ctrl/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - " Radio", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "Slider", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-default" - }, - "sizeCtrlIcon": { - "no": 117, - "name": "size/ctrl/icon", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "FAB", - "Split button", - "Button", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Editable dropdown", - "Editable spin button", - "Inline link", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "Rating", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-icon" - }, - "sizeCtrlIconFigmaonly": { - "no": 118, - "name": "size/ctrl/icon(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Editable dropdown", - "Editable spin button", - "Inline link", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-iconfigmaonly" - }, - "sizeCtrlIconsecondary": { - "no": 119, - "name": "size/ctrl/iconSecondary", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Editable spin button", - "Lite Filter Button", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-iconsecondary" - }, - "textCtrlWeightSelected": { - "no": 120, - "name": "text/ctrl/weight/selected", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-text-ctrl-weight-selected" - }, - "sizeCtrlSmDefault": { - "no": 121, - "name": "size/ctrl-sm/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer", "Editable dropdown", "Editable spin button"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-sm-default" - }, - "sizeCtrlSmIcon": { - "no": 122, - "name": "size/ctrl-sm/icon", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-sm-icon" - }, - "sizeCtrlLgDefault": { - "no": 123, - "name": "size/ctrl-lg/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-lg-default" - }, - "sizeCtrlLgIcon": { - "no": 124, - "name": "size/ctrl-lg/icon", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-lg-icon" - }, - "sizeCtrlSmIconFigmaonly": { - "no": 125, - "name": "size/ctrl-sm/icon(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-sm-iconfigmaonly" - }, - "sizeCtrlLgIconFigmaonly": { - "no": 126, - "name": "size/ctrl-lg/icon(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-size-ctrl-lg-iconfigmaonly" - }, - "paddingContentAlignDefault": { - "no": 127, - "name": "padding/content/align/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Inline drawer", "Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-align-default" - }, - "paddingContentAlignOutdentIcononsubtle": { - "no": 128, - "name": "padding/content/align/outdent-iconOnSubtle", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-align-outdent-icononsubtle" - }, - "paddingContentAlignOutdentTextonsubtle": { - "no": 129, - "name": "padding/content/align/outdent-textOnSubtle", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-align-outdent-textonsubtle" - }, - "paddingContentNone": { - "no": 130, - "name": "padding/content/none", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-none" - }, - "paddingContentXxsmall": { - "no": 131, - "name": "padding/content/xxSmall", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-xxsmall" - }, - "paddingContentXsmall": { - "no": 132, - "name": "padding/content/xSmall", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-xsmall" - }, - "paddingContentSmall": { - "no": 133, - "name": "padding/content/small", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-small" - }, - "paddingContentMedium": { - "no": 134, - "name": "padding/content/medium", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-medium" - }, - "paddingContentLarge": { - "no": 135, - "name": "padding/content/large", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog", "Footer", "Consent Dialog/footer", "Inline drawer", "Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-large" - }, - "paddingContentXlarge": { - "no": 136, - "name": "padding/content/xLarge", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-xlarge" - }, - "paddingContentXxlarge": { - "no": 137, - "name": "padding/content/xxLarge", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-xxlarge" - }, - "paddingContentXxxlarge": { - "no": 138, - "name": "padding/content/xxxLarge", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-content-xxxlarge" - }, - "paddingToolbarInside": { - "no": 139, - "name": "padding/toolbar/inside", - "fst_reference": "padding/content/xSmall", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-toolbar-inside" - }, - "paddingToolbarOutside": { - "no": 140, - "name": "padding/toolbar/outside", - "fst_reference": "padding/content/xxSmall", - "optional": true, - "nullable": false, - "description": "", - "components": ["Title bar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-toolbar-outside" - }, - "paddingFlyoutDefault": { - "no": 141, - "name": "padding/flyout/default", - "fst_reference": "padding/content/align/outdent-textOnSubtle", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-flyout-default" - }, - "paddingCardNestedimage": { - "no": 142, - "name": "padding/card/nestedImage", - "fst_reference": "padding/content/align/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Image"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-card-nestedimage" - }, - "paddingCtrlHorizontalDefault": { - "no": 143, - "name": "padding/ctrl/horizontal-default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Page link", - "Lite filter", - "Tooltip", - "Slider", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-horizontal-default" - }, - "paddingCtrlHorizontalIcononly": { - "no": 144, - "name": "padding/ctrl/horizontal-iconOnly", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Inline drawer", - "Overlay drawer", - "Lite Filter Button", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-horizontal-icononly" - }, - "paddingCtrlTexttop": { - "no": 145, - "name": "padding/ctrl/textTop", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Field", - "Label", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "Tooltip", - "Rating", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-texttop" - }, - "paddingCtrlTextbottom": { - "no": 146, - "name": "padding/ctrl/textBottom", - "fst_reference": "padding/ctrl/textTop", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Field", - "Label", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "Tooltip", - "Rating", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-textbottom" - }, - "paddingCtrlTextside": { - "no": 147, - "name": "padding/ctrl/textSide", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-textside" - }, - "paddingCtrlTonestedcontrol": { - "no": 148, - "name": "padding/ctrl/toNestedControl", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Text input box", "Search box", "Password input box", "Editable dropdown", "Editable spin button"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-tonestedcontrol" - }, - "paddingCtrlSmHorizontalDefault": { - "no": 149, - "name": "padding/ctrl-sm/horizontal-default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer", "Editable spin button"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-sm-horizontal-default" - }, - "paddingCtrlSmHorizontalIcononly": { - "no": 150, - "name": "padding/ctrl-sm/horizontal-iconOnly", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Editable dropdown"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-sm-horizontal-icononly" - }, - "paddingCtrlSmTexttop": { - "no": 151, - "name": "padding/ctrl-sm/textTop", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-sm-texttop" - }, - "paddingCtrlSmTextbottom": { - "no": 152, - "name": "padding/ctrl-sm/textBottom", - "fst_reference": "padding/ctrl-sm/textTop", - "optional": true, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-sm-textbottom" - }, - "paddingCtrlSmTonestedcontrol": { - "no": 153, - "name": "padding/ctrl-sm/toNestedControl", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-sm-tonestedcontrol" - }, - "paddingCtrlLgHorizontalDefault": { - "no": 154, - "name": "padding/ctrl-lg/horizontal-default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-lg-horizontal-default" - }, - "paddingCtrlLgHorizontalIcononly": { - "no": 155, - "name": "padding/ctrl-lg/horizontal-iconOnly", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-lg-horizontal-icononly" - }, - "paddingCtrlLgTexttop": { - "no": 156, - "name": "padding/ctrl-lg/textTop", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB", "MessageBar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-lg-texttop" - }, - "paddingCtrlLgTextbottom": { - "no": 157, - "name": "padding/ctrl-lg/textBottom", - "fst_reference": "padding/ctrl-lg/textTop", - "optional": true, - "nullable": false, - "description": "", - "components": ["FAB", "MessageBar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-lg-textbottom" - }, - "paddingCtrlLgTonestedcontrol": { - "no": 158, - "name": "padding/ctrl-lg/toNestedControl", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-padding-ctrl-lg-tonestedcontrol" - }, - "gapBetweenContentNone": { - "no": 159, - "name": "gap/between/content/none", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-content-none" - }, - "gapBetweenContentXxsmall": { - "no": 160, - "name": "gap/between/content/xxSmall", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Field"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-content-xxsmall" - }, - "gapBetweenContentXsmall": { - "no": 161, - "name": "gap/between/content/xSmall", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-content-xsmall" - }, - "gapBetweenContentSmall": { - "no": 162, - "name": "gap/between/content/small", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-content-small" - }, - "gapBetweenCtrlDefault": { - "no": 163, - "name": "gap/between/ctrl/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-ctrl-default" - }, - "gapBetweenContentMedium": { - "no": 164, - "name": "gap/between/content/medium", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-content-medium" - }, - "gapBetweenContentLarge": { - "no": 165, - "name": "gap/between/content/large", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-content-large" - }, - "gapBetweenContentXlarge": { - "no": 166, - "name": "gap/between/content/xLarge", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-content-xlarge" - }, - "gapBetweenCtrlNested": { - "no": 167, - "name": "gap/between/ctrl/nested", - "fst_reference": "padding/ctrl/toNestedControl", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-ctrl-nested" - }, - "gapBetweenContentXxlarge": { - "no": 168, - "name": "gap/between/content/xxLarge", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-content-xxlarge" - }, - "gapBetweenCtrlLgDefault": { - "no": 169, - "name": "gap/between/ctrl-lg/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-ctrl-lg-default" - }, - "gapTextSmall": { - "no": 170, - "name": "gap/text-small", - "fst_reference": "gap/between/content/xxSmall", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog", "Field", "MessageBar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-text-small" - }, - "gapTextLarge": { - "no": 171, - "name": "gap/text-large", - "fst_reference": "gap/between/content/xSmall", - "optional": true, - "nullable": false, - "description": "", - "components": ["MessageBar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-text-large" - }, - "gapBetweenCtrlLgNested": { - "no": 172, - "name": "gap/between/ctrl-lg/nested", - "fst_reference": "padding/ctrl-lg/toNestedControl", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-ctrl-lg-nested" - }, - "gapBetweenCtrlSmDefault": { - "no": 173, - "name": "gap/between/ctrl-sm/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Text input box", "Editable dropdown", "Editable spin button"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-ctrl-sm-default" - }, - "gapBetweenCtrlSmNested": { - "no": 174, - "name": "gap/between/ctrl-sm/nested", - "fst_reference": "padding/ctrl-sm/toNestedControl", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-between-ctrl-sm-nested" - }, - "gapList": { - "no": 175, - "name": "gap/list", - "fst_reference": "gap/between/content/xxSmall", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-list" - }, - "gapCard": { - "no": 176, - "name": "gap/card", - "fst_reference": "gap/between/content/medium", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-card" - }, - "gapInsideCtrlDefault": { - "no": 177, - "name": "gap/inside/ctrl/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-default" - }, - "gapInsideCtrlSmDefault": { - "no": 178, - "name": "gap/inside/ctrl-sm/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-sm-default" - }, - "gapInsideCtrlSmTosecondaryicon": { - "no": 179, - "name": "gap/inside/ctrl-sm/toSecondaryIcon", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Editable dropdown"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-sm-tosecondaryicon" - }, - "gapInsideCtrlLgDefault": { - "no": 180, - "name": "gap/inside/ctrl-lg/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-lg-default" - }, - "gapInsideCtrlLgTosecondaryicon": { - "no": 181, - "name": "gap/inside/ctrl-lg/toSecondaryIcon", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-lg-tosecondaryicon" - }, - "gapInsideCtrlTosecondaryicon": { - "no": 182, - "name": "gap/inside/ctrl/toSecondaryIcon", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - " Radio", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Field", - "Label", - "Inline link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-tosecondaryicon" - }, - "gapInsideCtrlTolabel": { - "no": 183, - "name": "gap/inside/ctrl/toLabel", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Radio", " Checkbox", "Rating", "Spinner", "MessageBar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-tolabel" - }, - "gapInsideCtrlSmTolabel": { - "no": 184, - "name": "gap/inside/ctrl-sm/toLabel", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-sm-tolabel" - }, - "gapInsideCtrlLgTolabel": { - "no": 185, - "name": "gap/inside/ctrl-lg/toLabel", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-gap-inside-ctrl-lg-tolabel" - }, - "cornerCircular": { - "no": 186, - "name": "corner/circular", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Presence badge", "Badge", "Lite Filter Button", "Lite filter"], - "contrast": "", - "fallback": "Circular", - "exceptions": [], - "cssName": "--smtc-corner-circular" - }, - "strokewidthDefault": { - "no": 187, - "name": "strokeWidth/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Badge", - "FAB", - "Split button", - "Button", - "Card/Primary", - "Card/Secondary", - "Card/Tint (needed?)", - "Card/Outline", - " Switch", - " Radio", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Image", - "Editable dropdown", - "Editable spin button", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-strokewidth-default" - }, - "strokewidthDividerDefault": { - "no": 188, - "name": "strokeWidth/divider/default", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer", "Divider"], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-strokewidth-divider-default" - }, - "strokewidthDividerStrong": { - "no": 189, - "name": "strokeWidth/divider/strong", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-strokewidth-divider-strong" - }, - "strokewidthCtrlOutlineRest": { - "no": 190, - "name": "strokeWidth/ctrl/outline/rest", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Lite Filter Button" - ], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-strokewidth-ctrl-outline-rest" - }, - "strokewidthCtrlOutlineHover": { - "no": 191, - "name": "strokeWidth/ctrl/outline/hover", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-strokewidth-ctrl-outline-hover" - }, - "strokewidthCtrlOutlinePressed": { - "no": 192, - "name": "strokeWidth/ctrl/outline/pressed", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-strokewidth-ctrl-outline-pressed" - }, - "strokewidthCtrlOutlineSelected": { - "no": 193, - "name": "strokeWidth/ctrl/outline/selected", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-strokewidth-ctrl-outline-selected" - }, - "strokewidthWindowDefault": { - "no": 194, - "name": "strokeWidth/window/default", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-strokewidth-window-default" - }, - "backgroundToolbar": { - "no": 195, - "name": "background/toolbar", - "fst_reference": "background/card/onPrimary/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-background-toolbar" - }, - "backgroundSmoke": { - "no": 196, - "name": "background/smoke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-smoke" - }, - "strokeLayer": { - "no": 197, - "name": "stroke/layer", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-layer" - }, - "strokeImage": { - "no": 198, - "name": "stroke/image", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Image"], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-image" - }, - "strokeToolbar": { - "no": 199, - "name": "stroke/toolbar", - "fst_reference": "stroke/card/onPrimary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-toolbar" - }, - "strokeFlyout": { - "no": 200, - "name": "stroke/flyout", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-flyout" - }, - "strokeCtrlOnbrandRest": { - "no": 201, - "name": "stroke/ctrl/onBrand/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog", "Footer", "Inline drawer", "Overlay drawer", "Tooltip"], - "contrast": "", - "fallback": "NULL/color", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onbrand-rest" - }, - "strokeCtrlOnbrandHover": { - "no": 202, - "name": "stroke/ctrl/onBrand/hover", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/color", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onbrand-hover" - }, - "strokeCtrlOnbrandPressed": { - "no": 203, - "name": "stroke/ctrl/onBrand/pressed", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/color", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onbrand-pressed" - }, - "strokeCtrlOnbrandDisabled": { - "no": 204, - "name": "stroke/ctrl/onBrand/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/color", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onbrand-disabled" - }, - "strokeCtrlOnbrandRestStop2": { - "no": 205, - "name": "stroke/ctrl/onBrand/rest(stop2)", - "fst_reference": "stroke/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog", "Footer", "Inline drawer", "Overlay drawer"], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onbrand-reststop2" - }, - "strokeCtrlOnbrandHoverStop2": { - "no": 206, - "name": "stroke/ctrl/onBrand/hover(stop2)", - "fst_reference": "stroke/ctrl/onBrand/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/hover", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onbrand-hoverstop2" - }, - "strokeCtrlOnbrandPressedStop2": { - "no": 207, - "name": "stroke/ctrl/onBrand/pressed(stop2)", - "fst_reference": "stroke/ctrl/onBrand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/pressed", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onbrand-pressedstop2" - }, - "strokeCtrlOnbrandDisabledStop2": { - "no": 208, - "name": "stroke/ctrl/onBrand/disabled(stop2)", - "fst_reference": "stroke/ctrl/onBrand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/disabled", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onbrand-disabledstop2" - }, - "strokeCtrlOnneutralRest": { - "no": 209, - "name": "stroke/ctrl/onNeutral/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog", "Footer", "Consent Dialog/footer", "Inline drawer", "Overlay drawer", "MessageBar"], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onneutral-rest" - }, - "strokeCtrlOnneutralHover": { - "no": 210, - "name": "stroke/ctrl/onNeutral/hover", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Hover", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onneutral-hover" - }, - "strokeCtrlOnneutralPressed": { - "no": 211, - "name": "stroke/ctrl/onNeutral/pressed", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Pressed", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onneutral-pressed" - }, - "strokeCtrlOnneutralDisabled": { - "no": 212, - "name": "stroke/ctrl/onNeutral/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onneutral-disabled" - }, - "strokeCtrlOnneutralRestStop2": { - "no": 213, - "name": "stroke/ctrl/onNeutral/rest(stop2)", - "fst_reference": "stroke/ctrl/onNeutral/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog", "Footer", "Consent Dialog/footer", "Inline drawer", "Overlay drawer", "MessageBar"], - "contrast": "", - "fallback": "stroke/ctrl/onNeutral/rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onneutral-reststop2" - }, - "strokeCtrlOnneutralHoverStop2": { - "no": 214, - "name": "stroke/ctrl/onNeutral/hover(stop2)", - "fst_reference": "stroke/ctrl/onNeutral/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onNeutral/hover", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onneutral-hoverstop2" - }, - "strokeCtrlOnneutralPressedStop2": { - "no": 215, - "name": "stroke/ctrl/onNeutral/pressed(stop2)", - "fst_reference": "stroke/ctrl/onNeutral/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onNeutral/pressed", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onneutral-pressedstop2" - }, - "strokeCtrlOnneutralDisabledStop2": { - "no": 216, - "name": "stroke/ctrl/onNeutral/disabled(stop2)", - "fst_reference": "stroke/ctrl/onNeutral/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onNeutral/disabled", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onneutral-disabledstop2" - }, - "strokeCtrlOnoutlineRest": { - "no": 217, - "name": "stroke/ctrl/onOutline/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onoutline-rest" - }, - "strokeCtrlOnoutlineHover": { - "no": 218, - "name": "stroke/ctrl/onOutline/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Hover", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onoutline-hover" - }, - "strokeCtrlOnoutlinePressed": { - "no": 219, - "name": "stroke/ctrl/onOutline/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Pressed", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onoutline-pressed" - }, - "strokeCtrlOnoutlineDisabled": { - "no": 220, - "name": "stroke/ctrl/onOutline/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onoutline-disabled" - }, - "strokeCtrlOnoutlineRestStop2": { - "no": 221, - "name": "stroke/ctrl/onOutline/rest(stop2)", - "fst_reference": "stroke/ctrl/onOutline/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "stroke/ctrl/onOutline/rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onoutline-reststop2" - }, - "strokeCtrlOnoutlineHoverStop2": { - "no": 222, - "name": "stroke/ctrl/onOutline/hover(stop2)", - "fst_reference": "stroke/ctrl/onOutline/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onOutline/hover", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onoutline-hoverstop2" - }, - "strokeCtrlOnoutlinePressedStop2": { - "no": 223, - "name": "stroke/ctrl/onOutline/pressed(stop2)", - "fst_reference": "stroke/ctrl/onOutline/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onOutline/pressed", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onoutline-pressedstop2" - }, - "strokeCtrlOnoutlineDisabledStop2": { - "no": 224, - "name": "stroke/ctrl/onOutline/disabled(stop2)", - "fst_reference": "stroke/ctrl/onOutline/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite Filter Button"], - "contrast": "", - "fallback": "stroke/ctrl/divider/onOutline", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onoutline-disabledstop2" - }, - "strokeCtrlOnsubtleRest": { - "no": 225, - "name": "stroke/ctrl/onSubtle/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [ - "Dialog", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Editable spin button", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onsubtle-rest" - }, - "strokeCtrlOnsubtleHover": { - "no": 226, - "name": "stroke/ctrl/onSubtle/hover", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onsubtle-hover" - }, - "strokeCtrlOnsubtlePressed": { - "no": 227, - "name": "stroke/ctrl/onSubtle/pressed", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onsubtle-pressed" - }, - "strokeCtrlOnsubtleDisabled": { - "no": 228, - "name": "stroke/ctrl/onSubtle/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onsubtle-disabled" - }, - "strokeCtrlOnsubtleHoversplit": { - "no": 229, - "name": "stroke/ctrl/onSubtle/hoverSplit", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onsubtle-hoversplit" - }, - "strokeCtrlOnactivebrandRest": { - "no": 230, - "name": "stroke/ctrl/onActiveBrand/rest", - "fst_reference": "stroke/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onactivebrand-rest" - }, - "strokeCtrlDividerOnbrand": { - "no": 231, - "name": "stroke/ctrl/divider/onBrand", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/onBrand/2/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onbrand" - }, - "strokeCtrlDividerOnbrandDisabled": { - "no": 232, - "name": "stroke/ctrl/divider/onBrand-disabled", - "fst_reference": "stroke/ctrl/divider/onBrand", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/onBrand/2/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onbrand-disabled" - }, - "strokeCtrlDividerOnneutral": { - "no": 233, - "name": "stroke/ctrl/divider/onNeutral", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onneutral" - }, - "strokeCtrlDividerOnneutralDisabled": { - "no": 234, - "name": "stroke/ctrl/divider/onNeutral-disabled", - "fst_reference": "stroke/ctrl/divider/onNeutral", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onneutral-disabled" - }, - "strokeCtrlDividerOnoutline": { - "no": 235, - "name": "stroke/ctrl/divider/onOutline", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Lite Filter Button"], - "contrast": "", - "fallback": "Neutral/Stroke/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onoutline" - }, - "strokeCtrlDividerOnoutlineDisabled": { - "no": 236, - "name": "stroke/ctrl/divider/onOutline-disabled", - "fst_reference": "stroke/ctrl/divider/onOutline", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onoutline-disabled" - }, - "strokeCtrlDividerOnsubtle": { - "no": 237, - "name": "stroke/ctrl/divider/onSubtle", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onsubtle" - }, - "strokeCtrlDividerOnsubtleDisabled": { - "no": 238, - "name": "stroke/ctrl/divider/onSubtle-disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Split button"], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onsubtle-disabled" - }, - "strokeCtrlDividerOnactivebrand": { - "no": 239, - "name": "stroke/ctrl/divider/onActiveBrand", - "fst_reference": "stroke/ctrl/divider/onBrand", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/divider/onBrand", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onactivebrand" - }, - "strokeCtrlDividerOnactivebrandDisabled": { - "no": 240, - "name": "stroke/ctrl/divider/onActiveBrand-disabled", - "fst_reference": "stroke/ctrl/divider/onBrand", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/divider/onBrand", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-divider-onactivebrand-disabled" - }, - "strokeCtrlOnactivebrandHover": { - "no": 241, - "name": "stroke/ctrl/onActiveBrand/hover", - "fst_reference": "stroke/ctrl/onBrand/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/hover", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onactivebrand-hover" - }, - "strokeCtrlOnactivebrandPressed": { - "no": 242, - "name": "stroke/ctrl/onActiveBrand/pressed", - "fst_reference": "stroke/ctrl/onBrand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/pressed", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onactivebrand-pressed" - }, - "strokeCtrlOnactivebrandDisabled": { - "no": 243, - "name": "stroke/ctrl/onActiveBrand/disabled", - "fst_reference": "stroke/ctrl/onBrand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [" Switch", " Radio", " Checkbox"], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/disabled", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onactivebrand-disabled" - }, - "strokeCtrlOnactivebrandRestStop2": { - "no": 244, - "name": "stroke/ctrl/onActiveBrand/rest(stop2)", - "fst_reference": "stroke/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onActiveBrand/rest", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onactivebrand-reststop2" - }, - "strokeCtrlOnactivebrandHoverStop2": { - "no": 245, - "name": "stroke/ctrl/onActiveBrand/hover(stop2)", - "fst_reference": "stroke/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onActiveBrand/hover", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onactivebrand-hoverstop2" - }, - "strokeCtrlOnactivebrandPressedStop2": { - "no": 246, - "name": "stroke/ctrl/onActiveBrand/pressed(stop2)", - "fst_reference": "stroke/ctrl/onBrand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onActiveBrand/pressed", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onactivebrand-pressedstop2" - }, - "strokeCtrlOnactivebrandDisabledStop2": { - "no": 247, - "name": "stroke/ctrl/onActiveBrand/disabled(stop2)", - "fst_reference": "stroke/ctrl/onBrand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "stroke/ctrl/onActiveBrand/disabled", - "exceptions": [], - "cssName": "--smtc-stroke-ctrl-onactivebrand-disabledstop2" - }, - "strokeDividerDefault": { - "no": 248, - "name": "stroke/divider/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer", "Inline drawer"], - "contrast": "", - "fallback": "Neutral/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-divider-default" - }, - "strokeDividerSubtle": { - "no": 249, - "name": "stroke/divider/subtle", - "fst_reference": "stroke/divider/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/3/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-divider-subtle" - }, - "strokeDividerStrong": { - "no": 250, - "name": "stroke/divider/strong", - "fst_reference": "stroke/divider/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-divider-strong" - }, - "strokeDividerBrand": { - "no": 251, - "name": "stroke/divider/brand", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Divider"], - "contrast": "", - "fallback": "Brand/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-divider-brand" - }, - "strokeCardSelected": { - "no": 252, - "name": "stroke/card/selected", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Selected", - "exceptions": [], - "cssName": "--smtc-stroke-card-selected" - }, - "strokeCardOnprimaryRest": { - "no": 253, - "name": "stroke/card/onPrimary/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Card/Primary"], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-card-onprimary-rest" - }, - "strokeCardOnprimaryHover": { - "no": 254, - "name": "stroke/card/onPrimary/hover", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-card-onprimary-hover" - }, - "strokeCardOnprimaryPressed": { - "no": 255, - "name": "stroke/card/onPrimary/pressed", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-card-onprimary-pressed" - }, - "strokeCardOnprimaryDisabled": { - "no": 256, - "name": "stroke/card/onPrimary/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-card-onprimary-disabled" - }, - "strokeCardOnsecondaryRest": { - "no": 257, - "name": "stroke/card/onSecondary/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Card/Secondary"], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-card-onsecondary-rest" - }, - "strokeCardOnsecondaryHover": { - "no": 258, - "name": "stroke/card/onSecondary/hover", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-card-onsecondary-hover" - }, - "strokeCardOnsecondaryPressed": { - "no": 259, - "name": "stroke/card/onSecondary/pressed", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-card-onsecondary-pressed" - }, - "strokeCardOnsecondaryDisabled": { - "no": 260, - "name": "stroke/card/onSecondary/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Interactive/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-card-onsecondary-disabled" - }, - "strokeWindowActive": { - "no": 261, - "name": "stroke/window/active", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-window-active" - }, - "strokeWindowInactive": { - "no": 262, - "name": "stroke/window/inactive", - "fst_reference": "stroke/window/active", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-stroke-window-inactive" - }, - "backgroundWindowPrimarySolid": { - "no": 263, - "name": "background/window/primary/(solid)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-primary-solid" - }, - "backgroundWindowPrimaryColorblend": { - "no": 264, - "name": "background/window/primary/(colorBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-primary-colorblend" - }, - "backgroundWindowPrimaryLumblend": { - "no": 265, - "name": "background/window/primary/(lumBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-primary-lumblend" - }, - "backgroundWindowSecondarySolid": { - "no": 266, - "name": "background/window/secondary/(solid)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-secondary-solid" - }, - "backgroundWindowSecondaryColorblend": { - "no": 267, - "name": "background/window/secondary/(colorBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-secondary-colorblend" - }, - "backgroundWindowSecondaryLumblend": { - "no": 268, - "name": "background/window/secondary/(lumBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-secondary-lumblend" - }, - "backgroundWindowTabbandColorblend": { - "no": 269, - "name": "background/window/tabBand/(colorBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-tabband-colorblend" - }, - "backgroundWindowTabbandLumblend": { - "no": 270, - "name": "background/window/tabBand/(lumBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-tabband-lumblend" - }, - "backgroundWindowTabbandSolid": { - "no": 271, - "name": "background/window/tabBand/(solid)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-window-tabband-solid" - }, - "backgroundWebpagePrimary": { - "no": 272, - "name": "background/webPage/primary", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-webpage-primary" - }, - "backgroundWebpageSecondary": { - "no": 273, - "name": "background/webPage/secondary", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-webpage-secondary" - }, - "backgroundLayerPrimarySolid": { - "no": 274, - "name": "background/layer/primary(solid)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-background-layer-primarysolid" - }, - "backgroundLayerPrimaryStop1": { - "no": 275, - "name": "background/layer/primary(stop1)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-layer-primarystop1" - }, - "backgroundLayerPrimaryStop2": { - "no": 276, - "name": "background/layer/primary(stop2)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-layer-primarystop2" - }, - "backgroundLayerPrimaryStop3": { - "no": 277, - "name": "background/layer/primary(stop3)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-layer-primarystop3" - }, - "backgroundLayerSecondary": { - "no": 278, - "name": "background/layer/secondary", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/2/Rest", - "exceptions": [], - "cssName": "--smtc-background-layer-secondary" - }, - "backgroundLayerTertiary": { - "no": 279, - "name": "background/layer/tertiary", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/3/Rest", - "exceptions": [], - "cssName": "--smtc-background-layer-tertiary" - }, - "backgroundCardOnprimaryDefaultRest": { - "no": 280, - "name": "background/card/onPrimary/default/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Card/Primary"], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-default-rest" - }, - "backgroundCardOnprimaryAltRest": { - "no": 281, - "name": "background/card/onPrimary/alt/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Card/Secondary"], - "contrast": "", - "fallback": "background/card/onPrimary/default/rest", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-alt-rest" - }, - "backgroundCardOnprimaryAltHover": { - "no": 282, - "name": "background/card/onPrimary/alt/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/hover", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-alt-hover" - }, - "backgroundCardOnprimaryAltPressed": { - "no": 283, - "name": "background/card/onPrimary/alt/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/pressed", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-alt-pressed" - }, - "backgroundCardOnprimaryAltDisabled": { - "no": 284, - "name": "background/card/onPrimary/alt/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/pressed", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-alt-disabled" - }, - "backgroundCardOnprimaryDefaultHover": { - "no": 285, - "name": "background/card/onPrimary/default/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Hover", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-default-hover" - }, - "backgroundCardOnprimaryDefaultPressed": { - "no": 286, - "name": "background/card/onPrimary/default/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Pressed", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-default-pressed" - }, - "backgroundCardOnprimaryDefaultDisabled": { - "no": 287, - "name": "background/card/onPrimary/default/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-default-disabled" - }, - "backgroundCardOnprimaryDefaultSelected": { - "no": 288, - "name": "background/card/onPrimary/default/selected", - "fst_reference": "background/card/onPrimary/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Selected", - "exceptions": [], - "cssName": "--smtc-background-card-onprimary-default-selected" - }, - "backgroundFlyoutSolid": { - "no": 289, - "name": "background/flyout/(solid)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-flyout-solid" - }, - "backgroundCtrlBrandRest": { - "no": 290, - "name": "background/ctrl/brand/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog", "Footer", "Inline drawer", "Overlay drawer", "Tooltip"], - "contrast": "", - "fallback": "Brand/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-brand-rest" - }, - "backgroundCtrlBrandHover": { - "no": 291, - "name": "background/ctrl/brand/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/1/Hover", - "exceptions": [], - "cssName": "--smtc-background-ctrl-brand-hover" - }, - "backgroundCtrlBrandPressed": { - "no": 292, - "name": "background/ctrl/brand/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/1/Selected", - "exceptions": [], - "cssName": "--smtc-background-ctrl-brand-pressed" - }, - "backgroundCtrlBrandDisabled": { - "no": 293, - "name": "background/ctrl/brand/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-background-ctrl-brand-disabled" - }, - "backgroundCtrlActivebrandRest": { - "no": 294, - "name": "background/ctrl/activeBrand/rest", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/ctrl/brand/rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-activebrand-rest" - }, - "backgroundCtrlActivebrandHover": { - "no": 295, - "name": "background/ctrl/activeBrand/hover", - "fst_reference": "background/ctrl/brand/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/ctrl/brand/hover", - "exceptions": [], - "cssName": "--smtc-background-ctrl-activebrand-hover" - }, - "backgroundCtrlActivebrandPressed": { - "no": 296, - "name": "background/ctrl/activeBrand/pressed", - "fst_reference": "background/ctrl/brand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/ctrl/brand/pressed", - "exceptions": [], - "cssName": "--smtc-background-ctrl-activebrand-pressed" - }, - "backgroundCtrlActivebrandDisabled": { - "no": 297, - "name": "background/ctrl/activeBrand/disabled", - "fst_reference": "background/ctrl/brand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [" Switch", " Radio", " Checkbox"], - "contrast": "", - "fallback": "background/ctrl/brand/disabled", - "exceptions": [], - "cssName": "--smtc-background-ctrl-activebrand-disabled" - }, - "backgroundCtrlNeutralRest": { - "no": 298, - "name": "background/ctrl/neutral/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog", "Footer", "Consent Dialog/footer", "Inline drawer", "Overlay drawer", "MessageBar"], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-neutral-rest" - }, - "backgroundCtrlNeutralHover": { - "no": 299, - "name": "background/ctrl/neutral/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Hover", - "exceptions": [], - "cssName": "--smtc-background-ctrl-neutral-hover" - }, - "backgroundCtrlNeutralPressed": { - "no": 300, - "name": "background/ctrl/neutral/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Pressed", - "exceptions": [], - "cssName": "--smtc-background-ctrl-neutral-pressed" - }, - "backgroundCtrlNeutralDisabled": { - "no": 301, - "name": "background/ctrl/neutral/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Progress Bar"], - "contrast": "", - "fallback": "Neutral/Background/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-neutral-disabled" - }, - "backgroundCtrlOutlineRest": { - "no": 302, - "name": "background/ctrl/outline/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-outline-rest" - }, - "backgroundCtrlOutlineHover": { - "no": 303, - "name": "background/ctrl/outline/hover", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Hover", - "exceptions": [], - "cssName": "--smtc-background-ctrl-outline-hover" - }, - "backgroundCtrlOutlinePressed": { - "no": 304, - "name": "background/ctrl/outline/pressed", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Pressed", - "exceptions": [], - "cssName": "--smtc-background-ctrl-outline-pressed" - }, - "backgroundCtrlOutlineDisabled": { - "no": 305, - "name": "background/ctrl/outline/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Lite Filter Button"], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-outline-disabled" - }, - "backgroundCtrlSubtleRest": { - "no": 306, - "name": "background/ctrl/subtle/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [ - "Dialog", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Editable spin button", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "Neutral/Background/Subtle/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-subtle-rest" - }, - "backgroundCtrlShapesafeActivebrandRest": { - "no": 307, - "name": "background/ctrl/shapeSafe/activeBrand/rest", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Stroke/Compound/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-shapesafe-activebrand-rest" - }, - "backgroundCtrlShapesafeActivebrandDisabled": { - "no": 308, - "name": "background/ctrl/shapeSafe/activeBrand/disabled", - "fst_reference": "background/ctrl/brand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-shapesafe-activebrand-disabled" - }, - "backgroundCtrlShapesafeNeutralRest": { - "no": 309, - "name": "background/ctrl/shapeSafe/neutral/rest", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Rating"], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Hover", - "exceptions": [], - "cssName": "--smtc-background-ctrl-shapesafe-neutral-rest" - }, - "backgroundCtrlShapesafeNeutralHover": { - "no": 310, - "name": "background/ctrl/shapeSafe/neutral/hover", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Hover", - "exceptions": [], - "cssName": "--smtc-background-ctrl-shapesafe-neutral-hover" - }, - "backgroundCtrlShapesafeNeutralPressed": { - "no": 311, - "name": "background/ctrl/shapeSafe/neutral/pressed", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Pressed", - "exceptions": [], - "cssName": "--smtc-background-ctrl-shapesafe-neutral-pressed" - }, - "backgroundCtrlShapesafeNeutralDisabled": { - "no": 312, - "name": "background/ctrl/shapeSafe/neutral/disabled", - "fst_reference": "foreground/ctrl/neutral/secondary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-shapesafe-neutral-disabled" - }, - "backgroundCtrlSubtleHover": { - "no": 313, - "name": "background/ctrl/subtle/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Subtle/Hover", - "exceptions": [], - "cssName": "--smtc-background-ctrl-subtle-hover" - }, - "backgroundCtrlSubtlePressed": { - "no": 314, - "name": "background/ctrl/subtle/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Subtle/Pressed", - "exceptions": [], - "cssName": "--smtc-background-ctrl-subtle-pressed" - }, - "backgroundCtrlSubtleDisabled": { - "no": 315, - "name": "background/ctrl/subtle/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-subtle-disabled" - }, - "backgroundCtrlSubtleHoversplit": { - "no": 316, - "name": "background/ctrl/subtle/hoverSplit", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-background-ctrl-subtle-hoversplit" - }, - "backgroundFlyoutLumblend": { - "no": 317, - "name": "background/flyout/(lumBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-background-flyout-lumblend" - }, - "backgroundFlyoutColorblend": { - "no": 318, - "name": "background/flyout/(colorBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-background-flyout-colorblend" - }, - "cornerZero": { - "no": 319, - "name": "corner/zero", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "None", - "exceptions": [], - "cssName": "--smtc-corner-zero" - }, - "cornerBezel": { - "no": 320, - "name": "corner/bezel", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-bezel" - }, - "cornerWindowDefault": { - "no": 321, - "name": "corner/window/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-window-default" - }, - "cornerFlyoutRest": { - "no": 322, - "name": "corner/flyout/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-corner-flyout-rest" - }, - "cornerFlyoutHover": { - "no": 323, - "name": "corner/flyout/hover", - "fst_reference": "corner/flyout/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-corner-flyout-hover" - }, - "cornerFlyoutPressed": { - "no": 324, - "name": "corner/flyout/pressed", - "fst_reference": "corner/flyout/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-corner-flyout-pressed" - }, - "cornerLayerDefault": { - "no": 325, - "name": "corner/layer/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-layer-default" - }, - "cornerLayerIntersection": { - "no": 326, - "name": "corner/layer/intersection", - "fst_reference": "corner/zero", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-layer-intersection" - }, - "cornerCardRest": { - "no": 327, - "name": "corner/card/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-card-rest" - }, - "cornerCardHover": { - "no": 328, - "name": "corner/card/hover", - "fst_reference": "corner/card/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-card-hover" - }, - "cornerCardPressed": { - "no": 329, - "name": "corner/card/pressed", - "fst_reference": "corner/card/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-card-pressed" - }, - "cornerToolbarDefault": { - "no": 330, - "name": "corner/toolbar/default", - "fst_reference": "corner/card/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-toolbar-default" - }, - "cornerImageOnpage": { - "no": 331, - "name": "corner/image/onPage", - "fst_reference": "corner/card/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-image-onpage" - }, - "cornerCtrlRest": { - "no": 332, - "name": "corner/ctrl/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area", - "Inline link", - "Page link", - "Title bar", - "Tooltip", - "MessageBar" - ], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-rest" - }, - "cornerCtrlHover": { - "no": 333, - "name": "corner/ctrl/hover", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-hover" - }, - "cornerCtrlPressed": { - "no": 334, - "name": "corner/ctrl/pressed", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-pressed" - }, - "cornerCtrlSmRest": { - "no": 335, - "name": "corner/ctrl-sm/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer", "Editable dropdown", "Editable spin button"], - "contrast": "", - "fallback": "Small", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-sm-rest" - }, - "cornerCtrlSmHover": { - "no": 336, - "name": "corner/ctrl-sm/hover", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Small", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-sm-hover" - }, - "cornerCtrlSmPressed": { - "no": 337, - "name": "corner/ctrl-sm/pressed", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Small", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-sm-pressed" - }, - "cornerCtrlLgRest": { - "no": 338, - "name": "corner/ctrl-lg/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-lg-rest" - }, - "cornerCtrlLgHover": { - "no": 339, - "name": "corner/ctrl-lg/hover", - "fst_reference": "corner/ctrl-lg/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-lg-hover" - }, - "cornerCtrlLgPressed": { - "no": 340, - "name": "corner/ctrl-lg/pressed", - "fst_reference": "corner/ctrl-lg/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-ctrl-lg-pressed" - }, - "cornerImageIncard": { - "no": 341, - "name": "corner/image/inCard", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Inline drawer", "Overlay drawer", "Image"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-image-incard" - }, - "foregroundContentNeutralPrimary": { - "no": 342, - "name": "foreground/content/neutral/primary", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [" Radio", " Checkbox", "Dialog", "Inline drawer", "Overlay drawer", "Field", "Label", "Spinner"], - "contrast": "", - "fallback": "Neutral/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-content-neutral-primary" - }, - "foregroundContentNeutralSecondary": { - "no": 343, - "name": "foreground/content/neutral/secondary", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "Neutral/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-content-neutral-secondary" - }, - "foregroundContentBrandPrimary": { - "no": 344, - "name": "foreground/content/brand/primary", - "fst_reference": "foreground/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Foreground/Link/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-content-brand-primary" - }, - "foregroundCtrlNeutralPrimaryRest": { - "no": 345, - "name": "foreground/ctrl/neutral/primary/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Rating", - "MessageBar" - ], - "contrast": "", - "fallback": "Neutral/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-neutral-primary-rest" - }, - "foregroundCtrlNeutralPrimaryHover": { - "no": 346, - "name": "foreground/ctrl/neutral/primary/hover", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/1/Hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-neutral-primary-hover" - }, - "foregroundCtrlNeutralPrimaryPressed": { - "no": 347, - "name": "foreground/ctrl/neutral/primary/pressed", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/1/Pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-neutral-primary-pressed" - }, - "foregroundCtrlNeutralPrimaryDisabled": { - "no": 348, - "name": "foreground/ctrl/neutral/primary/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-neutral-primary-disabled" - }, - "foregroundCtrlNeutralSecondaryRest": { - "no": 349, - "name": "foreground/ctrl/neutral/secondary/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Text input box", "Editable dropdown", "Editable spin button", "Text area", "Field"], - "contrast": "", - "fallback": "Neutral/Foreground/4/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-neutral-secondary-rest" - }, - "foregroundCtrlNeutralSecondaryHover": { - "no": 350, - "name": "foreground/ctrl/neutral/secondary/hover", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/4/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-neutral-secondary-hover" - }, - "foregroundCtrlNeutralSecondaryPressed": { - "no": 351, - "name": "foreground/ctrl/neutral/secondary/pressed", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/4/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-neutral-secondary-pressed" - }, - "foregroundCtrlNeutralSecondaryDisabled": { - "no": 352, - "name": "foreground/ctrl/neutral/secondary/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Search box", "Password input box"], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-neutral-secondary-disabled" - }, - "foregroundCtrlIconOnneutralRest": { - "no": 353, - "name": "foreground/ctrl/icon/onNeutral/rest", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Editable dropdown", - "Editable spin button", - "MessageBar" - ], - "contrast": "", - "fallback": "Neutral/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onneutral-rest" - }, - "foregroundCtrlIconOnneutralHover": { - "no": 354, - "name": "foreground/ctrl/icon/onNeutral/hover", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onneutral-hover" - }, - "foregroundCtrlIconOnneutralPressed": { - "no": 355, - "name": "foreground/ctrl/icon/onNeutral/pressed", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onneutral-pressed" - }, - "foregroundCtrlIconOnneutralDisabled": { - "no": 356, - "name": "foreground/ctrl/icon/onNeutral/disabled", - "fst_reference": "foreground/ctrl/neutral/primary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Search box"], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onneutral-disabled" - }, - "foregroundCtrlIconOnoutlineRest": { - "no": 357, - "name": "foreground/ctrl/icon/onOutline/rest", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "Neutral/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onoutline-rest" - }, - "foregroundCtrlIconOnoutlineHover": { - "no": 358, - "name": "foreground/ctrl/icon/onOutline/hover", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onoutline-hover" - }, - "foregroundCtrlIconOnoutlinePressed": { - "no": 359, - "name": "foreground/ctrl/icon/onOutline/pressed", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onoutline-pressed" - }, - "foregroundCtrlIconOnoutlineDisabled": { - "no": 360, - "name": "foreground/ctrl/icon/onOutline/disabled", - "fst_reference": "foreground/ctrl/neutral/primary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite Filter Button"], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onoutline-disabled" - }, - "foregroundCtrlIconOnsubtleRest": { - "no": 361, - "name": "foreground/ctrl/icon/onSubtle/rest", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog", "Inline drawer", "Overlay drawer", "Title bar", "MessageBar"], - "contrast": "", - "fallback": "Neutral/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onsubtle-rest" - }, - "foregroundCtrlIconOnsubtleHover": { - "no": 362, - "name": "foreground/ctrl/icon/onSubtle/hover", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Brand/Hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onsubtle-hover" - }, - "foregroundCtrlIconOnsubtlePressed": { - "no": 363, - "name": "foreground/ctrl/icon/onSubtle/pressed", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Brand/Pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onsubtle-pressed" - }, - "foregroundCtrlIconOnsubtleDisabled": { - "no": 364, - "name": "foreground/ctrl/icon/onSubtle/disabled", - "fst_reference": "foreground/ctrl/neutral/primary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-icon-onsubtle-disabled" - }, - "foregroundCtrlBrandRest": { - "no": 365, - "name": "foreground/ctrl/brand/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["MessageBar"], - "contrast": "", - "fallback": "Neutral/Foreground/2/Brand/Selected", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-brand-rest" - }, - "foregroundCtrlBrandHover": { - "no": 366, - "name": "foreground/ctrl/brand/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Brand/Hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-brand-hover" - }, - "foregroundCtrlBrandPressed": { - "no": 367, - "name": "foreground/ctrl/brand/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Brand/Pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-brand-pressed" - }, - "foregroundCtrlBrandDisabled": { - "no": 368, - "name": "foreground/ctrl/brand/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-brand-disabled" - }, - "foregroundCtrlOnbrandRest": { - "no": 369, - "name": "foreground/ctrl/onBrand/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog", "Footer", "Inline drawer", "Overlay drawer", "Tooltip"], - "contrast": "", - "fallback": "Neutral/Foreground/OnBrand/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onbrand-rest" - }, - "foregroundCtrlOnbrandHover": { - "no": 370, - "name": "foreground/ctrl/onBrand/hover", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/OnBrand/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onbrand-hover" - }, - "foregroundCtrlOnbrandPressed": { - "no": 371, - "name": "foreground/ctrl/onBrand/pressed", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/OnBrand/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onbrand-pressed" - }, - "foregroundCtrlOnbrandDisabled": { - "no": 372, - "name": "foreground/ctrl/onBrand/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onbrand-disabled" - }, - "foregroundCtrlActivebrandRest": { - "no": 373, - "name": "foreground/ctrl/activeBrand/rest", - "fst_reference": "foreground/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/brand/rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-activebrand-rest" - }, - "foregroundCtrlActivebrandHover": { - "no": 374, - "name": "foreground/ctrl/activeBrand/hover", - "fst_reference": "foreground/ctrl/brand/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/brand/hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-activebrand-hover" - }, - "foregroundCtrlActivebrandPressed": { - "no": 375, - "name": "foreground/ctrl/activeBrand/pressed", - "fst_reference": "foreground/ctrl/brand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/brand/pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-activebrand-pressed" - }, - "foregroundCtrlActivebrandDisabled": { - "no": 376, - "name": "foreground/ctrl/activeBrand/disabled", - "fst_reference": "foreground/ctrl/brand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Split button", "Button"], - "contrast": "", - "fallback": "foreground/ctrl/brand/disabled", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-activebrand-disabled" - }, - "foregroundCtrlOnactivebrandRest": { - "no": 377, - "name": "foreground/ctrl/onActiveBrand/rest", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "foreground/ctrl/onBrand/rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onactivebrand-rest" - }, - "foregroundCtrlOnactivebrandHover": { - "no": 378, - "name": "foreground/ctrl/onActiveBrand/hover", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/onBrand/hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onactivebrand-hover" - }, - "foregroundCtrlOnactivebrandPressed": { - "no": 379, - "name": "foreground/ctrl/onActiveBrand/pressed", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/onBrand/pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onactivebrand-pressed" - }, - "foregroundCtrlOnactivebrandDisabled": { - "no": 380, - "name": "foreground/ctrl/onActiveBrand/disabled", - "fst_reference": "foreground/ctrl/onBrand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [" Switch", " Radio", " Checkbox"], - "contrast": "", - "fallback": "foreground/ctrl/onBrand/disabled", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onactivebrand-disabled" - }, - "foregroundCtrlOnoutlineRest": { - "no": 381, - "name": "foreground/ctrl/onOutline/rest", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "Neutral/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onoutline-rest" - }, - "foregroundCtrlOnoutlineHover": { - "no": 382, - "name": "foreground/ctrl/onOutline/hover", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/1/Hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onoutline-hover" - }, - "foregroundCtrlOnoutlinePressed": { - "no": 383, - "name": "foreground/ctrl/onOutline/pressed", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/1/Pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onoutline-pressed" - }, - "foregroundCtrlOnoutlineDisabled": { - "no": 384, - "name": "foreground/ctrl/onOutline/disabled", - "fst_reference": "foreground/ctrl/neutral/primary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite Filter Button"], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onoutline-disabled" - }, - "foregroundCtrlOnsubtleRest": { - "no": 385, - "name": "foreground/ctrl/onSubtle/rest", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog", "Inline drawer", "Overlay drawer", "Editable spin button", "Title bar", "MessageBar"], - "contrast": "", - "fallback": "Neutral/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onsubtle-rest" - }, - "foregroundCtrlOnsubtleHover": { - "no": 386, - "name": "foreground/ctrl/onSubtle/hover", - "fst_reference": "foreground/ctrl/neutral/primary/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onsubtle-hover" - }, - "foregroundCtrlOnsubtlePressed": { - "no": 387, - "name": "foreground/ctrl/onSubtle/pressed", - "fst_reference": "foreground/ctrl/neutral/primary/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onsubtle-pressed" - }, - "foregroundCtrlOnsubtleDisabled": { - "no": 388, - "name": "foreground/ctrl/onSubtle/disabled", - "fst_reference": "foreground/ctrl/neutral/primary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-onsubtle-disabled" - }, - "foregroundCtrlOntransparentRest": { - "no": 389, - "name": "foreground/ctrl/onTransparent/rest", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-ontransparent-rest" - }, - "foregroundCtrlOntransparentHover": { - "no": 390, - "name": "foreground/ctrl/onTransparent/hover", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Brand/Hover", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-ontransparent-hover" - }, - "foregroundCtrlOntransparentPressed": { - "no": 391, - "name": "foreground/ctrl/onTransparent/pressed", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Brand/Pressed", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-ontransparent-pressed" - }, - "foregroundCtrlOntransparentDisabled": { - "no": 392, - "name": "foreground/ctrl/onTransparent/disabled", - "fst_reference": "foreground/ctrl/neutral/primary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-ontransparent-disabled" - }, - "foregroundCtrlHintDefault": { - "no": 393, - "name": "foreground/ctrl/hint/default", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Rest", - "exceptions": [], - "cssName": "--smtc-foreground-ctrl-hint-default" - }, - "shadowCardRestKeyX": { - "no": 394, - "name": "shadow/card/rest/(key)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-rest-key-x" - }, - "shadowCardRestKeyY": { - "no": 395, - "name": "shadow/card/rest/(key)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-rest-key-y" - }, - "shadowCardRestKeyBlur": { - "no": 396, - "name": "shadow/card/rest/(key)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-rest-key-blur" - }, - "shadowCardRestKeyColor": { - "no": 397, - "name": "shadow/card/rest/(key)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Key", - "exceptions": [], - "cssName": "--smtc-shadow-card-rest-key-color" - }, - "shadowCardHoverKeyX": { - "no": 398, - "name": "shadow/card/hover/(key)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-hover-key-x" - }, - "shadowCardHoverKeyY": { - "no": 399, - "name": "shadow/card/hover/(key)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-hover-key-y" - }, - "shadowCardHoverKeyBlur": { - "no": 400, - "name": "shadow/card/hover/(key)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-hover-key-blur" - }, - "shadowCardHoverKeyColor": { - "no": 401, - "name": "shadow/card/hover/(key)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-hover-key-color" - }, - "shadowCardPressedKeyX": { - "no": 402, - "name": "shadow/card/pressed/(key)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-pressed-key-x" - }, - "shadowCardPressedKeyY": { - "no": 403, - "name": "shadow/card/pressed/(key)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-pressed-key-y" - }, - "shadowCardPressedKeyBlur": { - "no": 404, - "name": "shadow/card/pressed/(key)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-pressed-key-blur" - }, - "shadowCardPressedKeyColor": { - "no": 405, - "name": "shadow/card/pressed/(key)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-pressed-key-color" - }, - "shadowCardDisabledKeyX": { - "no": 406, - "name": "shadow/card/disabled/(key)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-disabled-key-x" - }, - "shadowCardDisabledKeyY": { - "no": 407, - "name": "shadow/card/disabled/(key)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-disabled-key-y" - }, - "shadowCardDisabledKeyBlur": { - "no": 408, - "name": "shadow/card/disabled/(key)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-disabled-key-blur" - }, - "shadowCardDisabledKeyColor": { - "no": 409, - "name": "shadow/card/disabled/(key)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-disabled-key-color" - }, - "shadowCardRestAmbientX": { - "no": 410, - "name": "shadow/card/rest/(ambient)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-rest-ambient-x" - }, - "shadowCardRestAmbientY": { - "no": 411, - "name": "shadow/card/rest/(ambient)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-rest-ambient-y" - }, - "shadowCardRestAmbientBlur": { - "no": 412, - "name": "shadow/card/rest/(ambient)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-card-rest-ambient-blur" - }, - "shadowCardRestAmbientColor": { - "no": 413, - "name": "shadow/card/rest/(ambient)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Ambient", - "exceptions": [], - "cssName": "--smtc-shadow-card-rest-ambient-color" - }, - "shadowFlyoutKeyX": { - "no": 414, - "name": "shadow/flyout/(key)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-flyout-key-x" - }, - "shadowFlyoutKeyY": { - "no": 415, - "name": "shadow/flyout/(key)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-flyout-key-y" - }, - "shadowFlyoutKeyBlur": { - "no": 416, - "name": "shadow/flyout/(key)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-flyout-key-blur" - }, - "shadowFlyoutKeyColor": { - "no": 417, - "name": "shadow/flyout/(key)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-flyout-key-color" - }, - "shadowFlyoutAmbientX": { - "no": 418, - "name": "shadow/flyout/(ambient)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-flyout-ambient-x" - }, - "shadowFlyoutAmbientY": { - "no": 419, - "name": "shadow/flyout/(ambient)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-flyout-ambient-y" - }, - "shadowFlyoutAmbientBlur": { - "no": 420, - "name": "shadow/flyout/(ambient)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-flyout-ambient-blur" - }, - "shadowFlyoutAmbientColor": { - "no": 421, - "name": "shadow/flyout/(ambient)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-flyout-ambient-color" - }, - "shadowCtrlOndragKeyY": { - "no": 422, - "name": "shadow/ctrl/onDrag/(key)/(y)", - "fst_reference": "shadow/flyout/(key)/(y)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-ctrl-ondrag-key-y" - }, - "shadowCtrlOndragKeyX": { - "no": 423, - "name": "shadow/ctrl/onDrag/(key)/(x)", - "fst_reference": "shadow/flyout/(key)/(x)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-ctrl-ondrag-key-x" - }, - "shadowCtrlOndragKeyBlur": { - "no": 424, - "name": "shadow/ctrl/onDrag/(key)/(blur)", - "fst_reference": "shadow/flyout/(key)/(blur)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-ctrl-ondrag-key-blur" - }, - "shadowCtrlOndragKeyColor": { - "no": 425, - "name": "shadow/ctrl/onDrag/(key)/(color)", - "fst_reference": "shadow/flyout/(key)/(color)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-ctrl-ondrag-key-color" - }, - "shadowCtrlOndragAmbientY": { - "no": 426, - "name": "shadow/ctrl/onDrag/(ambient)/(y)", - "fst_reference": "shadow/flyout/(ambient)/(y)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-ctrl-ondrag-ambient-y" - }, - "shadowCtrlOndragAmbientX": { - "no": 427, - "name": "shadow/ctrl/onDrag/(ambient)/(x)", - "fst_reference": "shadow/flyout/(ambient)/(x)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-ctrl-ondrag-ambient-x" - }, - "shadowCtrlOndragAmbientBlur": { - "no": 428, - "name": "shadow/ctrl/onDrag/(ambient)/(blur)", - "fst_reference": "shadow/flyout/(ambient)/(blur)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-ctrl-ondrag-ambient-blur" - }, - "shadowCtrlOndragAmbientColor": { - "no": 429, - "name": "shadow/ctrl/onDrag/(ambient)/(color)", - "fst_reference": "shadow/flyout/(ambient)/(color)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Card/Primary", "Card/Secondary", "Card/Tint (needed?)", "Card/Outline"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-ctrl-ondrag-ambient-color" - }, - "shadowLayerKeyX": { - "no": 430, - "name": "shadow/layer/(key)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-layer-key-x" - }, - "shadowToolbarKeyX": { - "no": 431, - "name": "shadow/toolbar/(key)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-toolbar-key-x" - }, - "shadowToolbarKeyY": { - "no": 432, - "name": "shadow/toolbar/(key)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-toolbar-key-y" - }, - "shadowToolbarKeyBlur": { - "no": 433, - "name": "shadow/toolbar/(key)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-toolbar-key-blur" - }, - "shadowToolbarKeyColor": { - "no": 434, - "name": "shadow/toolbar/(key)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Ambientlighter", - "exceptions": [], - "cssName": "--smtc-shadow-toolbar-key-color" - }, - "shadowToolbarAmbientX": { - "no": 435, - "name": "shadow/toolbar/(ambient)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-toolbar-ambient-x" - }, - "shadowToolbarAmbientY": { - "no": 436, - "name": "shadow/toolbar/(ambient)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-toolbar-ambient-y" - }, - "shadowToolbarAmbientBlur": { - "no": 437, - "name": "shadow/toolbar/(ambient)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-toolbar-ambient-blur" - }, - "shadowToolbarAmbientColor": { - "no": 438, - "name": "shadow/toolbar/(ambient)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-toolbar-ambient-color" - }, - "shadowLayerKeyY": { - "no": 439, - "name": "shadow/layer/(key)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-layer-key-y" - }, - "shadowLayerKeyBlur": { - "no": 440, - "name": "shadow/layer/(key)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-layer-key-blur" - }, - "shadowLayerKeyColor": { - "no": 441, - "name": "shadow/layer/(key)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-layer-key-color" - }, - "shadowLayerAmbientX": { - "no": 442, - "name": "shadow/layer/(ambient)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-layer-ambient-x" - }, - "shadowLayerAmbientY": { - "no": 443, - "name": "shadow/layer/(ambient)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-layer-ambient-y" - }, - "shadowLayerAmbientBlur": { - "no": 444, - "name": "shadow/layer/(ambient)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-layer-ambient-blur" - }, - "shadowLayerAmbientColor": { - "no": 445, - "name": "shadow/layer/(ambient)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-layer-ambient-color" - }, - "materialAcrylicDefaultSolid": { - "no": 446, - "name": "material/acrylic/default/(solid)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-material-acrylic-default-solid" - }, - "materialAcrylicDefaultColorblend": { - "no": 447, - "name": "material/acrylic/default/(colorBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-material-acrylic-default-colorblend" - }, - "materialAcrylicDefaultLumblend": { - "no": 448, - "name": "material/acrylic/default/(lumBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-material-acrylic-default-lumblend" - }, - "materialAcrylicBlur": { - "no": 449, - "name": "material/acrylic/blur", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Overlay drawer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-acrylic-blur" - }, - "materialMicaBlur": { - "no": 450, - "name": "material/mica/blur", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-mica-blur" - }, - "materialMicaDefaultSolid": { - "no": 451, - "name": "material/mica/default/(solid)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-mica-default-solid" - }, - "materialMicaDefaultColorblend": { - "no": 452, - "name": "material/mica/default/(colorBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-mica-default-colorblend" - }, - "materialMicaDefaultLumblend": { - "no": 453, - "name": "material/mica/default/(lumBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-mica-default-lumblend" - }, - "materialMicaDarkerSolid": { - "no": 454, - "name": "material/mica/darker/(solid)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-mica-darker-solid" - }, - "materialMicaDarkerColorblend": { - "no": 455, - "name": "material/mica/darker/(colorBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-mica-darker-colorblend" - }, - "materialMicaDarkerLumblend": { - "no": 456, - "name": "material/mica/darker/(lumBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-mica-darker-lumblend" - }, - "materialMicaThinSolid": { - "no": 457, - "name": "material/mica/thin/(solid)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-material-mica-thin-solid" - }, - "materialMicaThinColorblend": { - "no": 458, - "name": "material/mica/thin/(colorBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-material-mica-thin-colorblend" - }, - "materialMicaThinLumblend": { - "no": 459, - "name": "material/mica/thin/(lumBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-material-mica-thin-lumblend" - }, - "ctrlTooltipShadowKeyX": { - "no": 460, - "name": "CTRL/tooltip/shadow/(key)/(x)", - "fst_reference": "CTRL/fab/shadow/rest/(key)/(x)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Tooltip"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-shadow-key-x" - }, - "ctrlTooltipShadowKeyY": { - "no": 461, - "name": "CTRL/tooltip/shadow/(key)/(y)", - "fst_reference": "CTRL/fab/shadow/rest/(key)/(y)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Tooltip"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-shadow-key-y" - }, - "ctrlTooltipShadowKeyBlur": { - "no": 462, - "name": "CTRL/tooltip/shadow/(key)/(blur)", - "fst_reference": "CTRL/fab/shadow/rest/(key)/(blur)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Tooltip"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-shadow-key-blur" - }, - "ctrlTooltipShadowKeyColor": { - "no": 463, - "name": "CTRL/tooltip/shadow/(key)/(color)", - "fst_reference": "CTRL/fab/shadow/rest/(key)/(color)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Tooltip"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-shadow-key-color" - }, - "ctrlTooltipShadowAmbientX": { - "no": 464, - "name": "CTRL/tooltip/shadow/(ambient)/(x)", - "fst_reference": "CTRL/fab/shadow/rest/(ambient)/(x)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Tooltip"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-shadow-ambient-x" - }, - "ctrlTooltipShadowAmbientY": { - "no": 465, - "name": "CTRL/tooltip/shadow/(ambient)/(y)", - "fst_reference": "CTRL/fab/shadow/rest/(ambient)/(y)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Tooltip"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-shadow-ambient-y" - }, - "ctrlTooltipShadowAmbientBlur": { - "no": 466, - "name": "CTRL/tooltip/shadow/(ambient)/(blur)", - "fst_reference": "CTRL/fab/shadow/rest/(ambient)/(blur)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Tooltip"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-shadow-ambient-blur" - }, - "ctrlTooltipShadowAmbientColor": { - "no": 467, - "name": "CTRL/tooltip/shadow/(ambient)/(color)", - "fst_reference": "CTRL/fab/shadow/rest/(ambient)/(color)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Tooltip"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-shadow-ambient-color" - }, - "iconthemeCtrlDefaultRest": { - "no": 468, - "name": "iconTheme/ctrl/default/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "FAB", - "Split button", - "Button", - " Checkbox", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Text input box", - "Search box", - "Editable dropdown", - "Editable spin button", - "Inline link", - "Page link", - "Lite Filter Button", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-default-rest" - }, - "iconthemeCtrlDefaultHover": { - "no": 469, - "name": "iconTheme/ctrl/default/hover", - "fst_reference": "iconTheme/ctrl/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-default-hover" - }, - "iconthemeCtrlDefaultPressed": { - "no": 470, - "name": "iconTheme/ctrl/default/pressed", - "fst_reference": "iconTheme/ctrl/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Inline link", "Page link"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-default-pressed" - }, - "iconthemeCtrlDefaultSelected": { - "no": 471, - "name": "iconTheme/ctrl/default/selected", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Split button", "Button", "Lite filter"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-default-selected" - }, - "iconthemeCtrlSubtleRest": { - "no": 472, - "name": "iconTheme/ctrl/subtle/rest", - "fst_reference": "iconTheme/ctrl/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-subtle-rest" - }, - "iconthemeCtrlSubtleHover": { - "no": 473, - "name": "iconTheme/ctrl/subtle/hover", - "fst_reference": "iconTheme/ctrl/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-subtle-hover" - }, - "iconthemeCtrlSubtlePressed": { - "no": 474, - "name": "iconTheme/ctrl/subtle/pressed", - "fst_reference": "iconTheme/ctrl/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-subtle-pressed" - }, - "iconthemeCtrlSubtleSelected": { - "no": 475, - "name": "iconTheme/ctrl/subtle/selected", - "fst_reference": "iconTheme/ctrl/default/selected", - "optional": true, - "nullable": false, - "description": "", - "components": ["Split button"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-subtle-selected" - }, - "iconthemeCtrlChevronDefault": { - "no": 476, - "name": "iconTheme/ctrl/chevron/default", - "fst_reference": "iconTheme/ctrl/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Button", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Editable spin button", - "Lite Filter Button", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-chevron-default" - }, - "iconthemeCtrlChevronSelected": { - "no": 477, - "name": "iconTheme/ctrl/chevron/selected", - "fst_reference": "iconTheme/ctrl/default/selected", - "optional": true, - "nullable": false, - "description": "", - "components": ["Split button", "Lite filter"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-icontheme-ctrl-chevron-selected" - }, - "ctrlAvatarSize": { - "no": 478, - "name": "CTRL/avatar/size", - "fst_reference": "size/ctrl/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Avatar"], - "contrast": "", - "fallback": "Size/Avatar/Size", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-size" - }, - "ctrlAvatarCornerItem": { - "no": 479, - "name": "CTRL/avatar/corner/item", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": ["Avatar"], - "contrast": "", - "fallback": "corner/circular", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-corner-item" - }, - "ctrlAvatarBackground": { - "no": 480, - "name": "CTRL/avatar/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Avatar"], - "contrast": "", - "fallback": "Neutral/Background/6/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-background" - }, - "ctrlAvatarForeground": { - "no": 481, - "name": "CTRL/avatar/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Avatar"], - "contrast": "", - "fallback": "Neutral/Foreground/3/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-foreground" - }, - "ctrlAvatarIconSize": { - "no": 482, - "name": "CTRL/avatar/icon/size", - "fst_reference": "size/ctrl/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-icon-size" - }, - "ctrlAvatarPresencebadgeSize": { - "no": 483, - "name": "CTRL/avatar/presenceBadge/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Presence badge"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-presencebadge-size" - }, - "ctrlAvatarActiveringSize": { - "no": 484, - "name": "CTRL/avatar/activeRing/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-activering-size" - }, - "ctrlAvatarPresencebadgePaddingBottomrightoffset": { - "no": 485, - "name": "CTRL/avatar/presenceBadge/padding/bottomRightOffset", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-presencebadge-padding-bottomrightoffset" - }, - "ctrlAvatarCornerGroup": { - "no": 486, - "name": "CTRL/avatar/corner/group", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Avatar"], - "contrast": "", - "fallback": "Size/Avatar/Corner/Group", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-corner-group" - }, - "ctrlAvatarActiveringStrokewidth": { - "no": 487, - "name": "CTRL/avatar/activeRing/strokeWidth", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-activering-strokewidth" - }, - "ctrlAvatarPresencebadgeStrokewidth": { - "no": 488, - "name": "CTRL/avatar/presenceBadge/strokeWidth", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Presence badge"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-presencebadge-strokewidth" - }, - "ctrlAvatarTextFontsize": { - "no": 489, - "name": "CTRL/avatar/text/fontSize", - "fst_reference": "text/global/body3/fontSize", - "optional": true, - "nullable": false, - "description": "", - "components": ["Avatar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-text-fontsize" - }, - "ctrlAvatarTextLineheight": { - "no": 490, - "name": "CTRL/avatar/text/lineHeight", - "fst_reference": "text/global/body3/lineHeight", - "optional": true, - "nullable": false, - "description": "", - "components": ["Avatar"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-text-lineheight" - }, - "ctrlAvatarTextPaddingTopoffset": { - "no": 491, - "name": "CTRL/avatar/text/padding/topOffset", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-text-padding-topoffset" - }, - "ctrlAvatarActiveringStroke": { - "no": 492, - "name": "CTRL/avatar/activeRing/stroke", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Color/Avatar/Activering", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-activering-stroke" - }, - "ctrlAvatarShowcutout": { - "no": 493, - "name": "CTRL/avatar/showCutout", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-showcutout" - }, - "ctrlBadgeTextPaddingTop": { - "no": 494, - "name": "CTRL/badge/text/padding/top", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-text-padding-top" - }, - "ctrlBadgeTextPaddingBottom": { - "no": 495, - "name": "CTRL/badge/text/padding/bottom", - "fst_reference": "CTRL/badge/text/padding/top", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-text-padding-bottom" - }, - "ctrlBadgeSmTextPaddingTop": { - "no": 496, - "name": "CTRL/badge/sm/text/padding/top", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-sm-text-padding-top" - }, - "ctrlBadgeSmTextPaddingBottom": { - "no": 497, - "name": "CTRL/badge/sm/text/padding/bottom", - "fst_reference": "CTRL/badge/sm/text/padding/top", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-sm-text-padding-bottom" - }, - "ctrlBadgeLgTextPaddingTop": { - "no": 498, - "name": "CTRL/badge/lg/text/padding/top", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-lg-text-padding-top" - }, - "ctrlBadgeLgTextPaddingBottom": { - "no": 499, - "name": "CTRL/badge/lg/text/padding/bottom", - "fst_reference": "CTRL/badge/lg/text/padding/top", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-lg-text-padding-bottom" - }, - "ctrlBadgeIconTheme": { - "no": 500, - "name": "CTRL/badge/icon/theme", - "fst_reference": "iconTheme/ctrl/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-icon-theme" - }, - "ctrlBadgeBeaconSize": { - "no": 501, - "name": "CTRL/badge/beacon/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Badge"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-beacon-size" - }, - "ctrlBadgeSize": { - "no": 502, - "name": "CTRL/badge/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-size" - }, - "ctrlBadgeCorner": { - "no": 503, - "name": "CTRL/badge/corner", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-corner" - }, - "ctrlBadgeIconSizeFigmaonly": { - "no": 504, - "name": "CTRL/badge/icon/size(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-icon-sizefigmaonly" - }, - "ctrlBadgeGap": { - "no": 505, - "name": "CTRL/badge/gap", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-gap" - }, - "ctrlBadgeIconSize": { - "no": 506, - "name": "CTRL/badge/icon/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-icon-size" - }, - "ctrlBadgePadding": { - "no": 507, - "name": "CTRL/badge/padding", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-padding" - }, - "ctrlBadgeSmSize": { - "no": 508, - "name": "CTRL/badge/sm/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-sm-size" - }, - "ctrlBadgeSmCorner": { - "no": 509, - "name": "CTRL/badge/sm/corner", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-sm-corner" - }, - "ctrlBadgeSmIconSizeFigmaonly": { - "no": 510, - "name": "CTRL/badge/sm/icon/size(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-sm-icon-sizefigmaonly" - }, - "ctrlBadgeSmIconSize": { - "no": 511, - "name": "CTRL/badge/sm/icon/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-sm-icon-size" - }, - "ctrlBadgeSmPadding": { - "no": 512, - "name": "CTRL/badge/sm/padding", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-sm-padding" - }, - "ctrlBadgeLgSize": { - "no": 513, - "name": "CTRL/badge/lg/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-lg-size" - }, - "ctrlBadgeLgIconSizeFigmaonly": { - "no": 514, - "name": "CTRL/badge/lg/icon/size(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-lg-icon-sizefigmaonly" - }, - "ctrlBadgeLgIconSize": { - "no": 515, - "name": "CTRL/badge/lg/icon/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-lg-icon-size" - }, - "ctrlBadgeLgCorner": { - "no": 516, - "name": "CTRL/badge/lg/corner", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-lg-corner" - }, - "ctrlBadgeLgPadding": { - "no": 517, - "name": "CTRL/badge/lg/padding", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-badge-lg-padding" - }, - "ctrlChoicePaddingHorizontal": { - "no": 518, - "name": "CTRL/choice/padding/horizontal", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Radio", " Checkbox"], - "contrast": "", - "fallback": "Horizontal/S", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-padding-horizontal" - }, - "ctrlChoicePaddingVertical": { - "no": 519, - "name": "CTRL/choice/padding/vertical", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Radio", " Checkbox"], - "contrast": "", - "fallback": "Vertical/None", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-padding-vertical" - }, - "ctrlChoiceBaseSize": { - "no": 520, - "name": "CTRL/choice/base/size", - "fst_reference": "size/ctrl/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [" Radio", " Checkbox"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-size" - }, - "ctrlChoiceIconTheme": { - "no": 521, - "name": "CTRL/choice/icon/theme", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Checkbox"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-icon-theme" - }, - "ctrlChoiceBaseBackgroundRest": { - "no": 522, - "name": "CTRL/choice/base/background/rest", - "fst_reference": "background/ctrl/outline/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-background-rest" - }, - "ctrlChoiceBaseBackgroundHover": { - "no": 523, - "name": "CTRL/choice/base/background/hover", - "fst_reference": "background/ctrl/outline/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-background-hover" - }, - "ctrlChoiceBaseBackgroundPressed": { - "no": 524, - "name": "CTRL/choice/base/background/pressed", - "fst_reference": "background/ctrl/outline/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-background-pressed" - }, - "ctrlChoiceBaseBackgroundDisabled": { - "no": 525, - "name": "CTRL/choice/base/background/disabled", - "fst_reference": "background/ctrl/outline/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-background-disabled" - }, - "ctrlChoiceBaseStrokeRest": { - "no": 526, - "name": "CTRL/choice/base/stroke/rest", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-stroke-rest" - }, - "ctrlChoiceBaseStrokeHover": { - "no": 527, - "name": "CTRL/choice/base/stroke/hover", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-stroke-hover" - }, - "ctrlChoiceBaseStrokePressed": { - "no": 528, - "name": "CTRL/choice/base/stroke/pressed", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-stroke-pressed" - }, - "ctrlChoiceBaseStrokeDisabled": { - "no": 529, - "name": "CTRL/choice/base/stroke/disabled", - "fst_reference": "foreground/ctrl/neutral/secondary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-base-stroke-disabled" - }, - "ctrlChoiceCheckboxIconSize": { - "no": 530, - "name": "CTRL/choice/checkbox/icon/size", - "fst_reference": "size/ctrl/iconSecondary", - "optional": true, - "nullable": false, - "description": "", - "components": [" Checkbox"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-checkbox-icon-size" - }, - "ctrlChoiceCheckboxCorner": { - "no": 531, - "name": "CTRL/choice/checkbox/corner", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Checkbox"], - "contrast": "", - "fallback": "Small", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-checkbox-corner" - }, - "ctrlChoiceCheckboxIndeterminateCorner": { - "no": 532, - "name": "CTRL/choice/checkbox/indeterminate/corner", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-checkbox-indeterminate-corner" - }, - "ctrlChoiceCheckboxIndeterminateHeight": { - "no": 533, - "name": "CTRL/choice/checkbox/indeterminate/height", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-checkbox-indeterminate-height" - }, - "ctrlChoiceCheckboxIndeterminateWidth": { - "no": 534, - "name": "CTRL/choice/checkbox/indeterminate/width", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-checkbox-indeterminate-width" - }, - "ctrlChoiceRadioCorner": { - "no": 535, - "name": "CTRL/choice/radio/corner", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "corner/circular", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-radio-corner" - }, - "ctrlChoiceSwitchCorner": { - "no": 536, - "name": "CTRL/choice/switch/corner", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "corner/circular", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-corner" - }, - "ctrlChoiceRadioDotSizeRest": { - "no": 537, - "name": "CTRL/choice/radio/dot/size/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Radio"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-radio-dot-size-rest" - }, - "ctrlChoiceRadioDotSizeHover": { - "no": 538, - "name": "CTRL/choice/radio/dot/size/hover", - "fst_reference": "CTRL/choice/radio/dot/size/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-radio-dot-size-hover" - }, - "ctrlChoiceRadioDotSizePressed": { - "no": 539, - "name": "CTRL/choice/radio/dot/size/pressed", - "fst_reference": "CTRL/choice/radio/dot/size/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-radio-dot-size-pressed" - }, - "ctrlChoiceSwitchPaddingRest": { - "no": 540, - "name": "CTRL/choice/switch/padding/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Switch"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-padding-rest" - }, - "ctrlChoiceSwitchPaddingHover": { - "no": 541, - "name": "CTRL/choice/switch/padding/hover", - "fst_reference": "CTRL/choice/switch/padding/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-padding-hover" - }, - "ctrlChoiceSwitchPaddingPressed": { - "no": 542, - "name": "CTRL/choice/switch/padding/pressed", - "fst_reference": "CTRL/choice/switch/padding/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-padding-pressed" - }, - "ctrlChoiceSwitchHeight": { - "no": 543, - "name": "CTRL/choice/switch/height", - "fst_reference": "size/ctrl/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [" Switch"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-height" - }, - "ctrlChoiceSwitchWidth": { - "no": 544, - "name": "CTRL/choice/switch/width", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Switch"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-width" - }, - "ctrlChoiceSwitchThumbWidthRest": { - "no": 545, - "name": "CTRL/choice/switch/thumb/width/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [" Switch"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-width-rest" - }, - "ctrlChoiceSwitchThumbWidthHover": { - "no": 546, - "name": "CTRL/choice/switch/thumb/width/hover", - "fst_reference": "CTRL/choice/switch/thumb/width/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-width-hover" - }, - "ctrlChoiceSwitchThumbWidthPressed": { - "no": 547, - "name": "CTRL/choice/switch/thumb/width/pressed", - "fst_reference": "CTRL/choice/switch/thumb/width/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-width-pressed" - }, - "ctrlChoiceSwitchThumbShadowKeyX": { - "no": 548, - "name": "CTRL/choice/switch/thumb/shadow/(key)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/number", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-key-x" - }, - "ctrlChoiceSwitchThumbShadowKeyY": { - "no": 549, - "name": "CTRL/choice/switch/thumb/shadow/(key)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/number", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-key-y" - }, - "ctrlChoiceSwitchThumbShadowKeyBlur": { - "no": 550, - "name": "CTRL/choice/switch/thumb/shadow/(key)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/number", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-key-blur" - }, - "ctrlChoiceSwitchThumbShadowKeyColor": { - "no": 551, - "name": "CTRL/choice/switch/thumb/shadow/(key)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/color", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-key-color" - }, - "ctrlChoiceSwitchThumbShadowAmbientX": { - "no": 552, - "name": "CTRL/choice/switch/thumb/shadow/(ambient)/(x)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/number", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-ambient-x" - }, - "ctrlChoiceSwitchThumbShadowAmbientY": { - "no": 553, - "name": "CTRL/choice/switch/thumb/shadow/(ambient)/(y)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/number", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-ambient-y" - }, - "ctrlChoiceSwitchThumbShadowAmbientBlur": { - "no": 554, - "name": "CTRL/choice/switch/thumb/shadow/(ambient)/(blur)", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/number", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-ambient-blur" - }, - "ctrlChoiceSwitchThumbShadowAmbientColor": { - "no": 555, - "name": "CTRL/choice/switch/thumb/shadow/(ambient)/(color)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/color", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-switch-thumb-shadow-ambient-color" - }, - "ctrlChoiceSmBaseSize": { - "no": 556, - "name": "CTRL/choice/sm/base/size", - "fst_reference": "size/ctrl-sm/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-base-size" - }, - "ctrlChoiceSmCheckboxCorner": { - "no": 557, - "name": "CTRL/choice/sm/checkbox/corner", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Small", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-checkbox-corner" - }, - "ctrlChoiceSmCheckboxIconSize": { - "no": 558, - "name": "CTRL/choice/sm/checkbox/icon/size", - "fst_reference": "size/ctrl/iconSecondary", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-checkbox-icon-size" - }, - "ctrlChoiceSmCheckboxIconSizeFigmaonly": { - "no": 559, - "name": "CTRL/choice/sm/checkbox/icon/size(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-checkbox-icon-sizefigmaonly" - }, - "ctrlChoiceSmRadioDotSize": { - "no": 560, - "name": "CTRL/choice/sm/radio/dot/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-radio-dot-size" - }, - "ctrlChoiceSmSwitchWidth": { - "no": 561, - "name": "CTRL/choice/sm/switch/width", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-switch-width" - }, - "ctrlChoiceSmSwitchHeight": { - "no": 562, - "name": "CTRL/choice/sm/switch/height", - "fst_reference": "size/ctrl-sm/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-switch-height" - }, - "ctrlChoiceSmSwitchThumbWidthRest": { - "no": 563, - "name": "CTRL/choice/sm/switch/thumb/width/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-switch-thumb-width-rest" - }, - "ctrlChoiceSmSwitchThumbWidthHover": { - "no": 564, - "name": "CTRL/choice/sm/switch/thumb/width/hover", - "fst_reference": "CTRL/choice/sm/switch/thumb/width/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-switch-thumb-width-hover" - }, - "ctrlChoiceSmSwitchThumbWidthPressed": { - "no": 565, - "name": "CTRL/choice/sm/switch/thumb/width/pressed", - "fst_reference": "CTRL/choice/sm/switch/thumb/width/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-sm-switch-thumb-width-pressed" - }, - "ctrlChoiceLgBaseSize": { - "no": 566, - "name": "CTRL/choice/lg/base/size", - "fst_reference": "size/ctrl-lg/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-base-size" - }, - "ctrlChoiceLgCheckboxCorner": { - "no": 567, - "name": "CTRL/choice/lg/checkbox/corner", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Small", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-checkbox-corner" - }, - "ctrlChoiceLgCheckboxIconSize": { - "no": 568, - "name": "CTRL/choice/lg/checkbox/icon/size", - "fst_reference": "size/ctrl/iconSecondary", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-checkbox-icon-size" - }, - "ctrlChoiceLgCheckboxIconSizeFigmaonly": { - "no": 569, - "name": "CTRL/choice/lg/checkbox/icon/size(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-checkbox-icon-sizefigmaonly" - }, - "ctrlChoiceLgRadioDotSizeRest": { - "no": 570, - "name": "CTRL/choice/lg/radio/dot/size/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-radio-dot-size-rest" - }, - "ctrlChoiceLgRadioDotSizeHover": { - "no": 571, - "name": "CTRL/choice/lg/radio/dot/size/hover", - "fst_reference": "CTRL/choice/lg/radio/dot/size/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-radio-dot-size-hover" - }, - "ctrlChoiceLgRadioDotSizePressed": { - "no": 572, - "name": "CTRL/choice/lg/radio/dot/size/pressed", - "fst_reference": "CTRL/choice/lg/radio/dot/size/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-radio-dot-size-pressed" - }, - "ctrlChoiceLgSwitchWidth": { - "no": 573, - "name": "CTRL/choice/lg/switch/width", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-switch-width" - }, - "ctrlChoiceLgSwitchHeight": { - "no": 574, - "name": "CTRL/choice/lg/switch/height", - "fst_reference": "size/ctrl-lg/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-switch-height" - }, - "ctrlChoiceLgSwitchThumbWidthRest": { - "no": 575, - "name": "CTRL/choice/lg/switch/thumb/width/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-switch-thumb-width-rest" - }, - "ctrlChoiceLgSwitchThumbWidthHover": { - "no": 576, - "name": "CTRL/choice/lg/switch/thumb/width/hover", - "fst_reference": "CTRL/choice/lg/switch/thumb/width/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-switch-thumb-width-hover" - }, - "ctrlChoiceLgSwitchThumbWidthPressed": { - "no": 577, - "name": "CTRL/choice/lg/switch/thumb/width/pressed", - "fst_reference": "CTRL/choice/lg/switch/thumb/width/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-choice-lg-switch-thumb-width-pressed" - }, - "ctrlDialogBackground": { - "no": 578, - "name": "CTRL/dialog/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-background" - }, - "ctrlDialogStroke": { - "no": 579, - "name": "CTRL/dialog/stroke", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "Neutral/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-stroke" - }, - "ctrlDialogBaseCorner": { - "no": 580, - "name": "CTRL/dialog/base/corner", - "fst_reference": "corner/card/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "X-Large", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-corner" - }, - "ctrlDialogBaseShadowKeyX": { - "no": 581, - "name": "CTRL/dialog/base/shadow/(key)/(X)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-shadow-key-x" - }, - "ctrlDialogBaseShadowKeyY": { - "no": 582, - "name": "CTRL/dialog/base/shadow/(key)/(Y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-shadow-key-y" - }, - "ctrlDialogBaseShadowKeyBlur": { - "no": 583, - "name": "CTRL/dialog/base/shadow/(key)/(Blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-shadow-key-blur" - }, - "ctrlDialogBaseShadowKeyColor": { - "no": 584, - "name": "CTRL/dialog/base/shadow/(key)/(Color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-shadow-key-color" - }, - "ctrlDialogBaseShadowAmbientX": { - "no": 585, - "name": "CTRL/dialog/base/shadow/(ambient)/(X)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-shadow-ambient-x" - }, - "ctrlDialogBaseShadowAmbientY": { - "no": 586, - "name": "CTRL/dialog/base/shadow/(ambient)/(Y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-shadow-ambient-y" - }, - "ctrlDialogBaseShadowAmbientBlur": { - "no": 587, - "name": "CTRL/dialog/base/shadow/(ambient)/(Blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-shadow-ambient-blur" - }, - "ctrlDialogBaseShadowAmbientColor": { - "no": 588, - "name": "CTRL/dialog/base/shadow/(ambient)/(Color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-base-shadow-ambient-color" - }, - "ctrlDialogLayerBackground": { - "no": 589, - "name": "CTRL/dialog/layer/background", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-layer-background" - }, - "ctrlDialogLayerPaddingBottom": { - "no": 590, - "name": "CTRL/dialog/layer/padding-bottom", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-dialog-layer-padding-bottom" - }, - "ctrlDividerFixedlineLength": { - "no": 591, - "name": "CTRL/divider/fixedLine/length", - "fst_reference": "padding/content/align/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-divider-fixedline-length" - }, - "ctrlDragBackgroundSolid": { - "no": 592, - "name": "CTRL/drag/background/(solid)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-drag-background-solid" - }, - "ctrlDragBackgroundColorblend": { - "no": 593, - "name": "CTRL/drag/background/(colorBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-drag-background-colorblend" - }, - "ctrlDragBackgroundLumblend": { - "no": 594, - "name": "CTRL/drag/background/(lumBlend)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-drag-background-lumblend" - }, - "ctrlFabBackgroundRest": { - "no": 595, - "name": "CTRL/fab/background/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-background-rest" - }, - "ctrlFocusPositionFigmaonly": { - "no": 596, - "name": "CTRL/focus/position(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-focus-positionfigmaonly" - }, - "ctrlFocusInnerStrokewidth": { - "no": 597, - "name": "CTRL/focus/inner/strokeWidth", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Card/Primary", - "Card/Secondary", - "Card/Tint (needed?)", - "Card/Outline", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Inline link", - "Page link", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-focus-inner-strokewidth" - }, - "ctrlFocusInnerStroke": { - "no": 598, - "name": "CTRL/focus/inner/stroke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Card/Primary", - "Card/Secondary", - "Card/Tint (needed?)", - "Card/Outline", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Inline link", - "Page link", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "Neutral/Stroke/Focus/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-focus-inner-stroke" - }, - "ctrlFocusOuterStrokewidth": { - "no": 599, - "name": "CTRL/focus/outer/strokeWidth", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Card/Primary", - "Card/Secondary", - "Card/Tint (needed?)", - "Card/Outline", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Inline link", - "Page link", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-focus-outer-strokewidth" - }, - "ctrlFocusOuterStroke": { - "no": 600, - "name": "CTRL/focus/outer/stroke", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Card/Primary", - "Card/Secondary", - "Card/Tint (needed?)", - "Card/Outline", - "Dialog", - "Footer", - "Consent Dialog/footer", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Inline link", - "Page link", - "Lite filter", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "Neutral/Stroke/Focus/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-focus-outer-stroke" - }, - "ctrlFabBackgroundHover": { - "no": 601, - "name": "CTRL/fab/background/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-background-hover" - }, - "ctrlFabBackgroundPressed": { - "no": 602, - "name": "CTRL/fab/background/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-background-pressed" - }, - "ctrlFabBackgroundDisabled": { - "no": 603, - "name": "CTRL/fab/background/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-background-disabled" - }, - "ctrlFabCornerRest": { - "no": 604, - "name": "CTRL/fab/corner/rest", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "Circular", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-corner-rest" - }, - "ctrlFabShadowRestKeyX": { - "no": 605, - "name": "CTRL/fab/shadow/rest/(key)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-rest-key-x" - }, - "ctrlFabShadowRestKeyY": { - "no": 606, - "name": "CTRL/fab/shadow/rest/(key)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-rest-key-y" - }, - "ctrlFabShadowRestKeyBlur": { - "no": 607, - "name": "CTRL/fab/shadow/rest/(key)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-rest-key-blur" - }, - "ctrlFabShadowRestKeyColor": { - "no": 608, - "name": "CTRL/fab/shadow/rest/(key)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-rest-key-color" - }, - "ctrlFabShadowRestAmbientX": { - "no": 609, - "name": "CTRL/fab/shadow/rest/(ambient)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-rest-ambient-x" - }, - "ctrlFabShadowRestAmbientY": { - "no": 610, - "name": "CTRL/fab/shadow/rest/(ambient)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-rest-ambient-y" - }, - "ctrlFabShadowRestAmbientBlur": { - "no": 611, - "name": "CTRL/fab/shadow/rest/(ambient)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-rest-ambient-blur" - }, - "ctrlFabShadowRestAmbientColor": { - "no": 612, - "name": "CTRL/fab/shadow/rest/(ambient)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-rest-ambient-color" - }, - "ctrlFabShadowHoverKeyX": { - "no": 613, - "name": "CTRL/fab/shadow/hover/(key)/(x)", - "fst_reference": "shadow/flyout/(key)/(x)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-hover-key-x" - }, - "ctrlFabShadowHoverKeyY": { - "no": 614, - "name": "CTRL/fab/shadow/hover/(key)/(y)", - "fst_reference": "shadow/flyout/(key)/(y)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-hover-key-y" - }, - "ctrlFabShadowHoverKeyBlur": { - "no": 615, - "name": "CTRL/fab/shadow/hover/(key)/(blur)", - "fst_reference": "shadow/flyout/(key)/(blur)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-hover-key-blur" - }, - "ctrlFabShadowHoverKeyColor": { - "no": 616, - "name": "CTRL/fab/shadow/hover/(key)/(color)", - "fst_reference": "shadow/flyout/(key)/(color)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-hover-key-color" - }, - "ctrlFabShadowPressedKeyX": { - "no": 617, - "name": "CTRL/fab/shadow/pressed/(key)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-pressed-key-x" - }, - "ctrlFabShadowPressedKeyY": { - "no": 618, - "name": "CTRL/fab/shadow/pressed/(key)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-pressed-key-y" - }, - "ctrlFabShadowPressedKeyBlur": { - "no": 619, - "name": "CTRL/fab/shadow/pressed/(key)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-pressed-key-blur" - }, - "ctrlFabShadowPressedKeyColor": { - "no": 620, - "name": "CTRL/fab/shadow/pressed/(key)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-pressed-key-color" - }, - "ctrlFabShadowDisabledKeyX": { - "no": 621, - "name": "CTRL/fab/shadow/disabled/(key)/(x)", - "fst_reference": "CTRL/fab/shadow/pressed/(key)/(x)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-disabled-key-x" - }, - "ctrlFabShadowDisabledKeyY": { - "no": 622, - "name": "CTRL/fab/shadow/disabled/(key)/(y)", - "fst_reference": "CTRL/fab/shadow/pressed/(key)/(y)", - "optional": true, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-disabled-key-y" - }, - "ctrlFabShadowDisabledKeyBlur": { - "no": 623, - "name": "CTRL/fab/shadow/disabled/(key)/(blur)", - "fst_reference": "CTRL/fab/shadow/pressed/(key)/(blur)", - "optional": true, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-disabled-key-blur" - }, - "ctrlFabShadowDisabledKeyColor": { - "no": 624, - "name": "CTRL/fab/shadow/disabled/(key)/(color)", - "fst_reference": "CTRL/fab/shadow/pressed/(key)/(color)", - "optional": true, - "nullable": false, - "description": "", - "components": ["FAB"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-shadow-disabled-key-color" - }, - "ctrlFabCornerHover": { - "no": 625, - "name": "CTRL/fab/corner/hover", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Circular", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-corner-hover" - }, - "ctrlFabCornerPressed": { - "no": 626, - "name": "CTRL/fab/corner/pressed", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Circular", - "exceptions": [], - "cssName": "--smtc-ctrl-fab-corner-pressed" - }, - "ctrlInputBackgroundRest": { - "no": 627, - "name": "CTRL/input/background/rest", - "fst_reference": "background/ctrl/neutral/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-background-rest" - }, - "ctrlInputBackgroundHover": { - "no": 628, - "name": "CTRL/input/background/hover", - "fst_reference": "background/ctrl/neutral/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-background-hover" - }, - "ctrlInputBackgroundPressed": { - "no": 629, - "name": "CTRL/input/background/pressed", - "fst_reference": "background/ctrl/neutral/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-background-pressed" - }, - "ctrlInputBackgroundDisabled": { - "no": 630, - "name": "CTRL/input/background/disabled", - "fst_reference": "background/ctrl/neutral/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area" - ], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-background-disabled" - }, - "ctrlInputBackgroundSelected": { - "no": 631, - "name": "CTRL/input/background/selected", - "fst_reference": "background/ctrl/neutral/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-background-selected" - }, - "ctrlInputBackgroundError": { - "no": 632, - "name": "CTRL/input/background/error", - "fst_reference": "background/ctrl/neutral/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-background-error" - }, - "ctrlInputStrokeRest": { - "no": 633, - "name": "CTRL/input/stroke/rest", - "fst_reference": "stroke/ctrl/onOutline/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-stroke-rest" - }, - "ctrlInputBottomlineStrokewidthRest": { - "no": 634, - "name": "CTRL/input/bottomLine/strokeWidth/rest", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area" - ], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-strokewidth-rest" - }, - "ctrlInputStrokewidthRest": { - "no": 635, - "name": "CTRL/input/strokeWidth/rest", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-input-strokewidth-rest" - }, - "ctrlInputTextselectionBackground": { - "no": 636, - "name": "CTRL/input/textSelection/background", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/ctrl/activeBrand/rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-textselection-background" - }, - "ctrlInputTextselectionForeground": { - "no": 637, - "name": "CTRL/input/textSelection/foreground", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/4/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-textselection-foreground" - }, - "ctrlInputStrokewidthHover": { - "no": 638, - "name": "CTRL/input/strokeWidth/hover", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-input-strokewidth-hover" - }, - "ctrlInputStrokewidthPressed": { - "no": 639, - "name": "CTRL/input/strokeWidth/pressed", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-input-strokewidth-pressed" - }, - "ctrlInputStrokewidthSelected": { - "no": 640, - "name": "CTRL/input/strokeWidth/selected", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-input-strokewidth-selected" - }, - "ctrlInputBottomlineStrokewidthHover": { - "no": 641, - "name": "CTRL/input/bottomLine/strokeWidth/hover", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-strokewidth-hover" - }, - "ctrlInputBottomlineStrokewidthPressed": { - "no": 642, - "name": "CTRL/input/bottomLine/strokeWidth/pressed", - "fst_reference": "CTRL/input/bottomLine/strokeWidth/selected", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-strokewidth-pressed" - }, - "ctrlInputBottomlineStrokewidthSelected": { - "no": 643, - "name": "CTRL/input/bottomLine/strokeWidth/selected", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-strokewidth-selected" - }, - "ctrlInputBottomlineStrokeRest": { - "no": 644, - "name": "CTRL/input/bottomLine/stroke/rest", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-stroke-rest" - }, - "ctrlInputBottomlineStrokeHover": { - "no": 645, - "name": "CTRL/input/bottomLine/stroke/hover", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-stroke-hover" - }, - "ctrlInputBottomlineStrokePressed": { - "no": 646, - "name": "CTRL/input/bottomLine/stroke/pressed", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-stroke-pressed" - }, - "ctrlInputBottomlineStrokeDisabled": { - "no": 647, - "name": "CTRL/input/bottomLine/stroke/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [ - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area" - ], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-stroke-disabled" - }, - "ctrlInputBottomlineStrokeSelected": { - "no": 648, - "name": "CTRL/input/bottomLine/stroke/selected", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-stroke-selected" - }, - "ctrlInputBottomlineStrokeError": { - "no": 649, - "name": "CTRL/input/bottomLine/stroke/error", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-bottomline-stroke-error" - }, - "ctrlInputStrokeHover": { - "no": 650, - "name": "CTRL/input/stroke/hover", - "fst_reference": "stroke/ctrl/onOutline/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-input-stroke-hover" - }, - "ctrlInputStrokePressed": { - "no": 651, - "name": "CTRL/input/stroke/pressed", - "fst_reference": "stroke/ctrl/onOutline/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-input-stroke-pressed" - }, - "ctrlInputStrokeDisabled": { - "no": 652, - "name": "CTRL/input/stroke/disabled", - "fst_reference": "stroke/ctrl/onOutline/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [ - "Text input box", - "Search box", - "Password input box", - "Editable dropdown", - "Editable spin button", - "Text area" - ], - "contrast": "", - "fallback": "Neutral/Stroke/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-stroke-disabled" - }, - "ctrlInputStrokeSelected": { - "no": 653, - "name": "CTRL/input/stroke/selected", - "fst_reference": "stroke/ctrl/onOutline/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Selected", - "exceptions": [], - "cssName": "--smtc-ctrl-input-stroke-selected" - }, - "ctrlInputStrokeError": { - "no": 654, - "name": "CTRL/input/stroke/error", - "fst_reference": "STATUS/danger/stroke", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Danger/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-input-stroke-error" - }, - "ctrlLinkForegroundNeutralRest": { - "no": 655, - "name": "CTRL/link/foreground/neutral/rest", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/neutral/primary/rest", - "exceptions": [], - "cssName": "--smtc-ctrl-link-foreground-neutral-rest" - }, - "ctrlLinkInlineStrokewidthRest": { - "no": 656, - "name": "CTRL/link/inline/strokeWidth/rest", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Inline link", "Page link"], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-link-inline-strokewidth-rest" - }, - "ctrlLinkInlineStrokewidthHover": { - "no": 657, - "name": "CTRL/link/inline/strokeWidth/hover", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-link-inline-strokewidth-hover" - }, - "ctrlLinkInlineUnderlineDashed": { - "no": 658, - "name": "CTRL/link/inline/underline/dashed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Inline link"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-link-inline-underline-dashed" - }, - "ctrlLinkInlineUnderlineSolidFigmaonly": { - "no": 659, - "name": "CTRL/link/inline/underline/solid(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Inline link"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-link-inline-underline-solidfigmaonly" - }, - "ctrlLinkForegroundNeutralHover": { - "no": 660, - "name": "CTRL/link/foreground/neutral/hover", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/neutral/primary/hover", - "exceptions": [], - "cssName": "--smtc-ctrl-link-foreground-neutral-hover" - }, - "ctrlLinkForegroundNeutralPressed": { - "no": 661, - "name": "CTRL/link/foreground/neutral/pressed", - "fst_reference": "foreground/ctrl/neutral/primary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Inline link", "Page link"], - "contrast": "", - "fallback": "foreground/ctrl/neutral/primary/pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-link-foreground-neutral-pressed" - }, - "ctrlLinkForegroundBrandRest": { - "no": 662, - "name": "CTRL/link/foreground/brand/rest", - "fst_reference": "foreground/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "foreground/ctrl/brand/rest", - "exceptions": [], - "cssName": "--smtc-ctrl-link-foreground-brand-rest" - }, - "ctrlLinkForegroundBrandHover": { - "no": 663, - "name": "CTRL/link/foreground/brand/hover", - "fst_reference": "foreground/ctrl/brand/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/brand/hover", - "exceptions": [], - "cssName": "--smtc-ctrl-link-foreground-brand-hover" - }, - "ctrlLinkForegroundBrandPressed": { - "no": 664, - "name": "CTRL/link/foreground/brand/pressed", - "fst_reference": "foreground/ctrl/brand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "foreground/ctrl/brand/pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-link-foreground-brand-pressed" - }, - "ctrlLinkOnpageStrokewidthRest": { - "no": 665, - "name": "CTRL/link/onPage/strokeWidth/rest", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-link-onpage-strokewidth-rest" - }, - "ctrlLinkOnpageStrokewidthHover": { - "no": 666, - "name": "CTRL/link/onPage/strokeWidth/hover", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-link-onpage-strokewidth-hover" - }, - "ctrlLinkOnpageUnderlineDashed": { - "no": 667, - "name": "CTRL/link/onPage/underline/dashed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Page link"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-link-onpage-underline-dashed" - }, - "ctrlLinkOnpageUnderlineSolidFigmaonly": { - "no": 668, - "name": "CTRL/link/onPage/underline/solid(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Page link"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-link-onpage-underline-solidfigmaonly" - }, - "ctrlLinkInlineShowunderlineatrest": { - "no": 669, - "name": "CTRL/link/inline/showUnderlineAtRest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-link-inline-showunderlineatrest" - }, - "ctrlLinkOnpageShowunderlineatrest": { - "no": 670, - "name": "CTRL/link/onPage/showUnderlineAtRest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Consent Dialog/footer"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-link-onpage-showunderlineatrest" - }, - "ctrlListPillWidth": { - "no": 671, - "name": "CTRL/list/pill/width", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thicker", - "exceptions": [], - "cssName": "--smtc-ctrl-list-pill-width" - }, - "ctrlListPillFullwidth": { - "no": 672, - "name": "CTRL/list/pill/fullWidth", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-pill-fullwidth" - }, - "ctrlListPillStretchPaddingDefault": { - "no": 673, - "name": "CTRL/list/pill/stretch/padding/default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-pill-stretch-padding-default" - }, - "ctrlListPillStretchPaddingHint": { - "no": 674, - "name": "CTRL/list/pill/stretch/padding/hint", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-pill-stretch-padding-hint" - }, - "ctrlListPillLengthRest": { - "no": 675, - "name": "CTRL/list/pill/length/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-pill-length-rest" - }, - "ctrlListPillLengthHover": { - "no": 676, - "name": "CTRL/list/pill/length/hover", - "fst_reference": "CTRL/list/pill/length/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-pill-length-hover" - }, - "ctrlListPillLengthPressed": { - "no": 677, - "name": "CTRL/list/pill/length/pressed", - "fst_reference": "CTRL/list/pill/length/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-pill-length-pressed" - }, - "ctrlListPillLengthHint": { - "no": 678, - "name": "CTRL/list/pill/length/hint", - "fst_reference": "CTRL/list/pill/length/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-pill-length-hint" - }, - "ctrlListCornerRest": { - "no": 679, - "name": "CTRL/list/corner/rest", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-corner-rest" - }, - "ctrlListCornerHover": { - "no": 680, - "name": "CTRL/list/corner/hover", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-corner-hover" - }, - "ctrlListCornerPressed": { - "no": 681, - "name": "CTRL/list/corner/pressed", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-corner-pressed" - }, - "ctrlListIndentLevel1": { - "no": 682, - "name": "CTRL/list/indent/level1", - "fst_reference": "padding/ctrl/horizontal-default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-indent-level1" - }, - "ctrlListIndentLevel2": { - "no": 683, - "name": "CTRL/list/indent/(level2)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-indent-level2" - }, - "ctrlListIndentLevel3": { - "no": 684, - "name": "CTRL/list/indent/(level3)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-indent-level3" - }, - "ctrlListBackgroundSelectedRest": { - "no": 685, - "name": "CTRL/list/background/selected-rest", - "fst_reference": "background/ctrl/subtle/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/ctrl/subtle/rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-background-selected-rest" - }, - "ctrlListBackgroundSelectedHover": { - "no": 686, - "name": "CTRL/list/background/selected-hover", - "fst_reference": "background/ctrl/subtle/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/ctrl/subtle/hover", - "exceptions": [], - "cssName": "--smtc-ctrl-list-background-selected-hover" - }, - "ctrlListBackgroundSelectedPressed": { - "no": 687, - "name": "CTRL/list/background/selected-pressed", - "fst_reference": "background/ctrl/subtle/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/ctrl/subtle/pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-list-background-selected-pressed" - }, - "ctrlListBackgroundSelectedDisabled": { - "no": 688, - "name": "CTRL/list/background/selected-disabled", - "fst_reference": "background/ctrl/subtle/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/ctrl/subtle/disabled", - "exceptions": [], - "cssName": "--smtc-ctrl-list-background-selected-disabled" - }, - "ctrlListChoiceBackgroundRest": { - "no": 689, - "name": "CTRL/list/choice/background/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-background-rest" - }, - "ctrlListChoiceStrokeRest": { - "no": 690, - "name": "CTRL/list/choice/stroke/rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-stroke-rest" - }, - "ctrlListChoiceStrokeDisabled": { - "no": 691, - "name": "CTRL/list/choice/stroke/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-stroke-disabled" - }, - "ctrlListChoiceStrokeSelectedRest": { - "no": 692, - "name": "CTRL/list/choice/stroke/selected-rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-stroke-selected-rest" - }, - "ctrlListChoiceStrokeSelectedDisabled": { - "no": 693, - "name": "CTRL/list/choice/stroke/selected-disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-stroke-selected-disabled" - }, - "ctrlListChoiceForegroundHover": { - "no": 694, - "name": "CTRL/list/choice/foreground/hover", - "fst_reference": "foreground/ctrl/hint/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-foreground-hover" - }, - "ctrlListChoiceForegroundSelectedRest": { - "no": 695, - "name": "CTRL/list/choice/foreground/selected-rest", - "fst_reference": "foreground/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-foreground-selected-rest" - }, - "ctrlListChoiceForegroundSelectedDisabled": { - "no": 696, - "name": "CTRL/list/choice/foreground/selected-disabled", - "fst_reference": "foreground/ctrl/brand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-foreground-selected-disabled" - }, - "ctrlListChoiceBackgroundDisabled": { - "no": 697, - "name": "CTRL/list/choice/background/disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-background-disabled" - }, - "ctrlListChoiceBackgroundSelectedRest": { - "no": 698, - "name": "CTRL/list/choice/background/selected-rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-background-selected-rest" - }, - "ctrlListChoiceBackgroundSelectedDisabled": { - "no": 699, - "name": "CTRL/list/choice/background/selected-disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-background-selected-disabled" - }, - "ctrlListChoiceCheckboxCorner": { - "no": 700, - "name": "CTRL/list/choice/checkbox/corner", - "fst_reference": "CTRL/choice/checkbox/corner", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-checkbox-corner" - }, - "ctrlListChoiceCheckboxIconSize": { - "no": 701, - "name": "CTRL/list/choice/checkbox/icon/size", - "fst_reference": "size/ctrl/iconSecondary", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-checkbox-icon-size" - }, - "ctrlListChoiceCheckboxIconSizeFigmaonly": { - "no": 702, - "name": "CTRL/list/choice/checkbox/icon/size(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-checkbox-icon-sizefigmaonly" - }, - "ctrlListChoiceDotSize": { - "no": 703, - "name": "CTRL/list/choice/dot/size", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-dot-size" - }, - "ctrlListChoiceDotSizeFigmaonly": { - "no": 704, - "name": "CTRL/list/choice/dot/size(figmaonly)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-choice-dot-sizefigmaonly" - }, - "ctrlListSplitDividerPaddingInset": { - "no": 705, - "name": "CTRL/list/split/divider/padding/inset", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Split button"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-split-divider-padding-inset" - }, - "ctrlListSplitDividerStroke": { - "no": 706, - "name": "CTRL/list/split/divider/stroke", - "fst_reference": "stroke/ctrl/divider/onNeutral", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-list-split-divider-stroke" - }, - "ctrlListSmCornerRest": { - "no": 707, - "name": "CTRL/list/sm/corner/rest", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-sm-corner-rest" - }, - "ctrlListSmCornerHover": { - "no": 708, - "name": "CTRL/list/sm/corner/hover", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-sm-corner-hover" - }, - "ctrlListSmCornerPressed": { - "no": 709, - "name": "CTRL/list/sm/corner/pressed", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-sm-corner-pressed" - }, - "ctrlListSmIndentLevel1": { - "no": 710, - "name": "CTRL/list/sm/indent/level1", - "fst_reference": "padding/ctrl-sm/horizontal-default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-sm-indent-level1" - }, - "ctrlListSmIndentLevel2": { - "no": 711, - "name": "CTRL/list/sm/indent/(level2)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-sm-indent-level2" - }, - "ctrlListSmIndentLevel3": { - "no": 712, - "name": "CTRL/list/sm/indent/(level3)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-sm-indent-level3" - }, - "ctrlListLgCornerRest": { - "no": 713, - "name": "CTRL/list/lg/corner/rest", - "fst_reference": "corner/ctrl-lg/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-lg-corner-rest" - }, - "ctrlListLgCornerHover": { - "no": 714, - "name": "CTRL/list/lg/corner/hover", - "fst_reference": "corner/ctrl-lg/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-lg-corner-hover" - }, - "ctrlListLgCornerPressed": { - "no": 715, - "name": "CTRL/list/lg/corner/pressed", - "fst_reference": "corner/ctrl-lg/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-list-lg-corner-pressed" - }, - "ctrlListLgIndentLevel1": { - "no": 716, - "name": "CTRL/list/lg/indent/level1", - "fst_reference": "padding/ctrl-lg/horizontal-default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-lg-indent-level1" - }, - "ctrlListLgIndentLevel2": { - "no": 717, - "name": "CTRL/list/lg/indent/(level2)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-lg-indent-level2" - }, - "ctrlListLgIndentLevel3": { - "no": 718, - "name": "CTRL/list/lg/indent/(level3)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-lg-indent-level3" - }, - "ctrlLitefilterBackgroundSelected": { - "no": 719, - "name": "CTRL/liteFilter/background/selected", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "background/ctrl/brand/rest", - "exceptions": [], - "cssName": "--smtc-ctrl-litefilter-background-selected" - }, - "ctrlLitefilterStrokeSelected": { - "no": 720, - "name": "CTRL/liteFilter/stroke/selected", - "fst_reference": "stroke/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "stroke/ctrl/onBrand/rest", - "exceptions": [], - "cssName": "--smtc-ctrl-litefilter-stroke-selected" - }, - "ctrlLitefilterForegroundSelected": { - "no": 721, - "name": "CTRL/liteFilter/foreground/selected", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "foreground/ctrl/onBrand/rest", - "exceptions": [], - "cssName": "--smtc-ctrl-litefilter-foreground-selected" - }, - "ctrlProgressBackgroundEmpty": { - "no": 722, - "name": "CTRL/progress/background/empty", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Spinner", "Progress Bar"], - "contrast": "", - "fallback": "Neutral/Background/6/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-background-empty" - }, - "ctrlProgressBackgroundFilled": { - "no": 723, - "name": "CTRL/progress/background/filled", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Spinner"], - "contrast": "", - "fallback": "background/ctrl/activeBrand/rest", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-background-filled" - }, - "ctrlProgressCorner": { - "no": 724, - "name": "CTRL/progress/corner", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": ["Progress Bar"], - "contrast": "", - "fallback": "Circular", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-corner" - }, - "ctrlProgressHeightFilled": { - "no": 725, - "name": "CTRL/progress/height/filled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Progress Bar"], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-height-filled" - }, - "ctrlProgressHeightEmpty": { - "no": 726, - "name": "CTRL/progress/height/empty", - "fst_reference": "CTRL/progress/height/filled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Progress Bar"], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-height-empty" - }, - "ctrlProgressSmHeightFilled": { - "no": 727, - "name": "CTRL/progress/sm/height/filled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-sm-height-filled" - }, - "ctrlProgressSmHeightEmpty": { - "no": 728, - "name": "CTRL/progress/sm/height/empty", - "fst_reference": "CTRL/progress/sm/height/filled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-sm-height-empty" - }, - "ctrlRatingIconTheme": { - "no": 729, - "name": "CTRL/rating/icon/theme", - "fst_reference": "iconTheme/ctrl/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-rating-icon-theme" - }, - "ctrlRatingIconGap": { - "no": 730, - "name": "CTRL/rating/icon/gap", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Rating"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-rating-icon-gap" - }, - "ctrlRatingIconForegroundFilled": { - "no": 731, - "name": "CTRL/rating/icon/foreground/filled", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Rating"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-rating-icon-foreground-filled" - }, - "ctrlRatingIconForegroundEmpty": { - "no": 732, - "name": "CTRL/rating/icon/foreground/empty", - "fst_reference": "CTRL/progress/background/empty", - "optional": true, - "nullable": false, - "description": "", - "components": ["Rating"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-rating-icon-foreground-empty" - }, - "ctrlRatingIconSize": { - "no": 733, - "name": "CTRL/rating/icon/size", - "fst_reference": "size/ctrl/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-rating-icon-size" - }, - "ctrlSegmentedBackgroundRest": { - "no": 734, - "name": "CTRL/segmented/background/rest", - "fst_reference": "background/ctrl/outline/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-background-rest" - }, - "ctrlSegmentedBackgroundHover": { - "no": 735, - "name": "CTRL/segmented/background/hover", - "fst_reference": "background/ctrl/outline/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-background-hover" - }, - "ctrlSegmentedBackgroundPressed": { - "no": 736, - "name": "CTRL/segmented/background/pressed", - "fst_reference": "background/ctrl/outline/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-background-pressed" - }, - "ctrlSegmentedBackgroundDisabled": { - "no": 737, - "name": "CTRL/segmented/background/disabled", - "fst_reference": "background/ctrl/outline/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Transparent/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-background-disabled" - }, - "ctrlSegmentedStrokeRest": { - "no": 738, - "name": "CTRL/segmented/stroke/rest", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-stroke-rest" - }, - "ctrlSegmentedStrokeHover": { - "no": 739, - "name": "CTRL/segmented/stroke/hover", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-stroke-hover" - }, - "ctrlSegmentedStrokePressed": { - "no": 740, - "name": "CTRL/segmented/stroke/pressed", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-stroke-pressed" - }, - "ctrlSegmentedStrokeDisabled": { - "no": 741, - "name": "CTRL/segmented/stroke/disabled", - "fst_reference": "foreground/ctrl/neutral/secondary/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-stroke-disabled" - }, - "ctrlSegmentedCornerRest": { - "no": 742, - "name": "CTRL/segmented/corner/rest", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-corner-rest" - }, - "ctrlSegmentedCornerHover": { - "no": 743, - "name": "CTRL/segmented/corner/hover", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-corner-hover" - }, - "ctrlSegmentedCornerPressed": { - "no": 744, - "name": "CTRL/segmented/corner/pressed", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-corner-pressed" - }, - "ctrlSegmentedPaddingRest": { - "no": 745, - "name": "CTRL/segmented/padding/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-padding-rest" - }, - "ctrlSegmentedPaddingHover": { - "no": 746, - "name": "CTRL/segmented/padding/hover", - "fst_reference": "CTRL/segmented/padding/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-padding-hover" - }, - "ctrlSegmentedPaddingPressed": { - "no": 747, - "name": "CTRL/segmented/padding/pressed", - "fst_reference": "CTRL/segmented/padding/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-padding-pressed" - }, - "ctrlSegmentedGap": { - "no": 748, - "name": "CTRL/segmented/gap", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-gap" - }, - "ctrlSegmentedItemCornerRest": { - "no": 749, - "name": "CTRL/segmented/Item/corner/rest", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-item-corner-rest" - }, - "ctrlSegmentedItemCornerHover": { - "no": 750, - "name": "CTRL/segmented/Item/corner/hover", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-item-corner-hover" - }, - "ctrlSegmentedItemCornerPressed": { - "no": 751, - "name": "CTRL/segmented/Item/corner/pressed", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-item-corner-pressed" - }, - "ctrlSliderBarHeight": { - "no": 752, - "name": "CTRL/slider/bar/height", - "fst_reference": "CTRL/progress/height/filled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-height" - }, - "ctrlSplitDividerStrokewidth": { - "no": 753, - "name": "CTRL/split/divider/strokeWidth", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Split button"], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-split-divider-strokewidth" - }, - "ctrlSplitDividerStrokewidthOnoutline": { - "no": 754, - "name": "CTRL/split/divider/strokeWidth-onOutline", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-split-divider-strokewidth-onoutline" - }, - "ctrlSplitDividerStrokewidthOnsubtle": { - "no": 755, - "name": "CTRL/split/divider/strokeWidth-onSubtle", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": ["Split button"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-split-divider-strokewidth-onsubtle" - }, - "ctrlSpinnerStrokewidth": { - "no": 756, - "name": "CTRL/spinner/strokeWidth", - "fst_reference": "CTRL/progress/height/filled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Spinner"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-spinner-strokewidth" - }, - "ctrlSpinnerShowemptytrack": { - "no": 757, - "name": "CTRL/spinner/showEmptyTrack", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Spinner"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-spinner-showemptytrack" - }, - "ctrlTooltipCorner": { - "no": 758, - "name": "CTRL/tooltip/corner", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Medium", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-corner" - }, - "ctrlTooltipBackground": { - "no": 759, - "name": "CTRL/tooltip/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-background" - }, - "ctrlTooltipForeground": { - "no": 760, - "name": "CTRL/tooltip/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-tooltip-foreground" - }, - "ctrlSliderBarCorner": { - "no": 761, - "name": "CTRL/slider/bar/corner", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "Circular", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-corner" - }, - "ctrlSliderBarForegroundFilledRest": { - "no": 762, - "name": "CTRL/slider/bar/foreground/filled/rest", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/Compound/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-foreground-filled-rest" - }, - "ctrlSliderBarForegroundEmptyRest": { - "no": 763, - "name": "CTRL/slider/bar/foreground/empty/rest", - "fst_reference": "CTRL/progress/background/empty", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-foreground-empty-rest" - }, - "ctrlSliderBarForegroundEmptyHover": { - "no": 764, - "name": "CTRL/slider/bar/foreground/empty/hover", - "fst_reference": "CTRL/progress/background/empty", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-foreground-empty-hover" - }, - "ctrlSliderBarForegroundEmptyPressed": { - "no": 765, - "name": "CTRL/slider/bar/foreground/empty/pressed", - "fst_reference": "CTRL/progress/background/empty", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-foreground-empty-pressed" - }, - "ctrlSliderBarForegroundEmptyDisabled": { - "no": 766, - "name": "CTRL/slider/bar/foreground/empty/disabled", - "fst_reference": "CTRL/progress/background/empty", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "Neutral/Stroke/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-foreground-empty-disabled" - }, - "ctrlSliderBarForegroundFilledHover": { - "no": 767, - "name": "CTRL/slider/bar/foreground/filled/hover", - "fst_reference": "background/ctrl/brand/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/Compound/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-foreground-filled-hover" - }, - "ctrlSliderBarForegroundFilledPressed": { - "no": 768, - "name": "CTRL/slider/bar/foreground/filled/pressed", - "fst_reference": "background/ctrl/brand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/Compound/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-foreground-filled-pressed" - }, - "ctrlSliderBarForegroundFilledDisabled": { - "no": 769, - "name": "CTRL/slider/bar/foreground/filled/disabled", - "fst_reference": "background/ctrl/brand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-bar-foreground-filled-disabled" - }, - "ctrlSliderThumbCorner": { - "no": 770, - "name": "CTRL/slider/thumb/corner", - "fst_reference": "corner/circular", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "Circular", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-corner" - }, - "ctrlSliderThumbSizeRest": { - "no": 771, - "name": "CTRL/slider/thumb/size/rest", - "fst_reference": "size/ctrl/icon", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-size-rest" - }, - "ctrlSliderThumbSizeHover": { - "no": 772, - "name": "CTRL/slider/thumb/size/hover", - "fst_reference": "size/ctrl/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-size-hover" - }, - "ctrlSliderThumbSizePressed": { - "no": 773, - "name": "CTRL/slider/thumb/size/pressed", - "fst_reference": "size/ctrl/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-size-pressed" - }, - "ctrlSliderThumbBackgroundRest": { - "no": 774, - "name": "CTRL/slider/thumb/background/rest", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/Compound/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-background-rest" - }, - "ctrlSliderThumbBackgroundHover": { - "no": 775, - "name": "CTRL/slider/thumb/background/hover", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/Compound/Hover", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-background-hover" - }, - "ctrlSliderThumbBackgroundPressed": { - "no": 776, - "name": "CTRL/slider/thumb/background/pressed", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/Compound/Pressed", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-background-pressed" - }, - "ctrlSliderThumbBackgroundDisabled": { - "no": 777, - "name": "CTRL/slider/thumb/background/disabled", - "fst_reference": "foreground/ctrl/onBrand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "Neutral/Foreground/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-background-disabled" - }, - "ctrlSliderThumbInnerStrokewidthRest": { - "no": 778, - "name": "CTRL/slider/thumb/inner/strokeWidth/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-inner-strokewidth-rest" - }, - "ctrlSliderThumbInnerStrokewidthHover": { - "no": 779, - "name": "CTRL/slider/thumb/inner/strokeWidth/hover", - "fst_reference": "CTRL/slider/thumb/inner/strokeWidth/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-inner-strokewidth-hover" - }, - "ctrlSliderThumbInnerStrokewidthPressed": { - "no": 780, - "name": "CTRL/slider/thumb/inner/strokeWidth/pressed", - "fst_reference": "CTRL/slider/thumb/inner/strokeWidth/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-inner-strokewidth-pressed" - }, - "ctrlSliderThumbInnerStrokeRest": { - "no": 781, - "name": "CTRL/slider/thumb/inner/stroke/rest", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-inner-stroke-rest" - }, - "ctrlSliderThumbInnerStrokeHover": { - "no": 782, - "name": "CTRL/slider/thumb/inner/stroke/hover", - "fst_reference": "background/ctrl/brand/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-inner-stroke-hover" - }, - "ctrlSliderThumbInnerStrokePressed": { - "no": 783, - "name": "CTRL/slider/thumb/inner/stroke/pressed", - "fst_reference": "background/ctrl/brand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-inner-stroke-pressed" - }, - "ctrlSliderThumbInnerStrokeDisabled": { - "no": 784, - "name": "CTRL/slider/thumb/inner/stroke/disabled", - "fst_reference": "background/ctrl/brand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-inner-stroke-disabled" - }, - "ctrlSliderThumbOuterStrokewidth": { - "no": 785, - "name": "CTRL/slider/thumb/outer/strokeWidth", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-outer-strokewidth" - }, - "ctrlSliderThumbOuterStrokeRest": { - "no": 786, - "name": "CTRL/slider/thumb/outer/stroke/rest", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-outer-stroke-rest" - }, - "ctrlSliderThumbOuterStrokeHover": { - "no": 787, - "name": "CTRL/slider/thumb/outer/stroke/hover", - "fst_reference": "background/ctrl/brand/hover", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-outer-stroke-hover" - }, - "ctrlSliderThumbOuterStrokePressed": { - "no": 788, - "name": "CTRL/slider/thumb/outer/stroke/pressed", - "fst_reference": "background/ctrl/brand/pressed", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-outer-stroke-pressed" - }, - "ctrlSliderThumbOuterStrokeDisabled": { - "no": 789, - "name": "CTRL/slider/thumb/outer/stroke/disabled", - "fst_reference": "background/ctrl/brand/disabled", - "optional": true, - "nullable": false, - "description": "", - "components": ["Slider"], - "contrast": "", - "fallback": "Neutral/Stroke/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-thumb-outer-stroke-disabled" - }, - "ctrlSliderSmThumbSizeRest": { - "no": 790, - "name": "CTRL/slider/sm/thumb/size/rest", - "fst_reference": "size/ctrl-sm/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-sm-thumb-size-rest" - }, - "ctrlSliderSmThumbSizeHover": { - "no": 791, - "name": "CTRL/slider/sm/thumb/size/hover", - "fst_reference": "size/ctrl-sm/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-sm-thumb-size-hover" - }, - "ctrlSliderSmThumbSizePressed": { - "no": 792, - "name": "CTRL/slider/sm/thumb/size/pressed", - "fst_reference": "size/ctrl-sm/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-sm-thumb-size-pressed" - }, - "ctrlSliderSmBarHeight": { - "no": 793, - "name": "CTRL/slider/sm/bar/height", - "fst_reference": "CTRL/progress/sm/height/filled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-sm-bar-height" - }, - "ctrlSliderLgThumbSizeRest": { - "no": 794, - "name": "CTRL/slider/lg/thumb/size/rest", - "fst_reference": "size/ctrl-lg/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-lg-thumb-size-rest" - }, - "ctrlSliderLgBarHeight": { - "no": 795, - "name": "CTRL/slider/lg/bar/height", - "fst_reference": "CTRL/progress/lg/height/filled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-lg-bar-height" - }, - "ctrlSliderLgThumbSizeHover": { - "no": 796, - "name": "CTRL/slider/lg/thumb/size/hover", - "fst_reference": "size/ctrl-lg/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-lg-thumb-size-hover" - }, - "ctrlSliderLgThumbSizePressed": { - "no": 797, - "name": "CTRL/slider/lg/thumb/size/pressed", - "fst_reference": "size/ctrl-lg/icon", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-slider-lg-thumb-size-pressed" - }, - "ctrlListSplitDividerShowdivider": { - "no": 798, - "name": "CTRL/list/split/divider/showDivider", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-split-divider-showdivider" - }, - "ctrlAvatarPresencebadgeBackgroundBehindbadge": { - "no": 799, - "name": "CTRL/avatar/presenceBadge/background/behindBadge", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": ["Presence badge"], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-avatar-presencebadge-background-behindbadge" - }, - "statusBrandBackground": { - "no": 800, - "name": "STATUS/brand/background", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Badge"], - "contrast": "", - "fallback": "Brand/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-brand-background" - }, - "statusBrandStroke": { - "no": 801, - "name": "STATUS/brand/stroke", - "fst_reference": "background/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-brand-stroke" - }, - "statusBrandForeground": { - "no": 802, - "name": "STATUS/brand/foreground", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/OnBrand/Rest", - "exceptions": [], - "cssName": "--smtc-status-brand-foreground" - }, - "statusBrandTintBackground": { - "no": 803, - "name": "STATUS/brand/tint/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Background/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-brand-tint-background" - }, - "statusBrandTintStroke": { - "no": 804, - "name": "STATUS/brand/tint/stroke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-brand-tint-stroke" - }, - "statusBrandTintForeground": { - "no": 805, - "name": "STATUS/brand/tint/foreground", - "fst_reference": "foreground/ctrl/brand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Brand/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-brand-tint-foreground" - }, - "statusDangerBackground": { - "no": 806, - "name": "STATUS/danger/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Danger/Background/3/Rest", - "exceptions": [], - "cssName": "--smtc-status-danger-background" - }, - "statusDangerStroke": { - "no": 807, - "name": "STATUS/danger/stroke", - "fst_reference": "STATUS/danger/background", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Danger/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-danger-stroke" - }, - "statusDangerForeground": { - "no": 808, - "name": "STATUS/danger/foreground", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/OnBrand/Rest", - "exceptions": [], - "cssName": "--smtc-status-danger-foreground" - }, - "statusDangerTintBackground": { - "no": 809, - "name": "STATUS/danger/tint/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["MessageBar"], - "contrast": "", - "fallback": "Status/Danger/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-danger-tint-background" - }, - "statusDangerTintStroke": { - "no": 810, - "name": "STATUS/danger/tint/stroke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["MessageBar"], - "contrast": "", - "fallback": "Status/Danger/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-danger-tint-stroke" - }, - "statusDangerTintForeground": { - "no": 811, - "name": "STATUS/danger/tint/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Presence badge", " Radio", " Checkbox", "Field", "Label", "MessageBar"], - "contrast": "", - "fallback": "Status/Danger/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-danger-tint-foreground" - }, - "statusWarningBackground": { - "no": 812, - "name": "STATUS/warning/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Warning/Background/3/Rest", - "exceptions": [], - "cssName": "--smtc-status-warning-background" - }, - "statusWarningStroke": { - "no": 813, - "name": "STATUS/warning/stroke", - "fst_reference": "STATUS/warning/background", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Warning/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-warning-stroke" - }, - "statusWarningForeground": { - "no": 814, - "name": "STATUS/warning/foreground", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/Static/Rest", - "exceptions": [], - "cssName": "--smtc-status-warning-foreground" - }, - "statusWarningTintBackground": { - "no": 815, - "name": "STATUS/warning/tint/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Warning/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-warning-tint-background" - }, - "statusWarningTintStroke": { - "no": 816, - "name": "STATUS/warning/tint/stroke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Warning/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-warning-tint-stroke" - }, - "statusWarningTintForeground": { - "no": 817, - "name": "STATUS/warning/tint/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Warning/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-warning-tint-foreground" - }, - "statusSuccessBackground": { - "no": 818, - "name": "STATUS/success/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Success/Background/3/Rest", - "exceptions": [], - "cssName": "--smtc-status-success-background" - }, - "statusSuccessStroke": { - "no": 819, - "name": "STATUS/success/stroke", - "fst_reference": "STATUS/success/background", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Success/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-success-stroke" - }, - "statusSuccessForeground": { - "no": 820, - "name": "STATUS/success/foreground", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/OnBrand/Rest", - "exceptions": [], - "cssName": "--smtc-status-success-foreground" - }, - "statusSuccessTintBackground": { - "no": 821, - "name": "STATUS/success/tint/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Success/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-success-tint-background" - }, - "statusSuccessTintStroke": { - "no": 822, - "name": "STATUS/success/tint/stroke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Success/Stroke/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-success-tint-stroke" - }, - "statusSuccessTintForeground": { - "no": 823, - "name": "STATUS/success/tint/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Success/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-success-tint-foreground" - }, - "statusImportantBackground": { - "no": 824, - "name": "STATUS/important/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/1/Rest", - "exceptions": [], - "cssName": "--smtc-status-important-background" - }, - "statusImportantStroke": { - "no": 825, - "name": "STATUS/important/stroke", - "fst_reference": "STATUS/important/background", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Accessible/Rest", - "exceptions": [], - "cssName": "--smtc-status-important-stroke" - }, - "statusImportantForeground": { - "no": 826, - "name": "STATUS/important/foreground", - "fst_reference": "foreground/ctrl/onBrand/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/OnBrand/Rest", - "exceptions": [], - "cssName": "--smtc-status-important-foreground" - }, - "statusImportantTintBackground": { - "no": 827, - "name": "STATUS/important/tint/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-status-important-tint-background" - }, - "statusImportantTintStroke": { - "no": 828, - "name": "STATUS/important/tint/stroke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-status-important-tint-stroke" - }, - "statusImportantTintForeground": { - "no": 829, - "name": "STATUS/important/tint/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-status-important-tint-foreground" - }, - "statusInformativeBackground": { - "no": 830, - "name": "STATUS/informative/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/5/Rest", - "exceptions": [], - "cssName": "--smtc-status-informative-background" - }, - "statusInformativeStroke": { - "no": 831, - "name": "STATUS/informative/stroke", - "fst_reference": "STATUS/informative/background", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-informative-stroke" - }, - "statusInformativeForeground": { - "no": 832, - "name": "STATUS/informative/foreground", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/3/Rest", - "exceptions": [], - "cssName": "--smtc-status-informative-foreground" - }, - "statusInformativeTintForeground": { - "no": 833, - "name": "STATUS/informative/tint/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Field"], - "contrast": "", - "fallback": "Neutral/Foreground/3/Rest", - "exceptions": [], - "cssName": "--smtc-status-informative-tint-foreground" - }, - "statusInformativeTintStroke": { - "no": 834, - "name": "STATUS/informative/tint/stroke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-informative-tint-stroke" - }, - "statusInformativeTintBackground": { - "no": 835, - "name": "STATUS/informative/tint/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Field"], - "contrast": "", - "fallback": "Neutral/Background/4/Rest", - "exceptions": [], - "cssName": "--smtc-status-informative-tint-background" - }, - "statusAwayForeground": { - "no": 836, - "name": "STATUS/away/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Warning/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-away-foreground" - }, - "statusOofForeground": { - "no": 837, - "name": "STATUS/oof/foreground", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Status/Warning/Foreground/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-oof-foreground" - }, - "ctrlBooleanSelectionhint": { - "no": 838, - "name": "CTRL/boolean/selectionHint", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-boolean-selectionhint" - }, - "ctrlComposerInputBottomStrokeWidthSelectedRest": { - "no": 839, - "name": "CTRL/composer/Input/Bottom-Stroke-Width/Selected-Rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottom-stroke-width-selected-rest" - }, - "ctrlComposerInputBottomStrokeWidthRest": { - "no": 840, - "name": "CTRL/composer/Input/Bottom-Stroke-Width/Rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottom-stroke-width-rest" - }, - "ctrlComposerInputBottomStrokeWidthHover": { - "no": 841, - "name": "CTRL/composer/Input/Bottom-Stroke-Width/Hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottom-stroke-width-hover" - }, - "ctrlComposerInputBottomStrokeWidthPressed": { - "no": 842, - "name": "CTRL/composer/Input/Bottom-Stroke-Width/Pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottom-stroke-width-pressed" - }, - "ctrlComposerInputCornerRest": { - "no": 843, - "name": "CTRL/composer/Input/Corner/Rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "corner/circular", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-corner-rest" - }, - "ctrlComposerInputCornerHover": { - "no": 844, - "name": "CTRL/composer/Input/Corner/Hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "corner/circular", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-corner-hover" - }, - "ctrlComposerInputCornerPressed": { - "no": 845, - "name": "CTRL/composer/Input/Corner/Pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "corner/circular", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-corner-pressed" - }, - "ctrlComposerInputBackgroundRest": { - "no": 846, - "name": "CTRL/composer/Input/Background/Rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-background-rest" - }, - "ctrlComposerInputBackgroundPressed": { - "no": 847, - "name": "CTRL/composer/Input/Background/Pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-background-pressed" - }, - "ctrlComposerInputBackgroundDisabled": { - "no": 848, - "name": "CTRL/composer/Input/Background/Disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-background-disabled" - }, - "ctrlComposerInputBackgroundSelectedRest": { - "no": 849, - "name": "CTRL/composer/Input/Background/Selected-Rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-background-selected-rest" - }, - "ctrlComposerInputBackgroundHover": { - "no": 850, - "name": "CTRL/composer/Input/Background/Hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/2/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-background-hover" - }, - "ctrlComposerInputStrokeRest": { - "no": 851, - "name": "CTRL/composer/Input/Stroke/Rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-rest" - }, - "ctrlComposerInputStrokeHoverUsesgradient": { - "no": 852, - "name": "CTRL/composer/Input/Stroke/Hover(UsesGradient)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-hoverusesgradient" - }, - "ctrlComposerInputStrokePressedUsesgradient": { - "no": 853, - "name": "CTRL/composer/Input/Stroke/Pressed(UsesGradient)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-pressedusesgradient" - }, - "ctrlComposerInputStrokeDisabledUsesgradient": { - "no": 854, - "name": "CTRL/composer/Input/Stroke/Disabled(UsesGradient)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-disabledusesgradient" - }, - "ctrlComposerInputStrokeSelectedRestUsesgradient": { - "no": 855, - "name": "CTRL/composer/Input/Stroke/Selected-Rest(UsesGradient)", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-selected-restusesgradient" - }, - "ctrlComposerInputStrokeWidthRest": { - "no": 856, - "name": "CTRL/composer/Input/Stroke-Width/Rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-width-rest" - }, - "ctrlComposerInputStrokeWidthHover": { - "no": 857, - "name": "CTRL/composer/Input/Stroke-Width/Hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-width-hover" - }, - "ctrlComposerInputStrokeWidthPressed": { - "no": 858, - "name": "CTRL/composer/Input/Stroke-Width/Pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-width-pressed" - }, - "ctrlComposerInputStrokeWidthSelectedRest": { - "no": 859, - "name": "CTRL/composer/Input/Stroke-Width/Selected-Rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-stroke-width-selected-rest" - }, - "ctrlComposerInputBottomstrokeRest": { - "no": 860, - "name": "CTRL/composer/Input/BottomStroke/Rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottomstroke-rest" - }, - "ctrlComposerInputBottomstrokeHover": { - "no": 861, - "name": "CTRL/composer/Input/BottomStroke/Hover", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottomstroke-hover" - }, - "ctrlComposerInputBottomstrokePressed": { - "no": 862, - "name": "CTRL/composer/Input/BottomStroke/Pressed", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottomstroke-pressed" - }, - "ctrlComposerInputBottomstrokeDisabled": { - "no": 863, - "name": "CTRL/composer/Input/BottomStroke/Disabled", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottomstroke-disabled" - }, - "ctrlComposerInputBottomstrokeSelectedRest": { - "no": 864, - "name": "CTRL/composer/Input/BottomStroke/Selected-Rest", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/Transparent/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-bottomstroke-selected-rest" - }, - "ctrlComposerInputShadowXOffset": { - "no": 865, - "name": "CTRL/composer/Input/Shadow/(X-offset)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-shadow-x-offset" - }, - "ctrlComposerInputShadowY": { - "no": 866, - "name": "CTRL/composer/Input/Shadow/(Y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-shadow-y" - }, - "ctrlComposerInputShadowBlur": { - "no": 867, - "name": "CTRL/composer/Input/Shadow/(Blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-shadow-blur" - }, - "ctrlComposerInputShadowColor": { - "no": 868, - "name": "CTRL/composer/Input/Shadow/(Color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-input-shadow-color" - }, - "ctrlComposerContainerCorner": { - "no": 869, - "name": "CTRL/composer/Container/Corner", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "corner/circular", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-corner" - }, - "ctrlComposerContainerBackgroundDefault": { - "no": 870, - "name": "CTRL/composer/Container/Background/Default", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-background-default" - }, - "ctrlComposerContainerBackgroundAcryliccolorblend": { - "no": 871, - "name": "CTRL/composer/Container/Background/(AcrylicColorBlend)", - "fst_reference": "background/flyout/(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-background-acryliccolorblend" - }, - "ctrlComposerContainerBackgroundAcryliclumblend": { - "no": 872, - "name": "CTRL/composer/Container/Background/(AcrylicLumBlend)", - "fst_reference": "background/flyout/(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-background-acryliclumblend" - }, - "ctrlComposerContainerShadowKeyX": { - "no": 873, - "name": "CTRL/composer/Container/Shadow/Key/(X)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-shadow-key-x" - }, - "ctrlComposerContainerShadowKeyY": { - "no": 874, - "name": "CTRL/composer/Container/Shadow/Key/(Y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-shadow-key-y" - }, - "ctrlComposerContainerShadowKeyBlur": { - "no": 875, - "name": "CTRL/composer/Container/Shadow/Key/(Blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-shadow-key-blur" - }, - "ctrlComposerContainerShadowKeyColor": { - "no": 876, - "name": "CTRL/composer/Container/Shadow/Key/(Color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Ambientlighter", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-shadow-key-color" - }, - "ctrlComposerContainerShadowAmbientX": { - "no": 877, - "name": "CTRL/composer/Container/Shadow/Ambient/(X)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-shadow-ambient-x" - }, - "ctrlComposerContainerShadowAmbientY": { - "no": 878, - "name": "CTRL/composer/Container/Shadow/Ambient/(Y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-shadow-ambient-y" - }, - "ctrlComposerContainerShadowAmbientBlur": { - "no": 879, - "name": "CTRL/composer/Container/Shadow/Ambient/(Blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-shadow-ambient-blur" - }, - "ctrlComposerContainerShadowAmbientColor": { - "no": 880, - "name": "CTRL/composer/Container/Shadow/Ambient/(Color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Ambientdarker", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-shadow-ambient-color" - }, - "ctrlComposerContainerStrokeDefault": { - "no": 881, - "name": "CTRL/composer/Container/Stroke/Default", - "fst_reference": "NULL/color", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-composer-container-stroke-default" - }, - "aiBrandStop1": { - "no": 882, - "name": "AI/brand/(stop1)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ai-brand-stop1" - }, - "aiBrandStop2": { - "no": 883, - "name": "AI/brand/(stop2)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ai-brand-stop2" - }, - "aiBrandStop3": { - "no": 884, - "name": "AI/brand/(stop3)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ai-brand-stop3" - }, - "aiBrandStop4": { - "no": 885, - "name": "AI/brand/(stop4)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ai-brand-stop4" - }, - "aiShimmerStop1": { - "no": 886, - "name": "AI/shimmer/(stop1)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ai-shimmer-stop1" - }, - "aiShimmerStop2": { - "no": 887, - "name": "AI/shimmer/(stop2)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ai-shimmer-stop2" - }, - "aiShimmerStop3": { - "no": 888, - "name": "AI/shimmer/(stop3)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ai-shimmer-stop3" - }, - "aiShimmerStop4": { - "no": 889, - "name": "AI/shimmer/(stop4)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ai-shimmer-stop4" - }, - "shadowWindowActiveKeyX": { - "no": 890, - "name": "shadow/window/active/(key)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-active-key-x" - }, - "shadowWindowActiveKeyY": { - "no": 891, - "name": "shadow/window/active/(key)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-active-key-y" - }, - "shadowWindowActiveKeyBlur": { - "no": 892, - "name": "shadow/window/active/(key)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-active-key-blur" - }, - "shadowWindowActiveKeyColor": { - "no": 893, - "name": "shadow/window/active/(key)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Ambientlighter", - "exceptions": [], - "cssName": "--smtc-shadow-window-active-key-color" - }, - "shadowWindowActiveAmbientX": { - "no": 894, - "name": "shadow/window/active/(ambient)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-active-ambient-x" - }, - "shadowWindowActiveAmbientY": { - "no": 895, - "name": "shadow/window/active/(ambient)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-active-ambient-y" - }, - "shadowWindowActiveAmbientBlur": { - "no": 896, - "name": "shadow/window/active/(ambient)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-active-ambient-blur" - }, - "shadowWindowActiveAmbientColor": { - "no": 897, - "name": "shadow/window/active/(ambient)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Ambientdarker", - "exceptions": [], - "cssName": "--smtc-shadow-window-active-ambient-color" - }, - "shadowWindowInactiveKeyX": { - "no": 898, - "name": "shadow/window/inactive/(key)/(x)", - "fst_reference": "shadow/window/active/(key)/(x)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-inactive-key-x" - }, - "shadowWindowInactiveKeyY": { - "no": 899, - "name": "shadow/window/inactive/(key)/(y)", - "fst_reference": "shadow/window/active/(key)/(y)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-inactive-key-y" - }, - "shadowWindowInactiveKeyBlur": { - "no": 900, - "name": "shadow/window/inactive/(key)/(blur)", - "fst_reference": "shadow/window/active/(key)/(blur)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-inactive-key-blur" - }, - "shadowWindowInactiveKeyColor": { - "no": 901, - "name": "shadow/window/inactive/(key)/(Color)", - "fst_reference": "shadow/window/active/(key)/(color)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Ambientlighter", - "exceptions": [], - "cssName": "--smtc-shadow-window-inactive-key-color" - }, - "shadowWindowInactiveAmbientX": { - "no": 902, - "name": "shadow/window/inactive/(ambient)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-inactive-ambient-x" - }, - "shadowWindowInactiveAmbientY": { - "no": 903, - "name": "shadow/window/inactive/(ambient)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-inactive-ambient-y" - }, - "shadowWindowInactiveAmbientBlur": { - "no": 904, - "name": "shadow/window/inactive/(ambient)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-shadow-window-inactive-ambient-blur" - }, - "shadowWindowInactiveAmbientColor": { - "no": 905, - "name": "shadow/window/inactive/(ambient)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Shadow/Ambientdarker", - "exceptions": [], - "cssName": "--smtc-shadow-window-inactive-ambient-color" - }, - "nullColor": { - "no": 906, - "name": "NULL/color", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [ - "Split button", - "Button", - "Dialog", - "Inline drawer", - "Overlay drawer", - "Editable dropdown", - "Editable spin button", - "Title bar", - "MessageBar" - ], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-null-color" - }, - "ctrlCardStateRest": { - "no": 907, - "name": "CTRL/card/state/(rest)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-card-state-rest" - }, - "ctrlCardStateHover": { - "no": 908, - "name": "CTRL/card/state/(hover)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-card-state-hover" - }, - "ctrlCardStatePressed": { - "no": 909, - "name": "CTRL/card/state/(pressed)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-card-state-pressed" - }, - "ctrlCardStateDisabled": { - "no": 910, - "name": "CTRL/card/state/(disabled)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-card-state-disabled" - }, - "ctrlListShadowSelectedKeyY2": { - "no": 911, - "name": "CTRL/list/shadow/selected/(key)/(y)2", - "fst_reference": "NULL/number", - "optional": false, - "nullable": true, - "description": "", - "components": [], - "contrast": "", - "fallback": "NULL/number", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-key-y2" - }, - "ctrlListShadowSelectedKeyX": { - "no": 912, - "name": "CTRL/list/shadow/selected/(key)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-key-x" - }, - "ctrlListShadowSelectedKeyY": { - "no": 913, - "name": "CTRL/list/shadow/selected/(key)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-key-y" - }, - "ctrlListShadowSelectedKeyBlur": { - "no": 914, - "name": "CTRL/list/shadow/selected/(key)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-key-blur" - }, - "ctrlListShadowSelectedKeyColor": { - "no": 915, - "name": "CTRL/list/shadow/selected/(key)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-key-color" - }, - "ctrlListShadowSelectedAmbientX": { - "no": 916, - "name": "CTRL/list/shadow/selected/(ambient)/(x)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-ambient-x" - }, - "ctrlListShadowSelectedAmbientY": { - "no": 917, - "name": "CTRL/list/shadow/selected/(ambient)/(y)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-ambient-y" - }, - "ctrlListShadowSelectedAmbientBlur": { - "no": 918, - "name": "CTRL/list/shadow/selected/(ambient)/(blur)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-ambient-blur" - }, - "ctrlListShadowSelectedAmbientColor": { - "no": 919, - "name": "CTRL/list/shadow/selected/(ambient)/(color)", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-list-shadow-selected-ambient-color" - }, - "statusNeutralBackground": { - "no": 920, - "name": "STATUS/neutral/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/5/Rest", - "exceptions": [], - "cssName": "--smtc-status-neutral-background" - }, - "statusNeutralStroke": { - "no": 921, - "name": "STATUS/neutral/stroke", - "fst_reference": "STATUS/neutral/background", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Stroke/2/Rest", - "exceptions": [], - "cssName": "--smtc-status-neutral-stroke" - }, - "statusNeutralForeground": { - "no": 922, - "name": "STATUS/neutral/foreground", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Foreground/3/Rest", - "exceptions": [], - "cssName": "--smtc-status-neutral-foreground" - }, - "statusNeutralTintBackground": { - "no": 923, - "name": "STATUS/neutral/tint/background", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": ["Dialog", "Inline drawer", "Overlay drawer"], - "contrast": "", - "fallback": "Neutral/Background/4/Rest", - "exceptions": [], - "cssName": "--smtc-status-neutral-tint-background" - }, - "statusNeutralTintStroke": { - "no": 924, - "name": "STATUS/neutral/tint/stroke", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/4/Rest", - "exceptions": [], - "cssName": "--smtc-status-neutral-tint-stroke" - }, - "statusNeutralTintForeground": { - "no": 925, - "name": "STATUS/neutral/tint/foreground", - "fst_reference": "foreground/ctrl/neutral/secondary/rest", - "optional": true, - "nullable": false, - "description": "", - "components": ["Dialog", "Inline drawer", "Overlay drawer"], - "contrast": "", - "fallback": "Neutral/Foreground/3/Rest", - "exceptions": [], - "cssName": "--smtc-status-neutral-tint-foreground" - }, - "cornerFlyoutShellRest": { - "no": 926, - "name": "corner/flyout/shell-rest", - "fst_reference": "corner/flyout/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-corner-flyout-shell-rest" - }, - "nullNumber": { - "no": 927, - "name": "NULL/number", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-null-number" - }, - "nullString": { - "no": 928, - "name": "NULL/string", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-null-string" - }, - "ctrlSegmentedSmPaddingRest": { - "no": 929, - "name": "CTRL/segmented/sm/padding/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-padding-rest" - }, - "ctrlSegmentedSmPaddingHover": { - "no": 930, - "name": "CTRL/segmented/sm/padding/hover", - "fst_reference": "CTRL/segmented/sm/padding/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-padding-hover" - }, - "ctrlSegmentedSmPaddingPressed": { - "no": 931, - "name": "CTRL/segmented/sm/padding/pressed", - "fst_reference": "CTRL/segmented/sm/padding/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-padding-pressed" - }, - "ctrlSegmentedLgPaddingRest": { - "no": 932, - "name": "CTRL/segmented/lg/padding/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-padding-rest" - }, - "ctrlSegmentedLgPaddingHover": { - "no": 933, - "name": "CTRL/segmented/lg/padding/hover", - "fst_reference": "CTRL/segmented/lg/padding/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-padding-hover" - }, - "ctrlSegmentedLgPaddingPressed": { - "no": 934, - "name": "CTRL/segmented/lg/padding/pressed", - "fst_reference": "CTRL/segmented/lg/padding/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-padding-pressed" - }, - "ctrlSegmentedSmItemCornerRest": { - "no": 935, - "name": "CTRL/segmented/sm/item/corner/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-item-corner-rest" - }, - "ctrlSegmentedSmItemCornerHover": { - "no": 936, - "name": "CTRL/segmented/sm/item/corner/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-item-corner-hover" - }, - "ctrlSegmentedSmItemCornerPressed": { - "no": 937, - "name": "CTRL/segmented/sm/item/corner/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-item-corner-pressed" - }, - "ctrlSegmentedLgItemCornerRest": { - "no": 938, - "name": "CTRL/segmented/lg/item/corner/rest", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-item-corner-rest" - }, - "ctrlSegmentedLgItemCornerHover": { - "no": 939, - "name": "CTRL/segmented/lg/item/corner/hover", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-item-corner-hover" - }, - "ctrlSegmentedLgItemCornerPressed": { - "no": 940, - "name": "CTRL/segmented/lg/item/corner/pressed", - "fst_reference": "corner/ctrl/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-item-corner-pressed" - }, - "ctrlSegmentedSmCornerRest": { - "no": 941, - "name": "CTRL/segmented/sm/corner/rest", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-corner-rest" - }, - "ctrlSegmentedSmCornerHover": { - "no": 942, - "name": "CTRL/segmented/sm/corner/hover", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-corner-hover" - }, - "ctrlSegmentedSmCornerPressed": { - "no": 943, - "name": "CTRL/segmented/sm/corner/pressed", - "fst_reference": "corner/ctrl-sm/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-sm-corner-pressed" - }, - "ctrlSegmentedLgCornerRest": { - "no": 944, - "name": "CTRL/segmented/lg/corner/rest", - "fst_reference": "corner/ctrl-lg/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-corner-rest" - }, - "ctrlSegmentedLgCornerHover": { - "no": 945, - "name": "CTRL/segmented/lg/corner/hover", - "fst_reference": "corner/ctrl-lg/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-corner-hover" - }, - "ctrlSegmentedLgCornerPressed": { - "no": 946, - "name": "CTRL/segmented/lg/corner/pressed", - "fst_reference": "corner/ctrl-lg/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "", - "exceptions": [], - "cssName": "--smtc-ctrl-segmented-lg-corner-pressed" - }, - "ctrlLitefilterStrokewidthSelected": { - "no": 947, - "name": "CTRL/liteFilter/strokeWidth/selected", - "fst_reference": "strokeWidth/default", - "optional": true, - "nullable": false, - "description": "", - "components": ["Lite filter"], - "contrast": "", - "fallback": "Thin", - "exceptions": [], - "cssName": "--smtc-ctrl-litefilter-strokewidth-selected" - }, - "materialAcrylicShellDefaultSolid": { - "no": 948, - "name": "material/acrylic/shell-default/(solid)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-material-acrylic-shell-default-solid" - }, - "materialAcrylicShellDefaultColorblend": { - "no": 949, - "name": "material/acrylic/shell-default/(colorBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-material-acrylic-shell-default-colorblend" - }, - "materialAcrylicShellDefaultLumblend": { - "no": 950, - "name": "material/acrylic/shell-default/(lumBlend)", - "fst_reference": "background/layer/primary(solid)", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-material-acrylic-shell-default-lumblend" - }, - "backgroundCardOnsecondaryDefaultRest": { - "no": 951, - "name": "background/card/onSecondary/default/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Rest", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-default-rest" - }, - "backgroundCardOnsecondaryAltRest": { - "no": 952, - "name": "background/card/onSecondary/alt/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/rest", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-alt-rest" - }, - "backgroundCardOnsecondaryAltHover": { - "no": 953, - "name": "background/card/onSecondary/alt/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/hover", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-alt-hover" - }, - "backgroundCardOnsecondaryAltPressed": { - "no": 954, - "name": "background/card/onSecondary/alt/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/pressed", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-alt-pressed" - }, - "backgroundCardOnsecondaryAltDisabled": { - "no": 955, - "name": "background/card/onSecondary/alt/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/pressed", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-alt-disabled" - }, - "backgroundCardOnsecondaryDefaultHover": { - "no": 956, - "name": "background/card/onSecondary/default/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Hover", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-default-hover" - }, - "backgroundCardOnsecondaryDefaultPressed": { - "no": 957, - "name": "background/card/onSecondary/default/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Pressed", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-default-pressed" - }, - "backgroundCardOnsecondaryDefaultDisabled": { - "no": 958, - "name": "background/card/onSecondary/default/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/Disabled/Rest", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-default-disabled" - }, - "backgroundCardOnsecondaryDefaultSelected": { - "no": 959, - "name": "background/card/onSecondary/default/selected", - "fst_reference": "background/card/onSecondary/default/rest", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Neutral/Background/1/Selected", - "exceptions": [], - "cssName": "--smtc-background-card-onsecondary-default-selected" - }, - "backgroundCardOnflyoutDefaultRest": { - "no": 960, - "name": "background/card/onFlyout/default/rest", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/rest", - "exceptions": [], - "cssName": "--smtc-background-card-onflyout-default-rest" - }, - "backgroundCardOnflyoutDefaultHover": { - "no": 961, - "name": "background/card/onFlyout/default/hover", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/hover", - "exceptions": [], - "cssName": "--smtc-background-card-onflyout-default-hover" - }, - "backgroundCardOnflyoutDefaultPressed": { - "no": 962, - "name": "background/card/onFlyout/default/pressed", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/pressed", - "exceptions": [], - "cssName": "--smtc-background-card-onflyout-default-pressed" - }, - "backgroundCardOnflyoutDefaultDisabled": { - "no": 963, - "name": "background/card/onFlyout/default/disabled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "background/card/onPrimary/default/pressed", - "exceptions": [], - "cssName": "--smtc-background-card-onflyout-default-disabled" - }, - "ctrlProgressLgHeightFilled": { - "no": 964, - "name": "CTRL/progress/lg/height/filled", - "fst_reference": "", - "optional": false, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-lg-height-filled" - }, - "ctrlProgressLgHeightEmpty": { - "no": 965, - "name": "CTRL/progress/lg/height/empty", - "fst_reference": "CTRL/progress/lg/height/filled", - "optional": true, - "nullable": false, - "description": "", - "components": [], - "contrast": "", - "fallback": "Thick", - "exceptions": [], - "cssName": "--smtc-ctrl-progress-lg-height-empty" - } -} From 4bf4f83d74f23da3f13a8b179f69d7dc3476cec0 Mon Sep 17 00:00:00 2001 From: Mitch-At-Work Date: Mon, 31 Mar 2025 09:59:23 -0700 Subject: [PATCH 3/4] Fix up export to empty (for now) --- .../etc/semantic-tokens.api.md | 5790 ----------------- packages/semantic-tokens/src/index.ts | 1 + 2 files changed, 1 insertion(+), 5790 deletions(-) create mode 100644 packages/semantic-tokens/src/index.ts diff --git a/packages/semantic-tokens/etc/semantic-tokens.api.md b/packages/semantic-tokens/etc/semantic-tokens.api.md index 96e054d935a54..abbd875f220e1 100644 --- a/packages/semantic-tokens/etc/semantic-tokens.api.md +++ b/packages/semantic-tokens/etc/semantic-tokens.api.md @@ -4,5796 +4,6 @@ ```ts -// @public (undocumented) -export const aiBrandStop1 = "var(--smtc-ai-brand-stop1)"; - -// @public (undocumented) -export const aiBrandStop1Raw = "--smtc-ai-brand-stop1"; - -// @public (undocumented) -export const aiBrandStop2 = "var(--smtc-ai-brand-stop2)"; - -// @public (undocumented) -export const aiBrandStop2Raw = "--smtc-ai-brand-stop2"; - -// @public (undocumented) -export const aiBrandStop3 = "var(--smtc-ai-brand-stop3)"; - -// @public (undocumented) -export const aiBrandStop3Raw = "--smtc-ai-brand-stop3"; - -// @public (undocumented) -export const aiBrandStop4 = "var(--smtc-ai-brand-stop4)"; - -// @public (undocumented) -export const aiBrandStop4Raw = "--smtc-ai-brand-stop4"; - -// @public (undocumented) -export const aiShimmerStop1 = "var(--smtc-ai-shimmer-stop1)"; - -// @public (undocumented) -export const aiShimmerStop1Raw = "--smtc-ai-shimmer-stop1"; - -// @public (undocumented) -export const aiShimmerStop2 = "var(--smtc-ai-shimmer-stop2)"; - -// @public (undocumented) -export const aiShimmerStop2Raw = "--smtc-ai-shimmer-stop2"; - -// @public (undocumented) -export const aiShimmerStop3 = "var(--smtc-ai-shimmer-stop3)"; - -// @public (undocumented) -export const aiShimmerStop3Raw = "--smtc-ai-shimmer-stop3"; - -// @public (undocumented) -export const aiShimmerStop4 = "var(--smtc-ai-shimmer-stop4)"; - -// @public (undocumented) -export const aiShimmerStop4Raw = "--smtc-ai-shimmer-stop4"; - -// @public (undocumented) -export const backgroundCardOnflyoutDefaultDisabled = "var(--smtc-background-card-onflyout-default-disabled)"; - -// @public (undocumented) -export const backgroundCardOnflyoutDefaultDisabledRaw = "--smtc-background-card-onflyout-default-disabled"; - -// @public (undocumented) -export const backgroundCardOnflyoutDefaultHover = "var(--smtc-background-card-onflyout-default-hover)"; - -// @public (undocumented) -export const backgroundCardOnflyoutDefaultHoverRaw = "--smtc-background-card-onflyout-default-hover"; - -// @public (undocumented) -export const backgroundCardOnflyoutDefaultPressed = "var(--smtc-background-card-onflyout-default-pressed)"; - -// @public (undocumented) -export const backgroundCardOnflyoutDefaultPressedRaw = "--smtc-background-card-onflyout-default-pressed"; - -// @public (undocumented) -export const backgroundCardOnflyoutDefaultRest = "var(--smtc-background-card-onflyout-default-rest)"; - -// @public (undocumented) -export const backgroundCardOnflyoutDefaultRestRaw = "--smtc-background-card-onflyout-default-rest"; - -// @public (undocumented) -export const backgroundCardOnprimaryAltDisabled = "var(--smtc-background-card-onprimary-alt-disabled)"; - -// @public (undocumented) -export const backgroundCardOnprimaryAltDisabledRaw = "--smtc-background-card-onprimary-alt-disabled"; - -// @public (undocumented) -export const backgroundCardOnprimaryAltHover = "var(--smtc-background-card-onprimary-alt-hover)"; - -// @public (undocumented) -export const backgroundCardOnprimaryAltHoverRaw = "--smtc-background-card-onprimary-alt-hover"; - -// @public (undocumented) -export const backgroundCardOnprimaryAltPressed = "var(--smtc-background-card-onprimary-alt-pressed)"; - -// @public (undocumented) -export const backgroundCardOnprimaryAltPressedRaw = "--smtc-background-card-onprimary-alt-pressed"; - -// @public (undocumented) -export const backgroundCardOnprimaryAltRest = "var(--smtc-background-card-onprimary-alt-rest)"; - -// @public (undocumented) -export const backgroundCardOnprimaryAltRestRaw = "--smtc-background-card-onprimary-alt-rest"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultDisabled = "var(--smtc-background-card-onprimary-default-disabled)"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultDisabledRaw = "--smtc-background-card-onprimary-default-disabled"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultHover = "var(--smtc-background-card-onprimary-default-hover)"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultHoverRaw = "--smtc-background-card-onprimary-default-hover"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultPressed = "var(--smtc-background-card-onprimary-default-pressed)"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultPressedRaw = "--smtc-background-card-onprimary-default-pressed"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultRest = "var(--smtc-background-card-onprimary-default-rest)"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultRestRaw = "--smtc-background-card-onprimary-default-rest"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultSelected = "var(--smtc-background-card-onprimary-default-selected, var(--smtc-background-card-onprimary-default-rest))"; - -// @public (undocumented) -export const backgroundCardOnprimaryDefaultSelectedRaw = "--smtc-background-card-onprimary-default-selected"; - -// @public (undocumented) -export const backgroundCardOnsecondaryAltDisabled = "var(--smtc-background-card-onsecondary-alt-disabled)"; - -// @public (undocumented) -export const backgroundCardOnsecondaryAltDisabledRaw = "--smtc-background-card-onsecondary-alt-disabled"; - -// @public (undocumented) -export const backgroundCardOnsecondaryAltHover = "var(--smtc-background-card-onsecondary-alt-hover)"; - -// @public (undocumented) -export const backgroundCardOnsecondaryAltHoverRaw = "--smtc-background-card-onsecondary-alt-hover"; - -// @public (undocumented) -export const backgroundCardOnsecondaryAltPressed = "var(--smtc-background-card-onsecondary-alt-pressed)"; - -// @public (undocumented) -export const backgroundCardOnsecondaryAltPressedRaw = "--smtc-background-card-onsecondary-alt-pressed"; - -// @public (undocumented) -export const backgroundCardOnsecondaryAltRest = "var(--smtc-background-card-onsecondary-alt-rest)"; - -// @public (undocumented) -export const backgroundCardOnsecondaryAltRestRaw = "--smtc-background-card-onsecondary-alt-rest"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultDisabled = "var(--smtc-background-card-onsecondary-default-disabled)"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultDisabledRaw = "--smtc-background-card-onsecondary-default-disabled"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultHover = "var(--smtc-background-card-onsecondary-default-hover)"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultHoverRaw = "--smtc-background-card-onsecondary-default-hover"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultPressed = "var(--smtc-background-card-onsecondary-default-pressed)"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultPressedRaw = "--smtc-background-card-onsecondary-default-pressed"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultRest = "var(--smtc-background-card-onsecondary-default-rest)"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultRestRaw = "--smtc-background-card-onsecondary-default-rest"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultSelected = "var(--smtc-background-card-onsecondary-default-selected, var(--smtc-background-card-onsecondary-default-rest))"; - -// @public (undocumented) -export const backgroundCardOnsecondaryDefaultSelectedRaw = "--smtc-background-card-onsecondary-default-selected"; - -// @public (undocumented) -export const backgroundCtrlActivebrandDisabled = "var(--smtc-background-ctrl-activebrand-disabled, var(--smtc-background-ctrl-brand-disabled))"; - -// @public (undocumented) -export const backgroundCtrlActivebrandDisabledRaw = "--smtc-background-ctrl-activebrand-disabled"; - -// @public (undocumented) -export const backgroundCtrlActivebrandHover = "var(--smtc-background-ctrl-activebrand-hover, var(--smtc-background-ctrl-brand-hover))"; - -// @public (undocumented) -export const backgroundCtrlActivebrandHoverRaw = "--smtc-background-ctrl-activebrand-hover"; - -// @public (undocumented) -export const backgroundCtrlActivebrandPressed = "var(--smtc-background-ctrl-activebrand-pressed, var(--smtc-background-ctrl-brand-pressed))"; - -// @public (undocumented) -export const backgroundCtrlActivebrandPressedRaw = "--smtc-background-ctrl-activebrand-pressed"; - -// @public (undocumented) -export const backgroundCtrlActivebrandRest = "var(--smtc-background-ctrl-activebrand-rest, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const backgroundCtrlActivebrandRestRaw = "--smtc-background-ctrl-activebrand-rest"; - -// @public (undocumented) -export const backgroundCtrlBrandDisabled = "var(--smtc-background-ctrl-brand-disabled)"; - -// @public (undocumented) -export const backgroundCtrlBrandDisabledRaw = "--smtc-background-ctrl-brand-disabled"; - -// @public (undocumented) -export const backgroundCtrlBrandHover = "var(--smtc-background-ctrl-brand-hover)"; - -// @public (undocumented) -export const backgroundCtrlBrandHoverRaw = "--smtc-background-ctrl-brand-hover"; - -// @public (undocumented) -export const backgroundCtrlBrandPressed = "var(--smtc-background-ctrl-brand-pressed)"; - -// @public (undocumented) -export const backgroundCtrlBrandPressedRaw = "--smtc-background-ctrl-brand-pressed"; - -// @public (undocumented) -export const backgroundCtrlBrandRest = "var(--smtc-background-ctrl-brand-rest)"; - -// @public (undocumented) -export const backgroundCtrlBrandRestRaw = "--smtc-background-ctrl-brand-rest"; - -// @public (undocumented) -export const backgroundCtrlNeutralDisabled = "var(--smtc-background-ctrl-neutral-disabled)"; - -// @public (undocumented) -export const backgroundCtrlNeutralDisabledRaw = "--smtc-background-ctrl-neutral-disabled"; - -// @public (undocumented) -export const backgroundCtrlNeutralHover = "var(--smtc-background-ctrl-neutral-hover)"; - -// @public (undocumented) -export const backgroundCtrlNeutralHoverRaw = "--smtc-background-ctrl-neutral-hover"; - -// @public (undocumented) -export const backgroundCtrlNeutralPressed = "var(--smtc-background-ctrl-neutral-pressed)"; - -// @public (undocumented) -export const backgroundCtrlNeutralPressedRaw = "--smtc-background-ctrl-neutral-pressed"; - -// @public (undocumented) -export const backgroundCtrlNeutralRest = "var(--smtc-background-ctrl-neutral-rest)"; - -// @public (undocumented) -export const backgroundCtrlNeutralRestRaw = "--smtc-background-ctrl-neutral-rest"; - -// @public (undocumented) -export const backgroundCtrlOutlineDisabled = "var(--smtc-background-ctrl-outline-disabled, unset)"; - -// @public (undocumented) -export const backgroundCtrlOutlineDisabledRaw = "--smtc-background-ctrl-outline-disabled"; - -// @public (undocumented) -export const backgroundCtrlOutlineHover = "var(--smtc-background-ctrl-outline-hover, unset)"; - -// @public (undocumented) -export const backgroundCtrlOutlineHoverRaw = "--smtc-background-ctrl-outline-hover"; - -// @public (undocumented) -export const backgroundCtrlOutlinePressed = "var(--smtc-background-ctrl-outline-pressed, unset)"; - -// @public (undocumented) -export const backgroundCtrlOutlinePressedRaw = "--smtc-background-ctrl-outline-pressed"; - -// @public (undocumented) -export const backgroundCtrlOutlineRest = "var(--smtc-background-ctrl-outline-rest, unset)"; - -// @public (undocumented) -export const backgroundCtrlOutlineRestRaw = "--smtc-background-ctrl-outline-rest"; - -// @public (undocumented) -export const backgroundCtrlShapesafeActivebrandDisabled = "var(--smtc-background-ctrl-shapesafe-activebrand-disabled, var(--smtc-background-ctrl-brand-disabled))"; - -// @public (undocumented) -export const backgroundCtrlShapesafeActivebrandDisabledRaw = "--smtc-background-ctrl-shapesafe-activebrand-disabled"; - -// @public (undocumented) -export const backgroundCtrlShapesafeActivebrandRest = "var(--smtc-background-ctrl-shapesafe-activebrand-rest, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const backgroundCtrlShapesafeActivebrandRestRaw = "--smtc-background-ctrl-shapesafe-activebrand-rest"; - -// @public (undocumented) -export const backgroundCtrlShapesafeNeutralDisabled = "var(--smtc-background-ctrl-shapesafe-neutral-disabled, var(--smtc-foreground-ctrl-neutral-secondary-disabled))"; - -// @public (undocumented) -export const backgroundCtrlShapesafeNeutralDisabledRaw = "--smtc-background-ctrl-shapesafe-neutral-disabled"; - -// @public (undocumented) -export const backgroundCtrlShapesafeNeutralHover = "var(--smtc-background-ctrl-shapesafe-neutral-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const backgroundCtrlShapesafeNeutralHoverRaw = "--smtc-background-ctrl-shapesafe-neutral-hover"; - -// @public (undocumented) -export const backgroundCtrlShapesafeNeutralPressed = "var(--smtc-background-ctrl-shapesafe-neutral-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const backgroundCtrlShapesafeNeutralPressedRaw = "--smtc-background-ctrl-shapesafe-neutral-pressed"; - -// @public (undocumented) -export const backgroundCtrlShapesafeNeutralRest = "var(--smtc-background-ctrl-shapesafe-neutral-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const backgroundCtrlShapesafeNeutralRestRaw = "--smtc-background-ctrl-shapesafe-neutral-rest"; - -// @public (undocumented) -export const backgroundCtrlSubtleDisabled = "var(--smtc-background-ctrl-subtle-disabled, unset)"; - -// @public (undocumented) -export const backgroundCtrlSubtleDisabledRaw = "--smtc-background-ctrl-subtle-disabled"; - -// @public (undocumented) -export const backgroundCtrlSubtleHover = "var(--smtc-background-ctrl-subtle-hover)"; - -// @public (undocumented) -export const backgroundCtrlSubtleHoverRaw = "--smtc-background-ctrl-subtle-hover"; - -// @public (undocumented) -export const backgroundCtrlSubtleHoversplit = "var(--smtc-background-ctrl-subtle-hoversplit, unset)"; - -// @public (undocumented) -export const backgroundCtrlSubtleHoversplitRaw = "--smtc-background-ctrl-subtle-hoversplit"; - -// @public (undocumented) -export const backgroundCtrlSubtlePressed = "var(--smtc-background-ctrl-subtle-pressed)"; - -// @public (undocumented) -export const backgroundCtrlSubtlePressedRaw = "--smtc-background-ctrl-subtle-pressed"; - -// @public (undocumented) -export const backgroundCtrlSubtleRest = "var(--smtc-background-ctrl-subtle-rest, unset)"; - -// @public (undocumented) -export const backgroundCtrlSubtleRestRaw = "--smtc-background-ctrl-subtle-rest"; - -// @public (undocumented) -export const backgroundFlyoutColorblend = "var(--smtc-background-flyout-colorblend)"; - -// @public (undocumented) -export const backgroundFlyoutColorblendRaw = "--smtc-background-flyout-colorblend"; - -// @public (undocumented) -export const backgroundFlyoutLumblend = "var(--smtc-background-flyout-lumblend)"; - -// @public (undocumented) -export const backgroundFlyoutLumblendRaw = "--smtc-background-flyout-lumblend"; - -// @public (undocumented) -export const backgroundFlyoutSolid = "var(--smtc-background-flyout-solid)"; - -// @public (undocumented) -export const backgroundFlyoutSolidRaw = "--smtc-background-flyout-solid"; - -// @public (undocumented) -export const backgroundLayerPrimarySolid = "var(--smtc-background-layer-primarysolid)"; - -// @public (undocumented) -export const backgroundLayerPrimarySolidRaw = "--smtc-background-layer-primarysolid"; - -// @public (undocumented) -export const backgroundLayerPrimaryStop1 = "var(--smtc-background-layer-primarystop1, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const backgroundLayerPrimaryStop1Raw = "--smtc-background-layer-primarystop1"; - -// @public (undocumented) -export const backgroundLayerPrimaryStop2 = "var(--smtc-background-layer-primarystop2, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const backgroundLayerPrimaryStop2Raw = "--smtc-background-layer-primarystop2"; - -// @public (undocumented) -export const backgroundLayerPrimaryStop3 = "var(--smtc-background-layer-primarystop3, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const backgroundLayerPrimaryStop3Raw = "--smtc-background-layer-primarystop3"; - -// @public (undocumented) -export const backgroundLayerSecondary = "var(--smtc-background-layer-secondary, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const backgroundLayerSecondaryRaw = "--smtc-background-layer-secondary"; - -// @public (undocumented) -export const backgroundLayerTertiary = "var(--smtc-background-layer-tertiary, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const backgroundLayerTertiaryRaw = "--smtc-background-layer-tertiary"; - -// @public (undocumented) -export const backgroundSmoke = "var(--smtc-background-smoke)"; - -// @public (undocumented) -export const backgroundSmokeRaw = "--smtc-background-smoke"; - -// @public (undocumented) -export const backgroundToolbar = "var(--smtc-background-toolbar, var(--smtc-background-card-onprimary-default-rest))"; - -// @public (undocumented) -export const backgroundToolbarRaw = "--smtc-background-toolbar"; - -// @public (undocumented) -export const backgroundWebpagePrimary = "var(--smtc-background-webpage-primary)"; - -// @public (undocumented) -export const backgroundWebpagePrimaryRaw = "--smtc-background-webpage-primary"; - -// @public (undocumented) -export const backgroundWebpageSecondary = "var(--smtc-background-webpage-secondary)"; - -// @public (undocumented) -export const backgroundWebpageSecondaryRaw = "--smtc-background-webpage-secondary"; - -// @public (undocumented) -export const backgroundWindowPrimaryColorblend = "var(--smtc-background-window-primary-colorblend)"; - -// @public (undocumented) -export const backgroundWindowPrimaryColorblendRaw = "--smtc-background-window-primary-colorblend"; - -// @public (undocumented) -export const backgroundWindowPrimaryLumblend = "var(--smtc-background-window-primary-lumblend)"; - -// @public (undocumented) -export const backgroundWindowPrimaryLumblendRaw = "--smtc-background-window-primary-lumblend"; - -// @public (undocumented) -export const backgroundWindowPrimarySolid = "var(--smtc-background-window-primary-solid)"; - -// @public (undocumented) -export const backgroundWindowPrimarySolidRaw = "--smtc-background-window-primary-solid"; - -// @public (undocumented) -export const backgroundWindowSecondaryColorblend = "var(--smtc-background-window-secondary-colorblend)"; - -// @public (undocumented) -export const backgroundWindowSecondaryColorblendRaw = "--smtc-background-window-secondary-colorblend"; - -// @public (undocumented) -export const backgroundWindowSecondaryLumblend = "var(--smtc-background-window-secondary-lumblend)"; - -// @public (undocumented) -export const backgroundWindowSecondaryLumblendRaw = "--smtc-background-window-secondary-lumblend"; - -// @public (undocumented) -export const backgroundWindowSecondarySolid = "var(--smtc-background-window-secondary-solid)"; - -// @public (undocumented) -export const backgroundWindowSecondarySolidRaw = "--smtc-background-window-secondary-solid"; - -// @public (undocumented) -export const backgroundWindowTabbandColorblend = "var(--smtc-background-window-tabband-colorblend)"; - -// @public (undocumented) -export const backgroundWindowTabbandColorblendRaw = "--smtc-background-window-tabband-colorblend"; - -// @public (undocumented) -export const backgroundWindowTabbandLumblend = "var(--smtc-background-window-tabband-lumblend)"; - -// @public (undocumented) -export const backgroundWindowTabbandLumblendRaw = "--smtc-background-window-tabband-lumblend"; - -// @public (undocumented) -export const backgroundWindowTabbandSolid = "var(--smtc-background-window-tabband-solid)"; - -// @public (undocumented) -export const backgroundWindowTabbandSolidRaw = "--smtc-background-window-tabband-solid"; - -// @public (undocumented) -export const cornerBezel = "var(--smtc-corner-bezel)"; - -// @public (undocumented) -export const cornerBezelRaw = "--smtc-corner-bezel"; - -// @public (undocumented) -export const cornerCardHover = "var(--smtc-corner-card-hover, var(--smtc-corner-card-rest))"; - -// @public (undocumented) -export const cornerCardHoverRaw = "--smtc-corner-card-hover"; - -// @public (undocumented) -export const cornerCardPressed = "var(--smtc-corner-card-pressed, var(--smtc-corner-card-rest))"; - -// @public (undocumented) -export const cornerCardPressedRaw = "--smtc-corner-card-pressed"; - -// @public (undocumented) -export const cornerCardRest = "var(--smtc-corner-card-rest)"; - -// @public (undocumented) -export const cornerCardRestRaw = "--smtc-corner-card-rest"; - -// @public (undocumented) -export const cornerCircular = "var(--smtc-corner-circular)"; - -// @public (undocumented) -export const cornerCircularRaw = "--smtc-corner-circular"; - -// @public (undocumented) -export const cornerCtrlHover = "var(--smtc-corner-ctrl-hover, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const cornerCtrlHoverRaw = "--smtc-corner-ctrl-hover"; - -// @public (undocumented) -export const cornerCtrlLgHover = "var(--smtc-corner-ctrl-lg-hover, var(--smtc-corner-ctrl-lg-rest))"; - -// @public (undocumented) -export const cornerCtrlLgHoverRaw = "--smtc-corner-ctrl-lg-hover"; - -// @public (undocumented) -export const cornerCtrlLgPressed = "var(--smtc-corner-ctrl-lg-pressed, var(--smtc-corner-ctrl-lg-rest))"; - -// @public (undocumented) -export const cornerCtrlLgPressedRaw = "--smtc-corner-ctrl-lg-pressed"; - -// @public (undocumented) -export const cornerCtrlLgRest = "var(--smtc-corner-ctrl-lg-rest)"; - -// @public (undocumented) -export const cornerCtrlLgRestRaw = "--smtc-corner-ctrl-lg-rest"; - -// @public (undocumented) -export const cornerCtrlPressed = "var(--smtc-corner-ctrl-pressed, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const cornerCtrlPressedRaw = "--smtc-corner-ctrl-pressed"; - -// @public (undocumented) -export const cornerCtrlRest = "var(--smtc-corner-ctrl-rest)"; - -// @public (undocumented) -export const cornerCtrlRestRaw = "--smtc-corner-ctrl-rest"; - -// @public (undocumented) -export const cornerCtrlSmHover = "var(--smtc-corner-ctrl-sm-hover, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const cornerCtrlSmHoverRaw = "--smtc-corner-ctrl-sm-hover"; - -// @public (undocumented) -export const cornerCtrlSmPressed = "var(--smtc-corner-ctrl-sm-pressed, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const cornerCtrlSmPressedRaw = "--smtc-corner-ctrl-sm-pressed"; - -// @public (undocumented) -export const cornerCtrlSmRest = "var(--smtc-corner-ctrl-sm-rest)"; - -// @public (undocumented) -export const cornerCtrlSmRestRaw = "--smtc-corner-ctrl-sm-rest"; - -// @public (undocumented) -export const cornerFlyoutHover = "var(--smtc-corner-flyout-hover, var(--smtc-corner-flyout-rest))"; - -// @public (undocumented) -export const cornerFlyoutHoverRaw = "--smtc-corner-flyout-hover"; - -// @public (undocumented) -export const cornerFlyoutPressed = "var(--smtc-corner-flyout-pressed, var(--smtc-corner-flyout-rest))"; - -// @public (undocumented) -export const cornerFlyoutPressedRaw = "--smtc-corner-flyout-pressed"; - -// @public (undocumented) -export const cornerFlyoutRest = "var(--smtc-corner-flyout-rest)"; - -// @public (undocumented) -export const cornerFlyoutRestRaw = "--smtc-corner-flyout-rest"; - -// @public (undocumented) -export const cornerFlyoutShellRest = "var(--smtc-corner-flyout-shell-rest, var(--smtc-corner-flyout-rest))"; - -// @public (undocumented) -export const cornerFlyoutShellRestRaw = "--smtc-corner-flyout-shell-rest"; - -// @public (undocumented) -export const cornerImageIncard = "var(--smtc-corner-image-incard)"; - -// @public (undocumented) -export const cornerImageIncardRaw = "--smtc-corner-image-incard"; - -// @public (undocumented) -export const cornerImageOnpage = "var(--smtc-corner-image-onpage, var(--smtc-corner-card-rest))"; - -// @public (undocumented) -export const cornerImageOnpageRaw = "--smtc-corner-image-onpage"; - -// @public (undocumented) -export const cornerLayerDefault = "var(--smtc-corner-layer-default)"; - -// @public (undocumented) -export const cornerLayerDefaultRaw = "--smtc-corner-layer-default"; - -// @public (undocumented) -export const cornerLayerIntersection = "var(--smtc-corner-layer-intersection, var(--smtc-corner-zero))"; - -// @public (undocumented) -export const cornerLayerIntersectionRaw = "--smtc-corner-layer-intersection"; - -// @public (undocumented) -export const cornerToolbarDefault = "var(--smtc-corner-toolbar-default, var(--smtc-corner-card-rest))"; - -// @public (undocumented) -export const cornerToolbarDefaultRaw = "--smtc-corner-toolbar-default"; - -// @public (undocumented) -export const cornerWindowDefault = "var(--smtc-corner-window-default)"; - -// @public (undocumented) -export const cornerWindowDefaultRaw = "--smtc-corner-window-default"; - -// @public (undocumented) -export const cornerZero = "var(--smtc-corner-zero)"; - -// @public (undocumented) -export const cornerZeroRaw = "--smtc-corner-zero"; - -// @public (undocumented) -export const ctrlAvatarActiveringSize = "var(--smtc-ctrl-avatar-activering-size)"; - -// @public (undocumented) -export const ctrlAvatarActiveringSizeRaw = "--smtc-ctrl-avatar-activering-size"; - -// @public (undocumented) -export const ctrlAvatarActiveringStroke = "var(--smtc-ctrl-avatar-activering-stroke, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlAvatarActiveringStrokeRaw = "--smtc-ctrl-avatar-activering-stroke"; - -// @public (undocumented) -export const ctrlAvatarActiveringStrokewidth = "var(--smtc-ctrl-avatar-activering-strokewidth)"; - -// @public (undocumented) -export const ctrlAvatarActiveringStrokewidthRaw = "--smtc-ctrl-avatar-activering-strokewidth"; - -// @public (undocumented) -export const ctrlAvatarBackground = "var(--smtc-ctrl-avatar-background)"; - -// @public (undocumented) -export const ctrlAvatarBackgroundRaw = "--smtc-ctrl-avatar-background"; - -// @public (undocumented) -export const ctrlAvatarCornerGroup = "var(--smtc-ctrl-avatar-corner-group, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlAvatarCornerGroupRaw = "--smtc-ctrl-avatar-corner-group"; - -// @public (undocumented) -export const ctrlAvatarCornerItem = "var(--smtc-ctrl-avatar-corner-item, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlAvatarCornerItemRaw = "--smtc-ctrl-avatar-corner-item"; - -// @public (undocumented) -export const ctrlAvatarForeground = "var(--smtc-ctrl-avatar-foreground)"; - -// @public (undocumented) -export const ctrlAvatarForegroundRaw = "--smtc-ctrl-avatar-foreground"; - -// @public (undocumented) -export const ctrlAvatarIconSize = "var(--smtc-ctrl-avatar-icon-size, var(--smtc-size-ctrl-icon))"; - -// @public (undocumented) -export const ctrlAvatarIconSizeRaw = "--smtc-ctrl-avatar-icon-size"; - -// @public (undocumented) -export const ctrlAvatarPresencebadgeBackgroundBehindbadge = "var(--smtc-ctrl-avatar-presencebadge-background-behindbadge, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const ctrlAvatarPresencebadgeBackgroundBehindbadgeRaw = "--smtc-ctrl-avatar-presencebadge-background-behindbadge"; - -// @public (undocumented) -export const ctrlAvatarPresencebadgePaddingBottomrightoffset = "var(--smtc-ctrl-avatar-presencebadge-padding-bottomrightoffset, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlAvatarPresencebadgePaddingBottomrightoffsetRaw = "--smtc-ctrl-avatar-presencebadge-padding-bottomrightoffset"; - -// @public (undocumented) -export const ctrlAvatarPresencebadgeSize = "var(--smtc-ctrl-avatar-presencebadge-size)"; - -// @public (undocumented) -export const ctrlAvatarPresencebadgeSizeRaw = "--smtc-ctrl-avatar-presencebadge-size"; - -// @public (undocumented) -export const ctrlAvatarPresencebadgeStrokewidth = "var(--smtc-ctrl-avatar-presencebadge-strokewidth, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlAvatarPresencebadgeStrokewidthRaw = "--smtc-ctrl-avatar-presencebadge-strokewidth"; - -// @public (undocumented) -export const ctrlAvatarShowcutout = "var(--smtc-ctrl-avatar-showcutout)"; - -// @public (undocumented) -export const ctrlAvatarShowcutoutRaw = "--smtc-ctrl-avatar-showcutout"; - -// @public (undocumented) -export const ctrlAvatarSize = "var(--smtc-ctrl-avatar-size, var(--smtc-size-ctrl-default))"; - -// @public (undocumented) -export const ctrlAvatarSizeRaw = "--smtc-ctrl-avatar-size"; - -// @public (undocumented) -export const ctrlAvatarTextFontsize = "var(--smtc-ctrl-avatar-text-fontsize, var(--smtc-text-global-body3-fontsize))"; - -// @public (undocumented) -export const ctrlAvatarTextFontsizeRaw = "--smtc-ctrl-avatar-text-fontsize"; - -// @public (undocumented) -export const ctrlAvatarTextLineheight = "var(--smtc-ctrl-avatar-text-lineheight, var(--smtc-text-global-body3-lineheight))"; - -// @public (undocumented) -export const ctrlAvatarTextLineheightRaw = "--smtc-ctrl-avatar-text-lineheight"; - -// @public (undocumented) -export const ctrlAvatarTextPaddingTopoffset = "var(--smtc-ctrl-avatar-text-padding-topoffset, unset)"; - -// @public (undocumented) -export const ctrlAvatarTextPaddingTopoffsetRaw = "--smtc-ctrl-avatar-text-padding-topoffset"; - -// @public (undocumented) -export const ctrlBadgeBeaconSize = "var(--smtc-ctrl-badge-beacon-size)"; - -// @public (undocumented) -export const ctrlBadgeBeaconSizeRaw = "--smtc-ctrl-badge-beacon-size"; - -// @public (undocumented) -export const ctrlBadgeCorner = "var(--smtc-ctrl-badge-corner)"; - -// @public (undocumented) -export const ctrlBadgeCornerRaw = "--smtc-ctrl-badge-corner"; - -// @public (undocumented) -export const ctrlBadgeGap = "var(--smtc-ctrl-badge-gap)"; - -// @public (undocumented) -export const ctrlBadgeGapRaw = "--smtc-ctrl-badge-gap"; - -// @public (undocumented) -export const ctrlBadgeIconSize = "var(--smtc-ctrl-badge-icon-size)"; - -// @public (undocumented) -export const ctrlBadgeIconSizeFigmaonly = "var(--smtc-ctrl-badge-icon-sizefigmaonly)"; - -// @public (undocumented) -export const ctrlBadgeIconSizeFigmaonlyRaw = "--smtc-ctrl-badge-icon-sizefigmaonly"; - -// @public (undocumented) -export const ctrlBadgeIconSizeRaw = "--smtc-ctrl-badge-icon-size"; - -// @public (undocumented) -export const ctrlBadgeIconTheme = "var(--smtc-ctrl-badge-icon-theme, var(--smtc-icontheme-ctrl-default-rest))"; - -// @public (undocumented) -export const ctrlBadgeIconThemeRaw = "--smtc-ctrl-badge-icon-theme"; - -// @public (undocumented) -export const ctrlBadgeLgCorner = "var(--smtc-ctrl-badge-lg-corner)"; - -// @public (undocumented) -export const ctrlBadgeLgCornerRaw = "--smtc-ctrl-badge-lg-corner"; - -// @public (undocumented) -export const ctrlBadgeLgIconSize = "var(--smtc-ctrl-badge-lg-icon-size)"; - -// @public (undocumented) -export const ctrlBadgeLgIconSizeFigmaonly = "var(--smtc-ctrl-badge-lg-icon-sizefigmaonly)"; - -// @public (undocumented) -export const ctrlBadgeLgIconSizeFigmaonlyRaw = "--smtc-ctrl-badge-lg-icon-sizefigmaonly"; - -// @public (undocumented) -export const ctrlBadgeLgIconSizeRaw = "--smtc-ctrl-badge-lg-icon-size"; - -// @public (undocumented) -export const ctrlBadgeLgPadding = "var(--smtc-ctrl-badge-lg-padding)"; - -// @public (undocumented) -export const ctrlBadgeLgPaddingRaw = "--smtc-ctrl-badge-lg-padding"; - -// @public (undocumented) -export const ctrlBadgeLgSize = "var(--smtc-ctrl-badge-lg-size)"; - -// @public (undocumented) -export const ctrlBadgeLgSizeRaw = "--smtc-ctrl-badge-lg-size"; - -// @public (undocumented) -export const ctrlBadgeLgTextPaddingBottom = "var(--smtc-ctrl-badge-lg-text-padding-bottom, var(--smtc-ctrl-badge-lg-text-padding-top))"; - -// @public (undocumented) -export const ctrlBadgeLgTextPaddingBottomRaw = "--smtc-ctrl-badge-lg-text-padding-bottom"; - -// @public (undocumented) -export const ctrlBadgeLgTextPaddingTop = "var(--smtc-ctrl-badge-lg-text-padding-top)"; - -// @public (undocumented) -export const ctrlBadgeLgTextPaddingTopRaw = "--smtc-ctrl-badge-lg-text-padding-top"; - -// @public (undocumented) -export const ctrlBadgePadding = "var(--smtc-ctrl-badge-padding)"; - -// @public (undocumented) -export const ctrlBadgePaddingRaw = "--smtc-ctrl-badge-padding"; - -// @public (undocumented) -export const ctrlBadgeSize = "var(--smtc-ctrl-badge-size)"; - -// @public (undocumented) -export const ctrlBadgeSizeRaw = "--smtc-ctrl-badge-size"; - -// @public (undocumented) -export const ctrlBadgeSmCorner = "var(--smtc-ctrl-badge-sm-corner)"; - -// @public (undocumented) -export const ctrlBadgeSmCornerRaw = "--smtc-ctrl-badge-sm-corner"; - -// @public (undocumented) -export const ctrlBadgeSmIconSize = "var(--smtc-ctrl-badge-sm-icon-size)"; - -// @public (undocumented) -export const ctrlBadgeSmIconSizeFigmaonly = "var(--smtc-ctrl-badge-sm-icon-sizefigmaonly)"; - -// @public (undocumented) -export const ctrlBadgeSmIconSizeFigmaonlyRaw = "--smtc-ctrl-badge-sm-icon-sizefigmaonly"; - -// @public (undocumented) -export const ctrlBadgeSmIconSizeRaw = "--smtc-ctrl-badge-sm-icon-size"; - -// @public (undocumented) -export const ctrlBadgeSmPadding = "var(--smtc-ctrl-badge-sm-padding)"; - -// @public (undocumented) -export const ctrlBadgeSmPaddingRaw = "--smtc-ctrl-badge-sm-padding"; - -// @public (undocumented) -export const ctrlBadgeSmSize = "var(--smtc-ctrl-badge-sm-size)"; - -// @public (undocumented) -export const ctrlBadgeSmSizeRaw = "--smtc-ctrl-badge-sm-size"; - -// @public (undocumented) -export const ctrlBadgeSmTextPaddingBottom = "var(--smtc-ctrl-badge-sm-text-padding-bottom, var(--smtc-ctrl-badge-sm-text-padding-top))"; - -// @public (undocumented) -export const ctrlBadgeSmTextPaddingBottomRaw = "--smtc-ctrl-badge-sm-text-padding-bottom"; - -// @public (undocumented) -export const ctrlBadgeSmTextPaddingTop = "var(--smtc-ctrl-badge-sm-text-padding-top)"; - -// @public (undocumented) -export const ctrlBadgeSmTextPaddingTopRaw = "--smtc-ctrl-badge-sm-text-padding-top"; - -// @public (undocumented) -export const ctrlBadgeTextPaddingBottom = "var(--smtc-ctrl-badge-text-padding-bottom, var(--smtc-ctrl-badge-text-padding-top))"; - -// @public (undocumented) -export const ctrlBadgeTextPaddingBottomRaw = "--smtc-ctrl-badge-text-padding-bottom"; - -// @public (undocumented) -export const ctrlBadgeTextPaddingTop = "var(--smtc-ctrl-badge-text-padding-top)"; - -// @public (undocumented) -export const ctrlBadgeTextPaddingTopRaw = "--smtc-ctrl-badge-text-padding-top"; - -// @public (undocumented) -export const ctrlBooleanSelectionhint = "var(--smtc-ctrl-boolean-selectionhint)"; - -// @public (undocumented) -export const ctrlBooleanSelectionhintRaw = "--smtc-ctrl-boolean-selectionhint"; - -// @public (undocumented) -export const ctrlCardStateDisabled = "var(--smtc-ctrl-card-state-disabled)"; - -// @public (undocumented) -export const ctrlCardStateDisabledRaw = "--smtc-ctrl-card-state-disabled"; - -// @public (undocumented) -export const ctrlCardStateHover = "var(--smtc-ctrl-card-state-hover)"; - -// @public (undocumented) -export const ctrlCardStateHoverRaw = "--smtc-ctrl-card-state-hover"; - -// @public (undocumented) -export const ctrlCardStatePressed = "var(--smtc-ctrl-card-state-pressed)"; - -// @public (undocumented) -export const ctrlCardStatePressedRaw = "--smtc-ctrl-card-state-pressed"; - -// @public (undocumented) -export const ctrlCardStateRest = "var(--smtc-ctrl-card-state-rest)"; - -// @public (undocumented) -export const ctrlCardStateRestRaw = "--smtc-ctrl-card-state-rest"; - -// @public (undocumented) -export const ctrlChoiceBaseBackgroundDisabled = "var(--smtc-ctrl-choice-base-background-disabled, var(--smtc-background-ctrl-outline-disabled))"; - -// @public (undocumented) -export const ctrlChoiceBaseBackgroundDisabledRaw = "--smtc-ctrl-choice-base-background-disabled"; - -// @public (undocumented) -export const ctrlChoiceBaseBackgroundHover = "var(--smtc-ctrl-choice-base-background-hover, var(--smtc-background-ctrl-outline-hover))"; - -// @public (undocumented) -export const ctrlChoiceBaseBackgroundHoverRaw = "--smtc-ctrl-choice-base-background-hover"; - -// @public (undocumented) -export const ctrlChoiceBaseBackgroundPressed = "var(--smtc-ctrl-choice-base-background-pressed, var(--smtc-background-ctrl-outline-pressed))"; - -// @public (undocumented) -export const ctrlChoiceBaseBackgroundPressedRaw = "--smtc-ctrl-choice-base-background-pressed"; - -// @public (undocumented) -export const ctrlChoiceBaseBackgroundRest = "var(--smtc-ctrl-choice-base-background-rest, var(--smtc-background-ctrl-outline-rest))"; - -// @public (undocumented) -export const ctrlChoiceBaseBackgroundRestRaw = "--smtc-ctrl-choice-base-background-rest"; - -// @public (undocumented) -export const ctrlChoiceBaseSize = "var(--smtc-ctrl-choice-base-size, var(--smtc-size-ctrl-icon))"; - -// @public (undocumented) -export const ctrlChoiceBaseSizeRaw = "--smtc-ctrl-choice-base-size"; - -// @public (undocumented) -export const ctrlChoiceBaseStrokeDisabled = "var(--smtc-ctrl-choice-base-stroke-disabled, var(--smtc-foreground-ctrl-neutral-secondary-disabled))"; - -// @public (undocumented) -export const ctrlChoiceBaseStrokeDisabledRaw = "--smtc-ctrl-choice-base-stroke-disabled"; - -// @public (undocumented) -export const ctrlChoiceBaseStrokeHover = "var(--smtc-ctrl-choice-base-stroke-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlChoiceBaseStrokeHoverRaw = "--smtc-ctrl-choice-base-stroke-hover"; - -// @public (undocumented) -export const ctrlChoiceBaseStrokePressed = "var(--smtc-ctrl-choice-base-stroke-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlChoiceBaseStrokePressedRaw = "--smtc-ctrl-choice-base-stroke-pressed"; - -// @public (undocumented) -export const ctrlChoiceBaseStrokeRest = "var(--smtc-ctrl-choice-base-stroke-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlChoiceBaseStrokeRestRaw = "--smtc-ctrl-choice-base-stroke-rest"; - -// @public (undocumented) -export const ctrlChoiceCheckboxCorner = "var(--smtc-ctrl-choice-checkbox-corner)"; - -// @public (undocumented) -export const ctrlChoiceCheckboxCornerRaw = "--smtc-ctrl-choice-checkbox-corner"; - -// @public (undocumented) -export const ctrlChoiceCheckboxIconSize = "var(--smtc-ctrl-choice-checkbox-icon-size, var(--smtc-size-ctrl-iconsecondary))"; - -// @public (undocumented) -export const ctrlChoiceCheckboxIconSizeRaw = "--smtc-ctrl-choice-checkbox-icon-size"; - -// @public (undocumented) -export const ctrlChoiceCheckboxIndeterminateCorner = "var(--smtc-ctrl-choice-checkbox-indeterminate-corner, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlChoiceCheckboxIndeterminateCornerRaw = "--smtc-ctrl-choice-checkbox-indeterminate-corner"; - -// @public (undocumented) -export const ctrlChoiceCheckboxIndeterminateHeight = "var(--smtc-ctrl-choice-checkbox-indeterminate-height)"; - -// @public (undocumented) -export const ctrlChoiceCheckboxIndeterminateHeightRaw = "--smtc-ctrl-choice-checkbox-indeterminate-height"; - -// @public (undocumented) -export const ctrlChoiceCheckboxIndeterminateWidth = "var(--smtc-ctrl-choice-checkbox-indeterminate-width)"; - -// @public (undocumented) -export const ctrlChoiceCheckboxIndeterminateWidthRaw = "--smtc-ctrl-choice-checkbox-indeterminate-width"; - -// @public (undocumented) -export const ctrlChoiceIconTheme = "var(--smtc-ctrl-choice-icon-theme)"; - -// @public (undocumented) -export const ctrlChoiceIconThemeRaw = "--smtc-ctrl-choice-icon-theme"; - -// @public (undocumented) -export const ctrlChoiceLgBaseSize = "var(--smtc-ctrl-choice-lg-base-size, var(--smtc-size-ctrl-lg-icon))"; - -// @public (undocumented) -export const ctrlChoiceLgBaseSizeRaw = "--smtc-ctrl-choice-lg-base-size"; - -// @public (undocumented) -export const ctrlChoiceLgCheckboxCorner = "var(--smtc-ctrl-choice-lg-checkbox-corner)"; - -// @public (undocumented) -export const ctrlChoiceLgCheckboxCornerRaw = "--smtc-ctrl-choice-lg-checkbox-corner"; - -// @public (undocumented) -export const ctrlChoiceLgCheckboxIconSize = "var(--smtc-ctrl-choice-lg-checkbox-icon-size, var(--smtc-size-ctrl-iconsecondary))"; - -// @public (undocumented) -export const ctrlChoiceLgCheckboxIconSizeFigmaonly = "var(--smtc-ctrl-choice-lg-checkbox-icon-sizefigmaonly)"; - -// @public (undocumented) -export const ctrlChoiceLgCheckboxIconSizeFigmaonlyRaw = "--smtc-ctrl-choice-lg-checkbox-icon-sizefigmaonly"; - -// @public (undocumented) -export const ctrlChoiceLgCheckboxIconSizeRaw = "--smtc-ctrl-choice-lg-checkbox-icon-size"; - -// @public (undocumented) -export const ctrlChoiceLgRadioDotSizeHover = "var(--smtc-ctrl-choice-lg-radio-dot-size-hover, var(--smtc-ctrl-choice-lg-radio-dot-size-rest))"; - -// @public (undocumented) -export const ctrlChoiceLgRadioDotSizeHoverRaw = "--smtc-ctrl-choice-lg-radio-dot-size-hover"; - -// @public (undocumented) -export const ctrlChoiceLgRadioDotSizePressed = "var(--smtc-ctrl-choice-lg-radio-dot-size-pressed, var(--smtc-ctrl-choice-lg-radio-dot-size-rest))"; - -// @public (undocumented) -export const ctrlChoiceLgRadioDotSizePressedRaw = "--smtc-ctrl-choice-lg-radio-dot-size-pressed"; - -// @public (undocumented) -export const ctrlChoiceLgRadioDotSizeRest = "var(--smtc-ctrl-choice-lg-radio-dot-size-rest)"; - -// @public (undocumented) -export const ctrlChoiceLgRadioDotSizeRestRaw = "--smtc-ctrl-choice-lg-radio-dot-size-rest"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchHeight = "var(--smtc-ctrl-choice-lg-switch-height, var(--smtc-size-ctrl-lg-icon))"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchHeightRaw = "--smtc-ctrl-choice-lg-switch-height"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchThumbWidthHover = "var(--smtc-ctrl-choice-lg-switch-thumb-width-hover, var(--smtc-ctrl-choice-lg-switch-thumb-width-rest))"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchThumbWidthHoverRaw = "--smtc-ctrl-choice-lg-switch-thumb-width-hover"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchThumbWidthPressed = "var(--smtc-ctrl-choice-lg-switch-thumb-width-pressed, var(--smtc-ctrl-choice-lg-switch-thumb-width-rest))"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchThumbWidthPressedRaw = "--smtc-ctrl-choice-lg-switch-thumb-width-pressed"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchThumbWidthRest = "var(--smtc-ctrl-choice-lg-switch-thumb-width-rest)"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchThumbWidthRestRaw = "--smtc-ctrl-choice-lg-switch-thumb-width-rest"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchWidth = "var(--smtc-ctrl-choice-lg-switch-width)"; - -// @public (undocumented) -export const ctrlChoiceLgSwitchWidthRaw = "--smtc-ctrl-choice-lg-switch-width"; - -// @public (undocumented) -export const ctrlChoicePaddingHorizontal = "var(--smtc-ctrl-choice-padding-horizontal)"; - -// @public (undocumented) -export const ctrlChoicePaddingHorizontalRaw = "--smtc-ctrl-choice-padding-horizontal"; - -// @public (undocumented) -export const ctrlChoicePaddingVertical = "var(--smtc-ctrl-choice-padding-vertical)"; - -// @public (undocumented) -export const ctrlChoicePaddingVerticalRaw = "--smtc-ctrl-choice-padding-vertical"; - -// @public (undocumented) -export const ctrlChoiceRadioCorner = "var(--smtc-ctrl-choice-radio-corner, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlChoiceRadioCornerRaw = "--smtc-ctrl-choice-radio-corner"; - -// @public (undocumented) -export const ctrlChoiceRadioDotSizeHover = "var(--smtc-ctrl-choice-radio-dot-size-hover, var(--smtc-ctrl-choice-radio-dot-size-rest))"; - -// @public (undocumented) -export const ctrlChoiceRadioDotSizeHoverRaw = "--smtc-ctrl-choice-radio-dot-size-hover"; - -// @public (undocumented) -export const ctrlChoiceRadioDotSizePressed = "var(--smtc-ctrl-choice-radio-dot-size-pressed, var(--smtc-ctrl-choice-radio-dot-size-rest))"; - -// @public (undocumented) -export const ctrlChoiceRadioDotSizePressedRaw = "--smtc-ctrl-choice-radio-dot-size-pressed"; - -// @public (undocumented) -export const ctrlChoiceRadioDotSizeRest = "var(--smtc-ctrl-choice-radio-dot-size-rest)"; - -// @public (undocumented) -export const ctrlChoiceRadioDotSizeRestRaw = "--smtc-ctrl-choice-radio-dot-size-rest"; - -// @public (undocumented) -export const ctrlChoiceSmBaseSize = "var(--smtc-ctrl-choice-sm-base-size, var(--smtc-size-ctrl-sm-icon))"; - -// @public (undocumented) -export const ctrlChoiceSmBaseSizeRaw = "--smtc-ctrl-choice-sm-base-size"; - -// @public (undocumented) -export const ctrlChoiceSmCheckboxCorner = "var(--smtc-ctrl-choice-sm-checkbox-corner)"; - -// @public (undocumented) -export const ctrlChoiceSmCheckboxCornerRaw = "--smtc-ctrl-choice-sm-checkbox-corner"; - -// @public (undocumented) -export const ctrlChoiceSmCheckboxIconSize = "var(--smtc-ctrl-choice-sm-checkbox-icon-size, var(--smtc-size-ctrl-iconsecondary))"; - -// @public (undocumented) -export const ctrlChoiceSmCheckboxIconSizeFigmaonly = "var(--smtc-ctrl-choice-sm-checkbox-icon-sizefigmaonly)"; - -// @public (undocumented) -export const ctrlChoiceSmCheckboxIconSizeFigmaonlyRaw = "--smtc-ctrl-choice-sm-checkbox-icon-sizefigmaonly"; - -// @public (undocumented) -export const ctrlChoiceSmCheckboxIconSizeRaw = "--smtc-ctrl-choice-sm-checkbox-icon-size"; - -// @public (undocumented) -export const ctrlChoiceSmRadioDotSize = "var(--smtc-ctrl-choice-sm-radio-dot-size)"; - -// @public (undocumented) -export const ctrlChoiceSmRadioDotSizeRaw = "--smtc-ctrl-choice-sm-radio-dot-size"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchHeight = "var(--smtc-ctrl-choice-sm-switch-height, var(--smtc-size-ctrl-sm-icon))"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchHeightRaw = "--smtc-ctrl-choice-sm-switch-height"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchThumbWidthHover = "var(--smtc-ctrl-choice-sm-switch-thumb-width-hover, var(--smtc-ctrl-choice-sm-switch-thumb-width-rest))"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchThumbWidthHoverRaw = "--smtc-ctrl-choice-sm-switch-thumb-width-hover"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchThumbWidthPressed = "var(--smtc-ctrl-choice-sm-switch-thumb-width-pressed, var(--smtc-ctrl-choice-sm-switch-thumb-width-rest))"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchThumbWidthPressedRaw = "--smtc-ctrl-choice-sm-switch-thumb-width-pressed"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchThumbWidthRest = "var(--smtc-ctrl-choice-sm-switch-thumb-width-rest)"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchThumbWidthRestRaw = "--smtc-ctrl-choice-sm-switch-thumb-width-rest"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchWidth = "var(--smtc-ctrl-choice-sm-switch-width)"; - -// @public (undocumented) -export const ctrlChoiceSmSwitchWidthRaw = "--smtc-ctrl-choice-sm-switch-width"; - -// @public (undocumented) -export const ctrlChoiceSwitchCorner = "var(--smtc-ctrl-choice-switch-corner, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlChoiceSwitchCornerRaw = "--smtc-ctrl-choice-switch-corner"; - -// @public (undocumented) -export const ctrlChoiceSwitchHeight = "var(--smtc-ctrl-choice-switch-height, var(--smtc-size-ctrl-icon))"; - -// @public (undocumented) -export const ctrlChoiceSwitchHeightRaw = "--smtc-ctrl-choice-switch-height"; - -// @public (undocumented) -export const ctrlChoiceSwitchPaddingHover = "var(--smtc-ctrl-choice-switch-padding-hover, var(--smtc-ctrl-choice-switch-padding-rest))"; - -// @public (undocumented) -export const ctrlChoiceSwitchPaddingHoverRaw = "--smtc-ctrl-choice-switch-padding-hover"; - -// @public (undocumented) -export const ctrlChoiceSwitchPaddingPressed = "var(--smtc-ctrl-choice-switch-padding-pressed, var(--smtc-ctrl-choice-switch-padding-rest))"; - -// @public (undocumented) -export const ctrlChoiceSwitchPaddingPressedRaw = "--smtc-ctrl-choice-switch-padding-pressed"; - -// @public (undocumented) -export const ctrlChoiceSwitchPaddingRest = "var(--smtc-ctrl-choice-switch-padding-rest)"; - -// @public (undocumented) -export const ctrlChoiceSwitchPaddingRestRaw = "--smtc-ctrl-choice-switch-padding-rest"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowAmbientBlur = "var(--smtc-ctrl-choice-switch-thumb-shadow-ambient-blur, unset)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowAmbientBlurRaw = "--smtc-ctrl-choice-switch-thumb-shadow-ambient-blur"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowAmbientColor = "var(--smtc-ctrl-choice-switch-thumb-shadow-ambient-color, unset)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowAmbientColorRaw = "--smtc-ctrl-choice-switch-thumb-shadow-ambient-color"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowAmbientX = "var(--smtc-ctrl-choice-switch-thumb-shadow-ambient-x, unset)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowAmbientXRaw = "--smtc-ctrl-choice-switch-thumb-shadow-ambient-x"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowAmbientY = "var(--smtc-ctrl-choice-switch-thumb-shadow-ambient-y, unset)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowAmbientYRaw = "--smtc-ctrl-choice-switch-thumb-shadow-ambient-y"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowKeyBlur = "var(--smtc-ctrl-choice-switch-thumb-shadow-key-blur, unset)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowKeyBlurRaw = "--smtc-ctrl-choice-switch-thumb-shadow-key-blur"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowKeyColor = "var(--smtc-ctrl-choice-switch-thumb-shadow-key-color, unset)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowKeyColorRaw = "--smtc-ctrl-choice-switch-thumb-shadow-key-color"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowKeyX = "var(--smtc-ctrl-choice-switch-thumb-shadow-key-x, unset)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowKeyXRaw = "--smtc-ctrl-choice-switch-thumb-shadow-key-x"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowKeyY = "var(--smtc-ctrl-choice-switch-thumb-shadow-key-y, unset)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbShadowKeyYRaw = "--smtc-ctrl-choice-switch-thumb-shadow-key-y"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbWidthHover = "var(--smtc-ctrl-choice-switch-thumb-width-hover, var(--smtc-ctrl-choice-switch-thumb-width-rest))"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbWidthHoverRaw = "--smtc-ctrl-choice-switch-thumb-width-hover"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbWidthPressed = "var(--smtc-ctrl-choice-switch-thumb-width-pressed, var(--smtc-ctrl-choice-switch-thumb-width-rest))"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbWidthPressedRaw = "--smtc-ctrl-choice-switch-thumb-width-pressed"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbWidthRest = "var(--smtc-ctrl-choice-switch-thumb-width-rest)"; - -// @public (undocumented) -export const ctrlChoiceSwitchThumbWidthRestRaw = "--smtc-ctrl-choice-switch-thumb-width-rest"; - -// @public (undocumented) -export const ctrlChoiceSwitchWidth = "var(--smtc-ctrl-choice-switch-width)"; - -// @public (undocumented) -export const ctrlChoiceSwitchWidthRaw = "--smtc-ctrl-choice-switch-width"; - -// @public (undocumented) -export const ctrlComposerContainerBackgroundAcryliccolorblend = "var(--smtc-ctrl-composer-container-background-acryliccolorblend, var(--smtc-background-flyout-solid))"; - -// @public (undocumented) -export const ctrlComposerContainerBackgroundAcryliccolorblendRaw = "--smtc-ctrl-composer-container-background-acryliccolorblend"; - -// @public (undocumented) -export const ctrlComposerContainerBackgroundAcryliclumblend = "var(--smtc-ctrl-composer-container-background-acryliclumblend, var(--smtc-background-flyout-solid))"; - -// @public (undocumented) -export const ctrlComposerContainerBackgroundAcryliclumblendRaw = "--smtc-ctrl-composer-container-background-acryliclumblend"; - -// @public (undocumented) -export const ctrlComposerContainerBackgroundDefault = "var(--smtc-ctrl-composer-container-background-default)"; - -// @public (undocumented) -export const ctrlComposerContainerBackgroundDefaultRaw = "--smtc-ctrl-composer-container-background-default"; - -// @public (undocumented) -export const ctrlComposerContainerCorner = "var(--smtc-ctrl-composer-container-corner)"; - -// @public (undocumented) -export const ctrlComposerContainerCornerRaw = "--smtc-ctrl-composer-container-corner"; - -// @public (undocumented) -export const ctrlComposerContainerShadowAmbientBlur = "var(--smtc-ctrl-composer-container-shadow-ambient-blur)"; - -// @public (undocumented) -export const ctrlComposerContainerShadowAmbientBlurRaw = "--smtc-ctrl-composer-container-shadow-ambient-blur"; - -// @public (undocumented) -export const ctrlComposerContainerShadowAmbientColor = "var(--smtc-ctrl-composer-container-shadow-ambient-color)"; - -// @public (undocumented) -export const ctrlComposerContainerShadowAmbientColorRaw = "--smtc-ctrl-composer-container-shadow-ambient-color"; - -// @public (undocumented) -export const ctrlComposerContainerShadowAmbientX = "var(--smtc-ctrl-composer-container-shadow-ambient-x)"; - -// @public (undocumented) -export const ctrlComposerContainerShadowAmbientXRaw = "--smtc-ctrl-composer-container-shadow-ambient-x"; - -// @public (undocumented) -export const ctrlComposerContainerShadowAmbientY = "var(--smtc-ctrl-composer-container-shadow-ambient-y)"; - -// @public (undocumented) -export const ctrlComposerContainerShadowAmbientYRaw = "--smtc-ctrl-composer-container-shadow-ambient-y"; - -// @public (undocumented) -export const ctrlComposerContainerShadowKeyBlur = "var(--smtc-ctrl-composer-container-shadow-key-blur)"; - -// @public (undocumented) -export const ctrlComposerContainerShadowKeyBlurRaw = "--smtc-ctrl-composer-container-shadow-key-blur"; - -// @public (undocumented) -export const ctrlComposerContainerShadowKeyColor = "var(--smtc-ctrl-composer-container-shadow-key-color)"; - -// @public (undocumented) -export const ctrlComposerContainerShadowKeyColorRaw = "--smtc-ctrl-composer-container-shadow-key-color"; - -// @public (undocumented) -export const ctrlComposerContainerShadowKeyX = "var(--smtc-ctrl-composer-container-shadow-key-x)"; - -// @public (undocumented) -export const ctrlComposerContainerShadowKeyXRaw = "--smtc-ctrl-composer-container-shadow-key-x"; - -// @public (undocumented) -export const ctrlComposerContainerShadowKeyY = "var(--smtc-ctrl-composer-container-shadow-key-y)"; - -// @public (undocumented) -export const ctrlComposerContainerShadowKeyYRaw = "--smtc-ctrl-composer-container-shadow-key-y"; - -// @public (undocumented) -export const ctrlComposerContainerStrokeDefault = "var(--smtc-ctrl-composer-container-stroke-default, unset)"; - -// @public (undocumented) -export const ctrlComposerContainerStrokeDefaultRaw = "--smtc-ctrl-composer-container-stroke-default"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundDisabled = "var(--smtc-ctrl-composer-input-background-disabled)"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundDisabledRaw = "--smtc-ctrl-composer-input-background-disabled"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundHover = "var(--smtc-ctrl-composer-input-background-hover)"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundHoverRaw = "--smtc-ctrl-composer-input-background-hover"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundPressed = "var(--smtc-ctrl-composer-input-background-pressed)"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundPressedRaw = "--smtc-ctrl-composer-input-background-pressed"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundRest = "var(--smtc-ctrl-composer-input-background-rest)"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundRestRaw = "--smtc-ctrl-composer-input-background-rest"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundSelectedRest = "var(--smtc-ctrl-composer-input-background-selected-rest)"; - -// @public (undocumented) -export const ctrlComposerInputBackgroundSelectedRestRaw = "--smtc-ctrl-composer-input-background-selected-rest"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokeDisabled = "var(--smtc-ctrl-composer-input-bottomstroke-disabled, unset)"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokeDisabledRaw = "--smtc-ctrl-composer-input-bottomstroke-disabled"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokeHover = "var(--smtc-ctrl-composer-input-bottomstroke-hover, unset)"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokeHoverRaw = "--smtc-ctrl-composer-input-bottomstroke-hover"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokePressed = "var(--smtc-ctrl-composer-input-bottomstroke-pressed, unset)"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokePressedRaw = "--smtc-ctrl-composer-input-bottomstroke-pressed"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokeRest = "var(--smtc-ctrl-composer-input-bottomstroke-rest, unset)"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokeRestRaw = "--smtc-ctrl-composer-input-bottomstroke-rest"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokeSelectedRest = "var(--smtc-ctrl-composer-input-bottomstroke-selected-rest, unset)"; - -// @public (undocumented) -export const ctrlComposerInputBottomstrokeSelectedRestRaw = "--smtc-ctrl-composer-input-bottomstroke-selected-rest"; - -// @public (undocumented) -export const ctrlComposerInputBottomStrokeWidthHover = "var(--smtc-ctrl-composer-input-bottom-stroke-width-hover)"; - -// @public (undocumented) -export const ctrlComposerInputBottomStrokeWidthHoverRaw = "--smtc-ctrl-composer-input-bottom-stroke-width-hover"; - -// @public (undocumented) -export const ctrlComposerInputBottomStrokeWidthPressed = "var(--smtc-ctrl-composer-input-bottom-stroke-width-pressed)"; - -// @public (undocumented) -export const ctrlComposerInputBottomStrokeWidthPressedRaw = "--smtc-ctrl-composer-input-bottom-stroke-width-pressed"; - -// @public (undocumented) -export const ctrlComposerInputBottomStrokeWidthRest = "var(--smtc-ctrl-composer-input-bottom-stroke-width-rest)"; - -// @public (undocumented) -export const ctrlComposerInputBottomStrokeWidthRestRaw = "--smtc-ctrl-composer-input-bottom-stroke-width-rest"; - -// @public (undocumented) -export const ctrlComposerInputBottomStrokeWidthSelectedRest = "var(--smtc-ctrl-composer-input-bottom-stroke-width-selected-rest)"; - -// @public (undocumented) -export const ctrlComposerInputBottomStrokeWidthSelectedRestRaw = "--smtc-ctrl-composer-input-bottom-stroke-width-selected-rest"; - -// @public (undocumented) -export const ctrlComposerInputCornerHover = "var(--smtc-ctrl-composer-input-corner-hover)"; - -// @public (undocumented) -export const ctrlComposerInputCornerHoverRaw = "--smtc-ctrl-composer-input-corner-hover"; - -// @public (undocumented) -export const ctrlComposerInputCornerPressed = "var(--smtc-ctrl-composer-input-corner-pressed)"; - -// @public (undocumented) -export const ctrlComposerInputCornerPressedRaw = "--smtc-ctrl-composer-input-corner-pressed"; - -// @public (undocumented) -export const ctrlComposerInputCornerRest = "var(--smtc-ctrl-composer-input-corner-rest)"; - -// @public (undocumented) -export const ctrlComposerInputCornerRestRaw = "--smtc-ctrl-composer-input-corner-rest"; - -// @public (undocumented) -export const ctrlComposerInputShadowBlur = "var(--smtc-ctrl-composer-input-shadow-blur)"; - -// @public (undocumented) -export const ctrlComposerInputShadowBlurRaw = "--smtc-ctrl-composer-input-shadow-blur"; - -// @public (undocumented) -export const ctrlComposerInputShadowColor = "var(--smtc-ctrl-composer-input-shadow-color)"; - -// @public (undocumented) -export const ctrlComposerInputShadowColorRaw = "--smtc-ctrl-composer-input-shadow-color"; - -// @public (undocumented) -export const ctrlComposerInputShadowXOffset = "var(--smtc-ctrl-composer-input-shadow-x-offset)"; - -// @public (undocumented) -export const ctrlComposerInputShadowXOffsetRaw = "--smtc-ctrl-composer-input-shadow-x-offset"; - -// @public (undocumented) -export const ctrlComposerInputShadowY = "var(--smtc-ctrl-composer-input-shadow-y)"; - -// @public (undocumented) -export const ctrlComposerInputShadowYRaw = "--smtc-ctrl-composer-input-shadow-y"; - -// @public (undocumented) -export const ctrlComposerInputStrokeDisabledUsesgradient = "var(--smtc-ctrl-composer-input-stroke-disabledusesgradient, unset)"; - -// @public (undocumented) -export const ctrlComposerInputStrokeDisabledUsesgradientRaw = "--smtc-ctrl-composer-input-stroke-disabledusesgradient"; - -// @public (undocumented) -export const ctrlComposerInputStrokeHoverUsesgradient = "var(--smtc-ctrl-composer-input-stroke-hoverusesgradient, unset)"; - -// @public (undocumented) -export const ctrlComposerInputStrokeHoverUsesgradientRaw = "--smtc-ctrl-composer-input-stroke-hoverusesgradient"; - -// @public (undocumented) -export const ctrlComposerInputStrokePressedUsesgradient = "var(--smtc-ctrl-composer-input-stroke-pressedusesgradient, unset)"; - -// @public (undocumented) -export const ctrlComposerInputStrokePressedUsesgradientRaw = "--smtc-ctrl-composer-input-stroke-pressedusesgradient"; - -// @public (undocumented) -export const ctrlComposerInputStrokeRest = "var(--smtc-ctrl-composer-input-stroke-rest, unset)"; - -// @public (undocumented) -export const ctrlComposerInputStrokeRestRaw = "--smtc-ctrl-composer-input-stroke-rest"; - -// @public (undocumented) -export const ctrlComposerInputStrokeSelectedRestUsesgradient = "var(--smtc-ctrl-composer-input-stroke-selected-restusesgradient, unset)"; - -// @public (undocumented) -export const ctrlComposerInputStrokeSelectedRestUsesgradientRaw = "--smtc-ctrl-composer-input-stroke-selected-restusesgradient"; - -// @public (undocumented) -export const ctrlComposerInputStrokeWidthHover = "var(--smtc-ctrl-composer-input-stroke-width-hover)"; - -// @public (undocumented) -export const ctrlComposerInputStrokeWidthHoverRaw = "--smtc-ctrl-composer-input-stroke-width-hover"; - -// @public (undocumented) -export const ctrlComposerInputStrokeWidthPressed = "var(--smtc-ctrl-composer-input-stroke-width-pressed)"; - -// @public (undocumented) -export const ctrlComposerInputStrokeWidthPressedRaw = "--smtc-ctrl-composer-input-stroke-width-pressed"; - -// @public (undocumented) -export const ctrlComposerInputStrokeWidthRest = "var(--smtc-ctrl-composer-input-stroke-width-rest)"; - -// @public (undocumented) -export const ctrlComposerInputStrokeWidthRestRaw = "--smtc-ctrl-composer-input-stroke-width-rest"; - -// @public (undocumented) -export const ctrlComposerInputStrokeWidthSelectedRest = "var(--smtc-ctrl-composer-input-stroke-width-selected-rest)"; - -// @public (undocumented) -export const ctrlComposerInputStrokeWidthSelectedRestRaw = "--smtc-ctrl-composer-input-stroke-width-selected-rest"; - -// @public (undocumented) -export const ctrlDialogBackground = "var(--smtc-ctrl-dialog-background)"; - -// @public (undocumented) -export const ctrlDialogBackgroundRaw = "--smtc-ctrl-dialog-background"; - -// @public (undocumented) -export const ctrlDialogBaseCorner = "var(--smtc-ctrl-dialog-base-corner, var(--smtc-corner-card-rest))"; - -// @public (undocumented) -export const ctrlDialogBaseCornerRaw = "--smtc-ctrl-dialog-base-corner"; - -// @public (undocumented) -export const ctrlDialogBaseShadowAmbientBlur = "var(--smtc-ctrl-dialog-base-shadow-ambient-blur)"; - -// @public (undocumented) -export const ctrlDialogBaseShadowAmbientBlurRaw = "--smtc-ctrl-dialog-base-shadow-ambient-blur"; - -// @public (undocumented) -export const ctrlDialogBaseShadowAmbientColor = "var(--smtc-ctrl-dialog-base-shadow-ambient-color)"; - -// @public (undocumented) -export const ctrlDialogBaseShadowAmbientColorRaw = "--smtc-ctrl-dialog-base-shadow-ambient-color"; - -// @public (undocumented) -export const ctrlDialogBaseShadowAmbientX = "var(--smtc-ctrl-dialog-base-shadow-ambient-x)"; - -// @public (undocumented) -export const ctrlDialogBaseShadowAmbientXRaw = "--smtc-ctrl-dialog-base-shadow-ambient-x"; - -// @public (undocumented) -export const ctrlDialogBaseShadowAmbientY = "var(--smtc-ctrl-dialog-base-shadow-ambient-y)"; - -// @public (undocumented) -export const ctrlDialogBaseShadowAmbientYRaw = "--smtc-ctrl-dialog-base-shadow-ambient-y"; - -// @public (undocumented) -export const ctrlDialogBaseShadowKeyBlur = "var(--smtc-ctrl-dialog-base-shadow-key-blur)"; - -// @public (undocumented) -export const ctrlDialogBaseShadowKeyBlurRaw = "--smtc-ctrl-dialog-base-shadow-key-blur"; - -// @public (undocumented) -export const ctrlDialogBaseShadowKeyColor = "var(--smtc-ctrl-dialog-base-shadow-key-color)"; - -// @public (undocumented) -export const ctrlDialogBaseShadowKeyColorRaw = "--smtc-ctrl-dialog-base-shadow-key-color"; - -// @public (undocumented) -export const ctrlDialogBaseShadowKeyX = "var(--smtc-ctrl-dialog-base-shadow-key-x)"; - -// @public (undocumented) -export const ctrlDialogBaseShadowKeyXRaw = "--smtc-ctrl-dialog-base-shadow-key-x"; - -// @public (undocumented) -export const ctrlDialogBaseShadowKeyY = "var(--smtc-ctrl-dialog-base-shadow-key-y)"; - -// @public (undocumented) -export const ctrlDialogBaseShadowKeyYRaw = "--smtc-ctrl-dialog-base-shadow-key-y"; - -// @public (undocumented) -export const ctrlDialogLayerBackground = "var(--smtc-ctrl-dialog-layer-background, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const ctrlDialogLayerBackgroundRaw = "--smtc-ctrl-dialog-layer-background"; - -// @public (undocumented) -export const ctrlDialogLayerPaddingBottom = "var(--smtc-ctrl-dialog-layer-padding-bottom)"; - -// @public (undocumented) -export const ctrlDialogLayerPaddingBottomRaw = "--smtc-ctrl-dialog-layer-padding-bottom"; - -// @public (undocumented) -export const ctrlDialogStroke = "var(--smtc-ctrl-dialog-stroke, unset)"; - -// @public (undocumented) -export const ctrlDialogStrokeRaw = "--smtc-ctrl-dialog-stroke"; - -// @public (undocumented) -export const ctrlDividerFixedlineLength = "var(--smtc-ctrl-divider-fixedline-length, var(--smtc-padding-content-align-default))"; - -// @public (undocumented) -export const ctrlDividerFixedlineLengthRaw = "--smtc-ctrl-divider-fixedline-length"; - -// @public (undocumented) -export const ctrlDragBackgroundColorblend = "var(--smtc-ctrl-drag-background-colorblend)"; - -// @public (undocumented) -export const ctrlDragBackgroundColorblendRaw = "--smtc-ctrl-drag-background-colorblend"; - -// @public (undocumented) -export const ctrlDragBackgroundLumblend = "var(--smtc-ctrl-drag-background-lumblend)"; - -// @public (undocumented) -export const ctrlDragBackgroundLumblendRaw = "--smtc-ctrl-drag-background-lumblend"; - -// @public (undocumented) -export const ctrlDragBackgroundSolid = "var(--smtc-ctrl-drag-background-solid)"; - -// @public (undocumented) -export const ctrlDragBackgroundSolidRaw = "--smtc-ctrl-drag-background-solid"; - -// @public (undocumented) -export const ctrlFabBackgroundDisabled = "var(--smtc-ctrl-fab-background-disabled)"; - -// @public (undocumented) -export const ctrlFabBackgroundDisabledRaw = "--smtc-ctrl-fab-background-disabled"; - -// @public (undocumented) -export const ctrlFabBackgroundHover = "var(--smtc-ctrl-fab-background-hover)"; - -// @public (undocumented) -export const ctrlFabBackgroundHoverRaw = "--smtc-ctrl-fab-background-hover"; - -// @public (undocumented) -export const ctrlFabBackgroundPressed = "var(--smtc-ctrl-fab-background-pressed)"; - -// @public (undocumented) -export const ctrlFabBackgroundPressedRaw = "--smtc-ctrl-fab-background-pressed"; - -// @public (undocumented) -export const ctrlFabBackgroundRest = "var(--smtc-ctrl-fab-background-rest)"; - -// @public (undocumented) -export const ctrlFabBackgroundRestRaw = "--smtc-ctrl-fab-background-rest"; - -// @public (undocumented) -export const ctrlFabCornerHover = "var(--smtc-ctrl-fab-corner-hover, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlFabCornerHoverRaw = "--smtc-ctrl-fab-corner-hover"; - -// @public (undocumented) -export const ctrlFabCornerPressed = "var(--smtc-ctrl-fab-corner-pressed, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlFabCornerPressedRaw = "--smtc-ctrl-fab-corner-pressed"; - -// @public (undocumented) -export const ctrlFabCornerRest = "var(--smtc-ctrl-fab-corner-rest, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlFabCornerRestRaw = "--smtc-ctrl-fab-corner-rest"; - -// @public (undocumented) -export const ctrlFabShadowDisabledKeyBlur = "var(--smtc-ctrl-fab-shadow-disabled-key-blur, var(--smtc-ctrl-fab-shadow-pressed-key-blur))"; - -// @public (undocumented) -export const ctrlFabShadowDisabledKeyBlurRaw = "--smtc-ctrl-fab-shadow-disabled-key-blur"; - -// @public (undocumented) -export const ctrlFabShadowDisabledKeyColor = "var(--smtc-ctrl-fab-shadow-disabled-key-color, var(--smtc-ctrl-fab-shadow-pressed-key-color))"; - -// @public (undocumented) -export const ctrlFabShadowDisabledKeyColorRaw = "--smtc-ctrl-fab-shadow-disabled-key-color"; - -// @public (undocumented) -export const ctrlFabShadowDisabledKeyX = "var(--smtc-ctrl-fab-shadow-disabled-key-x, var(--smtc-ctrl-fab-shadow-pressed-key-x))"; - -// @public (undocumented) -export const ctrlFabShadowDisabledKeyXRaw = "--smtc-ctrl-fab-shadow-disabled-key-x"; - -// @public (undocumented) -export const ctrlFabShadowDisabledKeyY = "var(--smtc-ctrl-fab-shadow-disabled-key-y, var(--smtc-ctrl-fab-shadow-pressed-key-y))"; - -// @public (undocumented) -export const ctrlFabShadowDisabledKeyYRaw = "--smtc-ctrl-fab-shadow-disabled-key-y"; - -// @public (undocumented) -export const ctrlFabShadowHoverKeyBlur = "var(--smtc-ctrl-fab-shadow-hover-key-blur, var(--smtc-shadow-flyout-key-blur))"; - -// @public (undocumented) -export const ctrlFabShadowHoverKeyBlurRaw = "--smtc-ctrl-fab-shadow-hover-key-blur"; - -// @public (undocumented) -export const ctrlFabShadowHoverKeyColor = "var(--smtc-ctrl-fab-shadow-hover-key-color, var(--smtc-shadow-flyout-key-color))"; - -// @public (undocumented) -export const ctrlFabShadowHoverKeyColorRaw = "--smtc-ctrl-fab-shadow-hover-key-color"; - -// @public (undocumented) -export const ctrlFabShadowHoverKeyX = "var(--smtc-ctrl-fab-shadow-hover-key-x, var(--smtc-shadow-flyout-key-x))"; - -// @public (undocumented) -export const ctrlFabShadowHoverKeyXRaw = "--smtc-ctrl-fab-shadow-hover-key-x"; - -// @public (undocumented) -export const ctrlFabShadowHoverKeyY = "var(--smtc-ctrl-fab-shadow-hover-key-y, var(--smtc-shadow-flyout-key-y))"; - -// @public (undocumented) -export const ctrlFabShadowHoverKeyYRaw = "--smtc-ctrl-fab-shadow-hover-key-y"; - -// @public (undocumented) -export const ctrlFabShadowPressedKeyBlur = "var(--smtc-ctrl-fab-shadow-pressed-key-blur)"; - -// @public (undocumented) -export const ctrlFabShadowPressedKeyBlurRaw = "--smtc-ctrl-fab-shadow-pressed-key-blur"; - -// @public (undocumented) -export const ctrlFabShadowPressedKeyColor = "var(--smtc-ctrl-fab-shadow-pressed-key-color)"; - -// @public (undocumented) -export const ctrlFabShadowPressedKeyColorRaw = "--smtc-ctrl-fab-shadow-pressed-key-color"; - -// @public (undocumented) -export const ctrlFabShadowPressedKeyX = "var(--smtc-ctrl-fab-shadow-pressed-key-x)"; - -// @public (undocumented) -export const ctrlFabShadowPressedKeyXRaw = "--smtc-ctrl-fab-shadow-pressed-key-x"; - -// @public (undocumented) -export const ctrlFabShadowPressedKeyY = "var(--smtc-ctrl-fab-shadow-pressed-key-y)"; - -// @public (undocumented) -export const ctrlFabShadowPressedKeyYRaw = "--smtc-ctrl-fab-shadow-pressed-key-y"; - -// @public (undocumented) -export const ctrlFabShadowRestAmbientBlur = "var(--smtc-ctrl-fab-shadow-rest-ambient-blur)"; - -// @public (undocumented) -export const ctrlFabShadowRestAmbientBlurRaw = "--smtc-ctrl-fab-shadow-rest-ambient-blur"; - -// @public (undocumented) -export const ctrlFabShadowRestAmbientColor = "var(--smtc-ctrl-fab-shadow-rest-ambient-color)"; - -// @public (undocumented) -export const ctrlFabShadowRestAmbientColorRaw = "--smtc-ctrl-fab-shadow-rest-ambient-color"; - -// @public (undocumented) -export const ctrlFabShadowRestAmbientX = "var(--smtc-ctrl-fab-shadow-rest-ambient-x)"; - -// @public (undocumented) -export const ctrlFabShadowRestAmbientXRaw = "--smtc-ctrl-fab-shadow-rest-ambient-x"; - -// @public (undocumented) -export const ctrlFabShadowRestAmbientY = "var(--smtc-ctrl-fab-shadow-rest-ambient-y)"; - -// @public (undocumented) -export const ctrlFabShadowRestAmbientYRaw = "--smtc-ctrl-fab-shadow-rest-ambient-y"; - -// @public (undocumented) -export const ctrlFabShadowRestKeyBlur = "var(--smtc-ctrl-fab-shadow-rest-key-blur)"; - -// @public (undocumented) -export const ctrlFabShadowRestKeyBlurRaw = "--smtc-ctrl-fab-shadow-rest-key-blur"; - -// @public (undocumented) -export const ctrlFabShadowRestKeyColor = "var(--smtc-ctrl-fab-shadow-rest-key-color)"; - -// @public (undocumented) -export const ctrlFabShadowRestKeyColorRaw = "--smtc-ctrl-fab-shadow-rest-key-color"; - -// @public (undocumented) -export const ctrlFabShadowRestKeyX = "var(--smtc-ctrl-fab-shadow-rest-key-x)"; - -// @public (undocumented) -export const ctrlFabShadowRestKeyXRaw = "--smtc-ctrl-fab-shadow-rest-key-x"; - -// @public (undocumented) -export const ctrlFabShadowRestKeyY = "var(--smtc-ctrl-fab-shadow-rest-key-y)"; - -// @public (undocumented) -export const ctrlFabShadowRestKeyYRaw = "--smtc-ctrl-fab-shadow-rest-key-y"; - -// @public (undocumented) -export const ctrlFocusInnerStroke = "var(--smtc-ctrl-focus-inner-stroke)"; - -// @public (undocumented) -export const ctrlFocusInnerStrokeRaw = "--smtc-ctrl-focus-inner-stroke"; - -// @public (undocumented) -export const ctrlFocusInnerStrokewidth = "var(--smtc-ctrl-focus-inner-strokewidth, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlFocusInnerStrokewidthRaw = "--smtc-ctrl-focus-inner-strokewidth"; - -// @public (undocumented) -export const ctrlFocusOuterStroke = "var(--smtc-ctrl-focus-outer-stroke, var(--smtc-background-ctrl-brand-rest, var(--colorStrokeFocus2)))"; - -// @public (undocumented) -export const ctrlFocusOuterStrokeRaw = "--smtc-ctrl-focus-outer-stroke"; - -// @public (undocumented) -export const ctrlFocusOuterStrokewidth = "var(--smtc-ctrl-focus-outer-strokewidth)"; - -// @public (undocumented) -export const ctrlFocusOuterStrokewidthRaw = "--smtc-ctrl-focus-outer-strokewidth"; - -// @public (undocumented) -export const ctrlFocusPositionFigmaonly = "var(--smtc-ctrl-focus-positionfigmaonly)"; - -// @public (undocumented) -export const ctrlFocusPositionFigmaonlyRaw = "--smtc-ctrl-focus-positionfigmaonly"; - -// @public (undocumented) -export const ctrlInputBackgroundDisabled = "var(--smtc-ctrl-input-background-disabled, var(--smtc-background-ctrl-neutral-disabled))"; - -// @public (undocumented) -export const ctrlInputBackgroundDisabledRaw = "--smtc-ctrl-input-background-disabled"; - -// @public (undocumented) -export const ctrlInputBackgroundError = "var(--smtc-ctrl-input-background-error, var(--smtc-background-ctrl-neutral-rest))"; - -// @public (undocumented) -export const ctrlInputBackgroundErrorRaw = "--smtc-ctrl-input-background-error"; - -// @public (undocumented) -export const ctrlInputBackgroundHover = "var(--smtc-ctrl-input-background-hover, var(--smtc-background-ctrl-neutral-hover))"; - -// @public (undocumented) -export const ctrlInputBackgroundHoverRaw = "--smtc-ctrl-input-background-hover"; - -// @public (undocumented) -export const ctrlInputBackgroundPressed = "var(--smtc-ctrl-input-background-pressed, var(--smtc-background-ctrl-neutral-pressed))"; - -// @public (undocumented) -export const ctrlInputBackgroundPressedRaw = "--smtc-ctrl-input-background-pressed"; - -// @public (undocumented) -export const ctrlInputBackgroundRest = "var(--smtc-ctrl-input-background-rest, var(--smtc-background-ctrl-neutral-rest))"; - -// @public (undocumented) -export const ctrlInputBackgroundRestRaw = "--smtc-ctrl-input-background-rest"; - -// @public (undocumented) -export const ctrlInputBackgroundSelected = "var(--smtc-ctrl-input-background-selected, var(--smtc-background-ctrl-neutral-rest))"; - -// @public (undocumented) -export const ctrlInputBackgroundSelectedRaw = "--smtc-ctrl-input-background-selected"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeDisabled = "var(--smtc-ctrl-input-bottomline-stroke-disabled, unset)"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeDisabledRaw = "--smtc-ctrl-input-bottomline-stroke-disabled"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeError = "var(--smtc-ctrl-input-bottomline-stroke-error, unset)"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeErrorRaw = "--smtc-ctrl-input-bottomline-stroke-error"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeHover = "var(--smtc-ctrl-input-bottomline-stroke-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeHoverRaw = "--smtc-ctrl-input-bottomline-stroke-hover"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokePressed = "var(--smtc-ctrl-input-bottomline-stroke-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokePressedRaw = "--smtc-ctrl-input-bottomline-stroke-pressed"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeRest = "var(--smtc-ctrl-input-bottomline-stroke-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeRestRaw = "--smtc-ctrl-input-bottomline-stroke-rest"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeSelected = "var(--smtc-ctrl-input-bottomline-stroke-selected, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokeSelectedRaw = "--smtc-ctrl-input-bottomline-stroke-selected"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokewidthHover = "var(--smtc-ctrl-input-bottomline-strokewidth-hover, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokewidthHoverRaw = "--smtc-ctrl-input-bottomline-strokewidth-hover"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokewidthPressed = "var(--smtc-ctrl-input-bottomline-strokewidth-pressed, var(--smtc-ctrl-input-bottomline-strokewidth-selected))"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokewidthPressedRaw = "--smtc-ctrl-input-bottomline-strokewidth-pressed"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokewidthRest = "var(--smtc-ctrl-input-bottomline-strokewidth-rest, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokewidthRestRaw = "--smtc-ctrl-input-bottomline-strokewidth-rest"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokewidthSelected = "var(--smtc-ctrl-input-bottomline-strokewidth-selected)"; - -// @public (undocumented) -export const ctrlInputBottomlineStrokewidthSelectedRaw = "--smtc-ctrl-input-bottomline-strokewidth-selected"; - -// @public (undocumented) -export const ctrlInputStrokeDisabled = "var(--smtc-ctrl-input-stroke-disabled, var(--smtc-stroke-ctrl-onoutline-disabled))"; - -// @public (undocumented) -export const ctrlInputStrokeDisabledRaw = "--smtc-ctrl-input-stroke-disabled"; - -// @public (undocumented) -export const ctrlInputStrokeError = "var(--smtc-ctrl-input-stroke-error, var(--smtc-status-danger-stroke))"; - -// @public (undocumented) -export const ctrlInputStrokeErrorRaw = "--smtc-ctrl-input-stroke-error"; - -// @public (undocumented) -export const ctrlInputStrokeHover = "var(--smtc-ctrl-input-stroke-hover, var(--smtc-stroke-ctrl-onoutline-hover))"; - -// @public (undocumented) -export const ctrlInputStrokeHoverRaw = "--smtc-ctrl-input-stroke-hover"; - -// @public (undocumented) -export const ctrlInputStrokePressed = "var(--smtc-ctrl-input-stroke-pressed, var(--smtc-stroke-ctrl-onoutline-pressed))"; - -// @public (undocumented) -export const ctrlInputStrokePressedRaw = "--smtc-ctrl-input-stroke-pressed"; - -// @public (undocumented) -export const ctrlInputStrokeRest = "var(--smtc-ctrl-input-stroke-rest, var(--smtc-stroke-ctrl-onoutline-rest))"; - -// @public (undocumented) -export const ctrlInputStrokeRestRaw = "--smtc-ctrl-input-stroke-rest"; - -// @public (undocumented) -export const ctrlInputStrokeSelected = "var(--smtc-ctrl-input-stroke-selected, var(--smtc-stroke-ctrl-onoutline-rest))"; - -// @public (undocumented) -export const ctrlInputStrokeSelectedRaw = "--smtc-ctrl-input-stroke-selected"; - -// @public (undocumented) -export const ctrlInputStrokewidthHover = "var(--smtc-ctrl-input-strokewidth-hover, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlInputStrokewidthHoverRaw = "--smtc-ctrl-input-strokewidth-hover"; - -// @public (undocumented) -export const ctrlInputStrokewidthPressed = "var(--smtc-ctrl-input-strokewidth-pressed, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlInputStrokewidthPressedRaw = "--smtc-ctrl-input-strokewidth-pressed"; - -// @public (undocumented) -export const ctrlInputStrokewidthRest = "var(--smtc-ctrl-input-strokewidth-rest, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlInputStrokewidthRestRaw = "--smtc-ctrl-input-strokewidth-rest"; - -// @public (undocumented) -export const ctrlInputStrokewidthSelected = "var(--smtc-ctrl-input-strokewidth-selected)"; - -// @public (undocumented) -export const ctrlInputStrokewidthSelectedRaw = "--smtc-ctrl-input-strokewidth-selected"; - -// @public (undocumented) -export const ctrlInputTextselectionBackground = "var(--smtc-ctrl-input-textselection-background, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlInputTextselectionBackgroundRaw = "--smtc-ctrl-input-textselection-background"; - -// @public (undocumented) -export const ctrlInputTextselectionForeground = "var(--smtc-ctrl-input-textselection-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const ctrlInputTextselectionForegroundRaw = "--smtc-ctrl-input-textselection-foreground"; - -// @public (undocumented) -export const ctrlLinkForegroundBrandHover = "var(--smtc-ctrl-link-foreground-brand-hover, var(--smtc-foreground-ctrl-brand-hover, var(--colorBrandForegroundLinkHover)))"; - -// @public (undocumented) -export const ctrlLinkForegroundBrandHoverRaw = "--smtc-ctrl-link-foreground-brand-hover"; - -// @public (undocumented) -export const ctrlLinkForegroundBrandPressed = "var(--smtc-ctrl-link-foreground-brand-pressed, var(--smtc-foreground-ctrl-brand-pressed, var(--colorBrandForegroundLinkPressed)))"; - -// @public (undocumented) -export const ctrlLinkForegroundBrandPressedRaw = "--smtc-ctrl-link-foreground-brand-pressed"; - -// @public (undocumented) -export const ctrlLinkForegroundBrandRest = "var(--smtc-ctrl-link-foreground-brand-rest, var(--smtc-foreground-ctrl-brand-rest, var(--colorBrandForegroundLink)))"; - -// @public (undocumented) -export const ctrlLinkForegroundBrandRestRaw = "--smtc-ctrl-link-foreground-brand-rest"; - -// @public (undocumented) -export const ctrlLinkForegroundNeutralHover = "var(--smtc-ctrl-link-foreground-neutral-hover, var(--smtc-foreground-ctrl-neutral-primary-rest, var(--colorNeutralForeground2Hover)))"; - -// @public (undocumented) -export const ctrlLinkForegroundNeutralHoverRaw = "--smtc-ctrl-link-foreground-neutral-hover"; - -// @public (undocumented) -export const ctrlLinkForegroundNeutralPressed = "var(--smtc-ctrl-link-foreground-neutral-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest, var(--colorNeutralForeground2Pressed)))"; - -// @public (undocumented) -export const ctrlLinkForegroundNeutralPressedRaw = "--smtc-ctrl-link-foreground-neutral-pressed"; - -// @public (undocumented) -export const ctrlLinkForegroundNeutralRest = "var(--smtc-ctrl-link-foreground-neutral-rest, var(--smtc-foreground-ctrl-neutral-primary-rest, var(--colorNeutralForeground2)))"; - -// @public (undocumented) -export const ctrlLinkForegroundNeutralRestRaw = "--smtc-ctrl-link-foreground-neutral-rest"; - -// @public (undocumented) -export const ctrlLinkInlineShowunderlineatrest = "var(--smtc-ctrl-link-inline-showunderlineatrest)"; - -// @public (undocumented) -export const ctrlLinkInlineShowunderlineatrestRaw = "--smtc-ctrl-link-inline-showunderlineatrest"; - -// @public (undocumented) -export const ctrlLinkInlineStrokewidthHover = "var(--smtc-ctrl-link-inline-strokewidth-hover, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlLinkInlineStrokewidthHoverRaw = "--smtc-ctrl-link-inline-strokewidth-hover"; - -// @public (undocumented) -export const ctrlLinkInlineStrokewidthRest = "var(--smtc-ctrl-link-inline-strokewidth-rest, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlLinkInlineStrokewidthRestRaw = "--smtc-ctrl-link-inline-strokewidth-rest"; - -// @public (undocumented) -export const ctrlLinkInlineUnderlineDashed = "var(--smtc-ctrl-link-inline-underline-dashed)"; - -// @public (undocumented) -export const ctrlLinkInlineUnderlineDashedRaw = "--smtc-ctrl-link-inline-underline-dashed"; - -// @public (undocumented) -export const ctrlLinkInlineUnderlineSolidFigmaonly = "var(--smtc-ctrl-link-inline-underline-solidfigmaonly)"; - -// @public (undocumented) -export const ctrlLinkInlineUnderlineSolidFigmaonlyRaw = "--smtc-ctrl-link-inline-underline-solidfigmaonly"; - -// @public (undocumented) -export const ctrlLinkOnpageShowunderlineatrest = "var(--smtc-ctrl-link-onpage-showunderlineatrest)"; - -// @public (undocumented) -export const ctrlLinkOnpageShowunderlineatrestRaw = "--smtc-ctrl-link-onpage-showunderlineatrest"; - -// @public (undocumented) -export const ctrlLinkOnpageStrokewidthHover = "var(--smtc-ctrl-link-onpage-strokewidth-hover, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlLinkOnpageStrokewidthHoverRaw = "--smtc-ctrl-link-onpage-strokewidth-hover"; - -// @public (undocumented) -export const ctrlLinkOnpageStrokewidthRest = "var(--smtc-ctrl-link-onpage-strokewidth-rest, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlLinkOnpageStrokewidthRestRaw = "--smtc-ctrl-link-onpage-strokewidth-rest"; - -// @public (undocumented) -export const ctrlLinkOnpageUnderlineDashed = "var(--smtc-ctrl-link-onpage-underline-dashed)"; - -// @public (undocumented) -export const ctrlLinkOnpageUnderlineDashedRaw = "--smtc-ctrl-link-onpage-underline-dashed"; - -// @public (undocumented) -export const ctrlLinkOnpageUnderlineSolidFigmaonly = "var(--smtc-ctrl-link-onpage-underline-solidfigmaonly)"; - -// @public (undocumented) -export const ctrlLinkOnpageUnderlineSolidFigmaonlyRaw = "--smtc-ctrl-link-onpage-underline-solidfigmaonly"; - -// @public (undocumented) -export const ctrlListBackgroundSelectedDisabled = "var(--smtc-ctrl-list-background-selected-disabled, var(--smtc-background-ctrl-subtle-disabled))"; - -// @public (undocumented) -export const ctrlListBackgroundSelectedDisabledRaw = "--smtc-ctrl-list-background-selected-disabled"; - -// @public (undocumented) -export const ctrlListBackgroundSelectedHover = "var(--smtc-ctrl-list-background-selected-hover, var(--smtc-background-ctrl-subtle-hover))"; - -// @public (undocumented) -export const ctrlListBackgroundSelectedHoverRaw = "--smtc-ctrl-list-background-selected-hover"; - -// @public (undocumented) -export const ctrlListBackgroundSelectedPressed = "var(--smtc-ctrl-list-background-selected-pressed, var(--smtc-background-ctrl-subtle-pressed))"; - -// @public (undocumented) -export const ctrlListBackgroundSelectedPressedRaw = "--smtc-ctrl-list-background-selected-pressed"; - -// @public (undocumented) -export const ctrlListBackgroundSelectedRest = "var(--smtc-ctrl-list-background-selected-rest, var(--smtc-background-ctrl-subtle-rest))"; - -// @public (undocumented) -export const ctrlListBackgroundSelectedRestRaw = "--smtc-ctrl-list-background-selected-rest"; - -// @public (undocumented) -export const ctrlListChoiceBackgroundDisabled = "var(--smtc-ctrl-list-choice-background-disabled, unset)"; - -// @public (undocumented) -export const ctrlListChoiceBackgroundDisabledRaw = "--smtc-ctrl-list-choice-background-disabled"; - -// @public (undocumented) -export const ctrlListChoiceBackgroundRest = "var(--smtc-ctrl-list-choice-background-rest, unset)"; - -// @public (undocumented) -export const ctrlListChoiceBackgroundRestRaw = "--smtc-ctrl-list-choice-background-rest"; - -// @public (undocumented) -export const ctrlListChoiceBackgroundSelectedDisabled = "var(--smtc-ctrl-list-choice-background-selected-disabled, unset)"; - -// @public (undocumented) -export const ctrlListChoiceBackgroundSelectedDisabledRaw = "--smtc-ctrl-list-choice-background-selected-disabled"; - -// @public (undocumented) -export const ctrlListChoiceBackgroundSelectedRest = "var(--smtc-ctrl-list-choice-background-selected-rest, unset)"; - -// @public (undocumented) -export const ctrlListChoiceBackgroundSelectedRestRaw = "--smtc-ctrl-list-choice-background-selected-rest"; - -// @public (undocumented) -export const ctrlListChoiceCheckboxCorner = "var(--smtc-ctrl-list-choice-checkbox-corner, var(--smtc-ctrl-choice-checkbox-corner))"; - -// @public (undocumented) -export const ctrlListChoiceCheckboxCornerRaw = "--smtc-ctrl-list-choice-checkbox-corner"; - -// @public (undocumented) -export const ctrlListChoiceCheckboxIconSize = "var(--smtc-ctrl-list-choice-checkbox-icon-size, var(--smtc-size-ctrl-iconsecondary))"; - -// @public (undocumented) -export const ctrlListChoiceCheckboxIconSizeFigmaonly = "var(--smtc-ctrl-list-choice-checkbox-icon-sizefigmaonly)"; - -// @public (undocumented) -export const ctrlListChoiceCheckboxIconSizeFigmaonlyRaw = "--smtc-ctrl-list-choice-checkbox-icon-sizefigmaonly"; - -// @public (undocumented) -export const ctrlListChoiceCheckboxIconSizeRaw = "--smtc-ctrl-list-choice-checkbox-icon-size"; - -// @public (undocumented) -export const ctrlListChoiceDotSize = "var(--smtc-ctrl-list-choice-dot-size)"; - -// @public (undocumented) -export const ctrlListChoiceDotSizeFigmaonly = "var(--smtc-ctrl-list-choice-dot-sizefigmaonly)"; - -// @public (undocumented) -export const ctrlListChoiceDotSizeFigmaonlyRaw = "--smtc-ctrl-list-choice-dot-sizefigmaonly"; - -// @public (undocumented) -export const ctrlListChoiceDotSizeRaw = "--smtc-ctrl-list-choice-dot-size"; - -// @public (undocumented) -export const ctrlListChoiceForegroundHover = "var(--smtc-ctrl-list-choice-foreground-hover, var(--smtc-foreground-ctrl-hint-default))"; - -// @public (undocumented) -export const ctrlListChoiceForegroundHoverRaw = "--smtc-ctrl-list-choice-foreground-hover"; - -// @public (undocumented) -export const ctrlListChoiceForegroundSelectedDisabled = "var(--smtc-ctrl-list-choice-foreground-selected-disabled, var(--smtc-foreground-ctrl-brand-disabled))"; - -// @public (undocumented) -export const ctrlListChoiceForegroundSelectedDisabledRaw = "--smtc-ctrl-list-choice-foreground-selected-disabled"; - -// @public (undocumented) -export const ctrlListChoiceForegroundSelectedRest = "var(--smtc-ctrl-list-choice-foreground-selected-rest, var(--smtc-foreground-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlListChoiceForegroundSelectedRestRaw = "--smtc-ctrl-list-choice-foreground-selected-rest"; - -// @public (undocumented) -export const ctrlListChoiceStrokeDisabled = "var(--smtc-ctrl-list-choice-stroke-disabled, unset)"; - -// @public (undocumented) -export const ctrlListChoiceStrokeDisabledRaw = "--smtc-ctrl-list-choice-stroke-disabled"; - -// @public (undocumented) -export const ctrlListChoiceStrokeRest = "var(--smtc-ctrl-list-choice-stroke-rest, unset)"; - -// @public (undocumented) -export const ctrlListChoiceStrokeRestRaw = "--smtc-ctrl-list-choice-stroke-rest"; - -// @public (undocumented) -export const ctrlListChoiceStrokeSelectedDisabled = "var(--smtc-ctrl-list-choice-stroke-selected-disabled, unset)"; - -// @public (undocumented) -export const ctrlListChoiceStrokeSelectedDisabledRaw = "--smtc-ctrl-list-choice-stroke-selected-disabled"; - -// @public (undocumented) -export const ctrlListChoiceStrokeSelectedRest = "var(--smtc-ctrl-list-choice-stroke-selected-rest, unset)"; - -// @public (undocumented) -export const ctrlListChoiceStrokeSelectedRestRaw = "--smtc-ctrl-list-choice-stroke-selected-rest"; - -// @public (undocumented) -export const ctrlListCornerHover = "var(--smtc-ctrl-list-corner-hover, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlListCornerHoverRaw = "--smtc-ctrl-list-corner-hover"; - -// @public (undocumented) -export const ctrlListCornerPressed = "var(--smtc-ctrl-list-corner-pressed, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlListCornerPressedRaw = "--smtc-ctrl-list-corner-pressed"; - -// @public (undocumented) -export const ctrlListCornerRest = "var(--smtc-ctrl-list-corner-rest, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlListCornerRestRaw = "--smtc-ctrl-list-corner-rest"; - -// @public (undocumented) -export const ctrlListIndentLevel1 = "var(--smtc-ctrl-list-indent-level1, var(--smtc-padding-ctrl-horizontal-default))"; - -// @public (undocumented) -export const ctrlListIndentLevel1Raw = "--smtc-ctrl-list-indent-level1"; - -// @public (undocumented) -export const ctrlListIndentLevel2 = "var(--smtc-ctrl-list-indent-level2)"; - -// @public (undocumented) -export const ctrlListIndentLevel2Raw = "--smtc-ctrl-list-indent-level2"; - -// @public (undocumented) -export const ctrlListIndentLevel3 = "var(--smtc-ctrl-list-indent-level3)"; - -// @public (undocumented) -export const ctrlListIndentLevel3Raw = "--smtc-ctrl-list-indent-level3"; - -// @public (undocumented) -export const ctrlListLgCornerHover = "var(--smtc-ctrl-list-lg-corner-hover, var(--smtc-corner-ctrl-lg-rest))"; - -// @public (undocumented) -export const ctrlListLgCornerHoverRaw = "--smtc-ctrl-list-lg-corner-hover"; - -// @public (undocumented) -export const ctrlListLgCornerPressed = "var(--smtc-ctrl-list-lg-corner-pressed, var(--smtc-corner-ctrl-lg-rest))"; - -// @public (undocumented) -export const ctrlListLgCornerPressedRaw = "--smtc-ctrl-list-lg-corner-pressed"; - -// @public (undocumented) -export const ctrlListLgCornerRest = "var(--smtc-ctrl-list-lg-corner-rest, var(--smtc-corner-ctrl-lg-rest))"; - -// @public (undocumented) -export const ctrlListLgCornerRestRaw = "--smtc-ctrl-list-lg-corner-rest"; - -// @public (undocumented) -export const ctrlListLgIndentLevel1 = "var(--smtc-ctrl-list-lg-indent-level1, var(--smtc-padding-ctrl-lg-horizontal-default))"; - -// @public (undocumented) -export const ctrlListLgIndentLevel1Raw = "--smtc-ctrl-list-lg-indent-level1"; - -// @public (undocumented) -export const ctrlListLgIndentLevel2 = "var(--smtc-ctrl-list-lg-indent-level2)"; - -// @public (undocumented) -export const ctrlListLgIndentLevel2Raw = "--smtc-ctrl-list-lg-indent-level2"; - -// @public (undocumented) -export const ctrlListLgIndentLevel3 = "var(--smtc-ctrl-list-lg-indent-level3)"; - -// @public (undocumented) -export const ctrlListLgIndentLevel3Raw = "--smtc-ctrl-list-lg-indent-level3"; - -// @public (undocumented) -export const ctrlListPillFullwidth = "var(--smtc-ctrl-list-pill-fullwidth)"; - -// @public (undocumented) -export const ctrlListPillFullwidthRaw = "--smtc-ctrl-list-pill-fullwidth"; - -// @public (undocumented) -export const ctrlListPillLengthHint = "var(--smtc-ctrl-list-pill-length-hint, var(--smtc-ctrl-list-pill-length-rest))"; - -// @public (undocumented) -export const ctrlListPillLengthHintRaw = "--smtc-ctrl-list-pill-length-hint"; - -// @public (undocumented) -export const ctrlListPillLengthHover = "var(--smtc-ctrl-list-pill-length-hover, var(--smtc-ctrl-list-pill-length-rest))"; - -// @public (undocumented) -export const ctrlListPillLengthHoverRaw = "--smtc-ctrl-list-pill-length-hover"; - -// @public (undocumented) -export const ctrlListPillLengthPressed = "var(--smtc-ctrl-list-pill-length-pressed, var(--smtc-ctrl-list-pill-length-rest))"; - -// @public (undocumented) -export const ctrlListPillLengthPressedRaw = "--smtc-ctrl-list-pill-length-pressed"; - -// @public (undocumented) -export const ctrlListPillLengthRest = "var(--smtc-ctrl-list-pill-length-rest)"; - -// @public (undocumented) -export const ctrlListPillLengthRestRaw = "--smtc-ctrl-list-pill-length-rest"; - -// @public (undocumented) -export const ctrlListPillStretchPaddingDefault = "var(--smtc-ctrl-list-pill-stretch-padding-default)"; - -// @public (undocumented) -export const ctrlListPillStretchPaddingDefaultRaw = "--smtc-ctrl-list-pill-stretch-padding-default"; - -// @public (undocumented) -export const ctrlListPillStretchPaddingHint = "var(--smtc-ctrl-list-pill-stretch-padding-hint)"; - -// @public (undocumented) -export const ctrlListPillStretchPaddingHintRaw = "--smtc-ctrl-list-pill-stretch-padding-hint"; - -// @public (undocumented) -export const ctrlListPillWidth = "var(--smtc-ctrl-list-pill-width)"; - -// @public (undocumented) -export const ctrlListPillWidthRaw = "--smtc-ctrl-list-pill-width"; - -// @public (undocumented) -export const ctrlListShadowSelectedAmbientBlur = "var(--smtc-ctrl-list-shadow-selected-ambient-blur)"; - -// @public (undocumented) -export const ctrlListShadowSelectedAmbientBlurRaw = "--smtc-ctrl-list-shadow-selected-ambient-blur"; - -// @public (undocumented) -export const ctrlListShadowSelectedAmbientColor = "var(--smtc-ctrl-list-shadow-selected-ambient-color)"; - -// @public (undocumented) -export const ctrlListShadowSelectedAmbientColorRaw = "--smtc-ctrl-list-shadow-selected-ambient-color"; - -// @public (undocumented) -export const ctrlListShadowSelectedAmbientX = "var(--smtc-ctrl-list-shadow-selected-ambient-x)"; - -// @public (undocumented) -export const ctrlListShadowSelectedAmbientXRaw = "--smtc-ctrl-list-shadow-selected-ambient-x"; - -// @public (undocumented) -export const ctrlListShadowSelectedAmbientY = "var(--smtc-ctrl-list-shadow-selected-ambient-y)"; - -// @public (undocumented) -export const ctrlListShadowSelectedAmbientYRaw = "--smtc-ctrl-list-shadow-selected-ambient-y"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyBlur = "var(--smtc-ctrl-list-shadow-selected-key-blur)"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyBlurRaw = "--smtc-ctrl-list-shadow-selected-key-blur"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyColor = "var(--smtc-ctrl-list-shadow-selected-key-color)"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyColorRaw = "--smtc-ctrl-list-shadow-selected-key-color"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyX = "var(--smtc-ctrl-list-shadow-selected-key-x)"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyXRaw = "--smtc-ctrl-list-shadow-selected-key-x"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyY = "var(--smtc-ctrl-list-shadow-selected-key-y)"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyY2 = "var(--smtc-ctrl-list-shadow-selected-key-y2, unset)"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyY2Raw = "--smtc-ctrl-list-shadow-selected-key-y2"; - -// @public (undocumented) -export const ctrlListShadowSelectedKeyYRaw = "--smtc-ctrl-list-shadow-selected-key-y"; - -// @public (undocumented) -export const ctrlListSmCornerHover = "var(--smtc-ctrl-list-sm-corner-hover, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlListSmCornerHoverRaw = "--smtc-ctrl-list-sm-corner-hover"; - -// @public (undocumented) -export const ctrlListSmCornerPressed = "var(--smtc-ctrl-list-sm-corner-pressed, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlListSmCornerPressedRaw = "--smtc-ctrl-list-sm-corner-pressed"; - -// @public (undocumented) -export const ctrlListSmCornerRest = "var(--smtc-ctrl-list-sm-corner-rest, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlListSmCornerRestRaw = "--smtc-ctrl-list-sm-corner-rest"; - -// @public (undocumented) -export const ctrlListSmIndentLevel1 = "var(--smtc-ctrl-list-sm-indent-level1, var(--smtc-padding-ctrl-sm-horizontal-default))"; - -// @public (undocumented) -export const ctrlListSmIndentLevel1Raw = "--smtc-ctrl-list-sm-indent-level1"; - -// @public (undocumented) -export const ctrlListSmIndentLevel2 = "var(--smtc-ctrl-list-sm-indent-level2)"; - -// @public (undocumented) -export const ctrlListSmIndentLevel2Raw = "--smtc-ctrl-list-sm-indent-level2"; - -// @public (undocumented) -export const ctrlListSmIndentLevel3 = "var(--smtc-ctrl-list-sm-indent-level3)"; - -// @public (undocumented) -export const ctrlListSmIndentLevel3Raw = "--smtc-ctrl-list-sm-indent-level3"; - -// @public (undocumented) -export const ctrlListSplitDividerPaddingInset = "var(--smtc-ctrl-list-split-divider-padding-inset)"; - -// @public (undocumented) -export const ctrlListSplitDividerPaddingInsetRaw = "--smtc-ctrl-list-split-divider-padding-inset"; - -// @public (undocumented) -export const ctrlListSplitDividerShowdivider = "var(--smtc-ctrl-list-split-divider-showdivider)"; - -// @public (undocumented) -export const ctrlListSplitDividerShowdividerRaw = "--smtc-ctrl-list-split-divider-showdivider"; - -// @public (undocumented) -export const ctrlListSplitDividerStroke = "var(--smtc-ctrl-list-split-divider-stroke, var(--smtc-stroke-ctrl-divider-onneutral))"; - -// @public (undocumented) -export const ctrlListSplitDividerStrokeRaw = "--smtc-ctrl-list-split-divider-stroke"; - -// @public (undocumented) -export const ctrlLitefilterBackgroundSelected = "var(--smtc-ctrl-litefilter-background-selected, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlLitefilterBackgroundSelectedRaw = "--smtc-ctrl-litefilter-background-selected"; - -// @public (undocumented) -export const ctrlLitefilterForegroundSelected = "var(--smtc-ctrl-litefilter-foreground-selected, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const ctrlLitefilterForegroundSelectedRaw = "--smtc-ctrl-litefilter-foreground-selected"; - -// @public (undocumented) -export const ctrlLitefilterStrokeSelected = "var(--smtc-ctrl-litefilter-stroke-selected, var(--smtc-stroke-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const ctrlLitefilterStrokeSelectedRaw = "--smtc-ctrl-litefilter-stroke-selected"; - -// @public (undocumented) -export const ctrlLitefilterStrokewidthSelected = "var(--smtc-ctrl-litefilter-strokewidth-selected, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlLitefilterStrokewidthSelectedRaw = "--smtc-ctrl-litefilter-strokewidth-selected"; - -// @public (undocumented) -export const ctrlProgressBackgroundEmpty = "var(--smtc-ctrl-progress-background-empty)"; - -// @public (undocumented) -export const ctrlProgressBackgroundEmptyRaw = "--smtc-ctrl-progress-background-empty"; - -// @public (undocumented) -export const ctrlProgressBackgroundFilled = "var(--smtc-ctrl-progress-background-filled, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlProgressBackgroundFilledRaw = "--smtc-ctrl-progress-background-filled"; - -// @public (undocumented) -export const ctrlProgressCorner = "var(--smtc-ctrl-progress-corner, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlProgressCornerRaw = "--smtc-ctrl-progress-corner"; - -// @public (undocumented) -export const ctrlProgressHeightEmpty = "var(--smtc-ctrl-progress-height-empty, var(--smtc-ctrl-progress-height-filled))"; - -// @public (undocumented) -export const ctrlProgressHeightEmptyRaw = "--smtc-ctrl-progress-height-empty"; - -// @public (undocumented) -export const ctrlProgressHeightFilled = "var(--smtc-ctrl-progress-height-filled)"; - -// @public (undocumented) -export const ctrlProgressHeightFilledRaw = "--smtc-ctrl-progress-height-filled"; - -// @public (undocumented) -export const ctrlProgressLgHeightEmpty = "var(--smtc-ctrl-progress-lg-height-empty, var(--smtc-ctrl-progress-lg-height-filled))"; - -// @public (undocumented) -export const ctrlProgressLgHeightEmptyRaw = "--smtc-ctrl-progress-lg-height-empty"; - -// @public (undocumented) -export const ctrlProgressLgHeightFilled = "var(--smtc-ctrl-progress-lg-height-filled)"; - -// @public (undocumented) -export const ctrlProgressLgHeightFilledRaw = "--smtc-ctrl-progress-lg-height-filled"; - -// @public (undocumented) -export const ctrlProgressSmHeightEmpty = "var(--smtc-ctrl-progress-sm-height-empty, var(--smtc-ctrl-progress-sm-height-filled))"; - -// @public (undocumented) -export const ctrlProgressSmHeightEmptyRaw = "--smtc-ctrl-progress-sm-height-empty"; - -// @public (undocumented) -export const ctrlProgressSmHeightFilled = "var(--smtc-ctrl-progress-sm-height-filled)"; - -// @public (undocumented) -export const ctrlProgressSmHeightFilledRaw = "--smtc-ctrl-progress-sm-height-filled"; - -// @public (undocumented) -export const ctrlRatingIconForegroundEmpty = "var(--smtc-ctrl-rating-icon-foreground-empty, var(--smtc-ctrl-progress-background-empty))"; - -// @public (undocumented) -export const ctrlRatingIconForegroundEmptyRaw = "--smtc-ctrl-rating-icon-foreground-empty"; - -// @public (undocumented) -export const ctrlRatingIconForegroundFilled = "var(--smtc-ctrl-rating-icon-foreground-filled, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlRatingIconForegroundFilledRaw = "--smtc-ctrl-rating-icon-foreground-filled"; - -// @public (undocumented) -export const ctrlRatingIconGap = "var(--smtc-ctrl-rating-icon-gap)"; - -// @public (undocumented) -export const ctrlRatingIconGapRaw = "--smtc-ctrl-rating-icon-gap"; - -// @public (undocumented) -export const ctrlRatingIconSize = "var(--smtc-ctrl-rating-icon-size, var(--smtc-size-ctrl-icon))"; - -// @public (undocumented) -export const ctrlRatingIconSizeRaw = "--smtc-ctrl-rating-icon-size"; - -// @public (undocumented) -export const ctrlRatingIconTheme = "var(--smtc-ctrl-rating-icon-theme, var(--smtc-icontheme-ctrl-default-rest))"; - -// @public (undocumented) -export const ctrlRatingIconThemeRaw = "--smtc-ctrl-rating-icon-theme"; - -// @public (undocumented) -export const ctrlSegmentedBackgroundDisabled = "var(--smtc-ctrl-segmented-background-disabled, var(--smtc-background-ctrl-outline-disabled))"; - -// @public (undocumented) -export const ctrlSegmentedBackgroundDisabledRaw = "--smtc-ctrl-segmented-background-disabled"; - -// @public (undocumented) -export const ctrlSegmentedBackgroundHover = "var(--smtc-ctrl-segmented-background-hover, var(--smtc-background-ctrl-outline-hover))"; - -// @public (undocumented) -export const ctrlSegmentedBackgroundHoverRaw = "--smtc-ctrl-segmented-background-hover"; - -// @public (undocumented) -export const ctrlSegmentedBackgroundPressed = "var(--smtc-ctrl-segmented-background-pressed, var(--smtc-background-ctrl-outline-pressed))"; - -// @public (undocumented) -export const ctrlSegmentedBackgroundPressedRaw = "--smtc-ctrl-segmented-background-pressed"; - -// @public (undocumented) -export const ctrlSegmentedBackgroundRest = "var(--smtc-ctrl-segmented-background-rest, var(--smtc-background-ctrl-outline-rest))"; - -// @public (undocumented) -export const ctrlSegmentedBackgroundRestRaw = "--smtc-ctrl-segmented-background-rest"; - -// @public (undocumented) -export const ctrlSegmentedCornerHover = "var(--smtc-ctrl-segmented-corner-hover, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlSegmentedCornerHoverRaw = "--smtc-ctrl-segmented-corner-hover"; - -// @public (undocumented) -export const ctrlSegmentedCornerPressed = "var(--smtc-ctrl-segmented-corner-pressed, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlSegmentedCornerPressedRaw = "--smtc-ctrl-segmented-corner-pressed"; - -// @public (undocumented) -export const ctrlSegmentedCornerRest = "var(--smtc-ctrl-segmented-corner-rest, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlSegmentedCornerRestRaw = "--smtc-ctrl-segmented-corner-rest"; - -// @public (undocumented) -export const ctrlSegmentedGap = "var(--smtc-ctrl-segmented-gap, unset)"; - -// @public (undocumented) -export const ctrlSegmentedGapRaw = "--smtc-ctrl-segmented-gap"; - -// @public (undocumented) -export const ctrlSegmentedItemCornerHover = "var(--smtc-ctrl-segmented-item-corner-hover, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlSegmentedItemCornerHoverRaw = "--smtc-ctrl-segmented-item-corner-hover"; - -// @public (undocumented) -export const ctrlSegmentedItemCornerPressed = "var(--smtc-ctrl-segmented-item-corner-pressed, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlSegmentedItemCornerPressedRaw = "--smtc-ctrl-segmented-item-corner-pressed"; - -// @public (undocumented) -export const ctrlSegmentedItemCornerRest = "var(--smtc-ctrl-segmented-item-corner-rest, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlSegmentedItemCornerRestRaw = "--smtc-ctrl-segmented-item-corner-rest"; - -// @public (undocumented) -export const ctrlSegmentedLgCornerHover = "var(--smtc-ctrl-segmented-lg-corner-hover, var(--smtc-corner-ctrl-lg-rest))"; - -// @public (undocumented) -export const ctrlSegmentedLgCornerHoverRaw = "--smtc-ctrl-segmented-lg-corner-hover"; - -// @public (undocumented) -export const ctrlSegmentedLgCornerPressed = "var(--smtc-ctrl-segmented-lg-corner-pressed, var(--smtc-corner-ctrl-lg-rest))"; - -// @public (undocumented) -export const ctrlSegmentedLgCornerPressedRaw = "--smtc-ctrl-segmented-lg-corner-pressed"; - -// @public (undocumented) -export const ctrlSegmentedLgCornerRest = "var(--smtc-ctrl-segmented-lg-corner-rest, var(--smtc-corner-ctrl-lg-rest))"; - -// @public (undocumented) -export const ctrlSegmentedLgCornerRestRaw = "--smtc-ctrl-segmented-lg-corner-rest"; - -// @public (undocumented) -export const ctrlSegmentedLgItemCornerHover = "var(--smtc-ctrl-segmented-lg-item-corner-hover, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlSegmentedLgItemCornerHoverRaw = "--smtc-ctrl-segmented-lg-item-corner-hover"; - -// @public (undocumented) -export const ctrlSegmentedLgItemCornerPressed = "var(--smtc-ctrl-segmented-lg-item-corner-pressed, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlSegmentedLgItemCornerPressedRaw = "--smtc-ctrl-segmented-lg-item-corner-pressed"; - -// @public (undocumented) -export const ctrlSegmentedLgItemCornerRest = "var(--smtc-ctrl-segmented-lg-item-corner-rest, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlSegmentedLgItemCornerRestRaw = "--smtc-ctrl-segmented-lg-item-corner-rest"; - -// @public (undocumented) -export const ctrlSegmentedLgPaddingHover = "var(--smtc-ctrl-segmented-lg-padding-hover, var(--smtc-ctrl-segmented-lg-padding-rest))"; - -// @public (undocumented) -export const ctrlSegmentedLgPaddingHoverRaw = "--smtc-ctrl-segmented-lg-padding-hover"; - -// @public (undocumented) -export const ctrlSegmentedLgPaddingPressed = "var(--smtc-ctrl-segmented-lg-padding-pressed, var(--smtc-ctrl-segmented-lg-padding-rest))"; - -// @public (undocumented) -export const ctrlSegmentedLgPaddingPressedRaw = "--smtc-ctrl-segmented-lg-padding-pressed"; - -// @public (undocumented) -export const ctrlSegmentedLgPaddingRest = "var(--smtc-ctrl-segmented-lg-padding-rest)"; - -// @public (undocumented) -export const ctrlSegmentedLgPaddingRestRaw = "--smtc-ctrl-segmented-lg-padding-rest"; - -// @public (undocumented) -export const ctrlSegmentedPaddingHover = "var(--smtc-ctrl-segmented-padding-hover, var(--smtc-ctrl-segmented-padding-rest))"; - -// @public (undocumented) -export const ctrlSegmentedPaddingHoverRaw = "--smtc-ctrl-segmented-padding-hover"; - -// @public (undocumented) -export const ctrlSegmentedPaddingPressed = "var(--smtc-ctrl-segmented-padding-pressed, var(--smtc-ctrl-segmented-padding-rest))"; - -// @public (undocumented) -export const ctrlSegmentedPaddingPressedRaw = "--smtc-ctrl-segmented-padding-pressed"; - -// @public (undocumented) -export const ctrlSegmentedPaddingRest = "var(--smtc-ctrl-segmented-padding-rest)"; - -// @public (undocumented) -export const ctrlSegmentedPaddingRestRaw = "--smtc-ctrl-segmented-padding-rest"; - -// @public (undocumented) -export const ctrlSegmentedSmCornerHover = "var(--smtc-ctrl-segmented-sm-corner-hover, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlSegmentedSmCornerHoverRaw = "--smtc-ctrl-segmented-sm-corner-hover"; - -// @public (undocumented) -export const ctrlSegmentedSmCornerPressed = "var(--smtc-ctrl-segmented-sm-corner-pressed, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlSegmentedSmCornerPressedRaw = "--smtc-ctrl-segmented-sm-corner-pressed"; - -// @public (undocumented) -export const ctrlSegmentedSmCornerRest = "var(--smtc-ctrl-segmented-sm-corner-rest, var(--smtc-corner-ctrl-sm-rest))"; - -// @public (undocumented) -export const ctrlSegmentedSmCornerRestRaw = "--smtc-ctrl-segmented-sm-corner-rest"; - -// @public (undocumented) -export const ctrlSegmentedSmItemCornerHover = "var(--smtc-ctrl-segmented-sm-item-corner-hover)"; - -// @public (undocumented) -export const ctrlSegmentedSmItemCornerHoverRaw = "--smtc-ctrl-segmented-sm-item-corner-hover"; - -// @public (undocumented) -export const ctrlSegmentedSmItemCornerPressed = "var(--smtc-ctrl-segmented-sm-item-corner-pressed)"; - -// @public (undocumented) -export const ctrlSegmentedSmItemCornerPressedRaw = "--smtc-ctrl-segmented-sm-item-corner-pressed"; - -// @public (undocumented) -export const ctrlSegmentedSmItemCornerRest = "var(--smtc-ctrl-segmented-sm-item-corner-rest)"; - -// @public (undocumented) -export const ctrlSegmentedSmItemCornerRestRaw = "--smtc-ctrl-segmented-sm-item-corner-rest"; - -// @public (undocumented) -export const ctrlSegmentedSmPaddingHover = "var(--smtc-ctrl-segmented-sm-padding-hover, var(--smtc-ctrl-segmented-sm-padding-rest))"; - -// @public (undocumented) -export const ctrlSegmentedSmPaddingHoverRaw = "--smtc-ctrl-segmented-sm-padding-hover"; - -// @public (undocumented) -export const ctrlSegmentedSmPaddingPressed = "var(--smtc-ctrl-segmented-sm-padding-pressed, var(--smtc-ctrl-segmented-sm-padding-rest))"; - -// @public (undocumented) -export const ctrlSegmentedSmPaddingPressedRaw = "--smtc-ctrl-segmented-sm-padding-pressed"; - -// @public (undocumented) -export const ctrlSegmentedSmPaddingRest = "var(--smtc-ctrl-segmented-sm-padding-rest)"; - -// @public (undocumented) -export const ctrlSegmentedSmPaddingRestRaw = "--smtc-ctrl-segmented-sm-padding-rest"; - -// @public (undocumented) -export const ctrlSegmentedStrokeDisabled = "var(--smtc-ctrl-segmented-stroke-disabled, var(--smtc-foreground-ctrl-neutral-secondary-disabled))"; - -// @public (undocumented) -export const ctrlSegmentedStrokeDisabledRaw = "--smtc-ctrl-segmented-stroke-disabled"; - -// @public (undocumented) -export const ctrlSegmentedStrokeHover = "var(--smtc-ctrl-segmented-stroke-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlSegmentedStrokeHoverRaw = "--smtc-ctrl-segmented-stroke-hover"; - -// @public (undocumented) -export const ctrlSegmentedStrokePressed = "var(--smtc-ctrl-segmented-stroke-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlSegmentedStrokePressedRaw = "--smtc-ctrl-segmented-stroke-pressed"; - -// @public (undocumented) -export const ctrlSegmentedStrokeRest = "var(--smtc-ctrl-segmented-stroke-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const ctrlSegmentedStrokeRestRaw = "--smtc-ctrl-segmented-stroke-rest"; - -// @public (undocumented) -export const ctrlSliderBarCorner = "var(--smtc-ctrl-slider-bar-corner, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlSliderBarCornerRaw = "--smtc-ctrl-slider-bar-corner"; - -// @public (undocumented) -export const ctrlSliderBarForegroundEmptyDisabled = "var(--smtc-ctrl-slider-bar-foreground-empty-disabled, var(--smtc-ctrl-progress-background-empty))"; - -// @public (undocumented) -export const ctrlSliderBarForegroundEmptyDisabledRaw = "--smtc-ctrl-slider-bar-foreground-empty-disabled"; - -// @public (undocumented) -export const ctrlSliderBarForegroundEmptyHover = "var(--smtc-ctrl-slider-bar-foreground-empty-hover, var(--smtc-ctrl-progress-background-empty))"; - -// @public (undocumented) -export const ctrlSliderBarForegroundEmptyHoverRaw = "--smtc-ctrl-slider-bar-foreground-empty-hover"; - -// @public (undocumented) -export const ctrlSliderBarForegroundEmptyPressed = "var(--smtc-ctrl-slider-bar-foreground-empty-pressed, var(--smtc-ctrl-progress-background-empty))"; - -// @public (undocumented) -export const ctrlSliderBarForegroundEmptyPressedRaw = "--smtc-ctrl-slider-bar-foreground-empty-pressed"; - -// @public (undocumented) -export const ctrlSliderBarForegroundEmptyRest = "var(--smtc-ctrl-slider-bar-foreground-empty-rest, var(--smtc-ctrl-progress-background-empty))"; - -// @public (undocumented) -export const ctrlSliderBarForegroundEmptyRestRaw = "--smtc-ctrl-slider-bar-foreground-empty-rest"; - -// @public (undocumented) -export const ctrlSliderBarForegroundFilledDisabled = "var(--smtc-ctrl-slider-bar-foreground-filled-disabled, var(--smtc-background-ctrl-brand-disabled))"; - -// @public (undocumented) -export const ctrlSliderBarForegroundFilledDisabledRaw = "--smtc-ctrl-slider-bar-foreground-filled-disabled"; - -// @public (undocumented) -export const ctrlSliderBarForegroundFilledHover = "var(--smtc-ctrl-slider-bar-foreground-filled-hover, var(--smtc-background-ctrl-brand-hover))"; - -// @public (undocumented) -export const ctrlSliderBarForegroundFilledHoverRaw = "--smtc-ctrl-slider-bar-foreground-filled-hover"; - -// @public (undocumented) -export const ctrlSliderBarForegroundFilledPressed = "var(--smtc-ctrl-slider-bar-foreground-filled-pressed, var(--smtc-background-ctrl-brand-pressed))"; - -// @public (undocumented) -export const ctrlSliderBarForegroundFilledPressedRaw = "--smtc-ctrl-slider-bar-foreground-filled-pressed"; - -// @public (undocumented) -export const ctrlSliderBarForegroundFilledRest = "var(--smtc-ctrl-slider-bar-foreground-filled-rest, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlSliderBarForegroundFilledRestRaw = "--smtc-ctrl-slider-bar-foreground-filled-rest"; - -// @public (undocumented) -export const ctrlSliderBarHeight = "var(--smtc-ctrl-slider-bar-height, var(--smtc-ctrl-progress-height-filled))"; - -// @public (undocumented) -export const ctrlSliderBarHeightRaw = "--smtc-ctrl-slider-bar-height"; - -// @public (undocumented) -export const ctrlSliderLgBarHeight = "var(--smtc-ctrl-slider-lg-bar-height, var(--smtc-ctrl-progress-lg-height-filled))"; - -// @public (undocumented) -export const ctrlSliderLgBarHeightRaw = "--smtc-ctrl-slider-lg-bar-height"; - -// @public (undocumented) -export const ctrlSliderLgThumbSizeHover = "var(--smtc-ctrl-slider-lg-thumb-size-hover, var(--smtc-size-ctrl-lg-icon))"; - -// @public (undocumented) -export const ctrlSliderLgThumbSizeHoverRaw = "--smtc-ctrl-slider-lg-thumb-size-hover"; - -// @public (undocumented) -export const ctrlSliderLgThumbSizePressed = "var(--smtc-ctrl-slider-lg-thumb-size-pressed, var(--smtc-size-ctrl-lg-icon))"; - -// @public (undocumented) -export const ctrlSliderLgThumbSizePressedRaw = "--smtc-ctrl-slider-lg-thumb-size-pressed"; - -// @public (undocumented) -export const ctrlSliderLgThumbSizeRest = "var(--smtc-ctrl-slider-lg-thumb-size-rest, var(--smtc-size-ctrl-lg-icon))"; - -// @public (undocumented) -export const ctrlSliderLgThumbSizeRestRaw = "--smtc-ctrl-slider-lg-thumb-size-rest"; - -// @public (undocumented) -export const ctrlSliderSmBarHeight = "var(--smtc-ctrl-slider-sm-bar-height, var(--smtc-ctrl-progress-sm-height-filled))"; - -// @public (undocumented) -export const ctrlSliderSmBarHeightRaw = "--smtc-ctrl-slider-sm-bar-height"; - -// @public (undocumented) -export const ctrlSliderSmThumbSizeHover = "var(--smtc-ctrl-slider-sm-thumb-size-hover, var(--smtc-size-ctrl-sm-icon))"; - -// @public (undocumented) -export const ctrlSliderSmThumbSizeHoverRaw = "--smtc-ctrl-slider-sm-thumb-size-hover"; - -// @public (undocumented) -export const ctrlSliderSmThumbSizePressed = "var(--smtc-ctrl-slider-sm-thumb-size-pressed, var(--smtc-size-ctrl-sm-icon))"; - -// @public (undocumented) -export const ctrlSliderSmThumbSizePressedRaw = "--smtc-ctrl-slider-sm-thumb-size-pressed"; - -// @public (undocumented) -export const ctrlSliderSmThumbSizeRest = "var(--smtc-ctrl-slider-sm-thumb-size-rest, var(--smtc-size-ctrl-sm-icon))"; - -// @public (undocumented) -export const ctrlSliderSmThumbSizeRestRaw = "--smtc-ctrl-slider-sm-thumb-size-rest"; - -// @public (undocumented) -export const ctrlSliderThumbBackgroundDisabled = "var(--smtc-ctrl-slider-thumb-background-disabled, var(--smtc-foreground-ctrl-onbrand-disabled))"; - -// @public (undocumented) -export const ctrlSliderThumbBackgroundDisabledRaw = "--smtc-ctrl-slider-thumb-background-disabled"; - -// @public (undocumented) -export const ctrlSliderThumbBackgroundHover = "var(--smtc-ctrl-slider-thumb-background-hover, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const ctrlSliderThumbBackgroundHoverRaw = "--smtc-ctrl-slider-thumb-background-hover"; - -// @public (undocumented) -export const ctrlSliderThumbBackgroundPressed = "var(--smtc-ctrl-slider-thumb-background-pressed, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const ctrlSliderThumbBackgroundPressedRaw = "--smtc-ctrl-slider-thumb-background-pressed"; - -// @public (undocumented) -export const ctrlSliderThumbBackgroundRest = "var(--smtc-ctrl-slider-thumb-background-rest, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const ctrlSliderThumbBackgroundRestRaw = "--smtc-ctrl-slider-thumb-background-rest"; - -// @public (undocumented) -export const ctrlSliderThumbCorner = "var(--smtc-ctrl-slider-thumb-corner, var(--smtc-corner-circular))"; - -// @public (undocumented) -export const ctrlSliderThumbCornerRaw = "--smtc-ctrl-slider-thumb-corner"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokeDisabled = "var(--smtc-ctrl-slider-thumb-inner-stroke-disabled, var(--smtc-background-ctrl-brand-disabled))"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokeDisabledRaw = "--smtc-ctrl-slider-thumb-inner-stroke-disabled"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokeHover = "var(--smtc-ctrl-slider-thumb-inner-stroke-hover, var(--smtc-background-ctrl-brand-hover))"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokeHoverRaw = "--smtc-ctrl-slider-thumb-inner-stroke-hover"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokePressed = "var(--smtc-ctrl-slider-thumb-inner-stroke-pressed, var(--smtc-background-ctrl-brand-pressed))"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokePressedRaw = "--smtc-ctrl-slider-thumb-inner-stroke-pressed"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokeRest = "var(--smtc-ctrl-slider-thumb-inner-stroke-rest, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokeRestRaw = "--smtc-ctrl-slider-thumb-inner-stroke-rest"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokewidthHover = "var(--smtc-ctrl-slider-thumb-inner-strokewidth-hover, var(--smtc-ctrl-slider-thumb-inner-strokewidth-rest))"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokewidthHoverRaw = "--smtc-ctrl-slider-thumb-inner-strokewidth-hover"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokewidthPressed = "var(--smtc-ctrl-slider-thumb-inner-strokewidth-pressed, var(--smtc-ctrl-slider-thumb-inner-strokewidth-rest))"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokewidthPressedRaw = "--smtc-ctrl-slider-thumb-inner-strokewidth-pressed"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokewidthRest = "var(--smtc-ctrl-slider-thumb-inner-strokewidth-rest)"; - -// @public (undocumented) -export const ctrlSliderThumbInnerStrokewidthRestRaw = "--smtc-ctrl-slider-thumb-inner-strokewidth-rest"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokeDisabled = "var(--smtc-ctrl-slider-thumb-outer-stroke-disabled, var(--smtc-background-ctrl-brand-disabled))"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokeDisabledRaw = "--smtc-ctrl-slider-thumb-outer-stroke-disabled"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokeHover = "var(--smtc-ctrl-slider-thumb-outer-stroke-hover, var(--smtc-background-ctrl-brand-hover))"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokeHoverRaw = "--smtc-ctrl-slider-thumb-outer-stroke-hover"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokePressed = "var(--smtc-ctrl-slider-thumb-outer-stroke-pressed, var(--smtc-background-ctrl-brand-pressed))"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokePressedRaw = "--smtc-ctrl-slider-thumb-outer-stroke-pressed"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokeRest = "var(--smtc-ctrl-slider-thumb-outer-stroke-rest, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokeRestRaw = "--smtc-ctrl-slider-thumb-outer-stroke-rest"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokewidth = "var(--smtc-ctrl-slider-thumb-outer-strokewidth, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlSliderThumbOuterStrokewidthRaw = "--smtc-ctrl-slider-thumb-outer-strokewidth"; - -// @public (undocumented) -export const ctrlSliderThumbSizeHover = "var(--smtc-ctrl-slider-thumb-size-hover, var(--smtc-size-ctrl-icon))"; - -// @public (undocumented) -export const ctrlSliderThumbSizeHoverRaw = "--smtc-ctrl-slider-thumb-size-hover"; - -// @public (undocumented) -export const ctrlSliderThumbSizePressed = "var(--smtc-ctrl-slider-thumb-size-pressed, var(--smtc-size-ctrl-icon))"; - -// @public (undocumented) -export const ctrlSliderThumbSizePressedRaw = "--smtc-ctrl-slider-thumb-size-pressed"; - -// @public (undocumented) -export const ctrlSliderThumbSizeRest = "var(--smtc-ctrl-slider-thumb-size-rest, var(--smtc-size-ctrl-icon))"; - -// @public (undocumented) -export const ctrlSliderThumbSizeRestRaw = "--smtc-ctrl-slider-thumb-size-rest"; - -// @public (undocumented) -export const ctrlSpinnerShowemptytrack = "var(--smtc-ctrl-spinner-showemptytrack)"; - -// @public (undocumented) -export const ctrlSpinnerShowemptytrackRaw = "--smtc-ctrl-spinner-showemptytrack"; - -// @public (undocumented) -export const ctrlSpinnerStrokewidth = "var(--smtc-ctrl-spinner-strokewidth, var(--smtc-ctrl-progress-height-filled))"; - -// @public (undocumented) -export const ctrlSpinnerStrokewidthRaw = "--smtc-ctrl-spinner-strokewidth"; - -// @public (undocumented) -export const ctrlSplitDividerStrokewidth = "var(--smtc-ctrl-split-divider-strokewidth, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlSplitDividerStrokewidthOnoutline = "var(--smtc-ctrl-split-divider-strokewidth-onoutline, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const ctrlSplitDividerStrokewidthOnoutlineRaw = "--smtc-ctrl-split-divider-strokewidth-onoutline"; - -// @public (undocumented) -export const ctrlSplitDividerStrokewidthOnsubtle = "var(--smtc-ctrl-split-divider-strokewidth-onsubtle, unset)"; - -// @public (undocumented) -export const ctrlSplitDividerStrokewidthOnsubtleRaw = "--smtc-ctrl-split-divider-strokewidth-onsubtle"; - -// @public (undocumented) -export const ctrlSplitDividerStrokewidthRaw = "--smtc-ctrl-split-divider-strokewidth"; - -// @public (undocumented) -export const ctrlTooltipBackground = "var(--smtc-ctrl-tooltip-background)"; - -// @public (undocumented) -export const ctrlTooltipBackgroundRaw = "--smtc-ctrl-tooltip-background"; - -// @public (undocumented) -export const ctrlTooltipCorner = "var(--smtc-ctrl-tooltip-corner, var(--smtc-corner-ctrl-rest))"; - -// @public (undocumented) -export const ctrlTooltipCornerRaw = "--smtc-ctrl-tooltip-corner"; - -// @public (undocumented) -export const ctrlTooltipForeground = "var(--smtc-ctrl-tooltip-foreground)"; - -// @public (undocumented) -export const ctrlTooltipForegroundRaw = "--smtc-ctrl-tooltip-foreground"; - -// @public (undocumented) -export const ctrlTooltipShadowAmbientBlur = "var(--smtc-ctrl-tooltip-shadow-ambient-blur, var(--smtc-ctrl-fab-shadow-rest-ambient-blur))"; - -// @public (undocumented) -export const ctrlTooltipShadowAmbientBlurRaw = "--smtc-ctrl-tooltip-shadow-ambient-blur"; - -// @public (undocumented) -export const ctrlTooltipShadowAmbientColor = "var(--smtc-ctrl-tooltip-shadow-ambient-color, var(--smtc-ctrl-fab-shadow-rest-ambient-color))"; - -// @public (undocumented) -export const ctrlTooltipShadowAmbientColorRaw = "--smtc-ctrl-tooltip-shadow-ambient-color"; - -// @public (undocumented) -export const ctrlTooltipShadowAmbientX = "var(--smtc-ctrl-tooltip-shadow-ambient-x, var(--smtc-ctrl-fab-shadow-rest-ambient-x))"; - -// @public (undocumented) -export const ctrlTooltipShadowAmbientXRaw = "--smtc-ctrl-tooltip-shadow-ambient-x"; - -// @public (undocumented) -export const ctrlTooltipShadowAmbientY = "var(--smtc-ctrl-tooltip-shadow-ambient-y, var(--smtc-ctrl-fab-shadow-rest-ambient-y))"; - -// @public (undocumented) -export const ctrlTooltipShadowAmbientYRaw = "--smtc-ctrl-tooltip-shadow-ambient-y"; - -// @public (undocumented) -export const ctrlTooltipShadowKeyBlur = "var(--smtc-ctrl-tooltip-shadow-key-blur, var(--smtc-ctrl-fab-shadow-rest-key-blur))"; - -// @public (undocumented) -export const ctrlTooltipShadowKeyBlurRaw = "--smtc-ctrl-tooltip-shadow-key-blur"; - -// @public (undocumented) -export const ctrlTooltipShadowKeyColor = "var(--smtc-ctrl-tooltip-shadow-key-color, var(--smtc-ctrl-fab-shadow-rest-key-color))"; - -// @public (undocumented) -export const ctrlTooltipShadowKeyColorRaw = "--smtc-ctrl-tooltip-shadow-key-color"; - -// @public (undocumented) -export const ctrlTooltipShadowKeyX = "var(--smtc-ctrl-tooltip-shadow-key-x, var(--smtc-ctrl-fab-shadow-rest-key-x))"; - -// @public (undocumented) -export const ctrlTooltipShadowKeyXRaw = "--smtc-ctrl-tooltip-shadow-key-x"; - -// @public (undocumented) -export const ctrlTooltipShadowKeyY = "var(--smtc-ctrl-tooltip-shadow-key-y, var(--smtc-ctrl-fab-shadow-rest-key-y))"; - -// @public (undocumented) -export const ctrlTooltipShadowKeyYRaw = "--smtc-ctrl-tooltip-shadow-key-y"; - -// @public (undocumented) -export const foregroundContentBrandPrimary = "var(--smtc-foreground-content-brand-primary, var(--smtc-foreground-ctrl-brand-rest))"; - -// @public (undocumented) -export const foregroundContentBrandPrimaryRaw = "--smtc-foreground-content-brand-primary"; - -// @public (undocumented) -export const foregroundContentNeutralPrimary = "var(--smtc-foreground-content-neutral-primary, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundContentNeutralPrimaryRaw = "--smtc-foreground-content-neutral-primary"; - -// @public (undocumented) -export const foregroundContentNeutralSecondary = "var(--smtc-foreground-content-neutral-secondary, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const foregroundContentNeutralSecondaryRaw = "--smtc-foreground-content-neutral-secondary"; - -// @public (undocumented) -export const foregroundCtrlActivebrandDisabled = "var(--smtc-foreground-ctrl-activebrand-disabled, var(--smtc-foreground-ctrl-brand-disabled))"; - -// @public (undocumented) -export const foregroundCtrlActivebrandDisabledRaw = "--smtc-foreground-ctrl-activebrand-disabled"; - -// @public (undocumented) -export const foregroundCtrlActivebrandHover = "var(--smtc-foreground-ctrl-activebrand-hover, var(--smtc-foreground-ctrl-brand-hover))"; - -// @public (undocumented) -export const foregroundCtrlActivebrandHoverRaw = "--smtc-foreground-ctrl-activebrand-hover"; - -// @public (undocumented) -export const foregroundCtrlActivebrandPressed = "var(--smtc-foreground-ctrl-activebrand-pressed, var(--smtc-foreground-ctrl-brand-pressed))"; - -// @public (undocumented) -export const foregroundCtrlActivebrandPressedRaw = "--smtc-foreground-ctrl-activebrand-pressed"; - -// @public (undocumented) -export const foregroundCtrlActivebrandRest = "var(--smtc-foreground-ctrl-activebrand-rest, var(--smtc-foreground-ctrl-brand-rest))"; - -// @public (undocumented) -export const foregroundCtrlActivebrandRestRaw = "--smtc-foreground-ctrl-activebrand-rest"; - -// @public (undocumented) -export const foregroundCtrlBrandDisabled = "var(--smtc-foreground-ctrl-brand-disabled)"; - -// @public (undocumented) -export const foregroundCtrlBrandDisabledRaw = "--smtc-foreground-ctrl-brand-disabled"; - -// @public (undocumented) -export const foregroundCtrlBrandHover = "var(--smtc-foreground-ctrl-brand-hover)"; - -// @public (undocumented) -export const foregroundCtrlBrandHoverRaw = "--smtc-foreground-ctrl-brand-hover"; - -// @public (undocumented) -export const foregroundCtrlBrandPressed = "var(--smtc-foreground-ctrl-brand-pressed)"; - -// @public (undocumented) -export const foregroundCtrlBrandPressedRaw = "--smtc-foreground-ctrl-brand-pressed"; - -// @public (undocumented) -export const foregroundCtrlBrandRest = "var(--smtc-foreground-ctrl-brand-rest)"; - -// @public (undocumented) -export const foregroundCtrlBrandRestRaw = "--smtc-foreground-ctrl-brand-rest"; - -// @public (undocumented) -export const foregroundCtrlHintDefault = "var(--smtc-foreground-ctrl-hint-default, unset)"; - -// @public (undocumented) -export const foregroundCtrlHintDefaultRaw = "--smtc-foreground-ctrl-hint-default"; - -// @public (undocumented) -export const foregroundCtrlIconOnneutralDisabled = "var(--smtc-foreground-ctrl-icon-onneutral-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; - -// @public (undocumented) -export const foregroundCtrlIconOnneutralDisabledRaw = "--smtc-foreground-ctrl-icon-onneutral-disabled"; - -// @public (undocumented) -export const foregroundCtrlIconOnneutralHover = "var(--smtc-foreground-ctrl-icon-onneutral-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnneutralHoverRaw = "--smtc-foreground-ctrl-icon-onneutral-hover"; - -// @public (undocumented) -export const foregroundCtrlIconOnneutralPressed = "var(--smtc-foreground-ctrl-icon-onneutral-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnneutralPressedRaw = "--smtc-foreground-ctrl-icon-onneutral-pressed"; - -// @public (undocumented) -export const foregroundCtrlIconOnneutralRest = "var(--smtc-foreground-ctrl-icon-onneutral-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnneutralRestRaw = "--smtc-foreground-ctrl-icon-onneutral-rest"; - -// @public (undocumented) -export const foregroundCtrlIconOnoutlineDisabled = "var(--smtc-foreground-ctrl-icon-onoutline-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; - -// @public (undocumented) -export const foregroundCtrlIconOnoutlineDisabledRaw = "--smtc-foreground-ctrl-icon-onoutline-disabled"; - -// @public (undocumented) -export const foregroundCtrlIconOnoutlineHover = "var(--smtc-foreground-ctrl-icon-onoutline-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnoutlineHoverRaw = "--smtc-foreground-ctrl-icon-onoutline-hover"; - -// @public (undocumented) -export const foregroundCtrlIconOnoutlinePressed = "var(--smtc-foreground-ctrl-icon-onoutline-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnoutlinePressedRaw = "--smtc-foreground-ctrl-icon-onoutline-pressed"; - -// @public (undocumented) -export const foregroundCtrlIconOnoutlineRest = "var(--smtc-foreground-ctrl-icon-onoutline-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnoutlineRestRaw = "--smtc-foreground-ctrl-icon-onoutline-rest"; - -// @public (undocumented) -export const foregroundCtrlIconOnsubtleDisabled = "var(--smtc-foreground-ctrl-icon-onsubtle-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; - -// @public (undocumented) -export const foregroundCtrlIconOnsubtleDisabledRaw = "--smtc-foreground-ctrl-icon-onsubtle-disabled"; - -// @public (undocumented) -export const foregroundCtrlIconOnsubtleHover = "var(--smtc-foreground-ctrl-icon-onsubtle-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnsubtleHoverRaw = "--smtc-foreground-ctrl-icon-onsubtle-hover"; - -// @public (undocumented) -export const foregroundCtrlIconOnsubtlePressed = "var(--smtc-foreground-ctrl-icon-onsubtle-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnsubtlePressedRaw = "--smtc-foreground-ctrl-icon-onsubtle-pressed"; - -// @public (undocumented) -export const foregroundCtrlIconOnsubtleRest = "var(--smtc-foreground-ctrl-icon-onsubtle-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlIconOnsubtleRestRaw = "--smtc-foreground-ctrl-icon-onsubtle-rest"; - -// @public (undocumented) -export const foregroundCtrlNeutralPrimaryDisabled = "var(--smtc-foreground-ctrl-neutral-primary-disabled, var(--colorNeutralForegroundDisabled))"; - -// @public (undocumented) -export const foregroundCtrlNeutralPrimaryDisabledRaw = "--smtc-foreground-ctrl-neutral-primary-disabled"; - -// @public (undocumented) -export const foregroundCtrlNeutralPrimaryHover = "var(--smtc-foreground-ctrl-neutral-primary-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlNeutralPrimaryHoverRaw = "--smtc-foreground-ctrl-neutral-primary-hover"; - -// @public (undocumented) -export const foregroundCtrlNeutralPrimaryPressed = "var(--smtc-foreground-ctrl-neutral-primary-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlNeutralPrimaryPressedRaw = "--smtc-foreground-ctrl-neutral-primary-pressed"; - -// @public (undocumented) -export const foregroundCtrlNeutralPrimaryRest = "var(--smtc-foreground-ctrl-neutral-primary-rest)"; - -// @public (undocumented) -export const foregroundCtrlNeutralPrimaryRestRaw = "--smtc-foreground-ctrl-neutral-primary-rest"; - -// @public (undocumented) -export const foregroundCtrlNeutralSecondaryDisabled = "var(--smtc-foreground-ctrl-neutral-secondary-disabled)"; - -// @public (undocumented) -export const foregroundCtrlNeutralSecondaryDisabledRaw = "--smtc-foreground-ctrl-neutral-secondary-disabled"; - -// @public (undocumented) -export const foregroundCtrlNeutralSecondaryHover = "var(--smtc-foreground-ctrl-neutral-secondary-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const foregroundCtrlNeutralSecondaryHoverRaw = "--smtc-foreground-ctrl-neutral-secondary-hover"; - -// @public (undocumented) -export const foregroundCtrlNeutralSecondaryPressed = "var(--smtc-foreground-ctrl-neutral-secondary-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const foregroundCtrlNeutralSecondaryPressedRaw = "--smtc-foreground-ctrl-neutral-secondary-pressed"; - -// @public (undocumented) -export const foregroundCtrlNeutralSecondaryRest = "var(--smtc-foreground-ctrl-neutral-secondary-rest)"; - -// @public (undocumented) -export const foregroundCtrlNeutralSecondaryRestRaw = "--smtc-foreground-ctrl-neutral-secondary-rest"; - -// @public (undocumented) -export const foregroundCtrlOnactivebrandDisabled = "var(--smtc-foreground-ctrl-onactivebrand-disabled, var(--smtc-foreground-ctrl-onbrand-disabled))"; - -// @public (undocumented) -export const foregroundCtrlOnactivebrandDisabledRaw = "--smtc-foreground-ctrl-onactivebrand-disabled"; - -// @public (undocumented) -export const foregroundCtrlOnactivebrandHover = "var(--smtc-foreground-ctrl-onactivebrand-hover, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnactivebrandHoverRaw = "--smtc-foreground-ctrl-onactivebrand-hover"; - -// @public (undocumented) -export const foregroundCtrlOnactivebrandPressed = "var(--smtc-foreground-ctrl-onactivebrand-pressed, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnactivebrandPressedRaw = "--smtc-foreground-ctrl-onactivebrand-pressed"; - -// @public (undocumented) -export const foregroundCtrlOnactivebrandRest = "var(--smtc-foreground-ctrl-onactivebrand-rest, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnactivebrandRestRaw = "--smtc-foreground-ctrl-onactivebrand-rest"; - -// @public (undocumented) -export const foregroundCtrlOnbrandDisabled = "var(--smtc-foreground-ctrl-onbrand-disabled)"; - -// @public (undocumented) -export const foregroundCtrlOnbrandDisabledRaw = "--smtc-foreground-ctrl-onbrand-disabled"; - -// @public (undocumented) -export const foregroundCtrlOnbrandHover = "var(--smtc-foreground-ctrl-onbrand-hover, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnbrandHoverRaw = "--smtc-foreground-ctrl-onbrand-hover"; - -// @public (undocumented) -export const foregroundCtrlOnbrandPressed = "var(--smtc-foreground-ctrl-onbrand-pressed, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnbrandPressedRaw = "--smtc-foreground-ctrl-onbrand-pressed"; - -// @public (undocumented) -export const foregroundCtrlOnbrandRest = "var(--smtc-foreground-ctrl-onbrand-rest)"; - -// @public (undocumented) -export const foregroundCtrlOnbrandRestRaw = "--smtc-foreground-ctrl-onbrand-rest"; - -// @public (undocumented) -export const foregroundCtrlOnoutlineDisabled = "var(--smtc-foreground-ctrl-onoutline-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; - -// @public (undocumented) -export const foregroundCtrlOnoutlineDisabledRaw = "--smtc-foreground-ctrl-onoutline-disabled"; - -// @public (undocumented) -export const foregroundCtrlOnoutlineHover = "var(--smtc-foreground-ctrl-onoutline-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnoutlineHoverRaw = "--smtc-foreground-ctrl-onoutline-hover"; - -// @public (undocumented) -export const foregroundCtrlOnoutlinePressed = "var(--smtc-foreground-ctrl-onoutline-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnoutlinePressedRaw = "--smtc-foreground-ctrl-onoutline-pressed"; - -// @public (undocumented) -export const foregroundCtrlOnoutlineRest = "var(--smtc-foreground-ctrl-onoutline-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnoutlineRestRaw = "--smtc-foreground-ctrl-onoutline-rest"; - -// @public (undocumented) -export const foregroundCtrlOnsubtleDisabled = "var(--smtc-foreground-ctrl-onsubtle-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; - -// @public (undocumented) -export const foregroundCtrlOnsubtleDisabledRaw = "--smtc-foreground-ctrl-onsubtle-disabled"; - -// @public (undocumented) -export const foregroundCtrlOnsubtleHover = "var(--smtc-foreground-ctrl-onsubtle-hover, var(--smtc-foreground-ctrl-neutral-primary-hover))"; - -// @public (undocumented) -export const foregroundCtrlOnsubtleHoverRaw = "--smtc-foreground-ctrl-onsubtle-hover"; - -// @public (undocumented) -export const foregroundCtrlOnsubtlePressed = "var(--smtc-foreground-ctrl-onsubtle-pressed, var(--smtc-foreground-ctrl-neutral-primary-pressed))"; - -// @public (undocumented) -export const foregroundCtrlOnsubtlePressedRaw = "--smtc-foreground-ctrl-onsubtle-pressed"; - -// @public (undocumented) -export const foregroundCtrlOnsubtleRest = "var(--smtc-foreground-ctrl-onsubtle-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlOnsubtleRestRaw = "--smtc-foreground-ctrl-onsubtle-rest"; - -// @public (undocumented) -export const foregroundCtrlOntransparentDisabled = "var(--smtc-foreground-ctrl-ontransparent-disabled, var(--smtc-foreground-ctrl-neutral-primary-disabled))"; - -// @public (undocumented) -export const foregroundCtrlOntransparentDisabledRaw = "--smtc-foreground-ctrl-ontransparent-disabled"; - -// @public (undocumented) -export const foregroundCtrlOntransparentHover = "var(--smtc-foreground-ctrl-ontransparent-hover, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlOntransparentHoverRaw = "--smtc-foreground-ctrl-ontransparent-hover"; - -// @public (undocumented) -export const foregroundCtrlOntransparentPressed = "var(--smtc-foreground-ctrl-ontransparent-pressed, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlOntransparentPressedRaw = "--smtc-foreground-ctrl-ontransparent-pressed"; - -// @public (undocumented) -export const foregroundCtrlOntransparentRest = "var(--smtc-foreground-ctrl-ontransparent-rest, var(--smtc-foreground-ctrl-neutral-primary-rest))"; - -// @public (undocumented) -export const foregroundCtrlOntransparentRestRaw = "--smtc-foreground-ctrl-ontransparent-rest"; - -// @public (undocumented) -export const gapBetweenContentLarge = "var(--smtc-gap-between-content-large)"; - -// @public (undocumented) -export const gapBetweenContentLargeRaw = "--smtc-gap-between-content-large"; - -// @public (undocumented) -export const gapBetweenContentMedium = "var(--smtc-gap-between-content-medium)"; - -// @public (undocumented) -export const gapBetweenContentMediumRaw = "--smtc-gap-between-content-medium"; - -// @public (undocumented) -export const gapBetweenContentNone = "var(--smtc-gap-between-content-none)"; - -// @public (undocumented) -export const gapBetweenContentNoneRaw = "--smtc-gap-between-content-none"; - -// @public (undocumented) -export const gapBetweenContentSmall = "var(--smtc-gap-between-content-small)"; - -// @public (undocumented) -export const gapBetweenContentSmallRaw = "--smtc-gap-between-content-small"; - -// @public (undocumented) -export const gapBetweenContentXlarge = "var(--smtc-gap-between-content-xlarge)"; - -// @public (undocumented) -export const gapBetweenContentXlargeRaw = "--smtc-gap-between-content-xlarge"; - -// @public (undocumented) -export const gapBetweenContentXsmall = "var(--smtc-gap-between-content-xsmall)"; - -// @public (undocumented) -export const gapBetweenContentXsmallRaw = "--smtc-gap-between-content-xsmall"; - -// @public (undocumented) -export const gapBetweenContentXxlarge = "var(--smtc-gap-between-content-xxlarge)"; - -// @public (undocumented) -export const gapBetweenContentXxlargeRaw = "--smtc-gap-between-content-xxlarge"; - -// @public (undocumented) -export const gapBetweenContentXxsmall = "var(--smtc-gap-between-content-xxsmall)"; - -// @public (undocumented) -export const gapBetweenContentXxsmallRaw = "--smtc-gap-between-content-xxsmall"; - -// @public (undocumented) -export const gapBetweenCtrlDefault = "var(--smtc-gap-between-ctrl-default)"; - -// @public (undocumented) -export const gapBetweenCtrlDefaultRaw = "--smtc-gap-between-ctrl-default"; - -// @public (undocumented) -export const gapBetweenCtrlLgDefault = "var(--smtc-gap-between-ctrl-lg-default)"; - -// @public (undocumented) -export const gapBetweenCtrlLgDefaultRaw = "--smtc-gap-between-ctrl-lg-default"; - -// @public (undocumented) -export const gapBetweenCtrlLgNested = "var(--smtc-gap-between-ctrl-lg-nested, var(--smtc-padding-ctrl-lg-tonestedcontrol))"; - -// @public (undocumented) -export const gapBetweenCtrlLgNestedRaw = "--smtc-gap-between-ctrl-lg-nested"; - -// @public (undocumented) -export const gapBetweenCtrlNested = "var(--smtc-gap-between-ctrl-nested, var(--smtc-padding-ctrl-tonestedcontrol))"; - -// @public (undocumented) -export const gapBetweenCtrlNestedRaw = "--smtc-gap-between-ctrl-nested"; - -// @public (undocumented) -export const gapBetweenCtrlSmDefault = "var(--smtc-gap-between-ctrl-sm-default)"; - -// @public (undocumented) -export const gapBetweenCtrlSmDefaultRaw = "--smtc-gap-between-ctrl-sm-default"; - -// @public (undocumented) -export const gapBetweenCtrlSmNested = "var(--smtc-gap-between-ctrl-sm-nested, var(--smtc-padding-ctrl-sm-tonestedcontrol))"; - -// @public (undocumented) -export const gapBetweenCtrlSmNestedRaw = "--smtc-gap-between-ctrl-sm-nested"; - -// @public (undocumented) -export const gapCard = "var(--smtc-gap-card, var(--smtc-gap-between-content-medium))"; - -// @public (undocumented) -export const gapCardRaw = "--smtc-gap-card"; - -// @public (undocumented) -export const gapInsideCtrlDefault = "var(--smtc-gap-inside-ctrl-default)"; - -// @public (undocumented) -export const gapInsideCtrlDefaultRaw = "--smtc-gap-inside-ctrl-default"; - -// @public (undocumented) -export const gapInsideCtrlLgDefault = "var(--smtc-gap-inside-ctrl-lg-default)"; - -// @public (undocumented) -export const gapInsideCtrlLgDefaultRaw = "--smtc-gap-inside-ctrl-lg-default"; - -// @public (undocumented) -export const gapInsideCtrlLgTolabel = "var(--smtc-gap-inside-ctrl-lg-tolabel)"; - -// @public (undocumented) -export const gapInsideCtrlLgTolabelRaw = "--smtc-gap-inside-ctrl-lg-tolabel"; - -// @public (undocumented) -export const gapInsideCtrlLgTosecondaryicon = "var(--smtc-gap-inside-ctrl-lg-tosecondaryicon)"; - -// @public (undocumented) -export const gapInsideCtrlLgTosecondaryiconRaw = "--smtc-gap-inside-ctrl-lg-tosecondaryicon"; - -// @public (undocumented) -export const gapInsideCtrlSmDefault = "var(--smtc-gap-inside-ctrl-sm-default)"; - -// @public (undocumented) -export const gapInsideCtrlSmDefaultRaw = "--smtc-gap-inside-ctrl-sm-default"; - -// @public (undocumented) -export const gapInsideCtrlSmTolabel = "var(--smtc-gap-inside-ctrl-sm-tolabel)"; - -// @public (undocumented) -export const gapInsideCtrlSmTolabelRaw = "--smtc-gap-inside-ctrl-sm-tolabel"; - -// @public (undocumented) -export const gapInsideCtrlSmTosecondaryicon = "var(--smtc-gap-inside-ctrl-sm-tosecondaryicon)"; - -// @public (undocumented) -export const gapInsideCtrlSmTosecondaryiconRaw = "--smtc-gap-inside-ctrl-sm-tosecondaryicon"; - -// @public (undocumented) -export const gapInsideCtrlTolabel = "var(--smtc-gap-inside-ctrl-tolabel)"; - -// @public (undocumented) -export const gapInsideCtrlTolabelRaw = "--smtc-gap-inside-ctrl-tolabel"; - -// @public (undocumented) -export const gapInsideCtrlTosecondaryicon = "var(--smtc-gap-inside-ctrl-tosecondaryicon)"; - -// @public (undocumented) -export const gapInsideCtrlTosecondaryiconRaw = "--smtc-gap-inside-ctrl-tosecondaryicon"; - -// @public (undocumented) -export const gapList = "var(--smtc-gap-list, var(--smtc-gap-between-content-xxsmall))"; - -// @public (undocumented) -export const gapListRaw = "--smtc-gap-list"; - -// @public (undocumented) -export const gapTextLarge = "var(--smtc-gap-text-large, var(--smtc-gap-between-content-xsmall))"; - -// @public (undocumented) -export const gapTextLargeRaw = "--smtc-gap-text-large"; - -// @public (undocumented) -export const gapTextSmall = "var(--smtc-gap-text-small, var(--smtc-gap-between-content-xxsmall))"; - -// @public (undocumented) -export const gapTextSmallRaw = "--smtc-gap-text-small"; - -// @public (undocumented) -export const iconthemeCtrlChevronDefault = "var(--smtc-icontheme-ctrl-chevron-default, var(--smtc-icontheme-ctrl-default-rest))"; - -// @public (undocumented) -export const iconthemeCtrlChevronDefaultRaw = "--smtc-icontheme-ctrl-chevron-default"; - -// @public (undocumented) -export const iconthemeCtrlChevronSelected = "var(--smtc-icontheme-ctrl-chevron-selected, var(--smtc-icontheme-ctrl-default-selected))"; - -// @public (undocumented) -export const iconthemeCtrlChevronSelectedRaw = "--smtc-icontheme-ctrl-chevron-selected"; - -// @public (undocumented) -export const iconthemeCtrlDefaultHover = "var(--smtc-icontheme-ctrl-default-hover, var(--smtc-icontheme-ctrl-default-rest))"; - -// @public (undocumented) -export const iconthemeCtrlDefaultHoverRaw = "--smtc-icontheme-ctrl-default-hover"; - -// @public (undocumented) -export const iconthemeCtrlDefaultPressed = "var(--smtc-icontheme-ctrl-default-pressed, var(--smtc-icontheme-ctrl-default-rest))"; - -// @public (undocumented) -export const iconthemeCtrlDefaultPressedRaw = "--smtc-icontheme-ctrl-default-pressed"; - -// @public (undocumented) -export const iconthemeCtrlDefaultRest = "var(--smtc-icontheme-ctrl-default-rest)"; - -// @public (undocumented) -export const iconthemeCtrlDefaultRestRaw = "--smtc-icontheme-ctrl-default-rest"; - -// @public (undocumented) -export const iconthemeCtrlDefaultSelected = "var(--smtc-icontheme-ctrl-default-selected)"; - -// @public (undocumented) -export const iconthemeCtrlDefaultSelectedRaw = "--smtc-icontheme-ctrl-default-selected"; - -// @public (undocumented) -export const iconthemeCtrlSubtleHover = "var(--smtc-icontheme-ctrl-subtle-hover, var(--smtc-icontheme-ctrl-default-rest))"; - -// @public (undocumented) -export const iconthemeCtrlSubtleHoverRaw = "--smtc-icontheme-ctrl-subtle-hover"; - -// @public (undocumented) -export const iconthemeCtrlSubtlePressed = "var(--smtc-icontheme-ctrl-subtle-pressed, var(--smtc-icontheme-ctrl-default-rest))"; - -// @public (undocumented) -export const iconthemeCtrlSubtlePressedRaw = "--smtc-icontheme-ctrl-subtle-pressed"; - -// @public (undocumented) -export const iconthemeCtrlSubtleRest = "var(--smtc-icontheme-ctrl-subtle-rest, var(--smtc-icontheme-ctrl-default-rest))"; - -// @public (undocumented) -export const iconthemeCtrlSubtleRestRaw = "--smtc-icontheme-ctrl-subtle-rest"; - -// @public (undocumented) -export const iconthemeCtrlSubtleSelected = "var(--smtc-icontheme-ctrl-subtle-selected, var(--smtc-icontheme-ctrl-default-selected))"; - -// @public (undocumented) -export const iconthemeCtrlSubtleSelectedRaw = "--smtc-icontheme-ctrl-subtle-selected"; - -// @public (undocumented) -export const materialAcrylicBlur = "var(--smtc-material-acrylic-blur)"; - -// @public (undocumented) -export const materialAcrylicBlurRaw = "--smtc-material-acrylic-blur"; - -// @public (undocumented) -export const materialAcrylicDefaultColorblend = "var(--smtc-material-acrylic-default-colorblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialAcrylicDefaultColorblendRaw = "--smtc-material-acrylic-default-colorblend"; - -// @public (undocumented) -export const materialAcrylicDefaultLumblend = "var(--smtc-material-acrylic-default-lumblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialAcrylicDefaultLumblendRaw = "--smtc-material-acrylic-default-lumblend"; - -// @public (undocumented) -export const materialAcrylicDefaultSolid = "var(--smtc-material-acrylic-default-solid, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialAcrylicDefaultSolidRaw = "--smtc-material-acrylic-default-solid"; - -// @public (undocumented) -export const materialAcrylicShellDefaultColorblend = "var(--smtc-material-acrylic-shell-default-colorblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialAcrylicShellDefaultColorblendRaw = "--smtc-material-acrylic-shell-default-colorblend"; - -// @public (undocumented) -export const materialAcrylicShellDefaultLumblend = "var(--smtc-material-acrylic-shell-default-lumblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialAcrylicShellDefaultLumblendRaw = "--smtc-material-acrylic-shell-default-lumblend"; - -// @public (undocumented) -export const materialAcrylicShellDefaultSolid = "var(--smtc-material-acrylic-shell-default-solid, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialAcrylicShellDefaultSolidRaw = "--smtc-material-acrylic-shell-default-solid"; - -// @public (undocumented) -export const materialMicaBlur = "var(--smtc-material-mica-blur)"; - -// @public (undocumented) -export const materialMicaBlurRaw = "--smtc-material-mica-blur"; - -// @public (undocumented) -export const materialMicaDarkerColorblend = "var(--smtc-material-mica-darker-colorblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaDarkerColorblendRaw = "--smtc-material-mica-darker-colorblend"; - -// @public (undocumented) -export const materialMicaDarkerLumblend = "var(--smtc-material-mica-darker-lumblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaDarkerLumblendRaw = "--smtc-material-mica-darker-lumblend"; - -// @public (undocumented) -export const materialMicaDarkerSolid = "var(--smtc-material-mica-darker-solid, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaDarkerSolidRaw = "--smtc-material-mica-darker-solid"; - -// @public (undocumented) -export const materialMicaDefaultColorblend = "var(--smtc-material-mica-default-colorblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaDefaultColorblendRaw = "--smtc-material-mica-default-colorblend"; - -// @public (undocumented) -export const materialMicaDefaultLumblend = "var(--smtc-material-mica-default-lumblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaDefaultLumblendRaw = "--smtc-material-mica-default-lumblend"; - -// @public (undocumented) -export const materialMicaDefaultSolid = "var(--smtc-material-mica-default-solid, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaDefaultSolidRaw = "--smtc-material-mica-default-solid"; - -// @public (undocumented) -export const materialMicaThinColorblend = "var(--smtc-material-mica-thin-colorblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaThinColorblendRaw = "--smtc-material-mica-thin-colorblend"; - -// @public (undocumented) -export const materialMicaThinLumblend = "var(--smtc-material-mica-thin-lumblend, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaThinLumblendRaw = "--smtc-material-mica-thin-lumblend"; - -// @public (undocumented) -export const materialMicaThinSolid = "var(--smtc-material-mica-thin-solid, var(--smtc-background-layer-primarysolid))"; - -// @public (undocumented) -export const materialMicaThinSolidRaw = "--smtc-material-mica-thin-solid"; - -// @public (undocumented) -export const nullColor = "var(--smtc-null-color)"; - -// @public (undocumented) -export const nullColorRaw = "--smtc-null-color"; - -// @public (undocumented) -export const nullNumber = "var(--smtc-null-number)"; - -// @public (undocumented) -export const nullNumberRaw = "--smtc-null-number"; - -// @public (undocumented) -export const nullString = "var(--smtc-null-string)"; - -// @public (undocumented) -export const nullStringRaw = "--smtc-null-string"; - -// @public (undocumented) -export const paddingCardNestedimage = "var(--smtc-padding-card-nestedimage, var(--smtc-padding-content-align-default))"; - -// @public (undocumented) -export const paddingCardNestedimageRaw = "--smtc-padding-card-nestedimage"; - -// @public (undocumented) -export const paddingContentAlignDefault = "var(--smtc-padding-content-align-default)"; - -// @public (undocumented) -export const paddingContentAlignDefaultRaw = "--smtc-padding-content-align-default"; - -// @public (undocumented) -export const paddingContentAlignOutdentIcononsubtle = "var(--smtc-padding-content-align-outdent-icononsubtle)"; - -// @public (undocumented) -export const paddingContentAlignOutdentIcononsubtleRaw = "--smtc-padding-content-align-outdent-icononsubtle"; - -// @public (undocumented) -export const paddingContentAlignOutdentTextonsubtle = "var(--smtc-padding-content-align-outdent-textonsubtle)"; - -// @public (undocumented) -export const paddingContentAlignOutdentTextonsubtleRaw = "--smtc-padding-content-align-outdent-textonsubtle"; - -// @public (undocumented) -export const paddingContentLarge = "var(--smtc-padding-content-large)"; - -// @public (undocumented) -export const paddingContentLargeRaw = "--smtc-padding-content-large"; - -// @public (undocumented) -export const paddingContentMedium = "var(--smtc-padding-content-medium)"; - -// @public (undocumented) -export const paddingContentMediumRaw = "--smtc-padding-content-medium"; - -// @public (undocumented) -export const paddingContentNone = "var(--smtc-padding-content-none)"; - -// @public (undocumented) -export const paddingContentNoneRaw = "--smtc-padding-content-none"; - -// @public (undocumented) -export const paddingContentSmall = "var(--smtc-padding-content-small)"; - -// @public (undocumented) -export const paddingContentSmallRaw = "--smtc-padding-content-small"; - -// @public (undocumented) -export const paddingContentXlarge = "var(--smtc-padding-content-xlarge)"; - -// @public (undocumented) -export const paddingContentXlargeRaw = "--smtc-padding-content-xlarge"; - -// @public (undocumented) -export const paddingContentXsmall = "var(--smtc-padding-content-xsmall)"; - -// @public (undocumented) -export const paddingContentXsmallRaw = "--smtc-padding-content-xsmall"; - -// @public (undocumented) -export const paddingContentXxlarge = "var(--smtc-padding-content-xxlarge)"; - -// @public (undocumented) -export const paddingContentXxlargeRaw = "--smtc-padding-content-xxlarge"; - -// @public (undocumented) -export const paddingContentXxsmall = "var(--smtc-padding-content-xxsmall)"; - -// @public (undocumented) -export const paddingContentXxsmallRaw = "--smtc-padding-content-xxsmall"; - -// @public (undocumented) -export const paddingContentXxxlarge = "var(--smtc-padding-content-xxxlarge)"; - -// @public (undocumented) -export const paddingContentXxxlargeRaw = "--smtc-padding-content-xxxlarge"; - -// @public (undocumented) -export const paddingCtrlHorizontalDefault = "var(--smtc-padding-ctrl-horizontal-default)"; - -// @public (undocumented) -export const paddingCtrlHorizontalDefaultRaw = "--smtc-padding-ctrl-horizontal-default"; - -// @public (undocumented) -export const paddingCtrlHorizontalIcononly = "var(--smtc-padding-ctrl-horizontal-icononly)"; - -// @public (undocumented) -export const paddingCtrlHorizontalIcononlyRaw = "--smtc-padding-ctrl-horizontal-icononly"; - -// @public (undocumented) -export const paddingCtrlLgHorizontalDefault = "var(--smtc-padding-ctrl-lg-horizontal-default)"; - -// @public (undocumented) -export const paddingCtrlLgHorizontalDefaultRaw = "--smtc-padding-ctrl-lg-horizontal-default"; - -// @public (undocumented) -export const paddingCtrlLgHorizontalIcononly = "var(--smtc-padding-ctrl-lg-horizontal-icononly)"; - -// @public (undocumented) -export const paddingCtrlLgHorizontalIcononlyRaw = "--smtc-padding-ctrl-lg-horizontal-icononly"; - -// @public (undocumented) -export const paddingCtrlLgTextbottom = "var(--smtc-padding-ctrl-lg-textbottom, var(--smtc-padding-ctrl-lg-texttop))"; - -// @public (undocumented) -export const paddingCtrlLgTextbottomRaw = "--smtc-padding-ctrl-lg-textbottom"; - -// @public (undocumented) -export const paddingCtrlLgTexttop = "var(--smtc-padding-ctrl-lg-texttop)"; - -// @public (undocumented) -export const paddingCtrlLgTexttopRaw = "--smtc-padding-ctrl-lg-texttop"; - -// @public (undocumented) -export const paddingCtrlLgTonestedcontrol = "var(--smtc-padding-ctrl-lg-tonestedcontrol)"; - -// @public (undocumented) -export const paddingCtrlLgTonestedcontrolRaw = "--smtc-padding-ctrl-lg-tonestedcontrol"; - -// @public (undocumented) -export const paddingCtrlSmHorizontalDefault = "var(--smtc-padding-ctrl-sm-horizontal-default)"; - -// @public (undocumented) -export const paddingCtrlSmHorizontalDefaultRaw = "--smtc-padding-ctrl-sm-horizontal-default"; - -// @public (undocumented) -export const paddingCtrlSmHorizontalIcononly = "var(--smtc-padding-ctrl-sm-horizontal-icononly)"; - -// @public (undocumented) -export const paddingCtrlSmHorizontalIcononlyRaw = "--smtc-padding-ctrl-sm-horizontal-icononly"; - -// @public (undocumented) -export const paddingCtrlSmTextbottom = "var(--smtc-padding-ctrl-sm-textbottom, var(--smtc-padding-ctrl-sm-texttop))"; - -// @public (undocumented) -export const paddingCtrlSmTextbottomRaw = "--smtc-padding-ctrl-sm-textbottom"; - -// @public (undocumented) -export const paddingCtrlSmTexttop = "var(--smtc-padding-ctrl-sm-texttop)"; - -// @public (undocumented) -export const paddingCtrlSmTexttopRaw = "--smtc-padding-ctrl-sm-texttop"; - -// @public (undocumented) -export const paddingCtrlSmTonestedcontrol = "var(--smtc-padding-ctrl-sm-tonestedcontrol)"; - -// @public (undocumented) -export const paddingCtrlSmTonestedcontrolRaw = "--smtc-padding-ctrl-sm-tonestedcontrol"; - -// @public (undocumented) -export const paddingCtrlTextbottom = "var(--smtc-padding-ctrl-textbottom, var(--smtc-padding-ctrl-texttop))"; - -// @public (undocumented) -export const paddingCtrlTextbottomRaw = "--smtc-padding-ctrl-textbottom"; - -// @public (undocumented) -export const paddingCtrlTextside = "var(--smtc-padding-ctrl-textside)"; - -// @public (undocumented) -export const paddingCtrlTextsideRaw = "--smtc-padding-ctrl-textside"; - -// @public (undocumented) -export const paddingCtrlTexttop = "var(--smtc-padding-ctrl-texttop)"; - -// @public (undocumented) -export const paddingCtrlTexttopRaw = "--smtc-padding-ctrl-texttop"; - -// @public (undocumented) -export const paddingCtrlTonestedcontrol = "var(--smtc-padding-ctrl-tonestedcontrol)"; - -// @public (undocumented) -export const paddingCtrlTonestedcontrolRaw = "--smtc-padding-ctrl-tonestedcontrol"; - -// @public (undocumented) -export const paddingFlyoutDefault = "var(--smtc-padding-flyout-default, var(--smtc-padding-content-align-outdent-textonsubtle))"; - -// @public (undocumented) -export const paddingFlyoutDefaultRaw = "--smtc-padding-flyout-default"; - -// @public (undocumented) -export const paddingToolbarInside = "var(--smtc-padding-toolbar-inside, var(--smtc-padding-content-xsmall))"; - -// @public (undocumented) -export const paddingToolbarInsideRaw = "--smtc-padding-toolbar-inside"; - -// @public (undocumented) -export const paddingToolbarOutside = "var(--smtc-padding-toolbar-outside, var(--smtc-padding-content-xxsmall))"; - -// @public (undocumented) -export const paddingToolbarOutsideRaw = "--smtc-padding-toolbar-outside"; - -// @public (undocumented) -export const shadowCardDisabledKeyBlur = "var(--smtc-shadow-card-disabled-key-blur, unset)"; - -// @public (undocumented) -export const shadowCardDisabledKeyBlurRaw = "--smtc-shadow-card-disabled-key-blur"; - -// @public (undocumented) -export const shadowCardDisabledKeyColor = "var(--smtc-shadow-card-disabled-key-color, unset)"; - -// @public (undocumented) -export const shadowCardDisabledKeyColorRaw = "--smtc-shadow-card-disabled-key-color"; - -// @public (undocumented) -export const shadowCardDisabledKeyX = "var(--smtc-shadow-card-disabled-key-x, unset)"; - -// @public (undocumented) -export const shadowCardDisabledKeyXRaw = "--smtc-shadow-card-disabled-key-x"; - -// @public (undocumented) -export const shadowCardDisabledKeyY = "var(--smtc-shadow-card-disabled-key-y, unset)"; - -// @public (undocumented) -export const shadowCardDisabledKeyYRaw = "--smtc-shadow-card-disabled-key-y"; - -// @public (undocumented) -export const shadowCardHoverKeyBlur = "var(--smtc-shadow-card-hover-key-blur, unset)"; - -// @public (undocumented) -export const shadowCardHoverKeyBlurRaw = "--smtc-shadow-card-hover-key-blur"; - -// @public (undocumented) -export const shadowCardHoverKeyColor = "var(--smtc-shadow-card-hover-key-color, unset)"; - -// @public (undocumented) -export const shadowCardHoverKeyColorRaw = "--smtc-shadow-card-hover-key-color"; - -// @public (undocumented) -export const shadowCardHoverKeyX = "var(--smtc-shadow-card-hover-key-x, unset)"; - -// @public (undocumented) -export const shadowCardHoverKeyXRaw = "--smtc-shadow-card-hover-key-x"; - -// @public (undocumented) -export const shadowCardHoverKeyY = "var(--smtc-shadow-card-hover-key-y, unset)"; - -// @public (undocumented) -export const shadowCardHoverKeyYRaw = "--smtc-shadow-card-hover-key-y"; - -// @public (undocumented) -export const shadowCardPressedKeyBlur = "var(--smtc-shadow-card-pressed-key-blur, unset)"; - -// @public (undocumented) -export const shadowCardPressedKeyBlurRaw = "--smtc-shadow-card-pressed-key-blur"; - -// @public (undocumented) -export const shadowCardPressedKeyColor = "var(--smtc-shadow-card-pressed-key-color, unset)"; - -// @public (undocumented) -export const shadowCardPressedKeyColorRaw = "--smtc-shadow-card-pressed-key-color"; - -// @public (undocumented) -export const shadowCardPressedKeyX = "var(--smtc-shadow-card-pressed-key-x, unset)"; - -// @public (undocumented) -export const shadowCardPressedKeyXRaw = "--smtc-shadow-card-pressed-key-x"; - -// @public (undocumented) -export const shadowCardPressedKeyY = "var(--smtc-shadow-card-pressed-key-y, unset)"; - -// @public (undocumented) -export const shadowCardPressedKeyYRaw = "--smtc-shadow-card-pressed-key-y"; - -// @public (undocumented) -export const shadowCardRestAmbientBlur = "var(--smtc-shadow-card-rest-ambient-blur, unset)"; - -// @public (undocumented) -export const shadowCardRestAmbientBlurRaw = "--smtc-shadow-card-rest-ambient-blur"; - -// @public (undocumented) -export const shadowCardRestAmbientColor = "var(--smtc-shadow-card-rest-ambient-color, unset)"; - -// @public (undocumented) -export const shadowCardRestAmbientColorRaw = "--smtc-shadow-card-rest-ambient-color"; - -// @public (undocumented) -export const shadowCardRestAmbientX = "var(--smtc-shadow-card-rest-ambient-x, unset)"; - -// @public (undocumented) -export const shadowCardRestAmbientXRaw = "--smtc-shadow-card-rest-ambient-x"; - -// @public (undocumented) -export const shadowCardRestAmbientY = "var(--smtc-shadow-card-rest-ambient-y, unset)"; - -// @public (undocumented) -export const shadowCardRestAmbientYRaw = "--smtc-shadow-card-rest-ambient-y"; - -// @public (undocumented) -export const shadowCardRestKeyBlur = "var(--smtc-shadow-card-rest-key-blur, unset)"; - -// @public (undocumented) -export const shadowCardRestKeyBlurRaw = "--smtc-shadow-card-rest-key-blur"; - -// @public (undocumented) -export const shadowCardRestKeyColor = "var(--smtc-shadow-card-rest-key-color, unset)"; - -// @public (undocumented) -export const shadowCardRestKeyColorRaw = "--smtc-shadow-card-rest-key-color"; - -// @public (undocumented) -export const shadowCardRestKeyX = "var(--smtc-shadow-card-rest-key-x, unset)"; - -// @public (undocumented) -export const shadowCardRestKeyXRaw = "--smtc-shadow-card-rest-key-x"; - -// @public (undocumented) -export const shadowCardRestKeyY = "var(--smtc-shadow-card-rest-key-y, unset)"; - -// @public (undocumented) -export const shadowCardRestKeyYRaw = "--smtc-shadow-card-rest-key-y"; - -// @public (undocumented) -export const shadowCtrlOndragAmbientBlur = "var(--smtc-shadow-ctrl-ondrag-ambient-blur, var(--smtc-shadow-flyout-ambient-blur))"; - -// @public (undocumented) -export const shadowCtrlOndragAmbientBlurRaw = "--smtc-shadow-ctrl-ondrag-ambient-blur"; - -// @public (undocumented) -export const shadowCtrlOndragAmbientColor = "var(--smtc-shadow-ctrl-ondrag-ambient-color, var(--smtc-shadow-flyout-ambient-color))"; - -// @public (undocumented) -export const shadowCtrlOndragAmbientColorRaw = "--smtc-shadow-ctrl-ondrag-ambient-color"; - -// @public (undocumented) -export const shadowCtrlOndragAmbientX = "var(--smtc-shadow-ctrl-ondrag-ambient-x, var(--smtc-shadow-flyout-ambient-x))"; - -// @public (undocumented) -export const shadowCtrlOndragAmbientXRaw = "--smtc-shadow-ctrl-ondrag-ambient-x"; - -// @public (undocumented) -export const shadowCtrlOndragAmbientY = "var(--smtc-shadow-ctrl-ondrag-ambient-y, var(--smtc-shadow-flyout-ambient-y))"; - -// @public (undocumented) -export const shadowCtrlOndragAmbientYRaw = "--smtc-shadow-ctrl-ondrag-ambient-y"; - -// @public (undocumented) -export const shadowCtrlOndragKeyBlur = "var(--smtc-shadow-ctrl-ondrag-key-blur, var(--smtc-shadow-flyout-key-blur))"; - -// @public (undocumented) -export const shadowCtrlOndragKeyBlurRaw = "--smtc-shadow-ctrl-ondrag-key-blur"; - -// @public (undocumented) -export const shadowCtrlOndragKeyColor = "var(--smtc-shadow-ctrl-ondrag-key-color, var(--smtc-shadow-flyout-key-color))"; - -// @public (undocumented) -export const shadowCtrlOndragKeyColorRaw = "--smtc-shadow-ctrl-ondrag-key-color"; - -// @public (undocumented) -export const shadowCtrlOndragKeyX = "var(--smtc-shadow-ctrl-ondrag-key-x, var(--smtc-shadow-flyout-key-x))"; - -// @public (undocumented) -export const shadowCtrlOndragKeyXRaw = "--smtc-shadow-ctrl-ondrag-key-x"; - -// @public (undocumented) -export const shadowCtrlOndragKeyY = "var(--smtc-shadow-ctrl-ondrag-key-y, var(--smtc-shadow-flyout-key-y))"; - -// @public (undocumented) -export const shadowCtrlOndragKeyYRaw = "--smtc-shadow-ctrl-ondrag-key-y"; - -// @public (undocumented) -export const shadowFlyoutAmbientBlur = "var(--smtc-shadow-flyout-ambient-blur)"; - -// @public (undocumented) -export const shadowFlyoutAmbientBlurRaw = "--smtc-shadow-flyout-ambient-blur"; - -// @public (undocumented) -export const shadowFlyoutAmbientColor = "var(--smtc-shadow-flyout-ambient-color)"; - -// @public (undocumented) -export const shadowFlyoutAmbientColorRaw = "--smtc-shadow-flyout-ambient-color"; - -// @public (undocumented) -export const shadowFlyoutAmbientX = "var(--smtc-shadow-flyout-ambient-x)"; - -// @public (undocumented) -export const shadowFlyoutAmbientXRaw = "--smtc-shadow-flyout-ambient-x"; - -// @public (undocumented) -export const shadowFlyoutAmbientY = "var(--smtc-shadow-flyout-ambient-y)"; - -// @public (undocumented) -export const shadowFlyoutAmbientYRaw = "--smtc-shadow-flyout-ambient-y"; - -// @public (undocumented) -export const shadowFlyoutKeyBlur = "var(--smtc-shadow-flyout-key-blur)"; - -// @public (undocumented) -export const shadowFlyoutKeyBlurRaw = "--smtc-shadow-flyout-key-blur"; - -// @public (undocumented) -export const shadowFlyoutKeyColor = "var(--smtc-shadow-flyout-key-color)"; - -// @public (undocumented) -export const shadowFlyoutKeyColorRaw = "--smtc-shadow-flyout-key-color"; - -// @public (undocumented) -export const shadowFlyoutKeyX = "var(--smtc-shadow-flyout-key-x)"; - -// @public (undocumented) -export const shadowFlyoutKeyXRaw = "--smtc-shadow-flyout-key-x"; - -// @public (undocumented) -export const shadowFlyoutKeyY = "var(--smtc-shadow-flyout-key-y)"; - -// @public (undocumented) -export const shadowFlyoutKeyYRaw = "--smtc-shadow-flyout-key-y"; - -// @public (undocumented) -export const shadowLayerAmbientBlur = "var(--smtc-shadow-layer-ambient-blur, unset)"; - -// @public (undocumented) -export const shadowLayerAmbientBlurRaw = "--smtc-shadow-layer-ambient-blur"; - -// @public (undocumented) -export const shadowLayerAmbientColor = "var(--smtc-shadow-layer-ambient-color, unset)"; - -// @public (undocumented) -export const shadowLayerAmbientColorRaw = "--smtc-shadow-layer-ambient-color"; - -// @public (undocumented) -export const shadowLayerAmbientX = "var(--smtc-shadow-layer-ambient-x, unset)"; - -// @public (undocumented) -export const shadowLayerAmbientXRaw = "--smtc-shadow-layer-ambient-x"; - -// @public (undocumented) -export const shadowLayerAmbientY = "var(--smtc-shadow-layer-ambient-y, unset)"; - -// @public (undocumented) -export const shadowLayerAmbientYRaw = "--smtc-shadow-layer-ambient-y"; - -// @public (undocumented) -export const shadowLayerKeyBlur = "var(--smtc-shadow-layer-key-blur, unset)"; - -// @public (undocumented) -export const shadowLayerKeyBlurRaw = "--smtc-shadow-layer-key-blur"; - -// @public (undocumented) -export const shadowLayerKeyColor = "var(--smtc-shadow-layer-key-color, unset)"; - -// @public (undocumented) -export const shadowLayerKeyColorRaw = "--smtc-shadow-layer-key-color"; - -// @public (undocumented) -export const shadowLayerKeyX = "var(--smtc-shadow-layer-key-x, unset)"; - -// @public (undocumented) -export const shadowLayerKeyXRaw = "--smtc-shadow-layer-key-x"; - -// @public (undocumented) -export const shadowLayerKeyY = "var(--smtc-shadow-layer-key-y, unset)"; - -// @public (undocumented) -export const shadowLayerKeyYRaw = "--smtc-shadow-layer-key-y"; - -// @public (undocumented) -export const shadowToolbarAmbientBlur = "var(--smtc-shadow-toolbar-ambient-blur)"; - -// @public (undocumented) -export const shadowToolbarAmbientBlurRaw = "--smtc-shadow-toolbar-ambient-blur"; - -// @public (undocumented) -export const shadowToolbarAmbientColor = "var(--smtc-shadow-toolbar-ambient-color)"; - -// @public (undocumented) -export const shadowToolbarAmbientColorRaw = "--smtc-shadow-toolbar-ambient-color"; - -// @public (undocumented) -export const shadowToolbarAmbientX = "var(--smtc-shadow-toolbar-ambient-x)"; - -// @public (undocumented) -export const shadowToolbarAmbientXRaw = "--smtc-shadow-toolbar-ambient-x"; - -// @public (undocumented) -export const shadowToolbarAmbientY = "var(--smtc-shadow-toolbar-ambient-y)"; - -// @public (undocumented) -export const shadowToolbarAmbientYRaw = "--smtc-shadow-toolbar-ambient-y"; - -// @public (undocumented) -export const shadowToolbarKeyBlur = "var(--smtc-shadow-toolbar-key-blur)"; - -// @public (undocumented) -export const shadowToolbarKeyBlurRaw = "--smtc-shadow-toolbar-key-blur"; - -// @public (undocumented) -export const shadowToolbarKeyColor = "var(--smtc-shadow-toolbar-key-color)"; - -// @public (undocumented) -export const shadowToolbarKeyColorRaw = "--smtc-shadow-toolbar-key-color"; - -// @public (undocumented) -export const shadowToolbarKeyX = "var(--smtc-shadow-toolbar-key-x)"; - -// @public (undocumented) -export const shadowToolbarKeyXRaw = "--smtc-shadow-toolbar-key-x"; - -// @public (undocumented) -export const shadowToolbarKeyY = "var(--smtc-shadow-toolbar-key-y)"; - -// @public (undocumented) -export const shadowToolbarKeyYRaw = "--smtc-shadow-toolbar-key-y"; - -// @public (undocumented) -export const shadowWindowActiveAmbientBlur = "var(--smtc-shadow-window-active-ambient-blur)"; - -// @public (undocumented) -export const shadowWindowActiveAmbientBlurRaw = "--smtc-shadow-window-active-ambient-blur"; - -// @public (undocumented) -export const shadowWindowActiveAmbientColor = "var(--smtc-shadow-window-active-ambient-color)"; - -// @public (undocumented) -export const shadowWindowActiveAmbientColorRaw = "--smtc-shadow-window-active-ambient-color"; - -// @public (undocumented) -export const shadowWindowActiveAmbientX = "var(--smtc-shadow-window-active-ambient-x)"; - -// @public (undocumented) -export const shadowWindowActiveAmbientXRaw = "--smtc-shadow-window-active-ambient-x"; - -// @public (undocumented) -export const shadowWindowActiveAmbientY = "var(--smtc-shadow-window-active-ambient-y)"; - -// @public (undocumented) -export const shadowWindowActiveAmbientYRaw = "--smtc-shadow-window-active-ambient-y"; - -// @public (undocumented) -export const shadowWindowActiveKeyBlur = "var(--smtc-shadow-window-active-key-blur)"; - -// @public (undocumented) -export const shadowWindowActiveKeyBlurRaw = "--smtc-shadow-window-active-key-blur"; - -// @public (undocumented) -export const shadowWindowActiveKeyColor = "var(--smtc-shadow-window-active-key-color)"; - -// @public (undocumented) -export const shadowWindowActiveKeyColorRaw = "--smtc-shadow-window-active-key-color"; - -// @public (undocumented) -export const shadowWindowActiveKeyX = "var(--smtc-shadow-window-active-key-x)"; - -// @public (undocumented) -export const shadowWindowActiveKeyXRaw = "--smtc-shadow-window-active-key-x"; - -// @public (undocumented) -export const shadowWindowActiveKeyY = "var(--smtc-shadow-window-active-key-y)"; - -// @public (undocumented) -export const shadowWindowActiveKeyYRaw = "--smtc-shadow-window-active-key-y"; - -// @public (undocumented) -export const shadowWindowInactiveAmbientBlur = "var(--smtc-shadow-window-inactive-ambient-blur)"; - -// @public (undocumented) -export const shadowWindowInactiveAmbientBlurRaw = "--smtc-shadow-window-inactive-ambient-blur"; - -// @public (undocumented) -export const shadowWindowInactiveAmbientColor = "var(--smtc-shadow-window-inactive-ambient-color)"; - -// @public (undocumented) -export const shadowWindowInactiveAmbientColorRaw = "--smtc-shadow-window-inactive-ambient-color"; - -// @public (undocumented) -export const shadowWindowInactiveAmbientX = "var(--smtc-shadow-window-inactive-ambient-x)"; - -// @public (undocumented) -export const shadowWindowInactiveAmbientXRaw = "--smtc-shadow-window-inactive-ambient-x"; - -// @public (undocumented) -export const shadowWindowInactiveAmbientY = "var(--smtc-shadow-window-inactive-ambient-y)"; - -// @public (undocumented) -export const shadowWindowInactiveAmbientYRaw = "--smtc-shadow-window-inactive-ambient-y"; - -// @public (undocumented) -export const shadowWindowInactiveKeyBlur = "var(--smtc-shadow-window-inactive-key-blur, var(--smtc-shadow-window-active-key-blur))"; - -// @public (undocumented) -export const shadowWindowInactiveKeyBlurRaw = "--smtc-shadow-window-inactive-key-blur"; - -// @public (undocumented) -export const shadowWindowInactiveKeyColor = "var(--smtc-shadow-window-inactive-key-color, var(--smtc-shadow-window-active-key-color))"; - -// @public (undocumented) -export const shadowWindowInactiveKeyColorRaw = "--smtc-shadow-window-inactive-key-color"; - -// @public (undocumented) -export const shadowWindowInactiveKeyX = "var(--smtc-shadow-window-inactive-key-x, var(--smtc-shadow-window-active-key-x))"; - -// @public (undocumented) -export const shadowWindowInactiveKeyXRaw = "--smtc-shadow-window-inactive-key-x"; - -// @public (undocumented) -export const shadowWindowInactiveKeyY = "var(--smtc-shadow-window-inactive-key-y, var(--smtc-shadow-window-active-key-y))"; - -// @public (undocumented) -export const shadowWindowInactiveKeyYRaw = "--smtc-shadow-window-inactive-key-y"; - -// @public (undocumented) -export const sizeCtrlDefault = "var(--smtc-size-ctrl-default)"; - -// @public (undocumented) -export const sizeCtrlDefaultRaw = "--smtc-size-ctrl-default"; - -// @public (undocumented) -export const sizeCtrlIcon = "var(--smtc-size-ctrl-icon)"; - -// @public (undocumented) -export const sizeCtrlIconFigmaonly = "var(--smtc-size-ctrl-iconfigmaonly)"; - -// @public (undocumented) -export const sizeCtrlIconFigmaonlyRaw = "--smtc-size-ctrl-iconfigmaonly"; - -// @public (undocumented) -export const sizeCtrlIconRaw = "--smtc-size-ctrl-icon"; - -// @public (undocumented) -export const sizeCtrlIconsecondary = "var(--smtc-size-ctrl-iconsecondary)"; - -// @public (undocumented) -export const sizeCtrlIconsecondaryRaw = "--smtc-size-ctrl-iconsecondary"; - -// @public (undocumented) -export const sizeCtrlLgDefault = "var(--smtc-size-ctrl-lg-default)"; - -// @public (undocumented) -export const sizeCtrlLgDefaultRaw = "--smtc-size-ctrl-lg-default"; - -// @public (undocumented) -export const sizeCtrlLgIcon = "var(--smtc-size-ctrl-lg-icon)"; - -// @public (undocumented) -export const sizeCtrlLgIconFigmaonly = "var(--smtc-size-ctrl-lg-iconfigmaonly)"; - -// @public (undocumented) -export const sizeCtrlLgIconFigmaonlyRaw = "--smtc-size-ctrl-lg-iconfigmaonly"; - -// @public (undocumented) -export const sizeCtrlLgIconRaw = "--smtc-size-ctrl-lg-icon"; - -// @public (undocumented) -export const sizeCtrlSmDefault = "var(--smtc-size-ctrl-sm-default)"; - -// @public (undocumented) -export const sizeCtrlSmDefaultRaw = "--smtc-size-ctrl-sm-default"; - -// @public (undocumented) -export const sizeCtrlSmIcon = "var(--smtc-size-ctrl-sm-icon)"; - -// @public (undocumented) -export const sizeCtrlSmIconFigmaonly = "var(--smtc-size-ctrl-sm-iconfigmaonly)"; - -// @public (undocumented) -export const sizeCtrlSmIconFigmaonlyRaw = "--smtc-size-ctrl-sm-iconfigmaonly"; - -// @public (undocumented) -export const sizeCtrlSmIconRaw = "--smtc-size-ctrl-sm-icon"; - -// @public (undocumented) -export const statusAwayForeground = "var(--smtc-status-away-foreground)"; - -// @public (undocumented) -export const statusAwayForegroundRaw = "--smtc-status-away-foreground"; - -// @public (undocumented) -export const statusBrandBackground = "var(--smtc-status-brand-background, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const statusBrandBackgroundRaw = "--smtc-status-brand-background"; - -// @public (undocumented) -export const statusBrandForeground = "var(--smtc-status-brand-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const statusBrandForegroundRaw = "--smtc-status-brand-foreground"; - -// @public (undocumented) -export const statusBrandStroke = "var(--smtc-status-brand-stroke, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const statusBrandStrokeRaw = "--smtc-status-brand-stroke"; - -// @public (undocumented) -export const statusBrandTintBackground = "var(--smtc-status-brand-tint-background)"; - -// @public (undocumented) -export const statusBrandTintBackgroundRaw = "--smtc-status-brand-tint-background"; - -// @public (undocumented) -export const statusBrandTintForeground = "var(--smtc-status-brand-tint-foreground, var(--smtc-foreground-ctrl-brand-rest))"; - -// @public (undocumented) -export const statusBrandTintForegroundRaw = "--smtc-status-brand-tint-foreground"; - -// @public (undocumented) -export const statusBrandTintStroke = "var(--smtc-status-brand-tint-stroke)"; - -// @public (undocumented) -export const statusBrandTintStrokeRaw = "--smtc-status-brand-tint-stroke"; - -// @public (undocumented) -export const statusDangerBackground = "var(--smtc-status-danger-background)"; - -// @public (undocumented) -export const statusDangerBackgroundRaw = "--smtc-status-danger-background"; - -// @public (undocumented) -export const statusDangerForeground = "var(--smtc-status-danger-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const statusDangerForegroundRaw = "--smtc-status-danger-foreground"; - -// @public (undocumented) -export const statusDangerStroke = "var(--smtc-status-danger-stroke, var(--smtc-status-danger-background))"; - -// @public (undocumented) -export const statusDangerStrokeRaw = "--smtc-status-danger-stroke"; - -// @public (undocumented) -export const statusDangerTintBackground = "var(--smtc-status-danger-tint-background)"; - -// @public (undocumented) -export const statusDangerTintBackgroundRaw = "--smtc-status-danger-tint-background"; - -// @public (undocumented) -export const statusDangerTintForeground = "var(--smtc-status-danger-tint-foreground)"; - -// @public (undocumented) -export const statusDangerTintForegroundRaw = "--smtc-status-danger-tint-foreground"; - -// @public (undocumented) -export const statusDangerTintStroke = "var(--smtc-status-danger-tint-stroke)"; - -// @public (undocumented) -export const statusDangerTintStrokeRaw = "--smtc-status-danger-tint-stroke"; - -// @public (undocumented) -export const statusImportantBackground = "var(--smtc-status-important-background)"; - -// @public (undocumented) -export const statusImportantBackgroundRaw = "--smtc-status-important-background"; - -// @public (undocumented) -export const statusImportantForeground = "var(--smtc-status-important-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const statusImportantForegroundRaw = "--smtc-status-important-foreground"; - -// @public (undocumented) -export const statusImportantStroke = "var(--smtc-status-important-stroke, var(--smtc-status-important-background))"; - -// @public (undocumented) -export const statusImportantStrokeRaw = "--smtc-status-important-stroke"; - -// @public (undocumented) -export const statusImportantTintBackground = "var(--smtc-status-important-tint-background)"; - -// @public (undocumented) -export const statusImportantTintBackgroundRaw = "--smtc-status-important-tint-background"; - -// @public (undocumented) -export const statusImportantTintForeground = "var(--smtc-status-important-tint-foreground)"; - -// @public (undocumented) -export const statusImportantTintForegroundRaw = "--smtc-status-important-tint-foreground"; - -// @public (undocumented) -export const statusImportantTintStroke = "var(--smtc-status-important-tint-stroke)"; - -// @public (undocumented) -export const statusImportantTintStrokeRaw = "--smtc-status-important-tint-stroke"; - -// @public (undocumented) -export const statusInformativeBackground = "var(--smtc-status-informative-background)"; - -// @public (undocumented) -export const statusInformativeBackgroundRaw = "--smtc-status-informative-background"; - -// @public (undocumented) -export const statusInformativeForeground = "var(--smtc-status-informative-foreground, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const statusInformativeForegroundRaw = "--smtc-status-informative-foreground"; - -// @public (undocumented) -export const statusInformativeStroke = "var(--smtc-status-informative-stroke, var(--smtc-status-informative-background))"; - -// @public (undocumented) -export const statusInformativeStrokeRaw = "--smtc-status-informative-stroke"; - -// @public (undocumented) -export const statusInformativeTintBackground = "var(--smtc-status-informative-tint-background)"; - -// @public (undocumented) -export const statusInformativeTintBackgroundRaw = "--smtc-status-informative-tint-background"; - -// @public (undocumented) -export const statusInformativeTintForeground = "var(--smtc-status-informative-tint-foreground)"; - -// @public (undocumented) -export const statusInformativeTintForegroundRaw = "--smtc-status-informative-tint-foreground"; - -// @public (undocumented) -export const statusInformativeTintStroke = "var(--smtc-status-informative-tint-stroke)"; - -// @public (undocumented) -export const statusInformativeTintStrokeRaw = "--smtc-status-informative-tint-stroke"; - -// @public (undocumented) -export const statusNeutralBackground = "var(--smtc-status-neutral-background)"; - -// @public (undocumented) -export const statusNeutralBackgroundRaw = "--smtc-status-neutral-background"; - -// @public (undocumented) -export const statusNeutralForeground = "var(--smtc-status-neutral-foreground, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const statusNeutralForegroundRaw = "--smtc-status-neutral-foreground"; - -// @public (undocumented) -export const statusNeutralStroke = "var(--smtc-status-neutral-stroke, var(--smtc-status-neutral-background))"; - -// @public (undocumented) -export const statusNeutralStrokeRaw = "--smtc-status-neutral-stroke"; - -// @public (undocumented) -export const statusNeutralTintBackground = "var(--smtc-status-neutral-tint-background)"; - -// @public (undocumented) -export const statusNeutralTintBackgroundRaw = "--smtc-status-neutral-tint-background"; - -// @public (undocumented) -export const statusNeutralTintForeground = "var(--smtc-status-neutral-tint-foreground, var(--smtc-foreground-ctrl-neutral-secondary-rest))"; - -// @public (undocumented) -export const statusNeutralTintForegroundRaw = "--smtc-status-neutral-tint-foreground"; - -// @public (undocumented) -export const statusNeutralTintStroke = "var(--smtc-status-neutral-tint-stroke)"; - -// @public (undocumented) -export const statusNeutralTintStrokeRaw = "--smtc-status-neutral-tint-stroke"; - -// @public (undocumented) -export const statusOofForeground = "var(--smtc-status-oof-foreground)"; - -// @public (undocumented) -export const statusOofForegroundRaw = "--smtc-status-oof-foreground"; - -// @public (undocumented) -export const statusSuccessBackground = "var(--smtc-status-success-background)"; - -// @public (undocumented) -export const statusSuccessBackgroundRaw = "--smtc-status-success-background"; - -// @public (undocumented) -export const statusSuccessForeground = "var(--smtc-status-success-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const statusSuccessForegroundRaw = "--smtc-status-success-foreground"; - -// @public (undocumented) -export const statusSuccessStroke = "var(--smtc-status-success-stroke, var(--smtc-status-success-background))"; - -// @public (undocumented) -export const statusSuccessStrokeRaw = "--smtc-status-success-stroke"; - -// @public (undocumented) -export const statusSuccessTintBackground = "var(--smtc-status-success-tint-background)"; - -// @public (undocumented) -export const statusSuccessTintBackgroundRaw = "--smtc-status-success-tint-background"; - -// @public (undocumented) -export const statusSuccessTintForeground = "var(--smtc-status-success-tint-foreground)"; - -// @public (undocumented) -export const statusSuccessTintForegroundRaw = "--smtc-status-success-tint-foreground"; - -// @public (undocumented) -export const statusSuccessTintStroke = "var(--smtc-status-success-tint-stroke)"; - -// @public (undocumented) -export const statusSuccessTintStrokeRaw = "--smtc-status-success-tint-stroke"; - -// @public (undocumented) -export const statusWarningBackground = "var(--smtc-status-warning-background)"; - -// @public (undocumented) -export const statusWarningBackgroundRaw = "--smtc-status-warning-background"; - -// @public (undocumented) -export const statusWarningForeground = "var(--smtc-status-warning-foreground, var(--smtc-foreground-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const statusWarningForegroundRaw = "--smtc-status-warning-foreground"; - -// @public (undocumented) -export const statusWarningStroke = "var(--smtc-status-warning-stroke, var(--smtc-status-warning-background))"; - -// @public (undocumented) -export const statusWarningStrokeRaw = "--smtc-status-warning-stroke"; - -// @public (undocumented) -export const statusWarningTintBackground = "var(--smtc-status-warning-tint-background)"; - -// @public (undocumented) -export const statusWarningTintBackgroundRaw = "--smtc-status-warning-tint-background"; - -// @public (undocumented) -export const statusWarningTintForeground = "var(--smtc-status-warning-tint-foreground)"; - -// @public (undocumented) -export const statusWarningTintForegroundRaw = "--smtc-status-warning-tint-foreground"; - -// @public (undocumented) -export const statusWarningTintStroke = "var(--smtc-status-warning-tint-stroke)"; - -// @public (undocumented) -export const statusWarningTintStrokeRaw = "--smtc-status-warning-tint-stroke"; - -// @public (undocumented) -export const strokeCardOnprimaryDisabled = "var(--smtc-stroke-card-onprimary-disabled, unset)"; - -// @public (undocumented) -export const strokeCardOnprimaryDisabledRaw = "--smtc-stroke-card-onprimary-disabled"; - -// @public (undocumented) -export const strokeCardOnprimaryHover = "var(--smtc-stroke-card-onprimary-hover, unset)"; - -// @public (undocumented) -export const strokeCardOnprimaryHoverRaw = "--smtc-stroke-card-onprimary-hover"; - -// @public (undocumented) -export const strokeCardOnprimaryPressed = "var(--smtc-stroke-card-onprimary-pressed, unset)"; - -// @public (undocumented) -export const strokeCardOnprimaryPressedRaw = "--smtc-stroke-card-onprimary-pressed"; - -// @public (undocumented) -export const strokeCardOnprimaryRest = "var(--smtc-stroke-card-onprimary-rest, unset)"; - -// @public (undocumented) -export const strokeCardOnprimaryRestRaw = "--smtc-stroke-card-onprimary-rest"; - -// @public (undocumented) -export const strokeCardOnsecondaryDisabled = "var(--smtc-stroke-card-onsecondary-disabled, unset)"; - -// @public (undocumented) -export const strokeCardOnsecondaryDisabledRaw = "--smtc-stroke-card-onsecondary-disabled"; - -// @public (undocumented) -export const strokeCardOnsecondaryHover = "var(--smtc-stroke-card-onsecondary-hover, unset)"; - -// @public (undocumented) -export const strokeCardOnsecondaryHoverRaw = "--smtc-stroke-card-onsecondary-hover"; - -// @public (undocumented) -export const strokeCardOnsecondaryPressed = "var(--smtc-stroke-card-onsecondary-pressed, unset)"; - -// @public (undocumented) -export const strokeCardOnsecondaryPressedRaw = "--smtc-stroke-card-onsecondary-pressed"; - -// @public (undocumented) -export const strokeCardOnsecondaryRest = "var(--smtc-stroke-card-onsecondary-rest, unset)"; - -// @public (undocumented) -export const strokeCardOnsecondaryRestRaw = "--smtc-stroke-card-onsecondary-rest"; - -// @public (undocumented) -export const strokeCardSelected = "var(--smtc-stroke-card-selected, unset)"; - -// @public (undocumented) -export const strokeCardSelectedRaw = "--smtc-stroke-card-selected"; - -// @public (undocumented) -export const strokeCtrlDividerOnactivebrand = "var(--smtc-stroke-ctrl-divider-onactivebrand, var(--smtc-stroke-ctrl-divider-onbrand))"; - -// @public (undocumented) -export const strokeCtrlDividerOnactivebrandDisabled = "var(--smtc-stroke-ctrl-divider-onactivebrand-disabled, var(--smtc-stroke-ctrl-divider-onbrand))"; - -// @public (undocumented) -export const strokeCtrlDividerOnactivebrandDisabledRaw = "--smtc-stroke-ctrl-divider-onactivebrand-disabled"; - -// @public (undocumented) -export const strokeCtrlDividerOnactivebrandRaw = "--smtc-stroke-ctrl-divider-onactivebrand"; - -// @public (undocumented) -export const strokeCtrlDividerOnbrand = "var(--smtc-stroke-ctrl-divider-onbrand)"; - -// @public (undocumented) -export const strokeCtrlDividerOnbrandDisabled = "var(--smtc-stroke-ctrl-divider-onbrand-disabled, var(--smtc-stroke-ctrl-divider-onbrand))"; - -// @public (undocumented) -export const strokeCtrlDividerOnbrandDisabledRaw = "--smtc-stroke-ctrl-divider-onbrand-disabled"; - -// @public (undocumented) -export const strokeCtrlDividerOnbrandRaw = "--smtc-stroke-ctrl-divider-onbrand"; - -// @public (undocumented) -export const strokeCtrlDividerOnneutral = "var(--smtc-stroke-ctrl-divider-onneutral)"; - -// @public (undocumented) -export const strokeCtrlDividerOnneutralDisabled = "var(--smtc-stroke-ctrl-divider-onneutral-disabled, var(--smtc-stroke-ctrl-divider-onneutral))"; - -// @public (undocumented) -export const strokeCtrlDividerOnneutralDisabledRaw = "--smtc-stroke-ctrl-divider-onneutral-disabled"; - -// @public (undocumented) -export const strokeCtrlDividerOnneutralRaw = "--smtc-stroke-ctrl-divider-onneutral"; - -// @public (undocumented) -export const strokeCtrlDividerOnoutline = "var(--smtc-stroke-ctrl-divider-onoutline)"; - -// @public (undocumented) -export const strokeCtrlDividerOnoutlineDisabled = "var(--smtc-stroke-ctrl-divider-onoutline-disabled, var(--smtc-stroke-ctrl-divider-onoutline))"; - -// @public (undocumented) -export const strokeCtrlDividerOnoutlineDisabledRaw = "--smtc-stroke-ctrl-divider-onoutline-disabled"; - -// @public (undocumented) -export const strokeCtrlDividerOnoutlineRaw = "--smtc-stroke-ctrl-divider-onoutline"; - -// @public (undocumented) -export const strokeCtrlDividerOnsubtle = "var(--smtc-stroke-ctrl-divider-onsubtle, unset)"; - -// @public (undocumented) -export const strokeCtrlDividerOnsubtleDisabled = "var(--smtc-stroke-ctrl-divider-onsubtle-disabled, unset)"; - -// @public (undocumented) -export const strokeCtrlDividerOnsubtleDisabledRaw = "--smtc-stroke-ctrl-divider-onsubtle-disabled"; - -// @public (undocumented) -export const strokeCtrlDividerOnsubtleRaw = "--smtc-stroke-ctrl-divider-onsubtle"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandDisabled = "var(--smtc-stroke-ctrl-onactivebrand-disabled, var(--smtc-stroke-ctrl-onbrand-disabled))"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandDisabledRaw = "--smtc-stroke-ctrl-onactivebrand-disabled"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandDisabledStop2 = "var(--smtc-stroke-ctrl-onactivebrand-disabledstop2, var(--smtc-stroke-ctrl-onbrand-disabled))"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandDisabledStop2Raw = "--smtc-stroke-ctrl-onactivebrand-disabledstop2"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandHover = "var(--smtc-stroke-ctrl-onactivebrand-hover, var(--smtc-stroke-ctrl-onbrand-hover))"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandHoverRaw = "--smtc-stroke-ctrl-onactivebrand-hover"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandHoverStop2 = "var(--smtc-stroke-ctrl-onactivebrand-hoverstop2, var(--smtc-stroke-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandHoverStop2Raw = "--smtc-stroke-ctrl-onactivebrand-hoverstop2"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandPressed = "var(--smtc-stroke-ctrl-onactivebrand-pressed, var(--smtc-stroke-ctrl-onbrand-pressed))"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandPressedRaw = "--smtc-stroke-ctrl-onactivebrand-pressed"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandPressedStop2 = "var(--smtc-stroke-ctrl-onactivebrand-pressedstop2, var(--smtc-stroke-ctrl-onbrand-pressed))"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandPressedStop2Raw = "--smtc-stroke-ctrl-onactivebrand-pressedstop2"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandRest = "var(--smtc-stroke-ctrl-onactivebrand-rest, var(--smtc-stroke-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandRestRaw = "--smtc-stroke-ctrl-onactivebrand-rest"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandRestStop2 = "var(--smtc-stroke-ctrl-onactivebrand-reststop2, var(--smtc-stroke-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const strokeCtrlOnactivebrandRestStop2Raw = "--smtc-stroke-ctrl-onactivebrand-reststop2"; - -// @public (undocumented) -export const strokeCtrlOnbrandDisabled = "var(--smtc-stroke-ctrl-onbrand-disabled, unset)"; - -// @public (undocumented) -export const strokeCtrlOnbrandDisabledRaw = "--smtc-stroke-ctrl-onbrand-disabled"; - -// @public (undocumented) -export const strokeCtrlOnbrandDisabledStop2 = "var(--smtc-stroke-ctrl-onbrand-disabledstop2, var(--smtc-stroke-ctrl-onbrand-disabled))"; - -// @public (undocumented) -export const strokeCtrlOnbrandDisabledStop2Raw = "--smtc-stroke-ctrl-onbrand-disabledstop2"; - -// @public (undocumented) -export const strokeCtrlOnbrandHover = "var(--smtc-stroke-ctrl-onbrand-hover, unset)"; - -// @public (undocumented) -export const strokeCtrlOnbrandHoverRaw = "--smtc-stroke-ctrl-onbrand-hover"; - -// @public (undocumented) -export const strokeCtrlOnbrandHoverStop2 = "var(--smtc-stroke-ctrl-onbrand-hoverstop2, var(--smtc-stroke-ctrl-onbrand-hover))"; - -// @public (undocumented) -export const strokeCtrlOnbrandHoverStop2Raw = "--smtc-stroke-ctrl-onbrand-hoverstop2"; - -// @public (undocumented) -export const strokeCtrlOnbrandPressed = "var(--smtc-stroke-ctrl-onbrand-pressed, unset)"; - -// @public (undocumented) -export const strokeCtrlOnbrandPressedRaw = "--smtc-stroke-ctrl-onbrand-pressed"; - -// @public (undocumented) -export const strokeCtrlOnbrandPressedStop2 = "var(--smtc-stroke-ctrl-onbrand-pressedstop2, var(--smtc-stroke-ctrl-onbrand-pressed))"; - -// @public (undocumented) -export const strokeCtrlOnbrandPressedStop2Raw = "--smtc-stroke-ctrl-onbrand-pressedstop2"; - -// @public (undocumented) -export const strokeCtrlOnbrandRest = "var(--smtc-stroke-ctrl-onbrand-rest, unset)"; - -// @public (undocumented) -export const strokeCtrlOnbrandRestRaw = "--smtc-stroke-ctrl-onbrand-rest"; - -// @public (undocumented) -export const strokeCtrlOnbrandRestStop2 = "var(--smtc-stroke-ctrl-onbrand-reststop2, var(--smtc-stroke-ctrl-onbrand-rest))"; - -// @public (undocumented) -export const strokeCtrlOnbrandRestStop2Raw = "--smtc-stroke-ctrl-onbrand-reststop2"; - -// @public (undocumented) -export const strokeCtrlOnneutralDisabled = "var(--smtc-stroke-ctrl-onneutral-disabled, unset)"; - -// @public (undocumented) -export const strokeCtrlOnneutralDisabledRaw = "--smtc-stroke-ctrl-onneutral-disabled"; - -// @public (undocumented) -export const strokeCtrlOnneutralDisabledStop2 = "var(--smtc-stroke-ctrl-onneutral-disabledstop2, var(--smtc-stroke-ctrl-onneutral-disabled))"; - -// @public (undocumented) -export const strokeCtrlOnneutralDisabledStop2Raw = "--smtc-stroke-ctrl-onneutral-disabledstop2"; - -// @public (undocumented) -export const strokeCtrlOnneutralHover = "var(--smtc-stroke-ctrl-onneutral-hover, unset)"; - -// @public (undocumented) -export const strokeCtrlOnneutralHoverRaw = "--smtc-stroke-ctrl-onneutral-hover"; - -// @public (undocumented) -export const strokeCtrlOnneutralHoverStop2 = "var(--smtc-stroke-ctrl-onneutral-hoverstop2, var(--smtc-stroke-ctrl-onneutral-pressed))"; - -// @public (undocumented) -export const strokeCtrlOnneutralHoverStop2Raw = "--smtc-stroke-ctrl-onneutral-hoverstop2"; - -// @public (undocumented) -export const strokeCtrlOnneutralPressed = "var(--smtc-stroke-ctrl-onneutral-pressed, unset)"; - -// @public (undocumented) -export const strokeCtrlOnneutralPressedRaw = "--smtc-stroke-ctrl-onneutral-pressed"; - -// @public (undocumented) -export const strokeCtrlOnneutralPressedStop2 = "var(--smtc-stroke-ctrl-onneutral-pressedstop2, var(--smtc-stroke-ctrl-onneutral-hover))"; - -// @public (undocumented) -export const strokeCtrlOnneutralPressedStop2Raw = "--smtc-stroke-ctrl-onneutral-pressedstop2"; - -// @public (undocumented) -export const strokeCtrlOnneutralRest = "var(--smtc-stroke-ctrl-onneutral-rest, unset)"; - -// @public (undocumented) -export const strokeCtrlOnneutralRestRaw = "--smtc-stroke-ctrl-onneutral-rest"; - -// @public (undocumented) -export const strokeCtrlOnneutralRestStop2 = "var(--smtc-stroke-ctrl-onneutral-reststop2, var(--smtc-stroke-ctrl-onneutral-rest))"; - -// @public (undocumented) -export const strokeCtrlOnneutralRestStop2Raw = "--smtc-stroke-ctrl-onneutral-reststop2"; - -// @public (undocumented) -export const strokeCtrlOnoutlineDisabled = "var(--smtc-stroke-ctrl-onoutline-disabled)"; - -// @public (undocumented) -export const strokeCtrlOnoutlineDisabledRaw = "--smtc-stroke-ctrl-onoutline-disabled"; - -// @public (undocumented) -export const strokeCtrlOnoutlineDisabledStop2 = "var(--smtc-stroke-ctrl-onoutline-disabledstop2, var(--smtc-stroke-ctrl-onoutline-disabled))"; - -// @public (undocumented) -export const strokeCtrlOnoutlineDisabledStop2Raw = "--smtc-stroke-ctrl-onoutline-disabledstop2"; - -// @public (undocumented) -export const strokeCtrlOnoutlineHover = "var(--smtc-stroke-ctrl-onoutline-hover)"; - -// @public (undocumented) -export const strokeCtrlOnoutlineHoverRaw = "--smtc-stroke-ctrl-onoutline-hover"; - -// @public (undocumented) -export const strokeCtrlOnoutlineHoverStop2 = "var(--smtc-stroke-ctrl-onoutline-hoverstop2, var(--smtc-stroke-ctrl-onoutline-hover))"; - -// @public (undocumented) -export const strokeCtrlOnoutlineHoverStop2Raw = "--smtc-stroke-ctrl-onoutline-hoverstop2"; - -// @public (undocumented) -export const strokeCtrlOnoutlinePressed = "var(--smtc-stroke-ctrl-onoutline-pressed)"; - -// @public (undocumented) -export const strokeCtrlOnoutlinePressedRaw = "--smtc-stroke-ctrl-onoutline-pressed"; - -// @public (undocumented) -export const strokeCtrlOnoutlinePressedStop2 = "var(--smtc-stroke-ctrl-onoutline-pressedstop2, var(--smtc-stroke-ctrl-onoutline-pressed))"; - -// @public (undocumented) -export const strokeCtrlOnoutlinePressedStop2Raw = "--smtc-stroke-ctrl-onoutline-pressedstop2"; - -// @public (undocumented) -export const strokeCtrlOnoutlineRest = "var(--smtc-stroke-ctrl-onoutline-rest)"; - -// @public (undocumented) -export const strokeCtrlOnoutlineRestRaw = "--smtc-stroke-ctrl-onoutline-rest"; - -// @public (undocumented) -export const strokeCtrlOnoutlineRestStop2 = "var(--smtc-stroke-ctrl-onoutline-reststop2, var(--smtc-stroke-ctrl-onoutline-rest))"; - -// @public (undocumented) -export const strokeCtrlOnoutlineRestStop2Raw = "--smtc-stroke-ctrl-onoutline-reststop2"; - -// @public (undocumented) -export const strokeCtrlOnsubtleDisabled = "var(--smtc-stroke-ctrl-onsubtle-disabled, unset)"; - -// @public (undocumented) -export const strokeCtrlOnsubtleDisabledRaw = "--smtc-stroke-ctrl-onsubtle-disabled"; - -// @public (undocumented) -export const strokeCtrlOnsubtleHover = "var(--smtc-stroke-ctrl-onsubtle-hover, unset)"; - -// @public (undocumented) -export const strokeCtrlOnsubtleHoverRaw = "--smtc-stroke-ctrl-onsubtle-hover"; - -// @public (undocumented) -export const strokeCtrlOnsubtleHoversplit = "var(--smtc-stroke-ctrl-onsubtle-hoversplit, unset)"; - -// @public (undocumented) -export const strokeCtrlOnsubtleHoversplitRaw = "--smtc-stroke-ctrl-onsubtle-hoversplit"; - -// @public (undocumented) -export const strokeCtrlOnsubtlePressed = "var(--smtc-stroke-ctrl-onsubtle-pressed, unset)"; - -// @public (undocumented) -export const strokeCtrlOnsubtlePressedRaw = "--smtc-stroke-ctrl-onsubtle-pressed"; - -// @public (undocumented) -export const strokeCtrlOnsubtleRest = "var(--smtc-stroke-ctrl-onsubtle-rest, unset)"; - -// @public (undocumented) -export const strokeCtrlOnsubtleRestRaw = "--smtc-stroke-ctrl-onsubtle-rest"; - -// @public (undocumented) -export const strokeDividerBrand = "var(--smtc-stroke-divider-brand, var(--smtc-background-ctrl-brand-rest))"; - -// @public (undocumented) -export const strokeDividerBrandRaw = "--smtc-stroke-divider-brand"; - -// @public (undocumented) -export const strokeDividerDefault = "var(--smtc-stroke-divider-default)"; - -// @public (undocumented) -export const strokeDividerDefaultRaw = "--smtc-stroke-divider-default"; - -// @public (undocumented) -export const strokeDividerStrong = "var(--smtc-stroke-divider-strong, var(--smtc-stroke-divider-default))"; - -// @public (undocumented) -export const strokeDividerStrongRaw = "--smtc-stroke-divider-strong"; - -// @public (undocumented) -export const strokeDividerSubtle = "var(--smtc-stroke-divider-subtle, var(--smtc-stroke-divider-default))"; - -// @public (undocumented) -export const strokeDividerSubtleRaw = "--smtc-stroke-divider-subtle"; - -// @public (undocumented) -export const strokeFlyout = "var(--smtc-stroke-flyout, unset)"; - -// @public (undocumented) -export const strokeFlyoutRaw = "--smtc-stroke-flyout"; - -// @public (undocumented) -export const strokeImage = "var(--smtc-stroke-image, unset)"; - -// @public (undocumented) -export const strokeImageRaw = "--smtc-stroke-image"; - -// @public (undocumented) -export const strokeLayer = "var(--smtc-stroke-layer, unset)"; - -// @public (undocumented) -export const strokeLayerRaw = "--smtc-stroke-layer"; - -// @public (undocumented) -export const strokeToolbar = "var(--smtc-stroke-toolbar, var(--smtc-stroke-card-onprimary-rest))"; - -// @public (undocumented) -export const strokeToolbarRaw = "--smtc-stroke-toolbar"; - -// @public (undocumented) -export const strokewidthCtrlOutlineHover = "var(--smtc-strokewidth-ctrl-outline-hover, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const strokewidthCtrlOutlineHoverRaw = "--smtc-strokewidth-ctrl-outline-hover"; - -// @public (undocumented) -export const strokewidthCtrlOutlinePressed = "var(--smtc-strokewidth-ctrl-outline-pressed, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const strokewidthCtrlOutlinePressedRaw = "--smtc-strokewidth-ctrl-outline-pressed"; - -// @public (undocumented) -export const strokewidthCtrlOutlineRest = "var(--smtc-strokewidth-ctrl-outline-rest, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const strokewidthCtrlOutlineRestRaw = "--smtc-strokewidth-ctrl-outline-rest"; - -// @public (undocumented) -export const strokewidthCtrlOutlineSelected = "var(--smtc-strokewidth-ctrl-outline-selected, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const strokewidthCtrlOutlineSelectedRaw = "--smtc-strokewidth-ctrl-outline-selected"; - -// @public (undocumented) -export const strokewidthDefault = "var(--smtc-strokewidth-default, var(--strokeWidthThin))"; - -// @public (undocumented) -export const strokewidthDefaultRaw = "--smtc-strokewidth-default"; - -// @public (undocumented) -export const strokewidthDividerDefault = "var(--smtc-strokewidth-divider-default, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const strokewidthDividerDefaultRaw = "--smtc-strokewidth-divider-default"; - -// @public (undocumented) -export const strokewidthDividerStrong = "var(--smtc-strokewidth-divider-strong, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const strokewidthDividerStrongRaw = "--smtc-strokewidth-divider-strong"; - -// @public (undocumented) -export const strokewidthWindowDefault = "var(--smtc-strokewidth-window-default, var(--smtc-strokewidth-default))"; - -// @public (undocumented) -export const strokewidthWindowDefaultRaw = "--smtc-strokewidth-window-default"; - -// @public (undocumented) -export const strokeWindowActive = "var(--smtc-stroke-window-active)"; - -// @public (undocumented) -export const strokeWindowActiveRaw = "--smtc-stroke-window-active"; - -// @public (undocumented) -export const strokeWindowInactive = "var(--smtc-stroke-window-inactive, var(--smtc-stroke-window-active))"; - -// @public (undocumented) -export const strokeWindowInactiveRaw = "--smtc-stroke-window-inactive"; - -// @public (undocumented) -export const textCtrlButtonWeightDefault = "var(--smtc-text-ctrl-button-weight-default, var(--smtc-text-style-default-regular-weight))"; - -// @public (undocumented) -export const textCtrlButtonWeightDefaultRaw = "--smtc-text-ctrl-button-weight-default"; - -// @public (undocumented) -export const textCtrlButtonWeightSelected = "var(--smtc-text-ctrl-button-weight-selected, var(--smtc-text-ctrl-weight-selected))"; - -// @public (undocumented) -export const textCtrlButtonWeightSelectedRaw = "--smtc-text-ctrl-button-weight-selected"; - -// @public (undocumented) -export const textCtrlWeightDefault = "var(--smtc-text-ctrl-weight-default, var(--smtc-text-style-default-regular-weight))"; - -// @public (undocumented) -export const textCtrlWeightDefaultRaw = "--smtc-text-ctrl-weight-default"; - -// @public (undocumented) -export const textCtrlWeightSelected = "var(--smtc-text-ctrl-weight-selected)"; - -// @public (undocumented) -export const textCtrlWeightSelectedRaw = "--smtc-text-ctrl-weight-selected"; - -// @public (undocumented) -export const textGlobalBody1Fontsize = "var(--smtc-text-global-body1-fontsize)"; - -// @public (undocumented) -export const textGlobalBody1FontsizeRaw = "--smtc-text-global-body1-fontsize"; - -// @public (undocumented) -export const textGlobalBody1Lineheight = "var(--smtc-text-global-body1-lineheight)"; - -// @public (undocumented) -export const textGlobalBody1LineheightRaw = "--smtc-text-global-body1-lineheight"; - -// @public (undocumented) -export const textGlobalBody2Fontsize = "var(--smtc-text-global-body2-fontsize)"; - -// @public (undocumented) -export const textGlobalBody2FontsizeRaw = "--smtc-text-global-body2-fontsize"; - -// @public (undocumented) -export const textGlobalBody2Lineheight = "var(--smtc-text-global-body2-lineheight)"; - -// @public (undocumented) -export const textGlobalBody2LineheightRaw = "--smtc-text-global-body2-lineheight"; - -// @public (undocumented) -export const textGlobalBody3Fontsize = "var(--smtc-text-global-body3-fontsize, var(--fontSizeBase300))"; - -// @public (undocumented) -export const textGlobalBody3FontsizeRaw = "--smtc-text-global-body3-fontsize"; - -// @public (undocumented) -export const textGlobalBody3Lineheight = "var(--smtc-text-global-body3-lineheight)"; - -// @public (undocumented) -export const textGlobalBody3LineheightRaw = "--smtc-text-global-body3-lineheight"; - -// @public (undocumented) -export const textGlobalCaption1Fontsize = "var(--smtc-text-global-caption1-fontsize)"; - -// @public (undocumented) -export const textGlobalCaption1FontsizeRaw = "--smtc-text-global-caption1-fontsize"; - -// @public (undocumented) -export const textGlobalCaption1Lineheight = "var(--smtc-text-global-caption1-lineheight)"; - -// @public (undocumented) -export const textGlobalCaption1LineheightRaw = "--smtc-text-global-caption1-lineheight"; - -// @public (undocumented) -export const textGlobalCaption2Fontsize = "var(--smtc-text-global-caption2-fontsize)"; - -// @public (undocumented) -export const textGlobalCaption2FontsizeRaw = "--smtc-text-global-caption2-fontsize"; - -// @public (undocumented) -export const textGlobalCaption2Lineheight = "var(--smtc-text-global-caption2-lineheight)"; - -// @public (undocumented) -export const textGlobalCaption2LineheightRaw = "--smtc-text-global-caption2-lineheight"; - -// @public (undocumented) -export const textGlobalDisplay1Fontsize = "var(--smtc-text-global-display1-fontsize)"; - -// @public (undocumented) -export const textGlobalDisplay1FontsizeRaw = "--smtc-text-global-display1-fontsize"; - -// @public (undocumented) -export const textGlobalDisplay1Lineheight = "var(--smtc-text-global-display1-lineheight)"; - -// @public (undocumented) -export const textGlobalDisplay1LineheightRaw = "--smtc-text-global-display1-lineheight"; - -// @public (undocumented) -export const textGlobalDisplay2Fontsize = "var(--smtc-text-global-display2-fontsize)"; - -// @public (undocumented) -export const textGlobalDisplay2FontsizeRaw = "--smtc-text-global-display2-fontsize"; - -// @public (undocumented) -export const textGlobalDisplay2Lineheight = "var(--smtc-text-global-display2-lineheight)"; - -// @public (undocumented) -export const textGlobalDisplay2LineheightRaw = "--smtc-text-global-display2-lineheight"; - -// @public (undocumented) -export const textGlobalSubtitle1Fontsize = "var(--smtc-text-global-subtitle1-fontsize)"; - -// @public (undocumented) -export const textGlobalSubtitle1FontsizeRaw = "--smtc-text-global-subtitle1-fontsize"; - -// @public (undocumented) -export const textGlobalSubtitle1Lineheight = "var(--smtc-text-global-subtitle1-lineheight)"; - -// @public (undocumented) -export const textGlobalSubtitle1LineheightRaw = "--smtc-text-global-subtitle1-lineheight"; - -// @public (undocumented) -export const textGlobalSubtitle2Fontsize = "var(--smtc-text-global-subtitle2-fontsize)"; - -// @public (undocumented) -export const textGlobalSubtitle2FontsizeRaw = "--smtc-text-global-subtitle2-fontsize"; - -// @public (undocumented) -export const textGlobalSubtitle2Lineheight = "var(--smtc-text-global-subtitle2-lineheight)"; - -// @public (undocumented) -export const textGlobalSubtitle2LineheightRaw = "--smtc-text-global-subtitle2-lineheight"; - -// @public (undocumented) -export const textGlobalTitle1Fontsize = "var(--smtc-text-global-title1-fontsize)"; - -// @public (undocumented) -export const textGlobalTitle1FontsizeRaw = "--smtc-text-global-title1-fontsize"; - -// @public (undocumented) -export const textGlobalTitle1Lineheight = "var(--smtc-text-global-title1-lineheight)"; - -// @public (undocumented) -export const textGlobalTitle1LineheightRaw = "--smtc-text-global-title1-lineheight"; - -// @public (undocumented) -export const textGlobalTitle2Fontsize = "var(--smtc-text-global-title2-fontsize)"; - -// @public (undocumented) -export const textGlobalTitle2FontsizeRaw = "--smtc-text-global-title2-fontsize"; - -// @public (undocumented) -export const textGlobalTitle2Lineheight = "var(--smtc-text-global-title2-lineheight)"; - -// @public (undocumented) -export const textGlobalTitle2LineheightRaw = "--smtc-text-global-title2-lineheight"; - -// @public (undocumented) -export const textRampItembodyFontsize = "var(--smtc-text-ramp-itembody-fontsize, var(--smtc-text-global-body3-fontsize))"; - -// @public (undocumented) -export const textRampItembodyFontsizeRaw = "--smtc-text-ramp-itembody-fontsize"; - -// @public (undocumented) -export const textRampItembodyLineheight = "var(--smtc-text-ramp-itembody-lineheight, var(--smtc-text-global-body3-lineheight))"; - -// @public (undocumented) -export const textRampItembodyLineheightRaw = "--smtc-text-ramp-itembody-lineheight"; - -// @public (undocumented) -export const textRampItemheaderFontsize = "var(--smtc-text-ramp-itemheader-fontsize, var(--smtc-text-global-body2-fontsize))"; - -// @public (undocumented) -export const textRampItemheaderFontsizeRaw = "--smtc-text-ramp-itemheader-fontsize"; - -// @public (undocumented) -export const textRampItemheaderLineheight = "var(--smtc-text-ramp-itemheader-lineheight, var(--smtc-text-global-body2-lineheight))"; - -// @public (undocumented) -export const textRampItemheaderLineheightRaw = "--smtc-text-ramp-itemheader-lineheight"; - -// @public (undocumented) -export const textRampLegalFontsize = "var(--smtc-text-ramp-legal-fontsize, var(--smtc-text-global-caption2-fontsize))"; - -// @public (undocumented) -export const textRampLegalFontsizeRaw = "--smtc-text-ramp-legal-fontsize"; - -// @public (undocumented) -export const textRampLegalLineheight = "var(--smtc-text-ramp-legal-lineheight, var(--smtc-text-global-caption2-lineheight))"; - -// @public (undocumented) -export const textRampLegalLineheightRaw = "--smtc-text-ramp-legal-lineheight"; - -// @public (undocumented) -export const textRampLgItembodyFontsize = "var(--smtc-text-ramp-lg-itembody-fontsize, var(--smtc-text-global-body2-fontsize))"; - -// @public (undocumented) -export const textRampLgItembodyFontsizeRaw = "--smtc-text-ramp-lg-itembody-fontsize"; - -// @public (undocumented) -export const textRampLgItembodyLineheight = "var(--smtc-text-ramp-lg-itembody-lineheight, var(--smtc-text-global-body2-lineheight))"; - -// @public (undocumented) -export const textRampLgItembodyLineheightRaw = "--smtc-text-ramp-lg-itembody-lineheight"; - -// @public (undocumented) -export const textRampLgItemheaderFontsize = "var(--smtc-text-ramp-lg-itemheader-fontsize, var(--smtc-text-global-subtitle2-fontsize))"; - -// @public (undocumented) -export const textRampLgItemheaderFontsizeRaw = "--smtc-text-ramp-lg-itemheader-fontsize"; - -// @public (undocumented) -export const textRampLgItemheaderLineheight = "var(--smtc-text-ramp-lg-itemheader-lineheight, var(--smtc-text-global-subtitle2-lineheight))"; - -// @public (undocumented) -export const textRampLgItemheaderLineheightRaw = "--smtc-text-ramp-lg-itemheader-lineheight"; - -// @public (undocumented) -export const textRampLgLegalFontsize = "var(--smtc-text-ramp-lg-legal-fontsize, var(--smtc-text-global-caption1-fontsize))"; - -// @public (undocumented) -export const textRampLgLegalFontsizeRaw = "--smtc-text-ramp-lg-legal-fontsize"; - -// @public (undocumented) -export const textRampLgLegalLineheight = "var(--smtc-text-ramp-lg-legal-lineheight, var(--smtc-text-global-caption1-lineheight))"; - -// @public (undocumented) -export const textRampLgLegalLineheightRaw = "--smtc-text-ramp-lg-legal-lineheight"; - -// @public (undocumented) -export const textRampLgMetadataFontsize = "var(--smtc-text-ramp-lg-metadata-fontsize, var(--smtc-text-global-body3-fontsize))"; - -// @public (undocumented) -export const textRampLgMetadataFontsizeRaw = "--smtc-text-ramp-lg-metadata-fontsize"; - -// @public (undocumented) -export const textRampLgMetadataLineheight = "var(--smtc-text-ramp-lg-metadata-lineheight, var(--smtc-text-global-body3-lineheight))"; - -// @public (undocumented) -export const textRampLgMetadataLineheightRaw = "--smtc-text-ramp-lg-metadata-lineheight"; - -// @public (undocumented) -export const textRampLgPageheaderFontsize = "var(--smtc-text-ramp-lg-pageheader-fontsize, var(--smtc-text-global-title1-fontsize))"; - -// @public (undocumented) -export const textRampLgPageheaderFontsizeRaw = "--smtc-text-ramp-lg-pageheader-fontsize"; - -// @public (undocumented) -export const textRampLgPageheaderLineheight = "var(--smtc-text-ramp-lg-pageheader-lineheight, var(--smtc-text-global-title1-lineheight))"; - -// @public (undocumented) -export const textRampLgPageheaderLineheightRaw = "--smtc-text-ramp-lg-pageheader-lineheight"; - -// @public (undocumented) -export const textRampLgReadingbodyFontsize = "var(--smtc-text-ramp-lg-readingbody-fontsize, var(--smtc-text-global-body1-fontsize))"; - -// @public (undocumented) -export const textRampLgReadingbodyFontsizeRaw = "--smtc-text-ramp-lg-readingbody-fontsize"; - -// @public (undocumented) -export const textRampLgReadingbodyLineheight = "var(--smtc-text-ramp-lg-readingbody-lineheight, var(--smtc-text-global-body1-lineheight))"; - -// @public (undocumented) -export const textRampLgReadingbodyLineheightRaw = "--smtc-text-ramp-lg-readingbody-lineheight"; - -// @public (undocumented) -export const textRampLgSectionheaderFontsize = "var(--smtc-text-ramp-lg-sectionheader-fontsize, var(--smtc-text-global-title2-fontsize))"; - -// @public (undocumented) -export const textRampLgSectionheaderFontsizeRaw = "--smtc-text-ramp-lg-sectionheader-fontsize"; - -// @public (undocumented) -export const textRampLgSectionheaderLineheight = "var(--smtc-text-ramp-lg-sectionheader-lineheight, var(--smtc-text-global-title2-lineheight))"; - -// @public (undocumented) -export const textRampLgSectionheaderLineheightRaw = "--smtc-text-ramp-lg-sectionheader-lineheight"; - -// @public (undocumented) -export const textRampLgSubsectionheaderFontsize = "var(--smtc-text-ramp-lg-subsectionheader-fontsize, var(--smtc-text-global-subtitle1-fontsize))"; - -// @public (undocumented) -export const textRampLgSubsectionheaderFontsizeRaw = "--smtc-text-ramp-lg-subsectionheader-fontsize"; - -// @public (undocumented) -export const textRampLgSubsectionheaderLineheight = "var(--smtc-text-ramp-lg-subsectionheader-lineheight, var(--smtc-text-global-subtitle1-lineheight))"; - -// @public (undocumented) -export const textRampLgSubsectionheaderLineheightRaw = "--smtc-text-ramp-lg-subsectionheader-lineheight"; - -// @public (undocumented) -export const textRampMetadataFontsize = "var(--smtc-text-ramp-metadata-fontsize, var(--smtc-text-global-caption1-fontsize))"; - -// @public (undocumented) -export const textRampMetadataFontsizeRaw = "--smtc-text-ramp-metadata-fontsize"; - -// @public (undocumented) -export const textRampMetadataLineheight = "var(--smtc-text-ramp-metadata-lineheight, var(--smtc-text-global-caption1-lineheight))"; - -// @public (undocumented) -export const textRampMetadataLineheightRaw = "--smtc-text-ramp-metadata-lineheight"; - -// @public (undocumented) -export const textRampPageheaderFontsize = "var(--smtc-text-ramp-pageheader-fontsize, var(--smtc-text-global-title2-fontsize))"; - -// @public (undocumented) -export const textRampPageheaderFontsizeRaw = "--smtc-text-ramp-pageheader-fontsize"; - -// @public (undocumented) -export const textRampPageheaderLineheight = "var(--smtc-text-ramp-pageheader-lineheight, var(--smtc-text-global-title2-lineheight))"; - -// @public (undocumented) -export const textRampPageheaderLineheightRaw = "--smtc-text-ramp-pageheader-lineheight"; - -// @public (undocumented) -export const textRampReadingbodyFontsize = "var(--smtc-text-ramp-readingbody-fontsize, var(--smtc-text-global-body2-fontsize))"; - -// @public (undocumented) -export const textRampReadingbodyFontsizeRaw = "--smtc-text-ramp-readingbody-fontsize"; - -// @public (undocumented) -export const textRampReadingbodyLineheight = "var(--smtc-text-ramp-readingbody-lineheight, var(--smtc-text-global-body2-lineheight))"; - -// @public (undocumented) -export const textRampReadingbodyLineheightRaw = "--smtc-text-ramp-readingbody-lineheight"; - -// @public (undocumented) -export const textRampSectionheaderFontsize = "var(--smtc-text-ramp-sectionheader-fontsize, var(--smtc-text-global-subtitle1-fontsize))"; - -// @public (undocumented) -export const textRampSectionheaderFontsizeRaw = "--smtc-text-ramp-sectionheader-fontsize"; - -// @public (undocumented) -export const textRampSectionheaderLineheight = "var(--smtc-text-ramp-sectionheader-lineheight, var(--smtc-text-global-subtitle1-lineheight))"; - -// @public (undocumented) -export const textRampSectionheaderLineheightRaw = "--smtc-text-ramp-sectionheader-lineheight"; - -// @public (undocumented) -export const textRampSmItembodyFontsize = "var(--smtc-text-ramp-sm-itembody-fontsize, var(--smtc-text-global-caption1-fontsize))"; - -// @public (undocumented) -export const textRampSmItembodyFontsizeRaw = "--smtc-text-ramp-sm-itembody-fontsize"; - -// @public (undocumented) -export const textRampSmItembodyLineheight = "var(--smtc-text-ramp-sm-itembody-lineheight, var(--smtc-text-global-caption1-lineheight))"; - -// @public (undocumented) -export const textRampSmItembodyLineheightRaw = "--smtc-text-ramp-sm-itembody-lineheight"; - -// @public (undocumented) -export const textRampSmItemheaderFontsize = "var(--smtc-text-ramp-sm-itemheader-fontsize, var(--smtc-text-global-body3-fontsize))"; - -// @public (undocumented) -export const textRampSmItemheaderFontsizeRaw = "--smtc-text-ramp-sm-itemheader-fontsize"; - -// @public (undocumented) -export const textRampSmItemheaderLineheight = "var(--smtc-text-ramp-sm-itemheader-lineheight, var(--smtc-text-global-body3-lineheight))"; - -// @public (undocumented) -export const textRampSmItemheaderLineheightRaw = "--smtc-text-ramp-sm-itemheader-lineheight"; - -// @public (undocumented) -export const textRampSmLegalFontsize = "var(--smtc-text-ramp-sm-legal-fontsize, var(--smtc-text-global-caption2-fontsize))"; - -// @public (undocumented) -export const textRampSmLegalFontsizeRaw = "--smtc-text-ramp-sm-legal-fontsize"; - -// @public (undocumented) -export const textRampSmLegalLineheight = "var(--smtc-text-ramp-sm-legal-lineheight, var(--smtc-text-global-caption2-lineheight))"; - -// @public (undocumented) -export const textRampSmLegalLineheightRaw = "--smtc-text-ramp-sm-legal-lineheight"; - -// @public (undocumented) -export const textRampSmMetadataFontsize = "var(--smtc-text-ramp-sm-metadata-fontsize, var(--smtc-text-global-caption1-fontsize))"; - -// @public (undocumented) -export const textRampSmMetadataFontsizeRaw = "--smtc-text-ramp-sm-metadata-fontsize"; - -// @public (undocumented) -export const textRampSmMetadataLineheight = "var(--smtc-text-ramp-sm-metadata-lineheight, var(--smtc-text-global-caption1-lineheight))"; - -// @public (undocumented) -export const textRampSmMetadataLineheightRaw = "--smtc-text-ramp-sm-metadata-lineheight"; - -// @public (undocumented) -export const textRampSmPageheaderFontsize = "var(--smtc-text-ramp-sm-pageheader-fontsize, var(--smtc-text-global-subtitle1-fontsize))"; - -// @public (undocumented) -export const textRampSmPageheaderFontsizeRaw = "--smtc-text-ramp-sm-pageheader-fontsize"; - -// @public (undocumented) -export const textRampSmPageheaderLineheight = "var(--smtc-text-ramp-sm-pageheader-lineheight, var(--smtc-text-global-subtitle1-lineheight))"; - -// @public (undocumented) -export const textRampSmPageheaderLineheightRaw = "--smtc-text-ramp-sm-pageheader-lineheight"; - -// @public (undocumented) -export const textRampSmReadingbodyFontsize = "var(--smtc-text-ramp-sm-readingbody-fontsize, var(--smtc-text-global-body3-fontsize))"; - -// @public (undocumented) -export const textRampSmReadingbodyFontsizeRaw = "--smtc-text-ramp-sm-readingbody-fontsize"; - -// @public (undocumented) -export const textRampSmReadingbodyLineheight = "var(--smtc-text-ramp-sm-readingbody-lineheight, var(--smtc-text-global-body3-lineheight))"; - -// @public (undocumented) -export const textRampSmReadingbodyLineheightRaw = "--smtc-text-ramp-sm-readingbody-lineheight"; - -// @public (undocumented) -export const textRampSmSectionheaderFontsize = "var(--smtc-text-ramp-sm-sectionheader-fontsize, var(--smtc-text-global-subtitle2-fontsize))"; - -// @public (undocumented) -export const textRampSmSectionheaderFontsizeRaw = "--smtc-text-ramp-sm-sectionheader-fontsize"; - -// @public (undocumented) -export const textRampSmSectionheaderLineheight = "var(--smtc-text-ramp-sm-sectionheader-lineheight, var(--smtc-text-global-subtitle2-lineheight))"; - -// @public (undocumented) -export const textRampSmSectionheaderLineheightRaw = "--smtc-text-ramp-sm-sectionheader-lineheight"; - -// @public (undocumented) -export const textRampSmSubsectionheaderFontsize = "var(--smtc-text-ramp-sm-subsectionheader-fontsize, var(--smtc-text-global-body1-fontsize))"; - -// @public (undocumented) -export const textRampSmSubsectionheaderFontsizeRaw = "--smtc-text-ramp-sm-subsectionheader-fontsize"; - -// @public (undocumented) -export const textRampSmSubsectionheaderLineheight = "var(--smtc-text-ramp-sm-subsectionheader-lineheight, var(--smtc-text-global-body1-lineheight))"; - -// @public (undocumented) -export const textRampSmSubsectionheaderLineheightRaw = "--smtc-text-ramp-sm-subsectionheader-lineheight"; - -// @public (undocumented) -export const textRampSubsectionheaderFontsize = "var(--smtc-text-ramp-subsectionheader-fontsize, var(--smtc-text-global-subtitle2-fontsize))"; - -// @public (undocumented) -export const textRampSubsectionheaderFontsizeRaw = "--smtc-text-ramp-subsectionheader-fontsize"; - -// @public (undocumented) -export const textRampSubsectionheaderLineheight = "var(--smtc-text-ramp-subsectionheader-lineheight, var(--smtc-text-global-subtitle2-lineheight))"; - -// @public (undocumented) -export const textRampSubsectionheaderLineheightRaw = "--smtc-text-ramp-subsectionheader-lineheight"; - -// @public (undocumented) -export const textStyleAiHeaderCase = "var(--smtc-text-style-ai-header-case, unset)"; - -// @public (undocumented) -export const textStyleAiHeaderCaseRaw = "--smtc-text-style-ai-header-case"; - -// @public (undocumented) -export const textStyleAiHeaderFontfamily = "var(--smtc-text-style-ai-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleAiHeaderFontfamilyRaw = "--smtc-text-style-ai-header-fontfamily"; - -// @public (undocumented) -export const textStyleAiHeaderLetterspacing = "var(--smtc-text-style-ai-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleAiHeaderLetterspacingRaw = "--smtc-text-style-ai-header-letterspacing"; - -// @public (undocumented) -export const textStyleAiHeaderWeight = "var(--smtc-text-style-ai-header-weight, var(--smtc-text-style-default-header-weight))"; - -// @public (undocumented) -export const textStyleAiHeaderWeightRaw = "--smtc-text-style-ai-header-weight"; - -// @public (undocumented) -export const textStyleAiRegularFontfamily = "var(--smtc-text-style-ai-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleAiRegularFontfamilyRaw = "--smtc-text-style-ai-regular-fontfamily"; - -// @public (undocumented) -export const textStyleAiRegularLetterspacing = "var(--smtc-text-style-ai-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleAiRegularLetterspacingRaw = "--smtc-text-style-ai-regular-letterspacing"; - -// @public (undocumented) -export const textStyleAiRegularWeight = "var(--smtc-text-style-ai-regular-weight, var(--smtc-text-style-default-regular-weight))"; - -// @public (undocumented) -export const textStyleAiRegularWeightRaw = "--smtc-text-style-ai-regular-weight"; - -// @public (undocumented) -export const textStyleArticleHeaderCase = "var(--smtc-text-style-article-header-case, unset)"; - -// @public (undocumented) -export const textStyleArticleHeaderCaseRaw = "--smtc-text-style-article-header-case"; - -// @public (undocumented) -export const textStyleArticleHeaderFontfamily = "var(--smtc-text-style-article-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleArticleHeaderFontfamilyRaw = "--smtc-text-style-article-header-fontfamily"; - -// @public (undocumented) -export const textStyleArticleHeaderLetterspacing = "var(--smtc-text-style-article-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleArticleHeaderLetterspacingRaw = "--smtc-text-style-article-header-letterspacing"; - -// @public (undocumented) -export const textStyleArticleHeaderWeight = "var(--smtc-text-style-article-header-weight, var(--smtc-text-style-default-header-weight))"; - -// @public (undocumented) -export const textStyleArticleHeaderWeightRaw = "--smtc-text-style-article-header-weight"; - -// @public (undocumented) -export const textStyleArticleRegularFontfamily = "var(--smtc-text-style-article-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleArticleRegularFontfamilyRaw = "--smtc-text-style-article-regular-fontfamily"; - -// @public (undocumented) -export const textStyleArticleRegularLetterspacing = "var(--smtc-text-style-article-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleArticleRegularLetterspacingRaw = "--smtc-text-style-article-regular-letterspacing"; - -// @public (undocumented) -export const textStyleArticleRegularWeight = "var(--smtc-text-style-article-regular-weight, var(--smtc-text-style-default-regular-weight))"; - -// @public (undocumented) -export const textStyleArticleRegularWeightRaw = "--smtc-text-style-article-regular-weight"; - -// @public (undocumented) -export const textStyleCodeHeaderCase = "var(--smtc-text-style-code-header-case, unset)"; - -// @public (undocumented) -export const textStyleCodeHeaderCaseRaw = "--smtc-text-style-code-header-case"; - -// @public (undocumented) -export const textStyleCodeHeaderFontfamily = "var(--smtc-text-style-code-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleCodeHeaderFontfamilyRaw = "--smtc-text-style-code-header-fontfamily"; - -// @public (undocumented) -export const textStyleCodeHeaderLetterspacing = "var(--smtc-text-style-code-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleCodeHeaderLetterspacingRaw = "--smtc-text-style-code-header-letterspacing"; - -// @public (undocumented) -export const textStyleCodeHeaderWeight = "var(--smtc-text-style-code-header-weight, var(--smtc-text-style-default-header-weight))"; - -// @public (undocumented) -export const textStyleCodeHeaderWeightRaw = "--smtc-text-style-code-header-weight"; - -// @public (undocumented) -export const textStyleCodeRegularFontfamily = "var(--smtc-text-style-code-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleCodeRegularFontfamilyRaw = "--smtc-text-style-code-regular-fontfamily"; - -// @public (undocumented) -export const textStyleCodeRegularLetterspacing = "var(--smtc-text-style-code-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleCodeRegularLetterspacingRaw = "--smtc-text-style-code-regular-letterspacing"; - -// @public (undocumented) -export const textStyleCodeRegularWeight = "var(--smtc-text-style-code-regular-weight, var(--smtc-text-style-default-regular-weight))"; - -// @public (undocumented) -export const textStyleCodeRegularWeightRaw = "--smtc-text-style-code-regular-weight"; - -// @public (undocumented) -export const textStyleDatavizHeaderCase = "var(--smtc-text-style-dataviz-header-case, unset)"; - -// @public (undocumented) -export const textStyleDatavizHeaderCaseRaw = "--smtc-text-style-dataviz-header-case"; - -// @public (undocumented) -export const textStyleDatavizHeaderFontfamily = "var(--smtc-text-style-dataviz-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleDatavizHeaderFontfamilyRaw = "--smtc-text-style-dataviz-header-fontfamily"; - -// @public (undocumented) -export const textStyleDatavizHeaderLetterspacing = "var(--smtc-text-style-dataviz-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleDatavizHeaderLetterspacingRaw = "--smtc-text-style-dataviz-header-letterspacing"; - -// @public (undocumented) -export const textStyleDatavizHeaderWeight = "var(--smtc-text-style-dataviz-header-weight, var(--smtc-text-style-default-header-weight))"; - -// @public (undocumented) -export const textStyleDatavizHeaderWeightRaw = "--smtc-text-style-dataviz-header-weight"; - -// @public (undocumented) -export const textStyleDatavizRegularFontfamily = "var(--smtc-text-style-dataviz-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleDatavizRegularFontfamilyRaw = "--smtc-text-style-dataviz-regular-fontfamily"; - -// @public (undocumented) -export const textStyleDatavizRegularLetterspacing = "var(--smtc-text-style-dataviz-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleDatavizRegularLetterspacingRaw = "--smtc-text-style-dataviz-regular-letterspacing"; - -// @public (undocumented) -export const textStyleDatavizRegularWeight = "var(--smtc-text-style-dataviz-regular-weight, var(--smtc-text-style-default-regular-weight))"; - -// @public (undocumented) -export const textStyleDatavizRegularWeightRaw = "--smtc-text-style-dataviz-regular-weight"; - -// @public (undocumented) -export const textStyleDefaultHeaderCase = "var(--smtc-text-style-default-header-case, unset)"; - -// @public (undocumented) -export const textStyleDefaultHeaderCaseRaw = "--smtc-text-style-default-header-case"; - -// @public (undocumented) -export const textStyleDefaultHeaderFontfamily = "var(--smtc-text-style-default-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleDefaultHeaderFontfamilyRaw = "--smtc-text-style-default-header-fontfamily"; - -// @public (undocumented) -export const textStyleDefaultHeaderLetterspacing = "var(--smtc-text-style-default-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleDefaultHeaderLetterspacingRaw = "--smtc-text-style-default-header-letterspacing"; - -// @public (undocumented) -export const textStyleDefaultHeaderWeight = "var(--smtc-text-style-default-header-weight)"; - -// @public (undocumented) -export const textStyleDefaultHeaderWeightRaw = "--smtc-text-style-default-header-weight"; - -// @public (undocumented) -export const textStyleDefaultRegularFontfamily = "var(--smtc-text-style-default-regular-fontfamily, var(--fontFamilyBase))"; - -// @public (undocumented) -export const textStyleDefaultRegularFontfamilyRaw = "--smtc-text-style-default-regular-fontfamily"; - -// @public (undocumented) -export const textStyleDefaultRegularLetterspacing = "var(--smtc-text-style-default-regular-letterspacing)"; - -// @public (undocumented) -export const textStyleDefaultRegularLetterspacingRaw = "--smtc-text-style-default-regular-letterspacing"; - -// @public (undocumented) -export const textStyleDefaultRegularWeight = "var(--smtc-text-style-default-regular-weight, var(--fontWeightRegular))"; - -// @public (undocumented) -export const textStyleDefaultRegularWeightRaw = "--smtc-text-style-default-regular-weight"; - -// @public (undocumented) -export const textStyleQuoteHeaderCase = "var(--smtc-text-style-quote-header-case, unset)"; - -// @public (undocumented) -export const textStyleQuoteHeaderCaseRaw = "--smtc-text-style-quote-header-case"; - -// @public (undocumented) -export const textStyleQuoteHeaderFontfamily = "var(--smtc-text-style-quote-header-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleQuoteHeaderFontfamilyRaw = "--smtc-text-style-quote-header-fontfamily"; - -// @public (undocumented) -export const textStyleQuoteHeaderLetterspacing = "var(--smtc-text-style-quote-header-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleQuoteHeaderLetterspacingRaw = "--smtc-text-style-quote-header-letterspacing"; - -// @public (undocumented) -export const textStyleQuoteHeaderWeight = "var(--smtc-text-style-quote-header-weight, var(--smtc-text-style-default-header-weight))"; - -// @public (undocumented) -export const textStyleQuoteHeaderWeightRaw = "--smtc-text-style-quote-header-weight"; - -// @public (undocumented) -export const textStyleQuoteRegularFontfamily = "var(--smtc-text-style-quote-regular-fontfamily, var(--smtc-text-style-default-regular-fontfamily))"; - -// @public (undocumented) -export const textStyleQuoteRegularFontfamilyRaw = "--smtc-text-style-quote-regular-fontfamily"; - -// @public (undocumented) -export const textStyleQuoteRegularLetterspacing = "var(--smtc-text-style-quote-regular-letterspacing, var(--smtc-text-style-default-regular-letterspacing))"; - -// @public (undocumented) -export const textStyleQuoteRegularLetterspacingRaw = "--smtc-text-style-quote-regular-letterspacing"; - -// @public (undocumented) -export const textStyleQuoteRegularWeight = "var(--smtc-text-style-quote-regular-weight, var(--smtc-text-style-default-regular-weight))"; - -// @public (undocumented) -export const textStyleQuoteRegularWeightRaw = "--smtc-text-style-quote-regular-weight"; - // (No @packageDocumentation comment for this package) ``` diff --git a/packages/semantic-tokens/src/index.ts b/packages/semantic-tokens/src/index.ts new file mode 100644 index 0000000000000..cb0ff5c3b541f --- /dev/null +++ b/packages/semantic-tokens/src/index.ts @@ -0,0 +1 @@ +export {}; From 8509929cde64b64319a4822ad56f90167b0652b1 Mon Sep 17 00:00:00 2001 From: Mitch-At-Work Date: Wed, 2 Apr 2025 09:13:27 -0700 Subject: [PATCH 4/4] Add swc helpers back to regular dependencies --- packages/semantic-tokens/package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/semantic-tokens/package.json b/packages/semantic-tokens/package.json index 4b938f54d7c17..123bfab2f2c16 100644 --- a/packages/semantic-tokens/package.json +++ b/packages/semantic-tokens/package.json @@ -14,10 +14,11 @@ "devDependencies": { "@fluentui/eslint-plugin": "*", "@fluentui/scripts-api-extractor": "*", - "@fluentui/tokens": ">=1.0.0-alpha", + "@fluentui/tokens": ">=1.0.0-alpha" + }, + "dependencies": { "@swc/helpers": "^0.5.1" }, - "dependencies": {}, "beachball": { "disallowedChangeTypes": [ "major",