diff --git a/packages/calcite-components/src/components/accordion-item/accordion-item.scss b/packages/calcite-components/src/components/accordion-item/accordion-item.scss index 86e6d868452..90cae561fb5 100644 --- a/packages/calcite-components/src/components/accordion-item/accordion-item.scss +++ b/packages/calcite-components/src/components/accordion-item/accordion-item.scss @@ -1,3 +1,5 @@ +@forward "~@esri/calcite-design-tokens/dist/scss/accordion-item"; + %icon-position { /* icon rotation variables */ --calcite-accordion-item-icon-rotation: calc(theme("rotate.90") * -1); diff --git a/packages/calcite-components/src/components/accordion-item/accordion-item.tsx b/packages/calcite-components/src/components/accordion-item/accordion-item.tsx index 939fa9cd328..61192e5c7ad 100644 --- a/packages/calcite-components/src/components/accordion-item/accordion-item.tsx +++ b/packages/calcite-components/src/components/accordion-item/accordion-item.tsx @@ -24,6 +24,7 @@ import { CSS_UTILITY } from "../../utils/resources"; import { SLOTS, CSS, IDS } from "./resources"; import { FlipContext, Position, Scale, SelectionMode } from "../interfaces"; import { RequestedItem } from "./interfaces"; +import { getMode, Mode } from "../../utils/modePublisher"; /** * @slot - A slot for adding custom content, including nested `calcite-accordion-item`s. @@ -87,6 +88,8 @@ export class AccordionItem implements ConditionalSlotComponent { */ @Prop() scale: Scale; + @Prop({ mutable: true, reflect: true }) calciteMode: Mode; + //-------------------------------------------------------------------------- // // Events @@ -108,6 +111,11 @@ export class AccordionItem implements ConditionalSlotComponent { // Lifecycle // //-------------------------------------------------------------------------- + componentWillLoad(): void { + // TODO: check if this attribute is manually set by the user before getting the theme set in local storage. + // TODO: make this a part of the generic component setup. + this.calciteMode = getMode(); + } connectedCallback(): void { connectConditionalSlotComponent(this); diff --git a/packages/calcite-components/src/utils/modePublisher.ts b/packages/calcite-components/src/utils/modePublisher.ts new file mode 100644 index 00000000000..5cba21d8171 --- /dev/null +++ b/packages/calcite-components/src/utils/modePublisher.ts @@ -0,0 +1,53 @@ +// Default +let modeStore: Mode = "light"; +// TODO: is this the right local storage key name? +export const storageKey = "calcite-theme"; +export type Mode = "dark" | "light"; +export type Disconnect = () => void; + +export type ModePublisher = () => { + (value: T): void; + subscribe(listener: (msg: T) => void): () => boolean; +}; + +// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types +export const modePublisher = () => { + const listeners = new Set<(value: T) => void>(); + function createPublisher(value: T) { + for (const cb of listeners) { + cb(value); + } + } + createPublisher.subscribe = (listener: (msg: T) => void) => { + listeners.add(listener); + return () => listeners.delete(listener); + }; + return createPublisher; +}; + +type GetMode = { + (): T; + subscribe(cb: (arg: T) => void): Disconnect; +}; + +if (window.matchMedia && window.matchMedia("(prefers-color-scheme: light)").matches) { + // is light + modeStore = "light"; +} else if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) { + // is dark + modeStore = "dark"; +} + +let pub: ReturnType>; + +export const getMode: GetMode = () => (localStorage.getItem(storageKey) as Mode) ?? modeStore; + +getMode.subscribe = (cb: (arg: Mode) => void) => { + pub = pub ?? modePublisher(); + return pub.subscribe(cb); +}; + +export const setMode = (mode: Mode): void => { + localStorage.setItem(storageKey, mode); + pub && pub(mode); +}; diff --git a/packages/calcite-design-tokens/src/$config.ts b/packages/calcite-design-tokens/src/$config.ts new file mode 100644 index 00000000000..6caee3053da --- /dev/null +++ b/packages/calcite-design-tokens/src/$config.ts @@ -0,0 +1,64 @@ +import { readdirSync } from "fs"; +import { readdir } from "fs/promises"; +import { resolve, dirname } from "path"; +import { fileURLToPath } from "url"; +import { Config, File } from "../support/run"; +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +const modesDirectory = resolve(__dirname, "calcite"); +const componentsDirectory = resolve(__dirname, "component"); +const globalSourceReference = [resolve(__dirname, "core.json"), resolve(__dirname, "semantic.json")]; + +const { components, componentRefs } = await readdir(componentsDirectory, { withFileTypes: true }).then((components) => + components.reduce( + (acc, c) => { + if (c.isDirectory()) { + const component = readdirSync(resolve(componentsDirectory, c.name)); + component.forEach((mode) => { + acc.components.push({ + name: `${c.name}/${mode.includes("base") ? "base" : `${mode.match(/[\w\d-]+(?=.json)/)[0]}`}`, + source: [resolve(componentsDirectory, c.name, `${mode}`)], + references: [ + ...globalSourceReference, + ...(mode.includes("base") ? [] : [`${resolve(componentsDirectory, c.name, "base.json")}`]), + ], + }); + }); + } else { + acc.componentRefs.push(`${resolve(componentsDirectory, c.name)}`); + } + + return acc; + }, + { components: [], componentRefs: [] } as { components: File[]; componentRefs: string[] } + ) +); + +const global: File = { + name: "global", + source: globalSourceReference, + references: componentRefs, +}; + +const modes = await readdir(modesDirectory).then((modes) => + modes.map((mode) => ({ + name: `mode/${mode.match(/[\w\d-]+(?=.json)/)[0]}`, + source: [resolve(modesDirectory, `${mode}`)], + references: [...globalSourceReference, ...componentRefs], + })) +); + +export const config: Config = { + files: [global, ...modes, ...components], + options: { + prefix: "calcite", + outputReferences: true, + }, + output: { + dir: resolve(__dirname, "../dist"), + platforms: ["css", "scss"], + }, +}; + +export default config; diff --git a/packages/calcite-design-tokens/src/$metadata.json b/packages/calcite-design-tokens/src/$metadata.json index be4d1de1ab8..318fea434f3 100644 --- a/packages/calcite-design-tokens/src/$metadata.json +++ b/packages/calcite-design-tokens/src/$metadata.json @@ -10,6 +10,8 @@ "component/fab", "component/checkbox", "component/chip", + "component/combobox", + "component/combobox-item", "component/dropdown", "component/dropdown-item", "component/action-bar", @@ -21,8 +23,9 @@ "component/block", "component/block-section", "component/card", - "component/combobox", + "component/list-item", "component/date-picker", + "component/select", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -48,13 +51,17 @@ "component/tab-title", "component/tabs", "component/rating", + "component/select", "component/tip", "component/tip-manager", "component/tooltip", "component/panel-header", + "component/flow-header", + "component/segmented-control", + "component/segmented-control-item", "component/popover", "component/pagination", - "component/segmented-control", + "component/pagination-item", "component/slider", "component/slider-histogram", "component/slider-histogram-range", @@ -63,12 +70,14 @@ "component/stepper-item", "component/switch", "component/[template-comp-name]", + "component/progress", "component/time-picker", "component/scrim", "component/tree-item", "component/accordion_backup", "calcite/light", "calcite/dark", + "calcite/grayscale", "brand/global", "brand/light", "brand/dark" diff --git a/packages/calcite-design-tokens/src/$themes.json b/packages/calcite-design-tokens/src/$themes.json index a7c5376264c..c3d5774a5ec 100644 --- a/packages/calcite-design-tokens/src/$themes.json +++ b/packages/calcite-design-tokens/src/$themes.json @@ -3,10 +3,10 @@ "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", "name": "Brand - Light", "selectedTokenSets": { - "brand/global": "enabled", - "brand/light": "enabled", "core": "source", - "semantic": "source" + "semantic": "source", + "brand/global": "enabled", + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -14,286 +14,17 @@ "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", "name": "Brand - Dark", "selectedTokenSets": { - "brand/dark": "enabled", - "brand/global": "enabled", "core": "source", - "semantic": "source" + "semantic": "source", + "brand/global": "enabled", + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "calcite/dark": "enabled", - "component/accordion-item": "source", - "component/accordion": "source", - "component/action-bar-grid": "source", - "component/action-bar": "source", - "component/action-pad-grid": "source", - "component/action-pad": "source", - "component/action": "source", - "component/alert": "source", - "component/avatar": "source", - "component/block-section": "source", - "component/block": "source", - "component/button": "source", - "component/card": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/color-picker": "source", - "component/combobox": "source", - "component/date-picker": "source", - "component/dropdown-item": "source", - "component/dropdown": "source", - "component/fab": "source", - "component/filter": "source", - "component/input-date-picker": "source", - "component/input-datetime-local": "source", - "component/input-email": "source", - "component/input-file": "source", - "component/input-message": "source", - "component/input-month": "source", - "component/input-number": "source", - "component/input-password": "source", - "component/input-search": "source", - "component/input-telephone": "source", - "component/input-text": "source", - "component/input-time": "source", - "component/input-week": "source", - "component/label": "source", - "component/link": "source", - "component/loader": "source", - "component/modal": "source", - "component/notice": "source", - "component/pagination": "source", - "component/panel-header": "source", - "component/popover": "source", - "component/radio": "source", - "component/rating": "source", - "component/scrim": "source", - "component/segmented-control": "source", - "component/slider-histogram-range": "source", - "component/slider-histogram": "source", - "component/slider-range": "source", - "component/slider": "source", - "component/split-button": "source", - "component/stepper-item": "source", - "component/stepper": "source", - "component/switch": "source", - "component/tab-title": "source", - "component/tabs": "source", - "component/textarea": "source", - "component/tile": "source", - "component/tip-manager": "source", - "component/tip": "source", - "component/tooltip": "source", - "component/tree-item": "source", - "core": "source", - "semantic": "source" - }, - "$figmaStyleReferences": { - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "calcite/light": "enabled", - "component/[template-comp-name]": "disabled", - "component/accordion-item": "source", - "component/accordion": "source", - "component/action-bar-grid": "source", - "component/action-bar": "source", - "component/action-pad-grid": "source", - "component/action-pad": "source", - "component/action": "source", - "component/alert": "source", - "component/avatar": "source", - "component/block-section": "source", - "component/block": "source", - "component/button": "source", - "component/card": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/color-picker": "source", - "component/combobox": "source", - "component/date-picker": "source", - "component/dropdown-item": "source", - "component/dropdown": "source", - "component/fab": "source", - "component/filter": "source", - "component/input-date-picker": "source", - "component/input-datetime-local": "source", - "component/input-email": "source", - "component/input-file": "source", - "component/input-message": "source", - "component/input-month": "source", - "component/input-number": "source", - "component/input-password": "source", - "component/input-search": "source", - "component/input-telephone": "source", - "component/input-text": "source", - "component/input-time": "source", - "component/input-week": "source", - "component/label": "source", - "component/link": "source", - "component/loader": "source", - "component/modal": "source", - "component/notice": "source", - "component/pagination": "source", - "component/panel-header": "source", - "component/popover": "source", - "component/radio": "source", - "component/rating": "source", - "component/scrim": "source", - "component/segmented-control": "source", - "component/slider-histogram-range": "source", - "component/slider-histogram": "source", - "component/slider-range": "source", - "component/slider": "source", - "component/split-button": "source", - "component/stepper-item": "source", - "component/stepper": "source", - "component/switch": "source", - "component/tab-title": "source", - "component/tabs": "source", - "component/textarea": "source", - "component/tile": "source", - "component/tip-manager": "source", - "component/tip": "source", - "component/tooltip": "source", - "component/tree-item": "source", - "core": "source", - "semantic": "source" - }, - "$figmaStyleReferences": { - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9," - } - }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", "selectedTokenSets": { - "component/[template-comp-name]": "disabled", "component/accordion-item": "enabled", "component/accordion": "enabled", "component/action-bar-grid": "enabled", @@ -310,12 +41,14 @@ "component/checkbox": "enabled", "component/chip": "enabled", "component/color-picker": "enabled", + "component/combobox-item": "enabled", "component/combobox": "enabled", "component/date-picker": "enabled", "component/dropdown-item": "enabled", "component/dropdown": "enabled", "component/fab": "enabled", "component/filter": "enabled", + "component/flow-header": "enabled", "component/input-date-picker": "enabled", "component/input-datetime-local": "enabled", "component/input-email": "enabled", @@ -331,6 +64,7 @@ "component/input-week": "enabled", "component/label": "enabled", "component/link": "enabled", + "component/list-item": "enabled", "component/loader": "enabled", "component/modal": "enabled", "component/notice": "enabled", @@ -340,7 +74,9 @@ "component/radio": "enabled", "component/rating": "enabled", "component/scrim": "enabled", + "component/segmented-control-item": "enabled", "component/segmented-control": "enabled", + "component/select": "enabled", "component/slider-histogram-range": "enabled", "component/slider-histogram": "enabled", "component/slider-range": "enabled", @@ -352,6 +88,8 @@ "component/tab-title": "enabled", "component/tabs": "enabled", "component/textarea": "enabled", + "component/time-picker": "enabled", + "component/tip-manager": "enabled", "component/tip": "enabled", "component/tooltip": "enabled", "component/tree-item": "enabled", @@ -361,8 +99,8 @@ "$figmaStyleReferences": { "[comp-name].background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "[comp-name].background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "[comp-name].border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "[comp-name].border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "[comp-name].border.dark": "S:0ccc0dee2ea68f3ba21458da1b252bba1e2a95e4,", + "[comp-name].border.light": "S:d6910b430327102a7cf8b7c197a1744899a871dc,", "[comp-name].font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", "[comp-name].font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", "[comp-name].font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", @@ -370,614 +108,680 @@ "[comp-name].font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "[comp-name].foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", "[comp-name].foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "[comp-name].icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "[comp-name].icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "accordion-item.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "accordion-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "accordion-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "accordion-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "accordion-item.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "accordion-item.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "accordion-item.font.descrition.lg": "S:f248373f8c30765addca512c0a58e0471cdbbd92,", - "accordion-item.font.descrition.md": "S:74815d27fbc39d0e8e0221d98771575763398a36,", - "accordion-item.font.descrition.sm": "S:f228bade32be994f29a47ae05d541bc1f127b991,", - "accordion-item.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", - "accordion-item.font.heading.lg": "S:26e38b824652312797550c4393b9af9201d16410,", - "accordion-item.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", - "accordion-item.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "accordion-item.font.heading.sm": "S:22cd3c704f1ff153a930b1de5482c90d06b68463,", - "accordion-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "accordion-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "accordion-item.icon.expanded.dark": "S:587b66cd00f9aa16f13bafd05481e6d3fc2bfc52,", - "accordion-item.icon.expanded.light": "S:e86ffc1b86f516ff744eb2b695fea0f7e6a06250,", - "accordion.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "accordion.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "accordion.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "accordion.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "accordion.description.dark": "S:799bc4c7335cb1325182383cfc46902f4b2dd826,", - "accordion.description.light": "S:cb01ae66ab41b4df8b4683fef5cc6030de18b079,", - "accordion.heading.dark": "S:0e150e73c0b5e8e7bebfadc132c82e875d1392e6,", - "accordion.heading.light": "S:db3aa5453c145e02177ac3004f0594e2094b7859,", - "accordion.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "accordion.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "accordion.icon.expanded.dark": "S:587b66cd00f9aa16f13bafd05481e6d3fc2bfc52,", - "accordion.icon.expanded.light": "S:e86ffc1b86f516ff744eb2b695fea0f7e6a06250,", - "action-bar-grid.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "action-bar-grid.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "action-bar-grid.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "action-bar-grid.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "action-bar.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "action-bar.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "action-bar.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "action-bar.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "action-pad-grid.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "action-pad-grid.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "action-pad-grid.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "action-pad-grid.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "action-pad-grid.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", - "action-pad-grid.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", - "action-pad-grid.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", - "action-pad.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "action-pad.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "action-pad.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "action-pad.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "action-pad.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", - "action-pad.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", - "action-pad.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", - "action.background.active.dark": "S:2ae52fe76f9def32610a5350625d32781b6b06f4,", - "action.background.active.light": "S:ef2a2a44d264ec06e2c24185b8f5ed7f931652ed,", - "action.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "action.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "action.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "action.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", - "action.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "action.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "action.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "action.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "action.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "action.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "action.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "action.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", - "action.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", - "action.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "action.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "action.indicator.dark": "S:b2c7c4f184b2ee2bb12274865ab84dc5f2eaee09,", - "action.indicator.light": "S:dba58a89b82ed1ddcbe79772d66e6064b0ff21f1,", - "action.loader-icon.dark": "S:5531396af52cc9e186d10da418be5f6bb2b364ee,", - "action.loader-icon.light": "S:bf9fb786f9562fa5988589c2336e82d8b56f3e34,", - "alert.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "alert.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "alert.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "alert.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "alert.font.message.dark": "S:7815f7fb82fdc4c4c26e1623790dffe9e187a466,", - "alert.font.message.lg": "S:09c48ee987903ee44f92b7fd85f5e4dea0ead949,", - "alert.font.message.light": "S:6cf383eac5cca5700a959ab59f20a865a46decd5,", - "alert.font.message.md": "S:914616baac8f924bb3068d03da85a3d7598a4eed,", - "alert.font.message.sm": "S:62cbe66d7a194cf143b483c76e81b3ef7faec7e4,", - "alert.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", - "alert.font.title.lg": "S:051bc74df8ad468b012d4a69124462a7bd88ac16,", - "alert.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", - "alert.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", - "alert.font.title.sm": "S:3ce9291673796d12312501274a38efcf55f6b482,", - "alert.highlight.blue.dark": "S:db000ee1304d89f2f129b1dc05bddeeb0c27faa8,", - "alert.highlight.blue.light": "S:d06b668f7b2e939e6a4eab82a6f143c5e440faf0,", - "alert.highlight.green.dark": "S:a881a827f501f0890e4f03d4404bec97094aa041,", - "alert.highlight.green.light": "S:e324e6552b39a2db26d76da925a70ab5d8c07a10,", - "alert.highlight.red.dark": "S:9cb1b42abcd0ef58fdb3a1f7b2c030410cf720b6,", - "alert.highlight.red.light": "S:a08c993c84b045345121c6c87d9c434c8c6a625c,", - "alert.highlight.yellow.dark": "S:7729ee4a2bce3753785a33aa99df95e44ba2ea37,", - "alert.highlight.yellow.light": "S:755c350d0874c569f9c73fba1c4fe8604a9a065d,", - "alert.icon.blue.dark": "S:a60354ca19575dfe34c4c35f8846bd28c4796ab8,", - "alert.icon.blue.light": "S:76f65d8ec01d5472cd2ee30b970d1191e24b21a3,", - "alert.icon.green.dark": "S:e71da60b629c97a7ac832d88cdefa655664cd38a,", - "alert.icon.green.light": "S:25e3219805c14739a43718e5c55c066001bc00d1,", - "alert.icon.red.dark": "S:0fdbcf1a38f260e10527f5bd5a84a2a0183e9bcb,", - "alert.icon.red.light": "S:f854ce135867b3fab5c250b84422539684c92f28,", - "alert.icon.yellow.dark": "S:2524c0634b4411fa44d0c76177e587d40243c654,", - "alert.icon.yellow.light": "S:9ad965d79acdf9a9364a61394028db7535efdb59,", - "alert.shadow": "S:da1daed980d1d213e4a1bef7afcb9221ee263cde,", - "avatar.background.blue.dark": "S:adcb513654fc4a335332bd7cffd516805ed8e0da,", - "avatar.background.blue.light": "S:e6f70231d5734d0abb13a62fb0b28639c711d5eb,", - "avatar.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "avatar.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "avatar.background.green.dark": "S:c707a517f7e4fd908707a14a119c4eb3c656aa9b,", - "avatar.background.green.light": "S:303caddb723321f904804f0e0de733143d3a5980,", - "avatar.background.red.dark": "S:706f2f2a48db1827512c44cfc6399c2646f255ce,", - "avatar.background.red.light": "S:15480901727a45856967d3e6203a510279eaf126,", - "avatar.background.teal.dark": "S:6e24e66c70e6650e8fcece5816f9e4a174590adf,", - "avatar.background.teal.light": "S:3d5a2a9f65af84740e758bce0f39b9429bb4d693,", - "avatar.background.yellow.dark": "S:c17fd8acec7ed4cc44492e62025c11ea4f8ee1e3,", - "avatar.background.yellow.light": "S:70442e1c6857374d7c798f0443c98c9359e43d62,", - "avatar.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "avatar.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "avatar.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "avatar.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "avatar.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "avatar.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "avatar.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "block-section.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "block-section.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "block-section.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "block-section.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "block-section.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "block-section.icon.chevron.dark": "S:9efa9354a66d5d3fa260049c448260d556bf4c0b,", - "block-section.icon.chevron.light": "S:af5fabff28cd8db6aa06132f0493b629e04023d9,", - "block-section.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", - "block-section.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", - "block-section.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", - "block-section.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", - "block.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "block.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "block.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "block.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "block.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", - "block.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", - "block.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", - "block.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "block.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "block.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "block.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", - "block.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", - "block.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "block.icon.chevron.dark": "S:9efa9354a66d5d3fa260049c448260d556bf4c0b,", - "block.icon.chevron.light": "S:af5fabff28cd8db6aa06132f0493b629e04023d9,", - "block.icon.drag-handle.dark": "S:bee7da2a1ce827c8937234f1fbaafe97877201e2,", - "block.icon.drag-handle.light": "S:4167dec666a9ebc6855f6445e070d1fbab3f124a,", - "block.icon.idle.dark": "S:37f89d2bdd848ec033c26905f5cf5dcd8fd5c642,", - "block.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", - "block.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", - "block.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", - "block.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", - "block.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", - "button.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", - "button.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", - "button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", - "button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", - "button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", - "button.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", - "button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", - "button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", - "button.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", - "button.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", - "button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", - "button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", - "button.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", - "button.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", - "button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", - "button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", - "button.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", - "button.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", - "button.border.brand.outline.dark": "S:1206b15553941f23d821e3ac2e2356e86733333c,", - "button.border.brand.outline.light": "S:5942ca53e46c9c4d7505a40a90b90a8ae3c87afa,", + "[comp-name].icon.dark": "S:183ae01b9d2446510ff39800bccaf3e177eda09f,", + "[comp-name].icon.light": "S:ae634504a735f3dfd281aa5424e44a8ce887b6df,", + "accordion-item.background.default.dark": "S:c4f7a756a8d5fc9bea7bbfe750c89a5699b595c2,", + "accordion-item.background.default.light": "S:7ab83b6ce514aed402dcf60ed844900e2b6f8d99,", + "accordion-item.border.dark": "S:52fba85c57762d1caab1e864b6c10e4a01b6c0f4,", + "accordion-item.border.light": "S:dda49049053d4288aef327950823de29d3fe171b,", + "accordion-item.font.description.dark": "S:ea120a2f8d7e1fdc245d2cfac96e42bbf58af9e2,", + "accordion-item.font.description.light": "S:e511315462bc742831a5d333dd3ee5871b59b1a3,", + "accordion-item.font.descrition.lg": "S:131b8c6385c591b59d408b6e182efaf7aa57681a,", + "accordion-item.font.descrition.md": "S:0b00f0264ab32c0e4984072984aaf664f310c7cc,", + "accordion-item.font.descrition.sm": "S:d2fe5b6c48a8369802fb72b10c7321b1973cd51f,", + "accordion-item.font.heading.dark": "S:8c61a3baddc24f90cca41b3bb8ab13a0085b8992,", + "accordion-item.font.heading.lg": "S:1bc15a47e7c7ae1572ce760da41d047c1ce7a4a0,", + "accordion-item.font.heading.light": "S:54a70a9a7d859244a9ed68764d0810bd138507e5,", + "accordion-item.font.heading.md": "S:b01b158e374a66c5d3cb9f027939a7dde77b2d3e,", + "accordion-item.font.heading.sm": "S:712b9cbb26f0a9253ca3f7f07c6ef06d2625d7d9,", + "accordion-item.icon.default.dark": "S:ec88aaadccbbc9c1f6d8bcf61b855d473288ae7c,", + "accordion-item.icon.default.light": "S:12cd032137b47b88b5e98c2c74c4b677452e9413,", + "accordion-item.icon.expanded.dark": "S:8cc00743cc7b0995f3861790b312c9e2a4176ecf,", + "accordion-item.icon.expanded.light": "S:5772c8d68f7936ef49bbf0c2596a67fff5c29e33,", + "accordion.background.default.dark": "S:6505f7b85cbeeedbc935d297ac5207f76bdee5ae,", + "accordion.background.default.light": "S:1ae2ec2ebd35173be2204d03a67fcfb7db0e3bde,", + "accordion.border.dark": "S:cf083954e3ea0968bfe0f0304ab2e521e731511c,", + "accordion.border.light": "S:0909193cec3a1a57874d5f2d106e7616e7474d86,", + "accordion.description.dark": "S:becc1fddd0d57a0ee43d699f0e3f3e923c5fa5ce,", + "accordion.description.light": "S:d69a9e5aa84750946cefe4993e96980ee9ad6a0b,", + "accordion.heading.dark": "S:8779e89a92c54482124afa49b174b6b74e341db1,", + "accordion.heading.light": "S:5fd2298360f55b3b6ef8d5b529ffb44b5cdc59de,", + "accordion.icon.default.dark": "S:6a2ffc2aa5c9174453ca5983f4d3fbf27926489e,", + "accordion.icon.default.light": "S:d9582b268f30d2cb25718c940b712c63119bd382,", + "accordion.icon.expanded.dark": "S:2f6acfa2f8eb0ddc54960352b9a19ea47aebfc75,", + "accordion.icon.expanded.light": "S:9dc7dc4a54c792bbceb8dd6ce0f52c161538201f,", + "action-bar-grid.background.dark": "S:f092c296672fb504f565ef070db580f2e14b20ca,", + "action-bar-grid.background.light": "S:25a7eb6dc74419fd9bc34a0ce2ef9d58b7c17f0b,", + "action-bar-grid.border.dark": "S:295dab89b8d9792bc8fa96a7be38fb3fc66d96e1,", + "action-bar-grid.border.light": "S:bc74d87493c8718e80aaf85981a4c2db63761643,", + "action-bar.background.dark": "S:bde0ff43b84224a24126005597bd6f633bbec060,", + "action-bar.background.light": "S:b731690595800c4df2d5d30b90bbb666176180fe,", + "action-bar.border.dark": "S:923530be76df37a66e0b98a1a017510c55ab0c4d,", + "action-bar.border.light": "S:c48315f003139ce5d8e426547d574b3b234ce099,", + "action-pad-grid.background.dark": "S:a99b4ef0c47f82d6bb092aff2731ddff6243a177,", + "action-pad-grid.background.light": "S:65ca68e1bf9778eb48c3d59403fca5306b00af86,", + "action-pad-grid.border.dark": "S:ed9f2e24a9a5e31613d171ca7f0d2ad5064f7d36,", + "action-pad-grid.border.light": "S:debfec36ebe802dff5f6d44ee30bf19a1d81c858,", + "action-pad-grid.shadow.lg": "S:28c2e88f0347df072e3dd0f0dc7b40fc69c5ebec,", + "action-pad-grid.shadow.md": "S:40c61e517f0a60b8329f6433c376133b4058ff44,", + "action-pad-grid.shadow.sm": "S:037921711e9d466365983654c1b9367609fcccf8,", + "action-pad.background.dark": "S:6cf78ea181e2c3f407855d1679df46c458ac69bc,", + "action-pad.background.light": "S:c20090dc50377495e525a48dc0b666520db35173,", + "action-pad.border.dark": "S:33df887309a72c763fb24d3a2d509f97160bc899,", + "action-pad.border.light": "S:8edbc8da41a75525364cca477e7d3a2ec188aeb1,", + "action-pad.shadow.lg": "S:b86462615cd27dde60f98441e0af93629cc0f11a,", + "action-pad.shadow.md": "S:c3a0d7b38986fc1b5f2e37ecbf7e227ad50799f1,", + "action-pad.shadow.sm": "S:a4a5cd5948f9d4a98700505278495b580defd3ac,", + "action.background.active.dark": "S:209cd1532a7e9765c4858eeb7b1af63ee3ba3a59,", + "action.background.active.light": "S:7968f49f07a4bee1666439eba08d2cc1f027d42d,", + "action.background.default.dark": "S:c41b97c8e688d6e583c8d943071647e0d3347d08,", + "action.background.default.light": "S:23eef8cb916c8999a7e3461520d55cfcec6f5244,", + "action.font.active.dark": "S:0a57515fd51124d741fc892bc2848a05cff065b1,", + "action.font.active.light": "S:0cf9a1219de9dc90bef85c93dce29fb7e474e4ed,", + "action.font.dark": "S:add45a62cdf735a6704db81b34187f399b830d09,", + "action.font.default.dark": "S:7b3a4d192bfa6d872d2920de10af0b415b14c021,", + "action.font.default.light": "S:0b6010178dadc249fb00f5d871841d2266a1bc55,", + "action.font.lg": "S:5de32138ec216ee3f5cc80cb6e0922fb7d519296,", + "action.font.light": "S:2ed98a68211db0f219e56201d1800d3f9873b5ab,", + "action.font.md": "S:a1e10642777b5e2968ddf2eb1905b91da0d3d374,", + "action.font.sm": "S:455db3280d2e4e717ffb4d61e45c280c7f7245ea,", + "action.icon.active.dark": "S:708a3848fad4fa8f3987e649b49c6756c0d199fd,", + "action.icon.active.light": "S:2df370513c21449a8dc28f76e97cf02ec9fcc496,", + "action.icon.default.dark": "S:3199080c4f5d17f06210898447756c3ca27765b4,", + "action.icon.default.light": "S:1cf45028386b3ec174a6b99a664c12c9551a110a,", + "action.indicator.dark": "S:ac2beb97c7247b255e4846cc57b7f0c9ceae5604,", + "action.indicator.light": "S:8bb84fb168d4ac348fcc856571d785237d36246d,", + "action.loader-icon.dark": "S:9d8ebf8d1891b9d3169ddee06f186b17d1719650,", + "action.loader-icon.light": "S:3ac13096b8342d76514f5bb604dcb6676f8a4716,", + "alert.background.dark": "S:40d7c8d43e5275aded047b0b37b70616d419461a,", + "alert.background.light": "S:d75b6dd3a0db3f01b30b44120703ab951af9a000,", + "alert.border.dark": "S:144bbf8b6a7a0abd111b42c21157d88f1049ca26,", + "alert.border.light": "S:b76aade6594a61011d02cbfc5b74e16c32f736dd,", + "alert.font.message.dark": "S:5179eb604812b72d2d2729309726f8e33ee8c378,", + "alert.font.message.lg": "S:1940022d90eb8e4f02bc9a854a43ab8c9d0dfc6d,", + "alert.font.message.light": "S:ce863a2ffec4786deb1d2cd7ee566ea01a79b925,", + "alert.font.message.md": "S:2bf3126351d38e731a622d10b8b1e46c483b76cb,", + "alert.font.message.sm": "S:7c43b467daaf68c12a359e6acff2efd1e083f956,", + "alert.font.title.dark": "S:f6435254537d51c5e580d1a73d17f8ea52a257d0,", + "alert.font.title.lg": "S:55e149f8f1a1e6641eccf68b5cf37bfd4c4f48a2,", + "alert.font.title.light": "S:67d0736b5da8f258bf830fa1f581d36e1dec02d8,", + "alert.font.title.md": "S:b60804ae167bc3485fd625ab3cf2c3fce25f9f99,", + "alert.font.title.sm": "S:b1c7fcb8d3e0cd35d6654b93a1e61f378a101568,", + "alert.highlight.blue.dark": "S:46f4b0f683084a070dd60853dedc55d5ee86414b,", + "alert.highlight.blue.light": "S:eeacafcc12ed9523d3cccf8390a203613302d7dc,", + "alert.highlight.green.dark": "S:3ba42bf68665c95e19bd92c68f4fd4fe87140f1b,", + "alert.highlight.green.light": "S:f9303ccc3824292c3ee1d0014720000e89f7944d,", + "alert.highlight.red.dark": "S:1feb1cde1a7011547731e2f0c0fcb702c4fe3c15,", + "alert.highlight.red.light": "S:40ac67ecd10c9edbc74fdef19f92d4944a21d6f6,", + "alert.highlight.yellow.dark": "S:7d29a2217ff5dc159b79113463debf19c2b1f92d,", + "alert.highlight.yellow.light": "S:9318f6c3577a28f21616a36037c1eb7fba074fcd,", + "alert.icon.blue.dark": "S:4fa8f538ba69c61aa5a8e1fa7ccd5945e7663e71,", + "alert.icon.blue.light": "S:ad02b95165fe7d495ae57b53c11a7c86d247206e,", + "alert.icon.green.dark": "S:e9d618ec7f7c228904daeb049dee834d43e6b808,", + "alert.icon.green.light": "S:f17bc45d710d7351446076b5b56acae3cfa271a4,", + "alert.icon.red.dark": "S:8d44ceaa276d08e5e5e463321d819753f60ccf71,", + "alert.icon.red.light": "S:30da5e8a89217c98a5772bb48384807c86064818,", + "alert.icon.yellow.dark": "S:3c77fff336662f7b28b3e8133e823ba054d33375,", + "alert.icon.yellow.light": "S:69af6a6844cd8b9c000aa571d6668f8e7a8ea4da,", + "alert.shadow": "S:18a4204236e381ce09765448ed427c5d78d152c4,", + "avatar.background.blue.dark": "S:9c84f55121b90ea1cfa80532658aed08588e716e,", + "avatar.background.blue.light": "S:9e7742d81ecf6a0e876605c844ba618c3bebde9d,", + "avatar.background.default.dark": "S:2c6730fbcb831e4234183ba8c0a5b5b6139ad79a,", + "avatar.background.default.light": "S:341721c9b7f0aa6db805934337b9c985ddaae43f,", + "avatar.background.green.dark": "S:1bb891b01c7b365805724ecf03680ea13294e4ef,", + "avatar.background.green.light": "S:f34003d1efe0542ec63b0fe403505e5fb8042fc9,", + "avatar.background.red.dark": "S:179bb926a1c8657a95e3b960a2172b6871773950,", + "avatar.background.red.light": "S:b3d72f78544f0f87248381fe71a90f25671819a7,", + "avatar.background.teal.dark": "S:0db2da0c358d374c55f3c49e54dd1651fa8034ce,", + "avatar.background.teal.light": "S:8cc5ad875392bf34fdfadc31f7c6f8fdd2147de0,", + "avatar.background.yellow.dark": "S:84694185eaf24cc48cc409caa51d1b5157912601,", + "avatar.background.yellow.light": "S:778957ae3cef76e7bcb0b1129bb25302acec83fd,", + "avatar.font.dark": "S:3979db93fdb431839880a2e4e250d35f2e869267,", + "avatar.font.lg": "S:5720eafda7e82eff1a52af5138691fb16170d7c6,", + "avatar.font.light": "S:cb7075cad9575061e10cfa526f112f05dc9ddb53,", + "avatar.font.md": "S:5c59c52f49ab5c8a2bbb5c6119f1dc8a381ec7d1,", + "avatar.font.sm": "S:0f75966d2ec4cd2d94af215b65b675437dd2c026,", + "avatar.icon.dark": "S:127d337f2bd1422826ce10ead7ef03c614196fe7,", + "avatar.icon.light": "S:c8e2cbfa686cab5cd10ed15a32db528d61a94e90,", + "block-section.background.dark": "S:0a5a0c7addebca0ea3900c37a8a0f7d760fd24a9,", + "block-section.background.light": "S:b93df4c3a9518db3d16f5adc0bf188eb87dc0ee2,", + "block-section.font.dark": "S:5a31699d5ba3deeaf40ac5d026c164b5e6b7a21f,", + "block-section.font.light": "S:ba4fea20bc2f3d3477a747bdb05ba6e00f531706,", + "block-section.font.md": "S:dbc03bf1b8270f55fd564518c8727a09e2eab8c4,", + "block-section.icon.chevron.dark": "S:65a112b044e22922082fce74602cff058fb94b12,", + "block-section.icon.chevron.light": "S:4dca7ea03b67c3c1b7d2a860ff3620766f10f9c3,", + "block-section.icon.invalid.dark": "S:f593ed57db14052fba20dc09d3773ff7809a32ad,", + "block-section.icon.invalid.light": "S:69630865c7fd73c51af5c98d2ace76306bb51e57,", + "block-section.icon.valid.dark": "S:3cced17e2bb5db0d398ed0554e4a5a01b6f3bbf2,", + "block-section.icon.valid.light": "S:f1d7d9ddfc2f2c4aaa62f7e8608bd2324010f155,", + "block.background.dark": "S:c10d0a0d1371c4376287c2aaabb06221a2adc20a,", + "block.background.light": "S:c3196ad65ea074423464a6b0c60a25e17074d257,", + "block.border.dark": "S:ee5944e61707afd2a32738d070a3290967c72f16,", + "block.border.light": "S:ec7ee9ec9f80765344bf0f68cf79bce57d327aa0,", + "block.font.content.dark": "S:5af022e7b90be7c2b944d578fc85c121cd3d56da,", + "block.font.content.light": "S:e547bc464b377e74e5af0881ad1b39015ff1eb86,", + "block.font.content.md": "S:7e3b4b8b1b737b8c6a0f6ad75bee5b459e7699b6,", + "block.font.description.dark": "S:a4fd30536f935d50f346d7782188ab56ca9656dc,", + "block.font.description.light": "S:35f884bcc94910d72e1e22ef8ee39088b16aa0e3,", + "block.font.description.md": "S:6ba6d3b690a324d4ebdcf13cc8bb55550caf3095,", + "block.font.heading.dark": "S:355da24e58e55f4d030d3488b11a82776a5666a7,", + "block.font.heading.light": "S:a90522ca3613d4e98e831e856c47165d190d49dc,", + "block.font.heading.md": "S:be180b9c5dc148750db52ed14ab77af37f8a9bf2,", + "block.icon.chevron.dark": "S:9bd581df4f65d545c36c50e54e3e762357895209,", + "block.icon.chevron.light": "S:edf75a68898f2d023f3b476b32b5e451c7e8d6dd,", + "block.icon.drag-handle.dark": "S:90745a003c38153218ac259dec72cbf5a681c730,", + "block.icon.drag-handle.light": "S:a4787ce8c742d323a23bee4e36a5608773c34787,", + "block.icon.idle.dark": "S:311785c242021f1219653a1c611c9c94cccfe516,", + "block.icon.idle.light": "S:2ea2fe39d7e42c1e97fca0be6d7faa58582176d4,", + "block.icon.invalid.dark": "S:aefb291e1717692e1509ee6afb468f39021816e2,", + "block.icon.invalid.light": "S:0de16af43fc94023ab09462840b80e350a561c14,", + "block.icon.valid.dark": "S:03ae184f6de5d3cf7c834c5ac1f96a9108d0b9af,", + "block.icon.valid.light": "S:24bc09fe16bed0b9b9d3ced25e13305640f63159,", + "button.background.brand.outline-fill.dark": "S:2dcb4a6ef5a62f648d9dbdc4a103b90be8c93ba2,", + "button.background.brand.outline-fill.light": "S:ccb5a88c7c6bb9351acf6d0c07b399c92618aeae,", + "button.background.brand.solid.dark": "S:592be4eb4051efb6cf25803d7e59536fd12a9046,", + "button.background.brand.solid.light": "S:e274975d730fe7b4b95782d04e53db641e4cb550,", + "button.background.danger.outline-fill.dark": "S:2b3bd3ee2593b14a00045512e0d122bd2fa0f523,", + "button.background.danger.outline-fill.light": "S:c576b91588bf82d93b26ff973213e3f03bfbeeb7,", + "button.background.danger.solid.dark": "S:6113af8a2d018cfe1dd5f2ef191eb9aa6d7825a2,", + "button.background.danger.solid.light": "S:a7149cb0076b9584d417a720ad386fc975cb3e7d,", + "button.background.inverse.outline-fill.dark": "S:39e29b69b6b2390ec8ce34a13e2c1477489191c4,", + "button.background.inverse.outline-fill.light": "S:468f050c24ffb5a6a4cf8047cce7033fc78bbc1d,", + "button.background.inverse.solid.dark": "S:4711470d99f0918f600faf8d4a4b9699487eefc3,", + "button.background.inverse.solid.light": "S:710162804458252bbc123862221b454002d02929,", + "button.background.neutral.outline-fill.dark": "S:13390eb2d0bbf9765ecadf1e480395e72df9facf,", + "button.background.neutral.outline-fill.light": "S:cd3e02603f1879e87ddcb5374138925524382d1a,", + "button.background.neutral.solid.dark": "S:748001f3e436a1ebe9aaf99c7529d91bf2c3609d,", + "button.background.neutral.solid.light": "S:a8016d975f6ad741a67ab16a72b500e51ff29141,", + "button.border.brand.outline-fill.dark": "S:cd7af72dbbb52f4afb749c9c22126859715cf895,", + "button.border.brand.outline-fill.light": "S:9f68a127370a6259d90909172f1bb34744dcd759,", + "button.border.brand.outline.dark": "S:6e7927972a318cbe3873bbf0d0bec9765105b20f,", + "button.border.brand.outline.light": "S:8d89f6e3a5b4afa3fc47aba3c6172a3620483289,", "button.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", "button.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", - "button.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", - "button.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", - "button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", - "button.border.danger.outline.light": "S:dac592a30b402672ee19c38cee360264a7823546,", + "button.border.danger.outline-fill.dark": "S:d913603af71ea191661ca0d1d734ff9c139c1c62,", + "button.border.danger.outline-fill.light": "S:c4b802390bd0175c014fd2c506b0435b73e6593f,", + "button.border.danger.outline.dark": "S:4a58d52dbf176200b8ff95c1f46d99e4ff916ee9,", + "button.border.danger.outline.light": "S:dd1ce2b18bcd30de5b2a962e21331f1d0977a8fc,", "button.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d,", "button.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", - "button.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", - "button.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", - "button.border.inverse.outline.dark": "S:0f0f21f139a36b68f9c46a82a4f3a0d871225328,", - "button.border.inverse.outline.light": "S:75364b4f0c001e011435396de3da6507780ce7d2,", + "button.border.inverse.outline-fill.dark": "S:24745ce67ee2ae33c3791edca8ded9c4f827d5a0,", + "button.border.inverse.outline-fill.light": "S:ed34b3a00fb5a6fd55f4ed21df2c5b05fb5a0436,", + "button.border.inverse.outline.dark": "S:709b58ff6c44ae9e328df25de25434dc8dba5caa,", + "button.border.inverse.outline.light": "S:e167e21f15663fd343e1fab0fe868e55117d4bc6,", "button.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", "button.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", - "button.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", - "button.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", - "button.border.neutral.outline.dark": "S:e31fa7bb3960cdf35f11e1a4f512773f5504100b,", - "button.border.neutral.outline.light": "S:17b18a49ebbd56a80e8d4f01b445d0e3203788a6,", + "button.border.neutral.outline-fill.dark": "S:25b781057e221934b81f6dd856b3eaa7d893e551,", + "button.border.neutral.outline-fill.light": "S:c0826ed632d1c3246b081c04f0402bcdf4e85fb8,", + "button.border.neutral.outline.dark": "S:3b0c236126f5172a757064d32c9e065bf1f6bfa9,", + "button.border.neutral.outline.light": "S:c7c9cdc3a859f5a4b39a04f47adeae7729df1a1c,", "button.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", "button.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", - "button.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", - "button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", - "button.font.brand.outline.dark": "S:7beb60e35440fb45e91d24d8acc14db5b1533bb4,", - "button.font.brand.outline.light": "S:a929ca685859c1fc5e7faf543728b2edf3b5f243,", - "button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", - "button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", - "button.font.brand.transparent.dark": "S:8d19dd77778ab4642015721ce060bd7ec15f240d,", - "button.font.brand.transparent.light": "S:74cfdb55361a2fcfdf0e79657b1aa9b3e6cffb8c,", - "button.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", - "button.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", - "button.font.danger.outline.dark": "S:9d611a3ad95a4e7c417d38dcf707aa9dfd4b1da8,", - "button.font.danger.outline.light": "S:9cfd1204a77cb867927a91597db7211a001d3a04,", - "button.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", - "button.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", - "button.font.danger.transparent.dark": "S:957fbc6785acc68533d73f89c39099f0da9feaf9,", - "button.font.danger.transparent.light": "S:6399b4fb7079f55df8a107aa677eacad644890c9,", - "button.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", - "button.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", - "button.font.inverse.outline.dark": "S:a58a68dd030763cd3b979f3c9c8b53d55cb9904b,", - "button.font.inverse.outline.light": "S:625d9574b0882315179cfc86548ed6471b4d016a,", - "button.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", - "button.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", - "button.font.inverse.transparent.dark": "S:c22b36e585444176b35d2985759be4ab13f7912f,", - "button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", - "button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "button.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", - "button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", - "button.font.neutral.outline.dark": "S:c7418479a6a19078629d08ff0d250434dd7aa6d8,", - "button.font.neutral.outline.light": "S:8f1c1a86e08810a6cc0ce7394e4c8ddf6cf7cb4d,", - "button.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", - "button.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", - "button.font.neutral.transparent.dark": "S:1a2ab9b9fdc12ddf69da58e4784f878a6c75fc66,", - "button.font.neutral.transparent.light": "S:3d2e4e2536be873c087f6b6181332bf2ce825c42,", - "button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "button.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", - "button.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", - "button.icon.brand.outline.dark": "S:6a8c3b2e8887bf20eab6a4f1e3ae0ed577ec662b,", - "button.icon.brand.outline.light": "S:96930a17711f286e1a97b8b7ca57a1c37431a621,", - "button.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", - "button.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", - "button.icon.brand.transparent.dark": "S:33667181ea79a9be22a25c217678cd18dd0018a4,", - "button.icon.brand.transparent.light": "S:e76ac2dd6b78f85c7892ae2f30e58e8325587168,", - "button.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", - "button.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", - "button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", - "button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", - "button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", - "button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", - "button.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", - "button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", - "button.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", - "button.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", - "button.icon.inverse.outline.dark": "S:9137cbda0b1d79a7a6daff11f72580e2a6fda301,", - "button.icon.inverse.outline.light": "S:80c8d7dcc226ba8c08f306b5c6729d81de95efb6,", - "button.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", - "button.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", - "button.icon.inverse.transparent.dark": "S:8a8366de3e4b5f5ac023b2c703cc641c21a4453b,", - "button.icon.inverse.transparent.light": "S:1d9ed9e6c0eca660882d7c5705d97d7eb4455e72,", - "button.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", - "button.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", - "button.icon.neutral.outline.dark": "S:1d09040ccbfbdc3f8f89047c3eaab5dc24b7463c,", - "button.icon.neutral.outline.light": "S:933927902689b45a97c31f92ab03e1dabfa62bdb,", - "button.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", - "button.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", - "button.icon.neutral.transparent.dark": "S:060673768cd2545a55330e2a6c2c67e82627bbf2,", - "button.icon.neutral.transparent.light": "S:b3eb473ce8edf72285c36f6fb42680395ef7d7c1,", - "card.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "card.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "card.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "card.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "card.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "card.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "card.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "card.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "card.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "card.font.subtile.md": "S:2f7bbe92776fd17b2ab450464cfe7115ff9e2625,", - "card.font.subtitle.dark": "S:6355016a1a58da665def5e759c512e087504e510,", - "card.font.subtitle.light": "S:003a1a7519374d0278e2d39a05ccdece9494156b,", - "card.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", - "card.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", - "card.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", - "checkbox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "checkbox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "checkbox.background.selected.dark": "S:2395510a93b41923ce9358f2754a8fd8451f47d8,", - "checkbox.background.selected.light": "S:13d63ed31b4ad61a912dbd663332e89530a9ce64,", - "checkbox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "checkbox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "checkbox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "checkbox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "checkbox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "checkbox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "checkbox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "checkbox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "checkbox.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "chip.background.solid.blue.dark": "S:efe9257d7ff25660d4f56ecb5f8eff1965836ed8,", - "chip.background.solid.blue.light": "S:4be84169ac345a5fe20beb467ba90e098af63ca6,", - "chip.background.solid.green.dark": "S:c241f69fd7fd9d471ab2156f4a683079ed39fc14,", - "chip.background.solid.green.light": "S:5e399aedb6838ff8ea03512163d75a41ab6994c3,", - "chip.background.solid.grey.dark": "S:b46a140ddd397a1f3bc89a9097ea67ac2cdf5eb5,", - "chip.background.solid.grey.light": "S:b53697b7f83ed2a1cb8401a03ceedd9858bdfa44,", - "chip.background.solid.red.dark": "S:9d0bc5f00f8f6775b890b749c4ab92a0e2936f82,", - "chip.background.solid.red.light": "S:c27419c0893c8639b4e38f21d1009ea61dd87644,", - "chip.background.solid.yellow.dark": "S:c0854e1751ab501aa79abffc7573b649a040fa87,", - "chip.background.solid.yellow.light": "S:2962dae5faa2ebdfdb41a236eb4fe2d6728e73c2,", - "chip.border.clear.blue.dark": "S:a4e5c73ecd06a6d15e1c0c5e06d0db710d159e40,", - "chip.border.clear.blue.light": "S:04657641675b69f642cbd457001d849c986bb902,", - "chip.border.clear.green.dark": "S:0f59e37a995fa88e6d805a2f6acdeb6c5b6b0d91,", - "chip.border.clear.green.light": "S:857bba35f26bbd88a44c03fc89fe80ebef65bb31,", - "chip.border.clear.grey.dark": "S:da12f587cccfb923ff5326f0820abd034885243c,", - "chip.border.clear.grey.light": "S:ba3709462c1adcc8247a4b551e49f82c3a5d52b5,", - "chip.border.clear.red.dark": "S:ca09bbb774ed71bab49b4768fda03cef7c127bec,", - "chip.border.clear.red.light": "S:df1e6343d454f39b6310ef4e88ed6067aea0f78d,", - "chip.border.clear.yellow.dark": "S:fd20cf70d56bd57879800426b23e0a1c40ef66ae,", - "chip.border.clear.yellow.light": "S:835f772647e8725e264c9de44c48f73b19b1dee1,", - "chip.closable-icon.dark": "S:571b293be9fa93c88d4c744e859ccaa9f0327396,", - "chip.closable-icon.light": "S:5864661006b1e772d3497a8fcda14e8c4c14ec59,", - "chip.font.clear.dark": "S:26f3b7443216233f279c7e7f7fd0131efcf2894a,", - "chip.font.clear.light": "S:3bceb92c16f9494f5df688ac26364dc9916d2f30,", - "chip.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "chip.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "chip.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "chip.font.solid.blue.dark": "S:ce2f48f7c48c85f1947ed4def67837b09682f392,", - "chip.font.solid.blue.light": "S:66e5eea50a4738310a610bf35defc79c2f68d268,", - "chip.font.solid.green.dark": "S:7d35770c490fbb1b9952d56ba8f64530b8ca2c20,", - "chip.font.solid.green.light": "S:3fba5d47fc5dc3890f9815e5588b1fae3955e2a4,", - "chip.font.solid.grey.dark": "S:bd62c223330d9bd183081da305c26e6d054b727f,", - "chip.font.solid.grey.light": "S:1c6e18ed37f0dd57da2b2fe7158f708f32ff10b9,", - "chip.font.solid.red.dark": "S:bfdc2378122e67bb9ca7c20e4616c910684ce386,", - "chip.font.solid.red.light": "S:4dd45363a1a8a7f69731c3087cd75501c569a9df,", - "chip.font.solid.yellow.dark": "S:bcf8ce210a5dcce132c602eb4aadaa7c49421f70,", - "chip.font.solid.yellow.light": "S:4a1dd23a0f565029e15822cc6b8b56957b4383d4,", - "chip.icon.clear.dark": "S:b9d89075c8ede720ed163c7db3ad8ae99f55a7a3,", - "chip.icon.clear.light": "S:a2d113d47d21d5652fbf97ba3c080ef75b8b86b5,", - "chip.icon.solid.blue.dark": "S:e96f458a9e09ce6fdfefc393072ce28766601907,", - "chip.icon.solid.blue.light": "S:3bedd59076e486afe8128a69e505c734b3934bc1,", - "chip.icon.solid.green.dark": "S:dbfbdd28233f829f94b29b3f609d62ecec873072,", - "chip.icon.solid.green.light": "S:20c657522b2e549263180c408042654c597852f2,", - "chip.icon.solid.grey.dark": "S:fe6895416c0213445a74a77a2da5191ee06266c2,", - "chip.icon.solid.grey.light": "S:b11bef71ea8faa8e4e469ce9080f40b4cabc2017,", - "chip.icon.solid.red.dark": "S:28265c9ca8729ceb5805b7842663c1162f073b12,", - "chip.icon.solid.red.light": "S:84c2a93cc8de0a128f5da1131cc1cc7a2b0f5686,", - "chip.icon.solid.yellow.dark": "S:0dcdf78002ec8d6c2d2d9f1526c769ac2e64ed62,", - "chip.icon.solid.yellow.light": "S:d3d415877af4342dfa5b2a522b995005f46a036f,", - "color-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "color-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "color-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "color-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "color-picker.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "color-picker.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "color-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "color-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "combobox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "combobox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "combobox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "combobox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "combobox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "combobox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "combobox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "combobox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "combobox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "combobox.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "combobox.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "combobox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "combobox.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "core.box-shadow.0": "S:b15553f1884f62f3316a48a6e38b8c0e8f8e72d2,", - "core.box-shadow.1": "S:bf2ed3904ec79304842edb9a26b9f7493058ad06,", - "core.box-shadow.2": "S:405e9e5847d05b187655689838208704356b6e1b,", - "core.box-shadow.none": "S:bce4a69329ebfff685ce2a044bcfb3d09a8ad7ec,", - "core.color.neutral.blk-000": "S:a67e6b964c87a95c90d2051109e6235f971cfed6,", - "core.color.neutral.blk-005": "S:e007de0e5126b5656ab20a44ef5542ec38d3b1b7,", - "core.color.neutral.blk-010": "S:379de77e676e45964aa0d9fa8830a22c2ddb9cef,", - "core.color.neutral.blk-020": "S:9fc3b3acbeda4ebd6eaa9694a799615de38c8f53,", - "core.color.neutral.blk-030": "S:6e7010ebd7da11ef0c8677c7b3e138d0d6b6666b,", - "core.color.neutral.blk-040": "S:2c369ccc2bd9dbf119b1a447eb6f638012b7c193,", - "core.color.neutral.blk-050": "S:e71ce79ebfa1e5e47b70284bde8298e0f428d0af,", - "core.color.neutral.blk-060": "S:c48ae66b1205086fbe209ba6e1ec0ef224315646,", - "core.color.neutral.blk-070": "S:568e210e3abc4bac9c59fd6da505eca60c2906eb,", - "core.color.neutral.blk-080": "S:c2923315fc6b3128caec7736fdfda9db5bb2dc55,", - "core.color.neutral.blk-090": "S:6e336f0e932fe1694dbf4eedd383b3d287406fbb,", - "core.color.neutral.blk-100": "S:b8cb9ddaa17b8e52cc8baa461fdb88c5070770e8,", - "core.color.neutral.blk-110": "S:dfdbe4ae031086d3977fbfc3c6690eebbb539915,", - "core.color.neutral.blk-120": "S:d02ee52cc6cbb1f64e4d644a46775b5a09c681bc,", - "core.color.neutral.blk-130": "S:4bbb7914654196933c1da872015c7993e1fcfccc,", - "core.color.neutral.blk-140": "S:7ca7950c73120089cd71e7c82d252be795b3b62e,", - "core.color.neutral.blk-150": "S:3c918f8d749ef073ead2218c7efefbf14ba6dffb,", - "core.color.neutral.blk-160": "S:f792b9890c36f6ac70f1c1ee1c3a498ef9161808,", - "core.color.neutral.blk-170": "S:411d4fc1eac1ec98b04758e6aa28d5971a769297,", - "core.color.neutral.blk-180": "S:de8af9b59e8116339ed199ec765893f2bf77bdc3,", - "core.color.neutral.blk-190": "S:3689986e44266e08bee9f4ac1f89a65af7d277d9,", - "core.color.neutral.blk-200": "S:dfc3a1482e86e0d79479102515ae1640cfda7660,", - "core.color.neutral.blk-210": "S:4b85d05798bcf10f05e1001665a163eedad46a25,", - "core.color.neutral.blk-220": "S:d38ce197c2a81d738c3aa36fb428a48cf869e172,", - "core.color.neutral.blk-230": "S:bd064ee87818ec8a5e4600cc049237ef96898eaa,", - "core.color.neutral.blk-235": "S:9c64ecf6085cefb0f09181a4f78a9dc3276a43f6,", - "core.color.neutral.blk-240": "S:566e201f296c4048cfdee8da4654fa663916fb97,", - "core.color.palette.dark.blue.d-bb-410": "S:098d21075614d6c47f49f3c326099ab1b5934010,", - "core.color.palette.dark.blue.d-bb-420": "S:08f1dadd6b907fa2e4c5022c4dfba0973b892372,", - "core.color.palette.dark.blue.d-bb-430": "S:90e82be07ee6af71f6fb71a8bc1c964f18a2d396,", - "core.color.palette.dark.green.d-gg-410": "S:696963c67cccb3184f70df720c18499ba54372cc,", - "core.color.palette.dark.green.d-gg-420": "S:1d8b212500ead45da840547917f11b1750d24330,", - "core.color.palette.dark.green.d-gg-430": "S:6e32f21df7c3e9cccb516f157cbd0c73cfe090bd,", - "core.color.palette.dark.red.d-rr-410": "S:d1efd5a9b420f32748921b6ec6d718b6e1af465a,", - "core.color.palette.dark.red.d-rr-420": "S:e97c4e83c642e168f0bf9870c3caa3966dd9831e,", - "core.color.palette.dark.red.d-rr-430": "S:515edae396cbd56599053c86abb3d1b0eeda8070,", - "core.color.palette.dark.yellow.d-yy-410": "S:4906ceee1669c1ba45f248d40c9402fa223bc15e,", - "core.color.palette.dark.yellow.d-yy-420": "S:23b7ad4f5dc84a74b4025093726a20bdbd487a85,", - "core.color.palette.dark.yellow.d-yy-430": "S:3a9e706df7bfee778d832ebc36bb0bc67a9bc6e6,", - "core.color.palette.high-saturation.blue.h-bb-010": "S:a30ba21a5a769859a1a365443ec1a7ae1c0dbc4b,", - "core.color.palette.high-saturation.blue.h-bb-020": "S:f16fe042a5395dde509e4df0f4c400a080226b2b,", - "core.color.palette.high-saturation.blue.h-bb-030": "S:e3038d72f66ffc3f0b34a95b3489a19e0de9b294,", - "core.color.palette.high-saturation.blue.h-bb-040": "S:615c572713be17f77d4c24bf0643f1a29296240e,", - "core.color.palette.high-saturation.blue.h-bb-050": "S:381bfaa859daf1e49bb01f6a3c2e2ff6ae345f87,", - "core.color.palette.high-saturation.blue.h-bb-060": "S:29331b79a5d4ac10298a460dfba3786bdd9f5254,", - "core.color.palette.high-saturation.blue.h-bb-070": "S:2b5067dd954b317dc7703d6972506b7212b63311,", - "core.color.palette.high-saturation.blue.h-bb-080": "S:a4e84e53aafa35d7114425188e4bc2fa8ca8016d,", - "core.color.palette.high-saturation.blue.h-bb-090": "S:3646636061731a38d31d34ae2ba82e7226630c0b,", - "core.color.palette.high-saturation.blue.h-bb-100": "S:b137c82c753cee8690ad1bf580378f945e59413e,", - "core.color.palette.high-saturation.green-blue.h-gb-010": "S:86acdd47f813a3b6840e5be60646304724e8e694,", - "core.color.palette.high-saturation.green-blue.h-gb-020": "S:6a141dd9a788a88b35b66538cfce91fbefbd359b,", - "core.color.palette.high-saturation.green-blue.h-gb-030": "S:21271ba54272055068ddcc604f3ac1316c7a755c,", - "core.color.palette.high-saturation.green-blue.h-gb-040": "S:e036ed954eecd1cf1060b9e347f07257db1ac99c,", - "core.color.palette.high-saturation.green-blue.h-gb-050": "S:bbbd7b4a5478ce9d9a4f47979e3f2e6c3fbfa657,", - "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7a22a2f99c80ae2bb0019677140ce920343271a9,", - "core.color.palette.high-saturation.green-blue.h-gb-070": "S:76a07fa6afbb24ffaebe9848da2d56584bca1139,", - "core.color.palette.high-saturation.green-blue.h-gb-080": "S:cfebc84ef66573b8762db2e67afa4e8707853f53,", - "core.color.palette.high-saturation.green-blue.h-gb-090": "S:f9cd0722f121b1e14620c509c50d8cc8a035af0d,", - "core.color.palette.high-saturation.green-blue.h-gb-100": "S:2b1ec16718e0780eb78c84fbc8a863132534b2db,", - "core.color.palette.high-saturation.green.h-gg-010": "S:430c8695a2cbf32dc936ec92d352440f6b8baa83,", - "core.color.palette.high-saturation.green.h-gg-020": "S:bcdae4d9ef10acd863a18e695fe4bbd8c42b124d,", - "core.color.palette.high-saturation.green.h-gg-030": "S:fa64724d0f31c0a4fd76055afff3965be2202599,", - "core.color.palette.high-saturation.green.h-gg-040": "S:5abb8c81a3309fb62ac92b87e3ce880df36f4050,", - "core.color.palette.high-saturation.green.h-gg-050": "S:bfcb47dc8a77c4cae92c5cfdaea6e6871c309405,", - "core.color.palette.high-saturation.green.h-gg-060": "S:d2e08acc23f2d375003d815977b639a57ae3c5d7,", - "core.color.palette.high-saturation.green.h-gg-070": "S:4a4ca908024da34195ae5e1f53dfca68ad8bfc16,", - "core.color.palette.high-saturation.green.h-gg-080": "S:9b853997dedc3bcbd9414437bd09ddac84b21322,", - "core.color.palette.high-saturation.green.h-gg-090": "S:96ff382489dfbf8f473d91b02e14164d3f18cb04,", - "core.color.palette.high-saturation.green.h-gg-100": "S:aefb6e4a31ab9d60b6ab5b724409c2e5bce732c0,", - "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:d6886cfda04ce1879187dace6439eca99196bd25,", - "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:36febea423bf21b8ffade26dfbdff1d1d86b16be,", - "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:c3584d602a0f67a3648d67ddaa13444d4334c301,", - "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:ab7f0583694d290842d460dd1393c8e3903dd257,", - "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:05fd025c8c0381fcf82d5e21e9fde71f5867bc48,", - "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:e451d7ee43ff8164e124b5a13004188b668c068e,", - "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:fdb4b6f58a600d604560d871399b3bf5c02a37a8,", - "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:82c5ecfe97d81153b8cf0df3bbdf4946e0941844,", - "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:6a0862425705cdce19f742977f3555b7b4e20b88,", - "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:23a580aae4798bcff45cff8bf23a29e5cbb587cd,", - "core.color.palette.high-saturation.orange.h-oo-010": "S:9dd0ce8fa68b2f403cd935dcb85865bdaf3c7c40,", - "core.color.palette.high-saturation.orange.h-oo-020": "S:f8335f88872810e2e490e4b60f82b916c4fabdb5,", - "core.color.palette.high-saturation.orange.h-oo-030": "S:30b22a97e608f144d24de0a31361b51ce0326e8c,", - "core.color.palette.high-saturation.orange.h-oo-040": "S:819bee7a96e0cbc320a63f1e202847e617cafa0f,", - "core.color.palette.high-saturation.orange.h-oo-050": "S:f565589dd9c7ecbe21fd6b16af88fec443a80757,", - "core.color.palette.high-saturation.orange.h-oo-060": "S:fc495462d9c23608df5d3a2f33dd6ca7c1e54ea6,", - "core.color.palette.high-saturation.orange.h-oo-070": "S:2821799e9639eccd07992e27c4e6694ae02bf6d0,", - "core.color.palette.high-saturation.orange.h-oo-080": "S:728bb41c33fd83583676baf7033dca60bdd741d6,", - "core.color.palette.high-saturation.orange.h-oo-090": "S:31b0367b23ffd087b0fd223313d735f05c36f7a6,", - "core.color.palette.high-saturation.orange.h-oo-100": "S:9997f139bbc6b8d1cf2c9ff289ff2311bfcc8c0f,", - "core.color.palette.high-saturation.pink.h-pk-010": "S:c027bd4128a5857b7cbedba5209e6c3aabc3de7a,", - "core.color.palette.high-saturation.pink.h-pk-020": "S:87bf40f484e94e4021da62d8b092c37d7edab62b,", - "core.color.palette.high-saturation.pink.h-pk-030": "S:91afaaa48482a5e2b7172933e8564fdba0469a12,", - "core.color.palette.high-saturation.pink.h-pk-040": "S:802fed85b89883a05fd3ea3174504d923a99ff29,", - "core.color.palette.high-saturation.pink.h-pk-050": "S:476e1afaadd97e03ec2eda43c296ba05d2a616f8,", - "core.color.palette.high-saturation.pink.h-pk-060": "S:eb4f19e47f82b5bdcb4455d330e63eb9f8ef1e06,", - "core.color.palette.high-saturation.pink.h-pk-070": "S:1cf5b4431ac55c0284ece0b3506136ca63e128cc,", - "core.color.palette.high-saturation.pink.h-pk-080": "S:b680dba4a6e7a534893958e1a09b45da536164f5,", - "core.color.palette.high-saturation.pink.h-pk-090": "S:9211d5dd09ee4a12c6f559870ecb4ca3273e7d38,", - "core.color.palette.high-saturation.pink.h-pk-100": "S:fea2af5d6af09bf9ca344cc8a8b59720ff57e043,", - "core.color.palette.high-saturation.red-orange.h-ro-010": "S:01ff093ba2e7b3dc3221f560f2448f25f34208ab,", - "core.color.palette.high-saturation.red-orange.h-ro-020": "S:723100344827d512b6a2cdd6c7fcae745c7aebd5,", - "core.color.palette.high-saturation.red-orange.h-ro-030": "S:7dffa36a03dbc41ebb16e38f018cb82a2094c275,", - "core.color.palette.high-saturation.red-orange.h-ro-040": "S:5e070803b21a2c5647a6e9fa17671aaae548d6d2,", - "core.color.palette.high-saturation.red-orange.h-ro-050": "S:5f3ba5da8df574574b3fd2b1ab6d2ebdc4c5fb19,", - "core.color.palette.high-saturation.red-orange.h-ro-060": "S:4a71ecd5bf9ed15033f518e68bcfab66d7fb960a,", - "core.color.palette.high-saturation.red-orange.h-ro-070": "S:6d7d6dc19cdd30aaabf0c11637edad931b5feb3e,", - "core.color.palette.high-saturation.red-orange.h-ro-080": "S:4d5899b3aa7be56bf41d2dbfa3b95e825c8e0114,", - "core.color.palette.high-saturation.red-orange.h-ro-090": "S:d3593a25f6453c441e3c2e3d517f7980f3428c60,", - "core.color.palette.high-saturation.red-orange.h-ro-100": "S:91a05bf108f4f03541653f686a2078fd2a5672ed,", - "core.color.palette.high-saturation.red.h-rr-010": "S:72bf4c6626a6aadaa819d25c4081562f06fa12a2,", - "core.color.palette.high-saturation.red.h-rr-020": "S:15ddbfa8e4581df9079cde86d7d0fdfe5eb34b1e,", - "core.color.palette.high-saturation.red.h-rr-030": "S:9e593aa8f214b38e98522453c863ba486475382e,", - "core.color.palette.high-saturation.red.h-rr-040": "S:cf51d25a58cb8bec4ef72b73d550c88ad41c41dc,", - "core.color.palette.high-saturation.red.h-rr-050": "S:0429df1a99a360307086093dca26f12feba95567,", - "core.color.palette.high-saturation.red.h-rr-060": "S:df92c84bbe47af0a506a11389ffa25980ddbf71d,", - "core.color.palette.high-saturation.red.h-rr-070": "S:3698204b2caa7d34f77be9ddba8fcc76321b2821,", - "core.color.palette.high-saturation.red.h-rr-080": "S:c77c87f684559adb69e175e12897529c3645ddf1,", - "core.color.palette.high-saturation.red.h-rr-090": "S:093ed2efb025d6d2f406dcdac508de589658437e,", - "core.color.palette.high-saturation.red.h-rr-100": "S:02824a1c296eabc6218cf6bb7daeb1dcde36fac4,", - "core.color.palette.high-saturation.violet-red.h-vr-010": "S:d9a5369ff6ac626201326882679bcd4663801de9,", - "core.color.palette.high-saturation.violet-red.h-vr-020": "S:e1f2e31077d7dc45b8543998d1b79fbd154cc441,", - "core.color.palette.high-saturation.violet-red.h-vr-030": "S:9e1a260e10913714d0d9bbcbdb6474da33d9ac49,", - "core.color.palette.high-saturation.violet-red.h-vr-040": "S:dbfa38e55babf7dda9961547f0eb16e67a8f0265,", - "core.color.palette.high-saturation.violet-red.h-vr-050": "S:32dae974bd24d671c83feb6465949a849294ab06,", - "core.color.palette.high-saturation.violet-red.h-vr-060": "S:afbb6f3f9dfece8273608c1f00c980150ba1c277,", - "core.color.palette.high-saturation.violet-red.h-vr-070": "S:8ed7669af254c3fe12310ab115f77b7227366a06,", - "core.color.palette.high-saturation.violet-red.h-vr-080": "S:f4451432a831473289c70f7e7282e6dbde9ccb0a,", - "core.color.palette.high-saturation.violet-red.h-vr-090": "S:7fd97dfa464285509bf40fc039af159d56f579bc,", - "core.color.palette.high-saturation.violet-red.h-vr-100": "S:90fd71cf8895dcb1cd034bd0580aa225950aca34,", - "core.color.palette.high-saturation.violet.h-vv-010": "S:a4fd8438ca3d2c0f65c436a971d30284c488fb58,", - "core.color.palette.high-saturation.violet.h-vv-020": "S:500d0566c62490d66a912c0def0642822ebbe276,", - "core.color.palette.high-saturation.violet.h-vv-030": "S:08f873b4f74a821fe521827382bed72817884c07,", - "core.color.palette.high-saturation.violet.h-vv-040": "S:8a4a73cdf4253aa6ad58d663e97a2999cfb0bd5b,", - "core.color.palette.high-saturation.violet.h-vv-050": "S:244f69540b20db975232e019cfe2e81e4fb82695,", - "core.color.palette.high-saturation.violet.h-vv-060": "S:b39c473f516e51267bca75819d192b6ea3f2f020,", - "core.color.palette.high-saturation.violet.h-vv-070": "S:c66eafbfef67edcfb9e898e636cd9ff49d29e20b,", - "core.color.palette.high-saturation.violet.h-vv-080": "S:3973dd0fe8d726ed4265989b0b8c8d206077a2d0,", - "core.color.palette.high-saturation.violet.h-vv-090": "S:1d48293e45fac39396eea9a16c52258d1b7447d5,", - "core.color.palette.high-saturation.violet.h-vv-100": "S:f2f832092ddc91fd4d4f417c4ca5c9d1fc1ba280,", - "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:fb933c69a7eb66e3ace1dcc3018d8b72309b5494,", - "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:d7441f89845f36a907304a2b8d134941df2faa55,", - "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:99c2d767e05c9741f3a70061c3802f9a96ca7b92,", - "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:5b721c955c1ad2f3350c4984f126debac5cfecce,", - "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:c076b7e08ccc3cd2831039cd69140bf1ab1d718e,", - "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:263daeecd3a70bbd9b3c1ef9050317d62809156d,", - "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:d7b0744a407d03166754e72118d86c97eb5786dd,", - "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:81bfa9f3dd5ac7b5f90cc6b7ba807fa5d3b7947e,", - "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:1ad692e88dc7c0849892dd2f12fe1708e87fca1a,", - "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:6f81213d26a0986b6c8b1807a4df5b0313a5609e,", - "core.color.palette.high-saturation.yellow.h-yy-010": "S:157f230fe60c3e396f37284470728605f8515c63,", - "core.color.palette.high-saturation.yellow.h-yy-020": "S:3a54f6277edbd4c92c83d72cf7eb8663f7b1867d,", - "core.color.palette.high-saturation.yellow.h-yy-030": "S:e3c57eefabd42b3d15e138b62ccf76f673d532c0,", - "core.color.palette.high-saturation.yellow.h-yy-040": "S:430d25da287d5fd16a8f398cb2fdf1e8a93e5db4,", - "core.color.palette.high-saturation.yellow.h-yy-050": "S:45c181165c8cf7dc9a75172b796f13ea5e6865e1,", - "core.color.palette.high-saturation.yellow.h-yy-060": "S:aaf6b1686716ba60e09e442bceace906c0c3c4bc,", - "core.color.palette.high-saturation.yellow.h-yy-070": "S:5490cdcefbff5b5e61fbb460e3210b71856ccd18,", - "core.color.palette.high-saturation.yellow.h-yy-080": "S:cb4adac94e31977c65f30ecdc3f162f47350a9a5,", - "core.color.palette.high-saturation.yellow.h-yy-090": "S:fe8696238f9f363040075ebad9eadcfdb5fc4070,", - "core.color.palette.high-saturation.yellow.h-yy-100": "S:a07d09607ed87f74630d11f30c9e403e6b682b30,", - "core.color.palette.vibrant.blue.v-bb-120": "S:1b912737566790521b736fc0cb5790e0d1758549,", - "core.color.palette.vibrant.blue.v-bb-140": "S:7d847def6e5074a8cdd43baf422978ac08d09741,", - "core.color.palette.vibrant.blue.v-bb-160": "S:ce4e4c4afaa37ac070a03dc8ea77b6e26f23f8a9,", - "core.color.palette.vibrant.blue.v-bb-180": "S:aeaa8f622e7673b47171d53cef6e5d305c52cdad,", - "core.color.palette.vibrant.green-blue.v-gb-120": "S:e545cc972786b8b866be0af383adac42b93490c0,", - "core.color.palette.vibrant.green-blue.v-gb-140": "S:24ef68b4113dd8865413e7b7fedbc975f73b1844,", - "core.color.palette.vibrant.green-blue.v-gb-160": "S:26257d454cefefa4b0e0392539b29967da80cd03,", - "core.color.palette.vibrant.green-blue.v-gb-180": "S:41faa42c025c8b0835b46833622ef8d566ac0ef8,", - "core.color.palette.vibrant.green.v-gg-120": "S:3c32e87b40218532cf223d4f25ddd8e585252178,", - "core.color.palette.vibrant.green.v-gg-140": "S:5c0a317d12ecd5afa4821a63bf48bfcff4b66908,", - "core.color.palette.vibrant.green.v-gg-160": "S:3c7e9cc671a86bcd48bba238963182d8fd5dec84,", - "core.color.palette.vibrant.green.v-gg-180": "S:d3e30b0e8fe8bb40a0bc3cdd3ac61c6d09603232,", - "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:391020c0f092b5402febc0c2d0667d48de33d1ad,", - "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:506b1d01e499bcba07730eb885aa9fef7b5c3cf3,", - "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:f0b69b624b41a6645e8d23660b2a115d23d68d6c,", - "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:beb78cc618755d86db5cca1545c79fce4931d70c,", - "core.color.palette.vibrant.pink.v-pk-120": "S:135ed546e2076187d3745c85a8da21a7e7c16d53,", - "core.color.palette.vibrant.pink.v-pk-140": "S:bad80534e3ba23d8230747873bc575b34a608067,", - "core.color.palette.vibrant.pink.v-pk-160": "S:a777eaeb101c5d8a3f518f06043d630a82ad4ef9,", - "core.color.palette.vibrant.pink.v-pk-180": "S:5ccaaf1a5b41cd71e837d43f9bd0f695691fe4c3,", - "core.color.palette.vibrant.red-orange.v-ro-120": "S:e2b928465273fe8d962655e71d78fb1f9f686490,", - "core.color.palette.vibrant.red-orange.v-ro-140": "S:980e62e80e8f3f9f09425a6d8b26b7302705716b,", - "core.color.palette.vibrant.red-orange.v-ro-160": "S:7403c860250af93694c42ca2464fdcd59d02ca28,", - "core.color.palette.vibrant.red-orange.v-ro-180": "S:e8e13ec2d4406a6683e5f91f9fa1cd664aaf28a1,", - "core.color.palette.vibrant.red.v-rr-120": "S:bcda3ca03b09b394fed9066f9c726fea24ddfe82,", - "core.color.palette.vibrant.red.v-rr-140": "S:b75af4155f1f5474e4032009d0d948a99184999a,", - "core.color.palette.vibrant.red.v-rr-160": "S:88cd4e4fc13847018e7936084c7314042cea5fdd,", - "core.color.palette.vibrant.red.v-rr-180": "S:74c93bbf5b2823acd54016fed51129bcd455703f,", - "core.color.palette.vibrant.violet-red.v-vr-120": "S:9155708e86a8fb667554b200f87c3fb462789caf,", - "core.color.palette.vibrant.violet-red.v-vr-140": "S:b4d6d11c17004435c313505d1c208a4b4258db38,", - "core.color.palette.vibrant.violet-red.v-vr-160": "S:c2609e360b146b6c6b7bc109099d50679f8e049b,", - "core.color.palette.vibrant.violet-red.v-vr-180": "S:5e1709c59c961c97c2d8876919128d145b9b2922,", - "core.color.palette.vibrant.violet.v-vv-120": "S:5962188393f63a4aacda8dbf97c8fee5d9d51624,", - "core.color.palette.vibrant.violet.v-vv-140": "S:12e4253328fc0297e55cd1dd6f47b5fb6921207d,", - "core.color.palette.vibrant.violet.v-vv-160": "S:8497c9ebd8d903caabcb33da8ef48c502beac564,", - "core.color.palette.vibrant.violet.v-vv-180": "S:94ceff7a97452d069c1c06d0b100d989a68b92f8,", - "core.color.palette.vibrant.yellow-green.v-yg-120": "S:4715ea79a577a93a3a6e99ce0142e742df6a5068,", - "core.color.palette.vibrant.yellow-green.v-yg-140": "S:101f1e34931f4dcd0fafe5fa2720fdc404e74885,", - "core.color.palette.vibrant.yellow-green.v-yg-160": "S:fe8e96fc343e65cd13c7741a9933cda392073117,", - "core.color.palette.vibrant.yellow-green.v-yg-180": "S:117baa81e4d628adcaea061e4c929c48a415edc8,", - "core.color.palette.vibrant.yellow.v-yy-120": "S:aa8ac761db055ea5816853564704bcc9063cec02,", - "core.color.palette.vibrant.yellow.v-yy-140": "S:22614e355bd4fb8c2b132207ec8dccb4e46e31f7,", - "core.color.palette.vibrant.yellow.v-yy-160": "S:3457eb204ca408d52ddbb80f84a111e911dea55d,", - "core.color.palette.vibrant.yellow.v-yy-180": "S:88d256ac4a6561ce88e2f7f256ad037d8ec3ff8b,", - "date-picker.background.date.active.dark": "S:00008689f4cd67914fac19beec1528a1ac41a4ea,", - "date-picker.background.date.active.light": "S:6796ec3ef28142c1660b3f7739c4c04ab1c75a04,", - "date-picker.background.date.range.dark": "S:ffc81c58606df60c717c94bfdad04a0c94909404,", - "date-picker.background.date.range.light": "S:d87a05addefd5d554795dd94b2acd577288521c2,", - "date-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "date-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "date-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "date-picker.date.active.border.dark": "S:1c7ebf7d8f4af02e7f83a46c3f52233e9ba35c31,", - "date-picker.date.active.border.light": "S:fd8fc2f890e9782d5c058c793be18797a5534932,", - "date-picker.font.active.date.dark": "S:c107a2ddcb3a1cbff0b2851c9a8ebfe8929f328d,", - "date-picker.font.active.date.light": "S:8fcb8da38c5f2fb6d0aa36167cc0f4ef2b160550,", - "date-picker.font.date.dark": "S:241f8779538cb4702201ed4066cd4340fa9f686f,", - "date-picker.font.date.lg": "S:7c6580521bcdbdfc7bb20f11d228412e30ed2745,", - "date-picker.font.date.light": "S:3671fe14f042965357c46b2615824a1c7efa70e4,", - "date-picker.font.date.md": "S:85386bc63729e94eb607ba5fb8b391b902092a3a,", - "date-picker.font.date.sm": "S:076aac1ce1f45e740d83d11ccf5c0372c63982fb,", - "date-picker.font.day.dark": "S:edf6e93f0880409de72951ab590e37223a5e7e22,", - "date-picker.font.day.lg": "S:7879c6c4aa4abbbf15e4970e729d60d5d5d9b0b6,", - "date-picker.font.day.light": "S:e1f8fe8a0d500900f3755214d6639efb6e5fafec,", - "date-picker.font.day.md": "S:bd28d711234c47f7a22638ab944067ca5fcb68d8,", - "date-picker.font.day.sm": "S:97c9f51cd9020c2183f12f022475331f59cf4afb,", - "date-picker.font.month.dark": "S:7a26a1b5050ac857298b1e427d93e512d4d57a65,", - "date-picker.font.month.lg": "S:5d9cea67d300b7cc734fe3340321199590d12bf9,", - "date-picker.font.month.light": "S:e7007a61645ae44b3abd80d52d8f984fc782206c,", - "date-picker.font.month.md": "S:115bcd0db12a861a644f053bf6dc97fa6ee0c4e4,", - "date-picker.font.month.sm": "S:d2815132a05319d69c3b303e10199eef70882454,", - "date-picker.font.range.date.dark": "S:2ceceff57cd77aa99ffc7d2f0b0517541f985766,", - "date-picker.font.range.date.light": "S:06a32d845847149d2cbeb96b36e43468f1a62789,", - "date-picker.font.selected.date.dark": "S:875fa73c614a95118c158cc6dc0ec80f074ccb0d,", - "date-picker.font.selected.date.light": "S:18248953f5c1f8ea47799a390f9956d4d622db11,", - "date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "dropdown.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "dropdown.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "button.font.brand.outline-fill.dark": "S:513771c85b3edb93d6e7928ac2a430a2a9e5a682,", + "button.font.brand.outline-fill.light": "S:35bae3856091755410670b6c7511a3c84679885d,", + "button.font.brand.outline.dark": "S:a2c4d2b130b1be9ae179043013adc5842c933367,", + "button.font.brand.outline.light": "S:5ccf12719b7ac168af2805ca0b1efd6a417be70a,", + "button.font.brand.solid.dark": "S:31a3dc9ab5d8305e63f807e2d8102dbc1dca2bbd,", + "button.font.brand.solid.light": "S:804ea29172aedd68c0ebb4338271929ac9a0575d,", + "button.font.brand.transparent.dark": "S:793f39dfc2e99cad3de412d0d86246bf769d4fc1,", + "button.font.brand.transparent.light": "S:bc440b802ddc5507345a0ce15b9857dd2d00084c,", + "button.font.danger.outline-fill.dark": "S:c094eda2ae5e2cb683f9123142f90bf1b85be1af,", + "button.font.danger.outline-fill.light": "S:6deb3e549a0e9a4ca353844dfcac87e6c14cdf5c,", + "button.font.danger.outline.dark": "S:59e4408cd9361679022e6807f2ceaea2e9af2a73,", + "button.font.danger.outline.light": "S:41f970c11fd9ac7234bf245103be3eed9dbe8528,", + "button.font.danger.solid.dark": "S:489713f30d18265d6829b238baa6c3ffda7a42bc,", + "button.font.danger.solid.light": "S:90b573e2389ac22bc8d1a06ff68718b120001c65,", + "button.font.danger.transparent.dark": "S:bcb59bc2e47bd8616273e25a0c60f72b7a16db0f,", + "button.font.danger.transparent.light": "S:62a2e83ff05d7ea56ab90f573acfa8ffa6353bc2,", + "button.font.inverse.outline-fill.dark": "S:e5847a022ac4ddac291df848823ad1d8efdc47f3,", + "button.font.inverse.outline-fill.light": "S:46c60ef1c658fbfb6ac51727029000bef0f6ce73,", + "button.font.inverse.outline.dark": "S:a9566aed77a49b32e6b92a5c808ee721581acc3c,", + "button.font.inverse.outline.light": "S:76d7fdec0c605992c6f59adfb54a8541493d36d6,", + "button.font.inverse.solid.dark": "S:4aa545fc349a57071a46c30cbae72496e43e9ff3,", + "button.font.inverse.solid.light": "S:21c0a175226f46a1716b07d8dd0cf0ab0d9b034d,", + "button.font.inverse.transparent.dark": "S:4a978199c24584c5c84b36eac7b0c6ffd341eddb,", + "button.font.inverse.transparent.light": "S:90e236dc09b056e0010a496dad534cb4f2f013e7,", + "button.font.lg": "S:853f131d2f3988875f034266115277754c7816f8,", + "button.font.md": "S:0ab355eb0b113a13075fb3950d6ff8a99a0b0106,", + "button.font.neutral.outline-fill.dark": "S:fdf74f3161c39bc9f83406ff67469642f2b605e8,", + "button.font.neutral.outline-fill.light": "S:46e7a5d2de98bcf91cc6386376d22a2e71279bcd,", + "button.font.neutral.outline.dark": "S:d749b518f0d40c3bcfb3eed2911d0a23b2bf440a,", + "button.font.neutral.outline.light": "S:cd3eacbbb4af43995674da06eb7907329e18e41d,", + "button.font.neutral.solid.dark": "S:babc351af4a956d032c67235c0a8ffd727d44eb8,", + "button.font.neutral.solid.light": "S:1d50a67b7bd296111aba2a4f4d2550e847590488,", + "button.font.neutral.transparent.dark": "S:ac9f8799f9d9f9a4f83fcf8f2e1c4ff015e10dcb,", + "button.font.neutral.transparent.light": "S:09fc86af681a4ae7f7fedebfdcff1e24df478362,", + "button.font.sm": "S:201ada9f2d1f1757019f7671b968664581be6f67,", + "button.icon.brand.outline-fill.dark": "S:02c7be774170cace643b5da9bcf1dbbc906e78ab,", + "button.icon.brand.outline-fill.light": "S:15592d4a331506831576cf4eb0858c2363370ade,", + "button.icon.brand.outline.dark": "S:747e57f144177dff893cf86f9c8cae879696ef48,", + "button.icon.brand.outline.light": "S:f1e4161c25cdbc2775a0904053b23dd124e180ea,", + "button.icon.brand.solid.dark": "S:d3c7cc1698831666badce39a3514903727ee4f7b,", + "button.icon.brand.solid.light": "S:a173bfb3b924064c3cbdd2cc91b6038e247cdbc1,", + "button.icon.brand.transparent.dark": "S:c00a14d6721de8852b9c9afc8870633c8c271047,", + "button.icon.brand.transparent.light": "S:ab0c9f869c2a70bdba93ab1a23a3aa6fbfbfb916,", + "button.icon.danger.outline-fill.dark": "S:943345a7bd020acb8cc717916a99f643c7ab4284,", + "button.icon.danger.outline-fill.light": "S:0277cb70d42fc82e9e48c8cf87a57fa65ea85a8d,", + "button.icon.danger.outline.dark": "S:1d3c64f0083fd364bf4160fd986e7ba158b76c6a,", + "button.icon.danger.outline.light": "S:ceb0f6a2457fbb8e9ca048c036c200ce8e713299,", + "button.icon.danger.solid.dark": "S:725787dca155da43f496e215a72cb2b3cdb45b4d,", + "button.icon.danger.solid.light": "S:62d990026b77c1d09d5fa29a713fcf79c9c810a1,", + "button.icon.danger.transparent.dark": "S:704bcc7c20536c136e54f09f6ccba37d24dc3add,", + "button.icon.danger.transparent.light": "S:ed873915f9010ecdebf61350fcf3053b2d6d7670,", + "button.icon.inverse.outline-fill.dark": "S:ed75cd4bda3c98796cf9f489f2acc7ece3c11bd9,", + "button.icon.inverse.outline-fill.light": "S:c8308d315b13b70dc00825530da5999940226297,", + "button.icon.inverse.outline.dark": "S:f62b69a34da423fbe63bc0c057487279e498ec95,", + "button.icon.inverse.outline.light": "S:008b825446a72665b0a9d71a9e4b5a3421921dc1,", + "button.icon.inverse.solid.dark": "S:48ad40d5595e0583bd42ad16c098ab945ed71f3a,", + "button.icon.inverse.solid.light": "S:234be793a05f8aae3804e9971215934c32299287,", + "button.icon.inverse.transparent.dark": "S:c1ab99248a81e8efa035919ef0a73e96577a2a66,", + "button.icon.inverse.transparent.light": "S:7323ec8a04ac76337445dc20990a880adddd3c09,", + "button.icon.neutral.outline-fill.dark": "S:793ea9f3bbdab56c78b7811a093106fcd2fb736f,", + "button.icon.neutral.outline-fill.light": "S:50170ffe57dc27a14da74ce85f3c4d8d44410c78,", + "button.icon.neutral.outline.dark": "S:cc5569fbb3e2d7f7ef0d67d5e8b9e43aa4c53f91,", + "button.icon.neutral.outline.light": "S:1ebcead1bf81e89d7c48c1981c5e68b011281957,", + "button.icon.neutral.solid.dark": "S:5dbef696c5fdf487e1a8064cdaadb08c91a677c9,", + "button.icon.neutral.solid.light": "S:8a52090f934462bb2f7518240a4558b3a47995a0,", + "button.icon.neutral.transparent.dark": "S:e96404572914b740e42af5cbc6b382a72da89266,", + "button.icon.neutral.transparent.light": "S:25de89d3945712165b394624313a56a80f6bebe2,", + "card.background.default.dark": "S:9733ba4bb5f1c360147e1b86a90d66437e9997d0,", + "card.background.default.light": "S:cc8b5d1327bcb425f406f2a6f69364f9b9a2955a,", + "card.border.active.dark": "S:11251fe187c66df6f9450b017afab76bab907e6b,", + "card.border.active.light": "S:f6c288cfa2c14177504bf0dadaeeb1af9d6f735b,", + "card.border.default.dark": "S:2f27e08d6f55f4f92c5a0544759c7f95fc3e0dee,", + "card.border.default.light": "S:c558d64a4bd1f9bbe9d6aa133b0a3caf9dec95db,", + "card.font.description.dark": "S:14873f0010cb054ce3d2aacfa8278aa8ce41d969,", + "card.font.description.light": "S:3446a5fe67d7592ea2b763445ad1100032673488,", + "card.font.description.md": "S:fccaf40fb0d403b5a8b6d0ae5c136426c9d1da59,", + "card.font.subtitle.dark": "S:99ee067bbe698bee9f37c916696bcd16ebb01693,", + "card.font.subtitle.light": "S:0e8a0b98879053587a89436495bed9f35f7b8d52,", + "card.font.title.dark": "S:6d3a7f06aeecd91178d32c9c00886eb858b79fea,", + "card.font.title.light": "S:f687c4f6e8be2e3b620c1c2c9808340b00b00ac6,", + "card.font.title.md": "S:fbc9859c091afdadefc11336d513a9b065f08218,", + "checkbox.background.default.dark": "S:acba583185a747c758ed1b9019be4e5cbd8bfc21,", + "checkbox.background.default.light": "S:c13177e96d11b8f156e2f71b7b893135e2790955,", + "checkbox.background.selected.dark": "S:baaccbf57d32cb4aa09e1a94f60cb11e364a9412,", + "checkbox.background.selected.light": "S:d4b175023d3e34a49ae6fe971cc20bf07203ee1a,", + "checkbox.border.dark": "S:206d18c4870040d21d3b1ae1942cc562731fb029,", + "checkbox.border.light": "S:6a16e64aa5b3bd0f6b3fdc7cd6b570a468273285,", + "checkbox.font.dark": "S:d7410ccf9d89c66f77e6a09e0dcd24072cd10695,", + "checkbox.font.lg": "S:8897278b3c32cd55259fdc3a120026dd82947683,", + "checkbox.font.light": "S:61ff6bcbf112a9f11a55aa522b8a6b0704b566aa,", + "checkbox.font.md": "S:69e88e4f7576cd274a005ec3275862a36ac61ceb,", + "checkbox.font.sm": "S:b026ff184e0d82bc9b172beb501dd78c141e8222,", + "checkbox.icon.dark": "S:d8f82a6721317023e9ba2889f92a4c03633cdadd,", + "checkbox.icon.light": "S:3fb7b0013d0183099d84c2b268812ba925f0bcd2,", + "chip.background.solid.blue.dark": "S:98d724d6fc2512d952fda9d53c970f63d5426e2b,", + "chip.background.solid.blue.light": "S:f6ffc8d0573dc711b39513503be1ddf4f1f8082e,", + "chip.background.solid.green.dark": "S:0d18c8d282281d625bd16d73cdd918dd6bbb79f0,", + "chip.background.solid.green.light": "S:a4195bc4a0f4252ed185bd310137846de3974fdf,", + "chip.background.solid.grey.dark": "S:7fd386a12aa3a61c9816d6def26651c1961142e5,", + "chip.background.solid.grey.light": "S:83162c3f440c6b4558b24b2a85b3f9ce71dfc4fa,", + "chip.background.solid.red.dark": "S:1fa3ee9902a5440e93606096a0c446c72b23c478,", + "chip.background.solid.red.light": "S:3abfe03107078b12d8c87e9bf7f8f17bfd2674d3,", + "chip.background.solid.yellow.dark": "S:f06d781599e247d03518b8ca8e91f1dbcc9af666,", + "chip.background.solid.yellow.light": "S:7907a5b5d298c91f17a25217ececf9ca5029d207,", + "chip.border.clear.blue.dark": "S:9c87bb0bee3ad346ee2d1d658f991eeeb71e8a71,", + "chip.border.clear.blue.light": "S:32f2d14cf94761194ca083876e82e44938a5c79c,", + "chip.border.clear.green.dark": "S:5b5faf0a2e66e379fdb0f6791731f54fb2b0d5d5,", + "chip.border.clear.green.light": "S:71e1e1c6f1c709d7879d6cc8132d0b831b7a5c04,", + "chip.border.clear.grey.dark": "S:90f4b6f1aa8a47149b74f4dfff8d661f369120a9,", + "chip.border.clear.grey.light": "S:e23602a18d8c1abc66dcda4f8a793256826c0283,", + "chip.border.clear.red.dark": "S:dde5935d492f9db2f06e7e5ae7b14b9bccbdc1c4,", + "chip.border.clear.red.light": "S:811e3b2280825cf0e8cc4f3b24639d9fea63b21b,", + "chip.border.clear.yellow.dark": "S:785ced4a9b82d5783590c7a3be703eb02f213576,", + "chip.border.clear.yellow.light": "S:5e6dfa372f65bac65879759830c3525248ecbfde,", + "chip.closable-icon.dark": "S:966f51d890cdd968f5b918b286290a25230bb258,", + "chip.closable-icon.light": "S:e1ef7292f8d842723e676b410b6caa8e2f72d3e5,", + "chip.font.clear.dark": "S:15c8dec8c6ed28f2220ff956749fb85c69c72b0f,", + "chip.font.clear.light": "S:23b5c80c364b21e018893e650af6ada9df57e6f2,", + "chip.font.lg": "S:db9940a23e1b68f667b40e7b8fd55dc9d44b9737,", + "chip.font.md": "S:cb315dcf8ea56401fb626a479ab2d8241bf4d0ea,", + "chip.font.sm": "S:a92723bec0af65fd52d973a1c8d7389b7242480a,", + "chip.font.solid.blue.dark": "S:cb6f82d126e5b5a2b2951b067dd6f8585b873256,", + "chip.font.solid.blue.light": "S:be9ce573f40543fdaee5c88f55e52d0b05c2e594,", + "chip.font.solid.green.dark": "S:8874e8bb5c2ad17190ab609feb5f3ad9015d7f7e,", + "chip.font.solid.green.light": "S:2896c4ad3f1a3db17199a665a28b12e392c6d4fd,", + "chip.font.solid.grey.dark": "S:2b1bd44d5ef376e280a2a14d0213bb9e5910a803,", + "chip.font.solid.grey.light": "S:089d42e8acd366d967d4ac4ae47983baad2e125d,", + "chip.font.solid.red.dark": "S:bcfea4563ac97aad0e83b6b2fa203a7e44915e91,", + "chip.font.solid.red.light": "S:15ff735178675dce4840ef57ea737d3e9077d085,", + "chip.font.solid.yellow.dark": "S:c16fa6a8b36161696f7f8e9a50f870c37a814257,", + "chip.font.solid.yellow.light": "S:1902141af51682e156b347333853a2c7beaa9551,", + "chip.icon.clear.dark": "S:d4b52c4503fcaf0d206e8c8c1c8cbfffd4d1c765,", + "chip.icon.clear.light": "S:e5a4aff314716fa26de1091e364273359562e125,", + "chip.icon.solid.blue.dark": "S:52c016ae3fa712ebe38b3db8db07895e12c79f2d,", + "chip.icon.solid.blue.light": "S:a59b139bec119e77732ee1db18c31f23145f6278,", + "chip.icon.solid.green.dark": "S:f956a0c76450413230e9bdf9a9b811e07e1074ac,", + "chip.icon.solid.green.light": "S:bcafc7d0258b84aa269e8464c1d89fbc651b69b5,", + "chip.icon.solid.grey.dark": "S:200c4cee4164caff9e2b7e29f46db84ea23c4c7f,", + "chip.icon.solid.grey.light": "S:cd3fbb1dbf0e48a144196fc6412f42a62c3ee079,", + "chip.icon.solid.red.dark": "S:6c4aba03d6e900f8f87ac0a5b12f28b73383d3ca,", + "chip.icon.solid.red.light": "S:14cec655c3e9a080bf7356af6d6cf8b33f8378a4,", + "chip.icon.solid.yellow.dark": "S:8aec11199283f981fd6eeb35db6351d2222f294d,", + "chip.icon.solid.yellow.light": "S:ecd48707e86f6e9b179500af57bf529a989cd290,", + "color-picker.background.default.dark": "S:9fa507cbb2b5ca60e62d96498750ccf870f0e61d,", + "color-picker.background.default.light": "S:e610197bc335fb54ecc32838a1b1a9675c93a818,", + "color-picker.border.dark": "S:e97b29a5442e90985b256777328d9d22587d485d,", + "color-picker.border.light": "S:b4996a289ddf5531787298ecad2260d957240060,", + "color-picker.font.label.dark": "S:9a8df05a7e1b117e2fdb175494ab2e1fbc25500e,", + "color-picker.font.label.light": "S:cf747f38b08b24a13f9a45e9feb079e4f7152d4f,", + "color-picker.icon.dark": "S:107edc71346aa6c153eab212ccc60a7da3b25907,", + "color-picker.icon.light": "S:ac44aec16c47b26df52a36f064f15d784a27f1e6,", + "combobox-item.border.dark": "S:da14b402600ca288dba93d9e92455d0e0dca5156,", + "combobox-item.border.light": "S:84bcec706c9c9c6fe48e927fa40c6c69265be865,", + "combobox-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "combobox-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", + "combobox-item.font.default.light": "S:d20266087260aa150339b55eb2d196dc642564e1,", + "combobox-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", + "combobox-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", + "combobox-item.font.group-label.lg": "S:8473e535cb4b48c81763861bc5f7cf39cfdbf0cc,", + "combobox-item.font.group-label.md": "S:dcc86485ff3b666aa63f6ee85643190b6f8fa3cc,", + "combobox-item.font.group-label.sm": "S:dffdf12b2e2a5398ea9615f8ee13ac3029fd930a,", + "combobox-item.font.group-title.dark": "S:d721d4da4208f405d7774d69f3ef379fbdeaf077,", + "combobox-item.font.group-title.light": "S:5869dee2be50ced9d9fc4b0fd2d5c6dd7a36ba64,", + "combobox-item.font.selected.dark": "S:64782e04809b95fde3e6131292f746f8f827aa0e,", + "combobox-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", + "combobox-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", + "combobox-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", + "combobox-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", + "combobox-item.icon.default.dark": "S:37875427ed77afd30c73d2b3b52e3f56706de491,", + "combobox-item.icon.default.light": "S:8398ad4e1cc848fc0982c5cbb4a22d73c7ee6402,", + "combobox-item.icon.default.selected.dark": "S:1c4b8f079f170df30bd14c49c124883613e9a657,", + "combobox-item.icon.default.selected.light": "S:e1b6bef34a32d7430ec15d4c9f060ce9ab5b5e0a,", + "combobox-item.icon.select.dark": "S:79311e16a6077fd64fa1d3ce7ab49ce2e1592fe3,", + "combobox-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", + "combobox.background.default.dark": "S:0107cb7c579267c767e5037a7326abcb07ba98fd,", + "combobox.background.default.light": "S:b7482b10241c1165bdc21b310f9cecae23ef1c96,", + "combobox.background.item-container.dark": "S:0263518d9bf62b758bbf07c5450f9ab53d94e7d5,", + "combobox.background.item-container.light": "S:a0c393591ad7ac37b2e2311eb188c2595d868708,", + "combobox.backgrounddefault.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "combobox.border.dark": "S:cf7630a5be395a877c06ac6ae453bba93b903232,", + "combobox.border.light": "S:ccf156bbce65015d36056b9c3916cc1a3869b59f,", + "combobox.font.dark": "S:8e28b7afa850a42d5404aa42f6db1d60ee6160a1,", + "combobox.font.lg": "S:5fb0f3fb9ef3ee32a37678951f8462dacf829fbe,", + "combobox.font.light": "S:409e21ac8f9ef12330f8469ba28e9349967df44d,", + "combobox.font.md": "S:0d50e144b8fd010c95588c55d8dc00e6a3484bc0,", + "combobox.font.placeholder.lg": "S:7bdee616745bbae469e6fa636fca28c9870ad4d7,", + "combobox.font.placeholder.md": "S:cc361ae0ca454423a5cf984b9d602b6baae7bd9d,", + "combobox.font.placeholder.sm": "S:b6ed6f5a3f6604f1c9a00add3537c712b124fed6,", + "combobox.font.placholder.dark": "S:1400c6c07108c127fbd3f7d29b0c7f062f359c56,", + "combobox.font.placholder.light": "S:3d1d3f4e2f3964d2376ab9a9286f562420e990c4,", + "combobox.font.sm": "S:95cd5a839c7442745f1b40e52009cf21d9f2e7b5,", + "combobox.font.value.dark": "S:9959df201873adc552cadefa4f14dc4c379871a6,", + "combobox.font.value.lg": "S:2c2e51e5ec5318c364250fcfa223481225d2a749,", + "combobox.font.value.light": "S:23909c9b4b92ecb74f2de9f29285336753c66a7b,", + "combobox.font.value.md": "S:6caf430de21a8bb3993413cdd9f3b6ddbfaed3fa,", + "combobox.font.value.sm": "S:9d7007fb89ca8cb7ccffeb06c5ccc9c482b2e1bc,", + "combobox.foreground.dark": "S:8609f9dc3a69fb3bf4ca8b079cfadf022c38e493,", + "combobox.foreground.light": "S:4d7b293a0e6a0825128930b823f9dc722ba281fc,", + "combobox.icon.dark": "S:85cabcd3a9efeafd9b59b66d439b67d1cae26b3f,", + "combobox.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "combobox.icon.default.light": "S:e35877ecbe62a3956f883ad2ca46d35ba3375a93,", + "combobox.icon.dropdown.dark": "S:5b402c3e315cd944b5d8d13237b428f765a2ca29,", + "combobox.icon.dropdown.light": "S:c284aa4702b80e7e21b2e1372a3c0104d1bab526,", + "combobox.icon.light": "S:ad0947a9e6eb3bd585fc0111c2cea1a738efb57d,", + "combobox.item-container.shadow": "S:d2fef376e4a99dc52afc9d22fbd66488fa91c3cf,", + "core.box-shadow.0": "S:2f36a2e168313551b9ef9f2c81ede0fbb674ad1e,", + "core.box-shadow.1": "S:e2ecb9585b8604b248834fbfa13100e9a766ce88,", + "core.box-shadow.2": "S:7e991a267e531b8d8ff2bf99027061ee2e1b67c9,", + "core.box-shadow.none": "S:1433e1ff066c3ca0b856bfe819e330703f8660dc,", + "core.color.neutral.blk-000": "S:bbf8c0a24f3ea893f049c1ca4368a3ff48c03156,", + "core.color.neutral.blk-005": "S:e7f16ec995bcaa4e0818225dcea95f0eab7161a8,", + "core.color.neutral.blk-010": "S:b34f881c5433382f190451e8446832b776b6cc74,", + "core.color.neutral.blk-020": "S:bf957dc80e11cfa027312fdf72a0ca9720e33a22,", + "core.color.neutral.blk-030": "S:f7552ec831c96ee568c3949b837acbaca2a25fe8,", + "core.color.neutral.blk-040": "S:62ea8b20a374d3dd835000e0cfae44bd59d8433a,", + "core.color.neutral.blk-050": "S:48cda98a7c81dd36321fd9f70bf283f26e14f48d,", + "core.color.neutral.blk-060": "S:955edc299b68c5f6614da3418eabc8d68b448178,", + "core.color.neutral.blk-070": "S:6ca415082b6a1a0d905a96a91998e031f441acb1,", + "core.color.neutral.blk-080": "S:8c0af92d482cb602ba0bbaf3924675a9e89e6c0c,", + "core.color.neutral.blk-090": "S:80df0007833ec11c35e7ce9a99037abee47a1163,", + "core.color.neutral.blk-100": "S:f9c97bee5ffc3fa465aeeb04f09da631d4f58afa,", + "core.color.neutral.blk-110": "S:011547d4c0f308605f0b35fc85a556fdff2a829b,", + "core.color.neutral.blk-120": "S:5c195afa6e5fa47af5561ca47f3715c18aa9f92e,", + "core.color.neutral.blk-130": "S:b05c9e7b9ceb34e6e5c8ab276ab6244c23eca1c6,", + "core.color.neutral.blk-140": "S:5f1db093f3a29e57cfbe25b1892c136d79e54298,", + "core.color.neutral.blk-150": "S:4a9505f3ce3455e6f5f1dd670c3c0d0b2b93e861,", + "core.color.neutral.blk-160": "S:c010d40504871efd664006932c525f820abd3a3c,", + "core.color.neutral.blk-170": "S:f57b0cf8c88b57ceeb8076c482e957ede7d39f72,", + "core.color.neutral.blk-180": "S:f67e78e0f441663d1c714d0f6ec216716b622297,", + "core.color.neutral.blk-190": "S:052fdf5549024b202436e6e6a2b295d13354ee3d,", + "core.color.neutral.blk-200": "S:1bd3b96cc4015e2a32b8569fb2fc878785daa4a8,", + "core.color.neutral.blk-210": "S:37120213aa6d28b2757d5fec4194fa4d7c9775cf,", + "core.color.neutral.blk-220": "S:f4ec6b9e3ecfd0ee73dab2c40c2ba319d349cc82,", + "core.color.neutral.blk-230": "S:8359afdfa1782e7ea509d31b4d58a63a1c5faac9,", + "core.color.neutral.blk-235": "S:5dd1d3fcfecdb0d5b744e5b569c70bbd5f26e0f2,", + "core.color.neutral.blk-240": "S:29e431b58a6780454b03c0179f5efc978674897a,", + "core.color.palette.dark.blue.d-bb-410": "S:49ceb271211f515e237847964e64022204df69e9,", + "core.color.palette.dark.blue.d-bb-420": "S:f4800811629140a90e539b42367c34cbd9fda42b,", + "core.color.palette.dark.blue.d-bb-430": "S:a6b09dbd35ac84c3f3cabcfbd3629a0002b80abc,", + "core.color.palette.dark.green.d-gg-410": "S:48bbacaec3927fd2f18428df8caaab966c6df321,", + "core.color.palette.dark.green.d-gg-420": "S:615f7d67eec8a31196b4b2173961d51a7896cd30,", + "core.color.palette.dark.green.d-gg-430": "S:85802de77a7d870d5673d0b08dccbe854ddb4f2c,", + "core.color.palette.dark.red.d-rr-410": "S:26455401b590822dcd158b3a0f5da10231b25718,", + "core.color.palette.dark.red.d-rr-420": "S:be27cb1746fa4d2b14eec2f755bcad316e9b27f8,", + "core.color.palette.dark.red.d-rr-430": "S:7dbf970764c6f1cebc7b2db3221f3b8e2a1d3d8f,", + "core.color.palette.dark.yellow.d-yy-410": "S:f9875c101d9e656871d22d2ddf14660d5d90da8a,", + "core.color.palette.dark.yellow.d-yy-420": "S:09f996603c48c12aa372be9f643b20f1dd37bde4,", + "core.color.palette.dark.yellow.d-yy-430": "S:6d8327cfb48a1d936554392a24be0175ce706682,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:d87d60c8b774170902cc8dc4effc3234187c8cb0,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:7f32c18657e7a5c9c31be76b78c35087f56db595,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:6ff0642ffb5537565e52204f263c79e1af7e7a37,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:6d0b1dfbcb07514d815d2a00cbff6427c7a302a7,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:e8b3676199cf2d3431eb120ac7789afb8be43802,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:cac65d96207ec1ad03259f1d3c2caef10cf56e5b,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:80899bd7af8dcd78544f6e026c67d650525794a0,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:c933421e278321b8b1b7af546576629ea500d2b2,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:2dcffbe514547538748da34d43bccd37ecabf402,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:d4ba826a0ef03188da059248bc5c07f04fd20f52,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:9f3f40b240539d171022eca0f05ac6c1f88020f4,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:29aff022d81dc12d00f01352c879abaf689ddcdd,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:5a3e400aaa6aa39271d41f06be0af93f4e271bf6,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:275793b2e129aecc62355ffa3c33a5695cbace72,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:e995b82ff1e5f652b39c46f6702a72bb951a9ad9,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:6259aaef1e469b66c2b63d0e4991ad62a9af99b7,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:6f0950948a3f82a4e32ce5ed0a11396b5a4581f4,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:f81ef99669fbf1136e69ac3920f1adb4e5fa96c7,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:14de7e623e4a8954d1887a171f5695ada29a89b6,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:1938a4232fe92f1d074fbddb309b9759b3d58ea1,", + "core.color.palette.high-saturation.green.h-gg-010": "S:f0a488fdd9ccd99f2dc29b10f517befe51b2e059,", + "core.color.palette.high-saturation.green.h-gg-020": "S:bba14af8519087da12ae64a49f430cd127bab3a4,", + "core.color.palette.high-saturation.green.h-gg-030": "S:ce710d40b0f8e21ccd8e887fa209324076d305e5,", + "core.color.palette.high-saturation.green.h-gg-040": "S:63ddbe2eb4930cccb7f7aa9751590019b2ce3a9c,", + "core.color.palette.high-saturation.green.h-gg-050": "S:9c7a96079b4892df8bcc3d4644caf0701c137599,", + "core.color.palette.high-saturation.green.h-gg-060": "S:87fdcc98cd928d83e81390edba12e868bbf181f7,", + "core.color.palette.high-saturation.green.h-gg-070": "S:d728859ccffa615d2db1680e4086b2d90a7ab244,", + "core.color.palette.high-saturation.green.h-gg-080": "S:5e046f79aea5d867a166d1eddab089abc3ad8716,", + "core.color.palette.high-saturation.green.h-gg-090": "S:bfba81a35f0cde8f7722ffd3313328ce5d589129,", + "core.color.palette.high-saturation.green.h-gg-100": "S:24b13e192635f24ce198be694a42dd3b2e1fc022,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:4acfe2b4bd11b1ddd29c8f01ca5b07355c2f5ee2,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:d5e927a6957ef84fe62f014ae7e02e0622861372,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:f1e348df5ef9d5eb6a6b460a1c82dbac83a60023,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:c8b239506a2d399935d34c8efc3a83404630c584,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:b6d13168137dd8c2870cbd1ad038772729e0d71f,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:d187aaf98572803a93e06d1ead5aa1408b8d2e63,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:31f2743e57f5fe99a8ba43674fc28ebee40b3e71,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:db1689517c99d5045cdfbe8211357f8ae263dcc2,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:80184517175747cbced9e1919783d82f6e151f69,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:dc891165e9058d865c20caadf1519b54a7843c7d,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:8cc64b78bbebd4ff2a44585fb8d99172dbd06925,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:c5063a92330ad94a44951b15e6df877739b6c4bb,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:c84ba3b8f528a48e731f3b8a150803e1d57ded41,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:3db6bcecc17bee76b3a9b319316847f1dae89e82,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:705049a55dfaf872418c54687d422abf1e8ab0dc,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:bf309932f3d23ae7305476030b22b32a264c54dc,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:4f58d920aab179b61712a1d2e21ac46cd5dc7089,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:9f6a62365ca17bc6e353b0f404cded7bd9b2ed1f,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:531a404e503f5df0a47b164d9ce31e40abc4b828,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:d37e5b00cc151be7e0c0e2fcc5db33763eb4c309,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:4646e79c216e05e128a2237f275c551f1592e20d,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:9acaec3cecad7fcfd436a376952417bf57b44343,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:4a78ed8b4b206c6f425f90ff93f5f4cc5dfd2b3b,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:b729048ce74b6b60ae5d698d967f190d06e85686,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:26e848696fdc4c821a5773ee223df3d28baea2de,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:a5108e0633cacbbcc2f449b340b4e868f360a365,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:e5f8fc42aa28c00e3f1dc736f63c1a460c7c7431,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:b263cb80bf946e83c5a66561ce953774e896fa2f,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:9bab7038bb87a9ef2811270cd3d6419625eaec5e,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:8b6b221f26c836cb5b96a4028ede285f98eaac64,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:370386ee925069fb384a55c7b1930e56e65da6eb,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:546385484ac71d28f2326358cb6e6e4e200837ff,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:a7e0632dfa8ab2edacd487c7647558677a1fb5ea,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:10b96160c36a4e7678a067f7a018dc36a0ff6b5d,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:385f1d947ca39f7ba0281e59a311da76f6f14cc9,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:a44202482564de4c47dc07a3acdf97b140a2f43a,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:ac0b340ddc02dbd713138bf2134f777dd8dcfc9b,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:b039a29e265e23a1919c7d0bb9ff2955a269833a,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:7128dc64f172693b63cab4f41c277690dbd7bf90,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:987fc9d594e56ff0a930207c2ecdc6620a130680,", + "core.color.palette.high-saturation.red.h-rr-010": "S:f5cfe7f6e1d08ecb413aa5ee0baa37acb069b87f,", + "core.color.palette.high-saturation.red.h-rr-020": "S:3c428c505314d99fd4f5a63f9acccdefe52f3e07,", + "core.color.palette.high-saturation.red.h-rr-030": "S:e30262a3781029bbb68fc4d31355ba2801448abc,", + "core.color.palette.high-saturation.red.h-rr-040": "S:7dc83578c4e964ac80e77d7640fe1ce0093e4990,", + "core.color.palette.high-saturation.red.h-rr-050": "S:9592f60e8aa164e92d96f7cd1e9b53674d2b9860,", + "core.color.palette.high-saturation.red.h-rr-060": "S:dc69e9f38024f0d1cecf17062d15a9882102393f,", + "core.color.palette.high-saturation.red.h-rr-070": "S:08021a1c58b7491724bf4df86ac3fc9efd7d4393,", + "core.color.palette.high-saturation.red.h-rr-080": "S:778ed43da0abbf32e8ae60228faab0d77bc06e01,", + "core.color.palette.high-saturation.red.h-rr-090": "S:cdbf47bd41db0e9fdd237583f9abd382652f58ce,", + "core.color.palette.high-saturation.red.h-rr-100": "S:052b04035072cd02736f186636799741a1c289cc,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:cef323e6b463c234a9ec13c3e19dc48e0581c93f,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:788072ea26e32194645cb6846cfafdbd867763ca,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:f1d86cae27c258899f32a945134676d500ee1182,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:615f4da3a8b25fb05d1b5c928f1f5c470a5099d6,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:a44298006bb4cbf66ca695193fa0b0e5c36f4df7,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:47455a1136c0a0c662a637c36fa69ec257546da8,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:05d98e9a91f24aeafa92b5efae2b62a8cbd65ca6,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:7ede9aa782d3631a33f28d495a312799c6da164c,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:7e96da3665b67b98f1884df16839e67ffce97e33,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:ac57f35949d2eb49d6e644426178ecfcfb0018fb,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:c68c847018b7dca4c09a29f28e2600c1a7255678,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:178f99ce4ac834fc87a7b92c0b25b1afbac9986c,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:f1060a79d9cc2bb93a44b9f736b67d961019548f,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:1283900edd73a3ac476764860687122abbfce76a,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:7b0640d27ec5a3a194798cfff17ff1715876ffe5,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:3030e7a66c15b61b658cda2a2b1ea3d543c213bf,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:9d0467304efd784ee1627e9e210941e16f3ac408,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:1b7c78b3def6613396af5b30b17bff495febba89,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:fd2b8c62c261ca0809e6f3fe003ba221d05a0dc3,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:2b464f9687938ec90cbed6b2c0375b4106ffb438,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:c6816eac01febb9c72d571f828795b171c0a5514,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:bbe3c07a3143ba5f62ac3bed8234bcc51d559b3c,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:8670afd8db9a3c98cd5b85339a3b43a3cc3c4554,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:a7ef51c8c750ab90840ee08628e35a77fa8230fe,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:91b487d04812a372101d1024a13167921344c7a3,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:22e096ab7f6f59acefa3020750914673f5deefc7,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:a1cd6109d424bf31108e461fda2caac5b34a483b,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:15191832d1a74667a33ff0f4af0bb51a2bc0fc0a,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:a347f230144cc3d43d364e8b7cd9ec1925a843c4,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:19471c03df60bbcfea037f62e2248b4f3f76c53f,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:635dc1012f61130c3f1e48a77d32f973256c2af8,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:d891c517b76245a8defbfb41579f2ac2f84fe75b,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:11b3085495cc96cbb1c9039456ae6c24793ec1a2,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:860809c3df71f491479aed579193ec17fc198813,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:12f26b7eb4524ffa4ec0f1763d86e0fc1c24f853,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:2290eb4dcbc93436a44bd4d62cb1abc93b376283,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:3595ce65621af4169fd14ce75d43d14247078373,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:2dc2f52bbf016e19f979f0c842e6e555a4cebbab,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:0b4d2f34dd68673be68da8bb8a4814e5e44f1d02,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:ab7bac855e6f65d4048d68420272620cbb1ebc47,", + "core.color.palette.vibrant.blue.v-bb-120": "S:cddb91e68322c2affa63151d0f18a9753c94f947,", + "core.color.palette.vibrant.blue.v-bb-140": "S:ceee586da8a57cb7a19bf72e0553cba43c871a42,", + "core.color.palette.vibrant.blue.v-bb-160": "S:7ae063c5b4cb39512478bbbd4bd8631a2313c320,", + "core.color.palette.vibrant.blue.v-bb-180": "S:c5a1edcd42784839065b3014e02d832555a73856,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:c9b3445b48773d49dd4aee9f2f8c3df76a2292e6,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:2a3703549be15ba7b34ae64d2479c3c15cb2d731,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:5295e2812fbd7e033745b245123e7336a6cab05a,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:2ca2d9445c6afeee4a1eabc13ac21119a8845856,", + "core.color.palette.vibrant.green.v-gg-120": "S:f178afa3ecb97d045b21a1bf4e86c8233003c2b8,", + "core.color.palette.vibrant.green.v-gg-140": "S:c8ca4672fa5af991e7f391a36d75b62ca304b1e1,", + "core.color.palette.vibrant.green.v-gg-160": "S:44f64ee711145486b088cdb4d5c77ffb8ba097a0,", + "core.color.palette.vibrant.green.v-gg-180": "S:783c60a138d341e6939558cabf69800e4bad1ab8,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:b10e61798b411381388e98690c2010ad06c286e2,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:5797db03506a9e9032f2d6a153f6c45affb06f96,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:593e4faeb753ba463042b2477a971c35dfed394c,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:3c247a0aa4e60105b7cab4678d11cacbb351c46d,", + "core.color.palette.vibrant.pink.v-pk-120": "S:8993b6d46d8f2dc532be614b4466168378740eb9,", + "core.color.palette.vibrant.pink.v-pk-140": "S:945de59fb4dc377a80122f05a849d6ef7d5f9718,", + "core.color.palette.vibrant.pink.v-pk-160": "S:b381f708747b5a0811a033e049995ef2413bf6e4,", + "core.color.palette.vibrant.pink.v-pk-180": "S:3bad9d66c7a451471a5961e1af5669a77be6f9e4,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:6ed8f6e58de08ff477f963e19572b5e5ac690d83,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:0d4afc4ca3b6da0a441cca709389d665d20b2274,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:41340d12b8251805e93daf48742241d5a22d4f6f,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:1292d6e9fe10e782baf7a8cecf39cbfbbb1e6d60,", + "core.color.palette.vibrant.red.v-rr-120": "S:ad7e91f19928a9281b58927ea74362ff37e816d4,", + "core.color.palette.vibrant.red.v-rr-140": "S:2ee9134957077ed1f763e18eefef99e9cad5990b,", + "core.color.palette.vibrant.red.v-rr-160": "S:c16b720d3111fa86b6845b7467dff33e4defd352,", + "core.color.palette.vibrant.red.v-rr-180": "S:e5ac5ec10a89f903a73239c304b5a8121d962680,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:381eb4b2ac7136bc3f5c769e47741e41ab93cabd,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:61df83cf7ce3d5de8d66ddb2d68e50bfa36a6af6,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:7c4d26c1178dbfa676d6856dfc112655b6bc3b78,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:7b73bc84f3130cbd8f69722b822863a5f795ea9c,", + "core.color.palette.vibrant.violet.v-vv-120": "S:9808bac960e05e0acf739cbb931a9f7b39e471eb,", + "core.color.palette.vibrant.violet.v-vv-140": "S:88847ef1e871b6b0001d8b196228402d0bb1cdba,", + "core.color.palette.vibrant.violet.v-vv-160": "S:9a598cbbb2147566fcadb72a2535de61c216fa15,", + "core.color.palette.vibrant.violet.v-vv-180": "S:6da8e1ae1ba7f046c5430c5d2e313469d24a2479,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:21a1080902d1414096e0f860c61a3536cdd3b58e,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:ee29da778909f5e3f28d8a5011bcb45cee7ae179,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:6ed235f3a14d51f64a37a761c0bba076740bb534,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:14860af8d81253e78a0e26caefd8866a269b9ff9,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:9a0a22eb354c350194fa1844c40b4e0fe63fee66,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:b5fe1413771b23adc1084b184342ed5ee6ab5ea8,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:dff1045d4877486b423184983c2d1e13c5d8e997,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:2fc0fae64dcf22b31f79fefff93a1d436429c339,", + "date-picker.background.date.active.dark": "S:f0399643acd70e2d8b198fb128444654720b56b8,", + "date-picker.background.date.active.light": "S:2326d39b6bf8f903645d3b39e023bd47c9dc7953,", + "date-picker.background.date.range.dark": "S:b88103141b3a2f0411e85283dbd2abc3d8759b6c,", + "date-picker.background.date.range.light": "S:1a9f37020a91f68e8131c4ef776be3719762cc2b,", + "date-picker.background.default.dark": "S:5f60b5b764e6c68c331d2a74761294f8172c0234,", + "date-picker.background.default.light": "S:4ce91480070af707a207681dbc12785e14b38f14,", + "date-picker.border.dark": "S:0a28abd0f319358da571917c10f7a77699c93be8,", + "date-picker.border.light": "S:afa125529c104b0dd3c8d33f7c22c0728576a198,", + "date-picker.date.active.border.dark": "S:50bb2bb0440fbd8742644af8bd6c067880d0a564,", + "date-picker.date.active.border.light": "S:2c3307ce118e6c4ed7b81c2a8028565dcb1ae2ba,", + "date-picker.font.active.date.dark": "S:c7ba03584ec32041241edb3d26741132643a7ed5,", + "date-picker.font.active.date.light": "S:2048d74757de40f6684e56cda716cdab1d4bb511,", + "date-picker.font.date.dark": "S:059c81ebbde2ab4065f51ffedda55b91c1c57013,", + "date-picker.font.date.lg": "S:fe3b98fe9dc4e9e05b1195eae4d27ffcadc95ff3,", + "date-picker.font.date.light": "S:49a02c3c95cf7163dad6658028342bf91c943186,", + "date-picker.font.date.md": "S:e65dfc23888ef846846839b428e0b59e1ccaebca,", + "date-picker.font.date.sm": "S:2a27aab2c0685d27a26aefc06f3fa200f0486918,", + "date-picker.font.day.dark": "S:ec526fd0c0f911a8980276e2caf5c7648c3e4720,", + "date-picker.font.day.lg": "S:2acac296f085a0c17178453f933a8b6b769f9d5f,", + "date-picker.font.day.light": "S:4f1e42fb422cb3bc2259e51e34827b476ede5011,", + "date-picker.font.day.md": "S:545c4773fa5ba3d25d4b732f2868b37c2b2c859d,", + "date-picker.font.day.sm": "S:412350d8c5e983abca4e8d2ad11391e66d11a435,", + "date-picker.font.month.dark": "S:51f60775146646ea519932f10c29c6bed689cfd7,", + "date-picker.font.month.lg": "S:b1e4806aeb45b8079774444a34a3b21f8a90f434,", + "date-picker.font.month.light": "S:9d5dfecba77647a1d1b70b6c0503170a67858f14,", + "date-picker.font.month.md": "S:9f48c90b982a838a6a300c4699af80c0ebbc8fed,", + "date-picker.font.month.sm": "S:f98faf4b74a05d485d0a41f60a27a731b019298e,", + "date-picker.font.range.date.dark": "S:6ec0e6c85823b9cbeb97c67dce9be67173b2a5db,", + "date-picker.font.range.date.light": "S:cad9503c0b78ad989eb0ac24446bea795762aaf5,", + "date-picker.font.selected.date.dark": "S:7fed48aa125ea9ced39a80d106c0f0121466c8cf,", + "date-picker.font.selected.date.light": "S:c4f6befb12d79c6574523080b89fa3f956ce6c93,", + "date-picker.icon.dark": "S:789ede5037464fed863568b25ba7f32bfbbf6cde,", + "date-picker.icon.light": "S:bc6ba41fa55c899bd69497ae2f2cff5e7871c94b,", + "dropdown-item.border.dark": "S:ecb75fa0d3bb6eaf17e532350382fcf9148ba26d,", + "dropdown-item.border.light": "S:752f31fb4c06c46351a870dc0db3a7bca9e3c447,", + "dropdown-item.font.default.dark": "S:d726766424eeff0d37b412411fb9ea85c9884f5a,", + "dropdown-item.font.default.lg": "S:85d395a49258b8ffe7efec2033170c568749c549,", + "dropdown-item.font.default.light": "S:7487e49af7404c75a50c2c36b7e4ce731a7963ab,", + "dropdown-item.font.default.md": "S:3f7ed1ee302a4c4a38afb42676be7baae05d4e7d,", + "dropdown-item.font.default.sm": "S:3cf16e2894ce433a539dec2b2e130402b9f7103d,", + "dropdown-item.font.group-title.dark": "S:a267956d07353307607630535ca43ab81d3fb1c2,", + "dropdown-item.font.group-title.lg": "S:ea158d0c2250c4b88e0e94f90effc989bdccbbeb,", + "dropdown-item.font.group-title.light": "S:fcfe29f82b1d40ea4672b2f4d1471bb3c50cdfa7,", + "dropdown-item.font.group-title.md": "S:eebe0b5b619cfb247dc802fa6cf43a863673a50f,", + "dropdown-item.font.group-title.sm": "S:2b14da93da291d9d4584e0dd557ae3ce84296965,", + "dropdown-item.font.selected.dark": "S:752c7a2b32fd0ac98c61dcbc3ff6a7748229d081,", + "dropdown-item.font.selected.lg": "S:468cf82e07af8e092ce89fa65540a8286cabded7,", + "dropdown-item.font.selected.light": "S:a287498cc3debb0aa2e341d5656e72991f67bba6,", + "dropdown-item.font.selected.md": "S:8b3056f4a6b31dd670d1d1218830751d8921b9d8,", + "dropdown-item.font.selected.sm": "S:44fd16abc36f0819008c338ca4a9e344c3519156,", + "dropdown-item.icon.default.dark": "S:7f60772a46b43f61dc53c29e3b9dbcd048dfd20f,", + "dropdown-item.icon.default.light": "S:b014b4da9501c7c780e7010c9360f7cb2e32a604,", + "dropdown-item.icon.default.selected.dark": "S:26f78c82908025d40f8f266492ebb5a2116dfd17,", + "dropdown-item.icon.default.selected.light": "S:4e1c7c48d4b23f2bbd7a79bd994b2109874c4c7b,", + "dropdown-item.icon.select.dark": "S:617bdb2d49694942f7ff71a44a08db4bd027f64d,", + "dropdown-item.icon.select.light": "S:284aa9205586340f302c5283064fac538dc4a311,", + "dropdown.background.default.dark": "S:3718893f0a7089af845dfac924a5ca00509ff828,", + "dropdown.background.default.light": "S:730608177d9db9e2889348cfe7f36432faf73a7f,", "dropdown.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", "dropdown.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "dropdown.box-shadow.lg": "S:c6e2ebc9d3111bc965b8b5372f0da13f11878376,", + "dropdown.box-shadow.md": "S:f031986a20a40313f94fbd7e9ad75c801ce84717,", + "dropdown.box-shadow.sm": "S:fabdd17b1322d71bafcb43b2bae4844b9bf75915,", "dropdown.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", "dropdown.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", "dropdown.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", @@ -989,640 +793,713 @@ "dropdown.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "fab.background.brand.dark": "S:f6e2deace9b6dd48b910a426a510fde31cc0db92,", "fab.background.brand.light": "S:9ac99a92c95b9cfe1cdb3e34588b1f11efa19610,", - "fab.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", - "fab.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", - "fab.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", - "fab.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", + "fab.background.brand.outline-fill.dark": "S:a8b55e8780465a653fad96554920f2537c0f20df,", + "fab.background.brand.outline-fill.light": "S:20502214096e70a1125aa61c731325fc9044f253,", + "fab.background.brand.solid.dark": "S:a47a2f23d994b0e67b4ca5abaef62e1c98e62793,", + "fab.background.brand.solid.light": "S:f42c9a543187bfb769b1bbb4c85253ce4cfef85b,", "fab.background.danger.dark": "S:8e1ee57c6f283567fb11d0ff3fe8dd5a75e83e6b,", "fab.background.danger.light": "S:00ac2274658d2870de79c6619dc3e4d72300f87e,", - "fab.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", - "fab.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", - "fab.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", - "fab.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", + "fab.background.danger.outline-fill.dark": "S:cd56f0b73cdffe619338e9339f46cfbb179e0a00,", + "fab.background.danger.outline-fill.light": "S:85df2a1d78f48541068d1d8ba0c6dbe6363480d5,", + "fab.background.danger.solid.dark": "S:f8d663ba03552c71bc9425847c33297b2f2d16b9,", + "fab.background.danger.solid.light": "S:e5048348efd385407d28a0d4beb7dbbdfa4efb63,", "fab.background.inverse.dark": "S:1c77b198189e9321cb9bbd232609708563fee263,", "fab.background.inverse.light": "S:bab00cecb69ae753c9250a25568cf8dfa0a577be,", - "fab.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", - "fab.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", - "fab.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", - "fab.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", + "fab.background.inverse.outline-fill.dark": "S:2190498a1b0a270e79293e9d5a1b565aeaba1c2a,", + "fab.background.inverse.outline-fill.light": "S:d1e8ab1c30d07897f135c6b2fadbfc2df5db2026,", + "fab.background.inverse.solid.dark": "S:3fe43aa609c2236aef5aab67207359d25af6cf8e,", + "fab.background.inverse.solid.light": "S:10c39f7ffe3ae158fd37379e44813d087a17cbbd,", "fab.background.neutral.dark": "S:c1b1717848f0b10f15e25cec75d82d8c78c38275,", "fab.background.neutral.light": "S:71762a3ba06a95fcf1b11b376001d247582842f3,", - "fab.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", - "fab.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", - "fab.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", - "fab.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", + "fab.background.neutral.outline-fill.dark": "S:743ba38aa36b1806b5d6c9280d61b8ff6d1f7da7,", + "fab.background.neutral.outline-fill.light": "S:dab5fd126ff80b605ba95ef7d21c3a755df73c43,", + "fab.background.neutral.solid.dark": "S:77fe99d5012a4f00be699ace012a5f32ea9b8d9f,", + "fab.background.neutral.solid.light": "S:f479aa8e9a38161af4b65eb7ab432a7091933fd2,", "fab.border.brand.dark": "S:ff9ccecf20101a5ec706984a6aef21c387289e1a,", "fab.border.brand.light": "S:0a487125d5f58c91b426b23486b6c0aadf59541a,", - "fab.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", - "fab.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", - "fab.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", - "fab.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", + "fab.border.brand.outline-fill.dark": "S:9c7b64ebea2c91a1ecce6ad37c3d16962387ad08,", + "fab.border.brand.outline-fill.light": "S:29e76a1071d89168fec50e1d6f183950e5a4c858,", + "fab.border.brand.solid.dark": "S:f2debd8f64db280df8f32c3097e4666ac28aebdc,", + "fab.border.brand.solid.light": "S:5b97d654a6a4f182164e83719ce3239893f5bfa0,", "fab.border.danger.dark": "S:05ecd2230432bfac13daa1732bb3d4f9af41b10f,", "fab.border.danger.light": "S:08b70e12351771cbe47f05f9411640bba734f4a4,", - "fab.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", - "fab.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", - "fab.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d,", - "fab.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", + "fab.border.danger.outline-fill.dark": "S:7d4d8f65335546971a675310b8882b4f1d71d3b5,", + "fab.border.danger.outline-fill.light": "S:c6817503b25940913460234f0fefa03871b483e1,", + "fab.border.danger.solid.dark": "S:63cb267a24f15635af68f1e14618a3cdd5db6216,", + "fab.border.danger.solid.light": "S:4d6d38545d6614ab103a1938023c44a8ab32c036,", "fab.border.inverse.dark": "S:7cabf2db07e740256356e1a258f47f93f4de70ad,", "fab.border.inverse.light": "S:bbc6d04a67d5af3d498fd848feeffddcd2aebeb1,", - "fab.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", - "fab.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", - "fab.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", - "fab.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", + "fab.border.inverse.outline-fill.dark": "S:2451a2d3b9afbb6a415ef2c5648c835af91cb7c9,", + "fab.border.inverse.outline-fill.light": "S:69809dbc0333d11c262e91be9bded50a07a45be3,", + "fab.border.inverse.solid.dark": "S:78205bd6e8f13e5652358cb23e1fab31ab783883,", + "fab.border.inverse.solid.light": "S:180bf161e55f148ab97d40b1b2aed841899a85a2,", "fab.border.neutral.dark": "S:1edf76a1774c4e32e9ae091278d4b44c1e500595,", "fab.border.neutral.light": "S:e6886e133cdff23972c5e15246ee37582150a756,", - "fab.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", - "fab.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", - "fab.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", - "fab.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", + "fab.border.neutral.outline-fill.dark": "S:53407965eca537043cf2bfd1bfe51f0dbe9bd44f,", + "fab.border.neutral.outline-fill.light": "S:e57459937e9eb2e931a406e7ecf19bb441dd3361,", + "fab.border.neutral.solid.dark": "S:2191ed80fbcace85c45510e19e770e94f1ca7c0a,", + "fab.border.neutral.solid.light": "S:58ea7162cceea9ee4a46407e9b24f3a645c5304a,", "fab.font.brand.clear.dark": "S:76f49a66542c52b964e3ec9f9a7652e934e7a781,", "fab.font.brand.clear.light": "S:1f3107c5a2f1daf1fcf03e492b2d6993789a3c3f,", - "fab.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", - "fab.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", + "fab.font.brand.outline-fill.dark": "S:b6231171087bee116001edf8e14b206b61537acb,", + "fab.font.brand.outline-fill.light": "S:fac7cfb9746dff486a9069c0df179c0f622eed6e,", "fab.font.brand.outline.dark": "S:1e8852afd9ea094755d09382eded30d2e2bbe130,", "fab.font.brand.outline.light": "S:f0adeadd0e0e0f4a1f3fee86558666b817037268,", - "fab.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", - "fab.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", + "fab.font.brand.solid.dark": "S:68c4032b1e0d7671646bf922045740302e4e1439,", + "fab.font.brand.solid.light": "S:8674e033b71311e2831b1d720315dfcc64a60bd0,", "fab.font.brand.transparent.dark": "S:d4356a1762c850343f02a3c9777f23ebfa4d41f3,", "fab.font.brand.transparent.light": "S:06df2efafe1c1cafe563f76e771347a69d04a7a1,", "fab.font.danger.clear.dark": "S:eda93904fa4476dfa692f041d1ae43558bb8cf8f,", "fab.font.danger.clear.light": "S:432cc47f645578d52058b0a32e71dcceb2c27550,", - "fab.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", - "fab.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", + "fab.font.danger.outline-fill.dark": "S:295907a831d561aa567602c2bb57703b2d9e05d7,", + "fab.font.danger.outline-fill.light": "S:68115036e6fa00f6d7082bfe58105adbc4753108,", "fab.font.danger.outline.dark": "S:c24691323d8d5644e4f839a94279632eef9e3d27,", "fab.font.danger.outline.light": "S:8741a29d39368c4806c94ee4e10696e7d2d7b52f,", - "fab.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", - "fab.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", + "fab.font.danger.solid.dark": "S:81a0ee2604bf316b7b0f03f87fb0e9cd0d1b9e55,", + "fab.font.danger.solid.light": "S:cf9311b2547ac5865f2ec245d720a4357641b1d7,", "fab.font.danger.transparent.dark": "S:5a1cb81061b8ad3b5d15bdadafaa96bd269f5be5,", "fab.font.danger.transparent.light": "S:ae81a8c9ff5a24316bcbd766c7aa4069a960d5f6,", "fab.font.inverse.clear.dark": "S:6b6b568e5b20a35af73db4ea211ed735480fde1a,", "fab.font.inverse.clear.light": "S:4e0126885705a695441471685e9c6fe53df73560,", - "fab.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", - "fab.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", + "fab.font.inverse.outline-fill.dark": "S:8775b9b60c4c592639e690c10931e6f5f01ffd3e,", + "fab.font.inverse.outline-fill.light": "S:e853f0e388e97269a34ecf96277933ce704d8254,", "fab.font.inverse.outline.dark": "S:bd96e308b8742f172fd160a9f16cee7139edef42,", "fab.font.inverse.outline.light": "S:043470cf705695bc573e8be8d0f1ca5cd43f235c,", - "fab.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", - "fab.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", + "fab.font.inverse.solid.dark": "S:cbb3d0161d7a3769fd6e1b662490b5d328cd0146,", + "fab.font.inverse.solid.light": "S:8223a99cc55d3cf1992aecddb530c2ad2156f883,", "fab.font.inverse.transparent.dark": "S:fcff24f62b0f0ba8c776732e6f5470fb0a1dbf69,", "fab.font.inverse.transparent.light": "S:bb5130f5070b15d7cb2aa427df1f2daf170c9ef4,", - "fab.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "fab.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "fab.font.lg": "S:7e8428b7d56469a4e7f5d8b3610cff4d290faf46,", + "fab.font.md": "S:af03de60f76fb91e3be00677e2800c01694b6b98,", "fab.font.neutral.clear.dark": "S:55cccdc027e56fef0edd16c7ac5aa7eb2013db7e,", "fab.font.neutral.clear.light": "S:1e82fef827484f0bf26f77727d1b1613b4c3aba4,", - "fab.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", - "fab.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", + "fab.font.neutral.outline-fill.dark": "S:3a50a23ceea2d5fe9a57d5d0ad3f8b89defb2d93,", + "fab.font.neutral.outline-fill.light": "S:ca38bba758863a834caab8987e0e2a915591cea2,", "fab.font.neutral.outline.dark": "S:c5d513baa7dd50fa7187946b6439f13a0c20b1ab,", "fab.font.neutral.outline.light": "S:4e2bfb0fb3cf8178c5f92b14ed9e07a9c081b8d1,", - "fab.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", - "fab.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", + "fab.font.neutral.solid.dark": "S:6168b713bc34beea1692aae11205600d206e8227,", + "fab.font.neutral.solid.light": "S:51ea8688e02fdfdcedb7bb1b3a22da1581f9f68a,", "fab.font.neutral.transparent.dark": "S:a8c25d727dd4b2107098c344a191fda0f0d5cacc,", "fab.font.neutral.transparent.light": "S:65f4164ddf1746ca302a6893fa48b90d95fabf26,", - "fab.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "fab.font.sm": "S:bef486d2e4773cac9dbb08cb0d9c9254a09d6d3f,", "fab.icon.brand.clear.dark": "S:0209e34abf08a3748f1c017de6ca04407d1f24ec,", "fab.icon.brand.clear.light": "S:7b41c424d6d43439158e852afca3ecc4879c68c3,", - "fab.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", - "fab.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", + "fab.icon.brand.outline-fill.dark": "S:27e39aaa5072965366dea43a657f30b6b18271b0,", + "fab.icon.brand.outline-fill.light": "S:7b9205e897200e3fac7dcda7d55e7264f66a5950,", "fab.icon.brand.outline.dark": "S:943336f4351cd0578403d1ac7a4d2eb049e58038,", "fab.icon.brand.outline.light": "S:9725df33208dd26ef970c6ec407e9549ae3e27b5,", - "fab.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", - "fab.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", + "fab.icon.brand.solid.dark": "S:bb83a945accb5bbe8889243b07d07a609c093709,", + "fab.icon.brand.solid.light": "S:92b0590929b42bec1507bfb03308089857518ad5,", "fab.icon.brand.transparent.dark": "S:f6962099346882882e98104ff08ebe0ba1374f08,", "fab.icon.brand.transparent.light": "S:0d69f2196d70b057296fb229c7d31607298fdfd0,", "fab.icon.danger.clear.dark": "S:83f59a42749045bc176c76eff33bae3d78d57760,", "fab.icon.danger.clear.light": "S:c24a2b5bfa9655777cc888f9706e28ff9b424ac6,", - "fab.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", - "fab.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", + "fab.icon.danger.outline-fill.dark": "S:6fc2d4b261aba322605ef7e274ffaeb9653ccdbe,", + "fab.icon.danger.outline-fill.light": "S:a86a120653ceea7d84ce0ce52ee9de61d0625a1e,", "fab.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", "fab.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", - "fab.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", - "fab.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", + "fab.icon.danger.solid.dark": "S:bd006f82d8d75366c1e16b9b584f1c1496144fc7,", + "fab.icon.danger.solid.light": "S:18200b4b495be7f6790fa69282100cbc5a006d33,", "fab.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", "fab.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", "fab.icon.inverse.clear.dark": "S:8f4d3756bcfa4276a98d6b5a61e8d3f97a12eeca,", "fab.icon.inverse.clear.light": "S:91c1f1ef69bd21f34f9c72b24233b868e5ffa432,", - "fab.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", - "fab.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", + "fab.icon.inverse.outline-fill.dark": "S:6a568ea85aaee4fff8a6faa7f1882cea95cc6dd3,", + "fab.icon.inverse.outline-fill.light": "S:aa775896c8006aa684f5562d81c7696edef93b7e,", "fab.icon.inverse.outline.dark": "S:6b26325108a1a6da51a0c561034d54eb68f02e6f,", "fab.icon.inverse.outline.light": "S:21803c6456f48209cbde4a98b58f1d2f69bdae6c,", - "fab.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", - "fab.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", + "fab.icon.inverse.solid.dark": "S:33b95fcb269c5acb3ea41d25f02e429da01b0cce,", + "fab.icon.inverse.solid.light": "S:ea497d474469d403f7d4b6d1ecb6d8fc9233bef4,", "fab.icon.inverse.transparent.dark": "S:02b13cc89af23516f4ee3f12ab93fb3121ae984d,", "fab.icon.inverse.transparent.light": "S:1293e84a59bcf4653f65d196ad8f646cc22120c4,", "fab.icon.neutral.clear.dark": "S:f4965e149db9d7921bcb72c1962d64e7d6c83350,", "fab.icon.neutral.clear.light": "S:181c0465edf07b98f6cf4324052bbdef3266f9b8,", - "fab.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", - "fab.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", + "fab.icon.neutral.outline-fill.dark": "S:6ce51e34d3c637a7cebaff0673739a3a415edb34,", + "fab.icon.neutral.outline-fill.light": "S:0fcee5ef3dcf3697a148806164096a31a0eaca2d,", "fab.icon.neutral.outline.dark": "S:9eb2b2d7d7e57478b5b0d705029a38f2a99814dd,", "fab.icon.neutral.outline.light": "S:d08cebd573da8fefff690d3fe3e89f6d22ace3ff,", - "fab.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", - "fab.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", + "fab.icon.neutral.solid.dark": "S:d6c09b8fd1f61029599e1ce777caf7c24a07e9c2,", + "fab.icon.neutral.solid.light": "S:6c8fa33a50a976af34b329a7cc611ff419ae559d,", "fab.icon.neutral.transparent.dark": "S:350afeb494cb53e50dd315e8dcc0328877d7932e,", "fab.icon.neutral.transparent.light": "S:a9ee00a0ff35a5f8588c4b53addbae5de8575b62,", - "filter.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "filter.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "filter.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "filter.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "filter.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "filter.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "filter.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "filter.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "filter.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "filter.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "filter.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-date-picker.background.arrow.dark": "S:d0eb9c0117c69137d5ce76e05b7ac929335e7bc9,", - "input-date-picker.background.arrow.light": "S:1c8e76ed08d85a1f5f4b21e363c5bf31b5f41910,", - "input-date-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-date-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-date-picker.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-date-picker.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-date-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "input-date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "input-date-picker.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-date-picker.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-date-picker.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-date-picker.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-date-picker.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-date-picker.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-date-picker.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-date-picker.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-date-picker.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-date-picker.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-date-picker.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-date-picker.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-date-picker.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-datetime-local.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-datetime-local.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-datetime-local.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-datetime-local.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-datetime-local.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-datetime-local.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-datetime-local.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-datetime-local.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-datetime-local.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-datetime-local.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-datetime-local.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-datetime-local.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-datetime-local.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-datetime-local.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-datetime-local.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-datetime-local.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-datetime-local.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-datetime-local.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-datetime-local.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-datetime-local.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-datetime-local.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-datetime-local.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-datetime-local.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-datetime-local.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-datetime-local.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-datetime-local.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-datetime-local.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-email.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-email.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-email.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-email.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-email.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-email.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-email.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-email.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-email.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-email.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-email.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-email.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-email.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-email.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-email.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-email.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-email.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-email.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-email.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-email.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-email.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-email.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-email.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-email.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-email.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-email.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-email.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-email.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-email.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-email.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-file.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-file.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-file.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-file.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-file.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-file.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-file.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-file.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-file.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-file.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-file.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-file.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-file.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-file.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-file.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-file.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-file.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-file.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-file.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-file.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-file.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-file.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-file.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-file.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-file.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-file.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-file.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-file.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-file.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-file.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-message.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "input-message.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "input-message.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "input-message.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "input-message.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "input-message.icon.idle.dark": "S:37f89d2bdd848ec033c26905f5cf5dcd8fd5c642,", - "input-message.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", - "input-message.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", - "input-message.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", - "input-message.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", - "input-message.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", - "input-month.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-month.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-month.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-month.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-month.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-month.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-month.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-month.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-month.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-month.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-month.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-month.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-month.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-month.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-month.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-month.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-month.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-month.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-month.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-month.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-month.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-month.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-month.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-month.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-month.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-month.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-month.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-month.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-month.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-month.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-number.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-number.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-number.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-number.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-number.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-number.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-number.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-number.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-number.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-number.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-number.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-number.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-number.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-number.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-number.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-number.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-number.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-number.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-number.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-number.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-number.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-number.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-number.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-number.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-number.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-number.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-number.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-number.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-number.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-number.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-password.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-password.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-password.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-password.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-password.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-password.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-password.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-password.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-password.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-password.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-password.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-password.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-password.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-password.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-password.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-password.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-password.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-password.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-password.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-password.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-password.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-password.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-password.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-password.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-password.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-password.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-password.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-password.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-password.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-password.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-search.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-search.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-search.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-search.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-search.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-search.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-search.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-search.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-search.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-search.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-search.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-search.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-search.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-search.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-search.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-search.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-search.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-search.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-search.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-search.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-search.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-search.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-search.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-search.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-search.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-search.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-search.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-search.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-search.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-search.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-telephone.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-telephone.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-telephone.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-telephone.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-telephone.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-telephone.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-telephone.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-telephone.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-telephone.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-telephone.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-telephone.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-telephone.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-telephone.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-telephone.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-telephone.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-telephone.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-telephone.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-telephone.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-telephone.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-telephone.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-telephone.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-telephone.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-telephone.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-telephone.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-telephone.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-telephone.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-telephone.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-telephone.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-telephone.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-telephone.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-text.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-text.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-text.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-text.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-text.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-text.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-text.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-text.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-text.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-text.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-text.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-text.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-text.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-text.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-text.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-text.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-text.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-text.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-text.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-text.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-text.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-text.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-text.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-text.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-text.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-text.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-text.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-text.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-text.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-text.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-week.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-week.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-week.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-week.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-week.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-week.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-week.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-week.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-week.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-week.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-week.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-week.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-week.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-week.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-week.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-week.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-week.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-week.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-week.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-week.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-week.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-week.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-week.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-week.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-week.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-week.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-week.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-week.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-week.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-week.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "label.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "label.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "label.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "label.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "label.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "link.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "link.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "link.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "link.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "link.font.regular": "S:c408c9ff827ad4b2f4e934f2cd6a143455780c5f,", - "link.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "link.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "loader.default.foreground.dark": "S:304a629ada6a7ef5519a7806204eeb4d7f01d954,", - "loader.default.foreground.light": "S:b98314fedea7c3e5e832bff9d4e44474ce7265a1,", - "loader.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "loader.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "loader.font.text": "S:e693886a422add0f7bbb617ceba18a5ada5de0da,", - "loader.font.value-text.lg": "S:14dd6559ad9eef407904de82098dafba431e98e2,", - "loader.font.value-text.md": "S:8e937a8014060d3b991f96d6988982c4a6d5434d,", - "loader.font.value-text.sm": "S:326d9abc426f0f215ba172af78bfe1fb9ac48bec,", - "loader.inline.foreground.determinate.dark": "S:dc561e94c526f6e3c0a23ce9ec67da08b6656413,", - "loader.inline.foreground.determinate.light": "S:691f6850302be0203c2298e598ab895cf8fc4fe9,", - "loader.inline.foreground.indeterminate.dark": "S:4280761ef8e8f569b4352ad45aa52609ff23e128,", - "loader.inline.foreground.indeterminate.light": "S:da04095cbdaf7cf5f98eeec697078fc7264d32ba,", - "modal.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "modal.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "modal.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "modal.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "modal.border.top.brand.dark": "S:b05703110c9b8ce6024303d8afed3ba60fa3104b,", - "modal.border.top.brand.light": "S:a9b4989bb9daad33b84c52206527ff7e76479865,", - "modal.border.top.danger.dark": "S:fb0dd7e07d149d3086385646a21160771e492be7,", - "modal.border.top.danger.light": "S:07a123da04a78be0ca0734de98940cf63a2c2d61,", - "modal.border.top.info.dark": "S:d6ae78b081b805c48d50806240c949cc2b9d0fec,", - "modal.border.top.info.light": "S:c3d1c7b192199d8fd537011e94f4289ab0ab1631,", - "modal.border.top.success.dark": "S:a4b10bfb518b25fbd87598ada78821a3b8c307e3,", - "modal.border.top.success.light": "S:0b8304d2a78248a6fe28da6b96560351b1c33f47,", - "modal.border.top.warning.dark": "S:78a2de515a0dcadf8f2b49cae9bd8be150243908,", - "modal.border.top.warning.light": "S:ed7d8c003631a5e8be2f0631574bd70db885e44f,", - "modal.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", - "modal.font.content.lg": "S:5da5d0c2e707f47a5cba3740883f9b09066cba67,", - "modal.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", - "modal.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", - "modal.font.content.sm": "S:f2e10a30773ad893d3104d4c612c5a6bde6f5c58,", - "modal.font.header.dark": "S:a3fd15b7d470afc805b072dbf848d57469bb681c,", - "modal.font.header.lg": "S:82b11c9411411513150be795953c302451b0092e,", - "modal.font.header.light": "S:bb81170665255fe206e85bde8105d7d0e49230e8,", - "modal.font.header.md": "S:09bf67955036c958a09976e5162d4423b30b6a93,", - "modal.font.header.sm": "S:a4b9d004ad1b17fd1f98b1f2d5bf20d46e265ca1,", - "modal.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "modal.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "notice.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "notice.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "notice.font.message.dark": "S:7815f7fb82fdc4c4c26e1623790dffe9e187a466,", - "notice.font.message.lg": "S:09c48ee987903ee44f92b7fd85f5e4dea0ead949,", - "notice.font.message.light": "S:6cf383eac5cca5700a959ab59f20a865a46decd5,", - "notice.font.message.md": "S:914616baac8f924bb3068d03da85a3d7598a4eed,", - "notice.font.message.sm": "S:62cbe66d7a194cf143b483c76e81b3ef7faec7e4,", - "notice.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", - "notice.font.title.lg": "S:051bc74df8ad468b012d4a69124462a7bd88ac16,", - "notice.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", - "notice.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", - "notice.font.title.sm": "S:3ce9291673796d12312501274a38efcf55f6b482,", - "notice.highlight.brand.dark": "S:238edd866a0fb63465a1a1a3dd99d48708e2e316,", - "notice.highlight.brand.light": "S:ff24217a653ee3bef7ad198f70f6fb26257629cd,", - "notice.highlight.danger.dark": "S:0e46e2198e037bc44bbb6337a3c3ae78af39b0b0,", - "notice.highlight.danger.light": "S:f9bf35d17558127d31e7aff5fa320f4a088093da,", - "notice.highlight.info.dark": "S:38d81b30b34e16721fe36b6df97e1fbaf12f73e3,", - "notice.highlight.info.light": "S:73e5b57b4b678a4b853265e33050f7fae69dc0b4,", - "notice.highlight.success.dark": "S:478c949da4555301573feaba90dc2dcee7a720a1,", - "notice.highlight.success.light": "S:88529531c4701433647c40e594e0b654e9014ba3,", - "notice.highlight.warning.dark": "S:721ebfc1b5023d7516126855b4e94e83bce6230c,", - "notice.highlight.warning.light": "S:66f48a97f5bf1594dd2cc055de30fa2cb471a1c8,", - "notice.icon.brand.dark": "S:a76eb181aefeef694685113d7815fe90b15aea69,", - "notice.icon.brand.light": "S:eedb21b228f1b8f494c9f162140a63406414686a,", - "notice.icon.danger.dark": "S:7d85d8810f8eb5b037e710a082cad64cfc5e1683,", - "notice.icon.danger.light": "S:cf8d2ab3ca68b0f621b36d3b2ca6f691b9506ac3,", - "notice.icon.info.dark": "S:4f96af66fb23e050160b1662d3c2655ea138f899,", - "notice.icon.info.light": "S:98207d369d594d10f790fc9bea415e4ea3e45335,", - "notice.icon.success.dark": "S:7d3d6b3d230ecb9151d3b878d06a91bb15672455,", - "notice.icon.success.light": "S:99de94ded284f960aa2039ad2d96df78a0c880c1,", - "notice.icon.warning.dark": "S:571c79bd43fa8f6ade105342cc4805ecdaa77c50,", - "notice.icon.warning.light": "S:81ea08fd5391ccfaa22bd5bcfbe0811ce14f314f,", - "notice.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", - "notice.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", - "notice.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", - "pagination.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "pagination.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "pagination.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "pagination.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "pagination.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "pagination.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "pagination.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "pagination.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "pagination.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "pagination.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "pagination.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "pagination.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "pagination.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "panel-header.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "panel-header.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "panel-header.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "panel-header.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "panel-header.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "panel-header.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "panel-header.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "panel-header.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "panel-header.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "panel-header.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "popover.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "popover.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "popover.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "popover.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "popover.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "popover.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "popover.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "popover.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "popover.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "popover.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "popover.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "popover.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", - "popover.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", - "popover.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", - "radio.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "radio.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "radio.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", - "radio.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", - "radio.border.unchecked.dark": "S:318cf4c8f427f70be43a816f7091db13238a9282,", - "radio.border.unchecked.light": "S:d3f814c271446438e13819ae171d5ab92f739b18,", - "radio.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "radio.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "radio.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "radio.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "radio.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "rating.chip.count.font.dark": "S:57d5b0c18c9fb6fa98c8a2e627bb4355395289e2,", - "rating.chip.count.font.light": "S:9db37e98cba760e02da719f6c1f8e94a79ce6f47,", - "rating.chip.foreground.dark": "S:2c5f57a9414dade7ecd6d59f5d53e0cc2f811316,", - "rating.chip.foreground.light": "S:2a7ae900c56bdaed64830a000ab5f147e9a1871d,", - "rating.chip.value-text.font.dark": "S:0ab47c728381761f98384403f12dae2820e3227f,", - "rating.chip.value-text.font.lg": "S:4ca681a4eda0db296fad332696a6ed2e8fbbb86e,", - "rating.chip.value-text.font.light": "S:11423cc98fa9e43a0b42365d5ea5891e31085b0d,", - "rating.chip.value-text.font.md": "S:b10662274e31a3704323fc2cb94b1c233baaf571,", - "rating.chip.value-text.font.sm": "S:96101bf0744e53acc2166a2184aa7f8ae2c2b8c4,", - "rating.star.background.active.dark": "S:3f4cee2f66b1636cc5f5498324e084ba7fcfb60c,", - "rating.star.background.active.light": "S:9a8727139d8e167a07a102ceab10b6eb28d9a642,", - "rating.star.background.average.dark": "S:2b295f1ae1097dd5aa7d56c9401d7b054cadc945,", - "rating.star.background.average.light": "S:d1ada06fc9c905264006c3ce38ece1b10157bf48,", - "rating.star.background.default.dark": "S:2c69735b85675262be35962ab8d72d564660a8dc,", - "rating.star.background.default.light": "S:710775754e463031894aa2fcc269e8080b46a711,", - "scrim.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "scrim.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "segmented-control.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "segmented-control.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "segmented-control.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "segmented-control.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "segmented-control.font.checked.dark": "S:1b340cfe17153ee654d067cf22fbf1e890af9726,", - "segmented-control.font.checked.light": "S:40c18363bec74ce07c70ac651afcd442f0046da8,", - "segmented-control.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "segmented-control.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "segmented-control.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "segmented-control.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "segmented-control.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "segmented-control.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "segmented-control.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "filter.background.dark": "S:cce71b5e0b42f0694d3cbea719569df5e43f3076,", + "filter.background.light": "S:2e00026391fe7046fb3f8d55023b58f382f6ec35,", + "filter.border.dark": "S:f3c85a62448a268a2fe889e7b21623c77de75c52,", + "filter.border.light": "S:78e76e4caf3d2926df033f85c3b17bc0c97577d1,", + "filter.font.dark": "S:eb3ed9f336c0bf47ab3e2f4b399e186948e2dd3a,", + "filter.font.lg": "S:948105d281ee6b703f4dfed7b63922c6461bd2b6,", + "filter.font.light": "S:0c4f5d9c1a281a8967ee2c08797d524659b69ce3,", + "filter.font.md": "S:782fd213ef9222542f76f274284c122b688a0ae8,", + "filter.font.sm": "S:e75c917a4875ce505a51cedcdf2a15075a7802e9,", + "filter.icon.dark": "S:6cfa280f7eae971f8526a82a5d3c3eab99715b87,", + "filter.icon.light": "S:60664c4ed73408173d981eaabad803dab18d186c,", + "flow-header.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "flow-header.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "flow-header.border.dark": "S:9404541cdc237512e921e99dbf15170c23101e81,", + "flow-header.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "flow-header.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "flow-header.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", + "flow-header.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "flow-header.font.light": "S:cad7de79c4ddaacc18ca0e11c0056db08cc37153,", + "flow-header.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "flow-header.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-date-picker.background.arrow.dark": "S:391c78cb23c7da4821fd6f9f68e82ae598e7408d,", + "input-date-picker.background.arrow.light": "S:290c04b0f6d17db0b91752bd6fe056e005cd2529,", + "input-date-picker.background.default.dark": "S:806863184eaea3209c12f6bde92a2f61141389e9,", + "input-date-picker.background.default.light": "S:b744e2dd3095e588e16ddf00238be524ba5d7915,", + "input-date-picker.background.read-only.dark": "S:dea6e8d9ed9d8680ecfcf0086a1bb89aa80a892d,", + "input-date-picker.background.read-only.light": "S:d5fbdedec23bea790fa1ddf29df9d25231d00268,", + "input-date-picker.border.dark": "S:d50e4eb537c3cd6e8253220f589b16f2acb4efde,", + "input-date-picker.border.light": "S:a49708ccc7e29e3fafa3b9fd05899f31444886f8,", + "input-date-picker.font.label.dark": "S:70dca97d0d91b1a6c1b78e0d833c6fef630e3364,", + "input-date-picker.font.label.lg": "S:1b1fe3705365a84020786ee32fa23bc427b80604,", + "input-date-picker.font.label.light": "S:ccfba285c6e05b64289f711780e29159b58790a4,", + "input-date-picker.font.label.md": "S:0092192816d2b7adc1ccdc3446e0f0543ec3735c,", + "input-date-picker.font.label.sm": "S:70bc204ba171fbd7127bd8c3b7d212a49b93bf34,", + "input-date-picker.font.placeholder-value.dark": "S:89b16560a60e6f632e0502b84cc65cf03b1e4d73,", + "input-date-picker.font.placeholder-value.lg": "S:33a868e767e990710925b2e1607baf5aa1f1e7a9,", + "input-date-picker.font.placeholder-value.light": "S:a684362ec4b769a0a57154643d562136e1e7ded5,", + "input-date-picker.font.placeholder-value.md": "S:113dbe56a93302bef44d80f3c87bbec20fdb4750,", + "input-date-picker.font.placeholder-value.sm": "S:ed66b875a561b7bc65c4be6383dd115a6fd08d2a,", + "input-date-picker.font.read-only.lg": "S:256a80c0297b5902142d17424c3a427c10b9672d,", + "input-date-picker.font.read-only.md": "S:679dfb658890b5d24ba04cd516ae4073f3802c27,", + "input-date-picker.font.read-only.sm": "S:924fd720620f9833b17676337ffd05f44d48b80a,", + "input-date-picker.icon.dark": "S:bbb37280e9c2d8d1c805d7be9a543bd0ea59c53e,", + "input-date-picker.icon.light": "S:bdf32909273600b9cfcf55ee2d9d5fa8590d2d8d,", + "input-datetime-local.background.default.dark": "S:206445f8088f5f547f8eb50a7da1496957049ee9,", + "input-datetime-local.background.default.light": "S:ccee7e0475806d353988001596bc5398ee714c30,", + "input-datetime-local.background.prefix-suffix.dark": "S:4cac4f6dc2c8b16c30fb67ec6fd16785739e3634,", + "input-datetime-local.background.prefix-suffix.light": "S:6bcd2d8b51caa3f9d1f083a642212407683ddedf,", + "input-datetime-local.background.read-only.dark": "S:c0212f85a56590840514618ecb46b5bdf99c3868,", + "input-datetime-local.background.read-only.light": "S:a0f530370eaee8ae18d80c20cd47bc7aac8ba368,", + "input-datetime-local.border.default.dark": "S:1a6dc8170385a9af5c689a3146409735ca2ddeb4,", + "input-datetime-local.border.default.light": "S:9351dea8ab3ba2cc236beb9a88a35492a5d07de5,", + "input-datetime-local.border.invalid.dark": "S:226e952f744dc69515b9e8527bad73f577fff575,", + "input-datetime-local.border.invalid.light": "S:d77c3b41e226bddd8f8aa1a2b2cc73eedbeb0dfe,", + "input-datetime-local.font.label.dark": "S:cc3fae33021148dc0fbbfd61ad19201ddbc3d096,", + "input-datetime-local.font.label.lg": "S:0accfccf63da7ec863ec5f8e69b67a99a4930c06,", + "input-datetime-local.font.label.light": "S:612a7cb344aceb82c253fdc6950629d4d2421e65,", + "input-datetime-local.font.label.md": "S:000c684127ac169ab0074750b7871eb9c003eb77,", + "input-datetime-local.font.label.sm": "S:8a892573af6589f6bab8a03453402c0c0f47949e,", + "input-datetime-local.font.placeholder-value.dark": "S:d15ff596337f701dd0cfee5a1231602de8f41b72,", + "input-datetime-local.font.placeholder-value.lg": "S:87dd9dbfc6ca68668f64ad5e8ab1792877f344af,", + "input-datetime-local.font.placeholder-value.light": "S:b73a5479a66cc907695497e68f4ebbd694027e18,", + "input-datetime-local.font.placeholder-value.md": "S:d5f22656e27cbc04c4fd961cd11180ee2019c6a1,", + "input-datetime-local.font.placeholder-value.sm": "S:07ea0bbb78a0f97ac7b4b2a41cfd0c004765b0b1,", + "input-datetime-local.font.prefix-suffix.dark": "S:630aa458f7bbc968d17f4f6ee9bc96711e0fc1fa,", + "input-datetime-local.font.prefix-suffix.lg": "S:2f3f39a3dff067764f42a503800e2bcf4c8ca915,", + "input-datetime-local.font.prefix-suffix.light": "S:2349ba9874e301157acf7900330d998c3e7c0545,", + "input-datetime-local.font.prefix-suffix.md": "S:bcf8e7eb575d841dd3d6075d40b8bc36215f6756,", + "input-datetime-local.font.prefix-suffix.sm": "S:e9e7bc450836a2d66bdbf133b9c0975579459b67,", + "input-datetime-local.icon.dark": "S:26f8d75ac8598cf18b9b61da8980d1aae4545819,", + "input-datetime-local.icon.light": "S:8192db9811dfe96183b5503ec1018d7aa9cf09fa,", + "input-email.background.default.dark": "S:1bb8732d529204b222017085042a681f66c9bfda,", + "input-email.background.default.light": "S:1814582fab8591839a0bcbc8f1f2ae3489b99e33,", + "input-email.background.prefix-suffix.dark": "S:e48bd73d71055407409f4b9d6bd1689c89e583f6,", + "input-email.background.prefix-suffix.light": "S:f520de5fbb4cc18a647e1ecf2ade76684319255c,", + "input-email.background.read-only.dark": "S:2876f0ceb6b4f0e4eec02d2f39dac3cc424d9e84,", + "input-email.background.read-only.light": "S:55c447522304135ec91270566a38769d27f97855,", + "input-email.border.default.dark": "S:aef9c4ce78a4272de399f34b285b94e2aa8fdc8d,", + "input-email.border.default.light": "S:767702c251fa3d3487e4c76bb122606481258e59,", + "input-email.border.invalid.dark": "S:046d6c6b470887a281b6e4d1bfecf1f805686485,", + "input-email.border.invalid.light": "S:8564629205664be6e2261035bac1969c1a3cc530,", + "input-email.font.label.dark": "S:28bbca5a2b2f044ca41d25c3f30d4d5b00f36c60,", + "input-email.font.label.lg": "S:927a6327e0df942ffa29a1eced6d07f5f4a26804,", + "input-email.font.label.light": "S:04bc83840dfbefe3de06ce693280ef90dc0aa735,", + "input-email.font.label.md": "S:3ef86eb390b013a7a5f23ccc18b36898a6fe64af,", + "input-email.font.label.sm": "S:22839a2f3f5c88714cf2c93c1c0bdd008b20d1a8,", + "input-email.font.placeholder-value.dark": "S:a5cab445213b931d4d1627e70f71b82cd7bf5086,", + "input-email.font.placeholder-value.lg": "S:c860a8bcefaf41c91c67aec3458dd6d7675b1a5e,", + "input-email.font.placeholder-value.light": "S:b3d7cb7ee80cf3686e86fb3532d78fcbc1760084,", + "input-email.font.placeholder-value.md": "S:fb84603a2f16d33ffa2adfda8ed53d1e8bb11ae5,", + "input-email.font.placeholder-value.sm": "S:3bfa2c3beec9adcc4b979e91925955306a6e3be8,", + "input-email.font.prefix-suffix.dark": "S:eb76d7b755130635b9963053769491ca41411a76,", + "input-email.font.prefix-suffix.lg": "S:be5b1cc7976d2433e5a2e73a3e6a13400e7abe6c,", + "input-email.font.prefix-suffix.light": "S:2292665b7b7c850013983c44b120e8b80eb07f58,", + "input-email.font.prefix-suffix.md": "S:78f42b287a0d0f1fc63d0c5a235d16e15a2a50e9,", + "input-email.font.prefix-suffix.sm": "S:f5e97d197960b6ac5f60f52dbba4d4cd26972111,", + "input-email.font.read-only.lg": "S:58c78d2208a2d884053b36837fef8ddd09379b49,", + "input-email.font.read-only.md": "S:1ec495ef91f3ed0e460374e9ee8f61c8e9624f7e,", + "input-email.font.read-only.sm": "S:afd97d6894f6d27a03e0512cf945296baba80baa,", + "input-email.icon.dark": "S:05dfc4c19e77712f0af9e17042e2fbaadf3dce2d,", + "input-email.icon.light": "S:dd38523167a3dd2d61617b2de4a396e6784edee4,", + "input-file.background.default.dark": "S:39a706a54e7b7d0f1d6397f9fbd1f52280d10c5c,", + "input-file.background.default.light": "S:917567c4103f8dafa8a7eb0ceb6e151e18544022,", + "input-file.background.prefix-suffix.dark": "S:5151d197e0b0194770839778bca9a6259ea3c626,", + "input-file.background.prefix-suffix.light": "S:cf6e31d2b2b0c24e00f8e208085b313258295b7d,", + "input-file.background.read-only.dark": "S:bce20d63ace3c608621b062a64a219fa2c3f92ba,", + "input-file.background.read-only.light": "S:530a90df754a367b293192e712a5292535c98829,", + "input-file.border.default.dark": "S:efd5526c0a76d63f48f69e2c5b960c35a1360a8d,", + "input-file.border.default.light": "S:cc747de6b3f8ef90297ff4b03ed1a246092949cf,", + "input-file.border.invalid.dark": "S:151105429af155434b7be7a28476e7abd7c426d0,", + "input-file.border.invalid.light": "S:e858eb6ac7785eb65bfc9cb2867c9bf428f0c7fd,", + "input-file.font.label.dark": "S:e607489c1f79105ace64228015d15c0e3a02c1e8,", + "input-file.font.label.lg": "S:8f41539bde05daa54e18ec702c8d3ad2b37285af,", + "input-file.font.label.light": "S:d5779003fc728d8724629b6716d560d72eecdeae,", + "input-file.font.label.md": "S:30e691e860ccdd32a10aa90402f49d9bb851bbf9,", + "input-file.font.label.sm": "S:74fed72e497c2bf6d5b1b90a98ad39b33841b914,", + "input-file.font.placeholder-value.dark": "S:0967f07c60837489002ac70d16c10bfb92d53f4b,", + "input-file.font.placeholder-value.lg": "S:8ed6d87769d7a092a97a925100b1233e949c27b9,", + "input-file.font.placeholder-value.light": "S:9e67a609ade670e674e116190552f56a71360f85,", + "input-file.font.placeholder-value.md": "S:a76aecdcdeca81efc3fe11a3bee6d968765112f3,", + "input-file.font.placeholder-value.sm": "S:688204141be277ebcccb8adce9950033a844ad8d,", + "input-file.font.prefix-suffix.dark": "S:5bf3d96221955cf0f0501046d0a5005fa4050a6f,", + "input-file.font.prefix-suffix.lg": "S:2d7892dde79bf5f00d38bb1f51c359657bf36b7f,", + "input-file.font.prefix-suffix.light": "S:719eab477878b198b122cebf7b5facb52ec5ae52,", + "input-file.font.prefix-suffix.md": "S:245ebe61ae0941f3d0218793eac8e7b5710f7936,", + "input-file.font.prefix-suffix.sm": "S:363412663e217afd72b565a8ae98246425f88492,", + "input-file.font.read-only.lg": "S:9acc28c7b34abf4d604c65e15ce1269e4bcecf70,", + "input-file.font.read-only.md": "S:c2481797888f1b025b5d65e09be989b5a9d8260b,", + "input-file.font.read-only.sm": "S:3696b28cb3ae80b92e4b18b86815c725f7ed9485,", + "input-file.icon.dark": "S:7ca35d74ffee82b768895bede6a67e8d83292930,", + "input-file.icon.light": "S:a5b597c3ee24404e7a2e60c7db2eed2315392050,", + "input-message.font.dark": "S:20ed1be8ff2dc8dd8a92ad9d79b9ba0932872379,", + "input-message.font.lg": "S:2d99cc97a124eea8eb496833acad28080e1b8c29,", + "input-message.font.light": "S:1c661c417c481dc5c0afa0bbfc3a1d1a9dc46a06,", + "input-message.font.md": "S:eed0bf01bc2c03c768b72d37bbbbfbc5135367b1,", + "input-message.font.sm": "S:dfc00c01cc43b5dfd829e4a314a2f15a836cbfb8,", + "input-message.icon.idle.dark": "S:4f88a4afbb2a77d1cf09c076efc826802b22a1c7,", + "input-message.icon.idle.light": "S:ca7f7c124a6d017225e218e9a6f278ff3a773486,", + "input-message.icon.invalid.dark": "S:db35b7662cfb7ca6a95f9056531daff29f4d0da6,", + "input-message.icon.invalid.light": "S:cbe58ebc182f37c18a24d1f2a050515f9fd437f1,", + "input-message.icon.valid.dark": "S:92666e5cbc397d8cdaa372447fb3376211d5eaa2,", + "input-message.icon.valid.light": "S:f603161bee2d4b2a355674d698605e84b7021685,", + "input-month.background.default.dark": "S:786e7f845fe2cf8ce3853b7b337e5b0270b821c0,", + "input-month.background.default.light": "S:9bc77f887d1f3c6dd7afe93162927642b8c9caca,", + "input-month.background.prefix-suffix.dark": "S:429e0307ccb1d6989ce524c50816a840b26a30b0,", + "input-month.background.prefix-suffix.light": "S:ae29fbe96028e5b41c838901f58da213ca8f21d8,", + "input-month.background.read-only.dark": "S:8f59c00c3a9a2189ca40262508fbed374b2d0a57,", + "input-month.background.read-only.light": "S:2d1b6431023d8161cdb1666a915b985a39a8ff97,", + "input-month.border.default.dark": "S:371c0ad24b1c535f2712f50cd49399bb889f5ae2,", + "input-month.border.default.light": "S:5cb7ac966cc4ce34287309e2b30a51b98428a4e4,", + "input-month.border.invalid.dark": "S:e824d4e8a716eb744b7ceba6f101e77e3f3a0f99,", + "input-month.border.invalid.light": "S:4e117d42c4adaa2bf663249b1da0fef9c91659b5,", + "input-month.font.label.dark": "S:b930e49eb183194ec2650c770be91461a6a8136f,", + "input-month.font.label.lg": "S:563979ab3cf82ce8aff07831b7f813febd2c8b9b,", + "input-month.font.label.light": "S:340d48347003bfd1f8781ea6a28685ab5d1eb6db,", + "input-month.font.label.md": "S:6583facfef9f45d3acdf20b7855e86c197e110c2,", + "input-month.font.label.sm": "S:56840004bfa6d6c1a8c903543f4d152e42308f76,", + "input-month.font.placeholder-value.dark": "S:ad23dbfc0d4315380c69659539aed023c22b730f,", + "input-month.font.placeholder-value.lg": "S:588bd974d4e114d88eb57edba56c460b64f57338,", + "input-month.font.placeholder-value.light": "S:8310792c23a76a079009c4149e8da7f6435e585f,", + "input-month.font.placeholder-value.md": "S:87357f50759930c1399093b6deac9fc8799b957a,", + "input-month.font.placeholder-value.sm": "S:549f9c1861bd95a802e920dbf296cade35cf8908,", + "input-month.font.prefix-suffix.dark": "S:b45187c84c0e66db4797fe2546fda331a75cb6f1,", + "input-month.font.prefix-suffix.lg": "S:cdd2a5a62873a44d3931a599a74adf5040492c30,", + "input-month.font.prefix-suffix.light": "S:0afce9f3bcbe975df52a1d43e0d9cf2b0f7c022b,", + "input-month.font.prefix-suffix.md": "S:f159f1f83548596ba92e75d8396f25354270dd3e,", + "input-month.font.prefix-suffix.sm": "S:ac496907dadf1c4657498ca2430d136a46a32412,", + "input-month.font.read-only.lg": "S:a1ea0a8074c88957327a2335e04fb8c1568b7d81,", + "input-month.font.read-only.md": "S:52dbc45c634e376725c2ae59b033459c927595de,", + "input-month.font.read-only.sm": "S:b26fbe95f98e483845f4af1e3d8a04ce181295d9,", + "input-month.icon.dark": "S:82e652c469e952c6c88daadeabeca996f9035e10,", + "input-month.icon.light": "S:c0681175993dcb6b7d3f09d6a29e9dbab46dc890,", + "input-number.background.default.dark": "S:fca1c068aa0a69950904573530d776ed3ec64fd3,", + "input-number.background.default.light": "S:1c83706b5cea589b7616a0aac334e6ef86ed5a88,", + "input-number.background.prefix-suffix.dark": "S:ac53080da12f1f2b62b0185979d6cf6d32490e6c,", + "input-number.background.prefix-suffix.light": "S:fa01421f7a08508c29da64d1b78137d8648b7957,", + "input-number.background.read-only.dark": "S:478d416d7cb8472c75d99647db65fb40c808ac7e,", + "input-number.background.read-only.light": "S:2edebdb5e7644eb223dd265425eb895009a7db9e,", + "input-number.border.default.dark": "S:b8156efbb0a3697f653ee9b2c26f3c410ff549d8,", + "input-number.border.default.light": "S:df8e5b6805ae5f36c3942e945b2d3d823e2b9949,", + "input-number.border.invalid.dark": "S:fbe5e5181a808e0f9f2916591b33db2e3b2fe1d6,", + "input-number.border.invalid.light": "S:2f175dc3e991aea360640f824f5b39ac4868dab2,", + "input-number.font.label.dark": "S:4801e5e34f918ce82318ad9891aae34168b27c0d,", + "input-number.font.label.lg": "S:85ee50683d9a7a6d567e7d0bdcacc85a048dcfd2,", + "input-number.font.label.light": "S:0967ae00ebee0d57d5bd3bbaa67e0dd1b9fd106a,", + "input-number.font.label.md": "S:9f732c4f0e500a9d8516b0319f204623327856ae,", + "input-number.font.label.sm": "S:1bbf3ac5e07688681706f71d656702a6a6e0024f,", + "input-number.font.placeholder-value.dark": "S:e1f398afe7661baf0d48abe0b3d0e5937cdf9ff1,", + "input-number.font.placeholder-value.lg": "S:cc73fe7f150e7e20b7ea78d37d301c042c8f47b3,", + "input-number.font.placeholder-value.light": "S:dd63d6ac187edac69dd9bc293ab5c11b5ac1f7da,", + "input-number.font.placeholder-value.md": "S:7c55273f5b57f71cd312f09d9b4d8bddfb63d059,", + "input-number.font.placeholder-value.sm": "S:2f8369d098cf2351c886b66e4c68ad51ff530b6d,", + "input-number.font.prefix-suffix.dark": "S:91b9ceda18e31d5ec0faa97e6f967d29aa34d5ce,", + "input-number.font.prefix-suffix.lg": "S:5dd7afb7db40fc46af9169b4789e3e5232b95876,", + "input-number.font.prefix-suffix.light": "S:5db906b54138cf51ffda18128c379ef4096ee784,", + "input-number.font.prefix-suffix.md": "S:23c97f531931b352549a1d04d343b87597e812a0,", + "input-number.font.prefix-suffix.sm": "S:60cb1b91db9815f0e05823cce6038c53280f1c4b,", + "input-number.font.read-only.lg": "S:a85deab71b3a3b7657d4d19cc7d4d13207f8982b,", + "input-number.font.read-only.md": "S:070da1ce59abe27d4285479265015ed72f5b5bf3,", + "input-number.font.read-only.sm": "S:fce8db9161cbbe40748fa80ff5069c0d235153cf,", + "input-number.icon.dark": "S:37df30f4e21fb2f0ff0a6017da590a57a9f6774e,", + "input-number.icon.light": "S:3e104c761796f478d0981dcfb86a526eb2e77295,", + "input-password.background.default.dark": "S:c7ebae7f776533341993d4c02568a256167f2480,", + "input-password.background.default.light": "S:5044a928c1192d2a6cbd04a0966322a6d644880c,", + "input-password.background.prefix-suffix.dark": "S:853b09747b9cc3dc9c9946b50892484271692f20,", + "input-password.background.prefix-suffix.light": "S:71916c2643093a222d9d0d1bd78c8349b7e1c1bd,", + "input-password.background.read-only.dark": "S:3f8f432366ff81a363457034e5286c4978bc563c,", + "input-password.background.read-only.light": "S:817c2f9f5987521bf6bf76099881f2530e5a7e38,", + "input-password.border.default.dark": "S:81451f914b38cb9b3fa28b14cff2cbd5df4a914e,", + "input-password.border.default.light": "S:7e2c837798cbe82472d1cf22e4afb585a41ffd1e,", + "input-password.border.invalid.dark": "S:bd6f034e588ca2c69420d4f52fd2d8746d1c12b6,", + "input-password.border.invalid.light": "S:d73b84ee7400dfc4db83ea2f958253e96c4dce29,", + "input-password.font.label.dark": "S:afafe2715af033a51cb5649fba7b92e477a255ba,", + "input-password.font.label.lg": "S:38d07bf5391b2e71a447407180e319cdcee3226c,", + "input-password.font.label.light": "S:9125176cbbc92512579a5b588562e95358d5726e,", + "input-password.font.label.md": "S:8535b844a22e4a3dc2618e15523114f61f7f66a5,", + "input-password.font.label.sm": "S:e8fb97b998dd135d62fefb01333871f9af91a9c9,", + "input-password.font.placeholder-value.dark": "S:2ef231873b437210cafa90c8db3e46c5b9d5974a,", + "input-password.font.placeholder-value.lg": "S:91a7c535cdb31ac68899e973acebd42603bab6e9,", + "input-password.font.placeholder-value.light": "S:f36d7f7762bc53c34ec797aa057e2dbec8967244,", + "input-password.font.placeholder-value.md": "S:8568ebf8c33bd81038ba1cfd0e483cecc67fbc64,", + "input-password.font.placeholder-value.sm": "S:1156230f343b3ea68a531d858fec5767ce8df89a,", + "input-password.font.prefix-suffix.dark": "S:9f477a240846a90551715ea2774078ca0084a85b,", + "input-password.font.prefix-suffix.lg": "S:880d71be85ea79c6ebf3a8004b0f77585e2fe184,", + "input-password.font.prefix-suffix.light": "S:1d8e6e332f11791c061ae12379b39556efe03b21,", + "input-password.font.prefix-suffix.md": "S:a3e77ccc9288ebcad446244f13024e259dd2b872,", + "input-password.font.prefix-suffix.sm": "S:9ec4aa058268dbf826cc7537ae3e99f1fdea91bd,", + "input-password.font.read-only.lg": "S:47363dade619fc977140eee28bb8593ab70e5894,", + "input-password.font.read-only.md": "S:e4f408690f4971f854b13fe8abc8d1560be7c5ab,", + "input-password.font.read-only.sm": "S:a1ed7ef3fc26c5b42314dfc7a4c2d4c661ffa40c,", + "input-password.icon.dark": "S:1b01ef15a977af7a5bd43b0dea1b886f83022c14,", + "input-password.icon.light": "S:56f17c7cdb38a2f5e5e9ab1cf21808da75f1b076,", + "input-search.background.default.dark": "S:c0bf2a1700296b67a0a415217ab6adac7a044940,", + "input-search.background.default.light": "S:696600aad5b33c8e5d7b614f575be8f27445790e,", + "input-search.background.prefix-suffix.dark": "S:238cf9716bc3f16f714e190c7f8d5225f6028f7f,", + "input-search.background.prefix-suffix.light": "S:79a64229a85771d86e4986f29874f41ae80ccb27,", + "input-search.background.read-only.dark": "S:184917c97872055299e2c69c661363d17afd8bb1,", + "input-search.background.read-only.light": "S:74accf09f8544525db567c55f4741253629b6360,", + "input-search.border.default.dark": "S:d1148e4b2c37dd3987f9f449516a296963e7680d,", + "input-search.border.default.light": "S:6bbf76a8944a8b39409e94a73a42b6bb510681bb,", + "input-search.border.invalid.dark": "S:4733d5cc79421c148532908a907161a2090b6358,", + "input-search.border.invalid.light": "S:d97829494a6a63608edf63ec655845bcfa302804,", + "input-search.font.label.dark": "S:f65780b13bc55b65da318842663e9cca54eb4bc6,", + "input-search.font.label.lg": "S:480df2b37a2ed4421bf1d2b5fdd0368ce43b3a39,", + "input-search.font.label.light": "S:2bc645afe78e09638b2b5fb02877287a887d2bfa,", + "input-search.font.label.md": "S:ad5ab28c790696cf6ec44bdf8855d062f1dd0f1e,", + "input-search.font.label.sm": "S:847997ba73faa20e55adc8a6463aa5ad3ff29aa8,", + "input-search.font.placeholder-value.dark": "S:45c1a2981100bce8b8dc3176e772b4defcb09026,", + "input-search.font.placeholder-value.lg": "S:6690b9ccc3b4b7203e4939ac9702e37234dfe1c9,", + "input-search.font.placeholder-value.light": "S:83da2574b474cf4b78db9430d7394083ba8e442a,", + "input-search.font.placeholder-value.md": "S:66f458bb8c3128f6cb6000821e264f9acdc4abb7,", + "input-search.font.placeholder-value.sm": "S:835cdb3355e4ce1a405cc70ea9aad2529283af69,", + "input-search.font.prefix-suffix.dark": "S:cb9dd3371eefb5dd741535854afc89bbc3f62624,", + "input-search.font.prefix-suffix.lg": "S:8388e947c6bdeaba420dbf2f62f6afa35f41732f,", + "input-search.font.prefix-suffix.light": "S:d542355bf98cbf60e204b94a80a1792b5fa57195,", + "input-search.font.prefix-suffix.md": "S:ed661d0b540eb0aeea0a392cdab7e08e7d557855,", + "input-search.font.prefix-suffix.sm": "S:1ea56e347bea318676a54e71de6d0aee3b3edda8,", + "input-search.font.read-only.lg": "S:1ae9635fedc64780f5c1c82b29f1da60498a7e78,", + "input-search.font.read-only.md": "S:1a06c0e39bff2154f3f9f39995266ca88dc8282b,", + "input-search.font.read-only.sm": "S:7b172329176a534df4f6e7ae2697392f22d6f9c8,", + "input-search.icon.dark": "S:69a511edb9056cd916aef217262b730a6db62117,", + "input-search.icon.light": "S:ed83ef6b5ee8937bea3b763b9c5a4ffabf61b59b,", + "input-telephone.background.default.dark": "S:17680c5b1505ef39102ae157ab07392b56242ffe,", + "input-telephone.background.default.light": "S:a1d01e77c126640210a66bc483f21dc0b2add37f,", + "input-telephone.background.prefix-suffix.dark": "S:c0886195755e396c6f36219cb8dfe9ba3766011f,", + "input-telephone.background.prefix-suffix.light": "S:975ebb12d4ace95747c535fd5736a938d7202abd,", + "input-telephone.background.read-only.dark": "S:f842f6646c3467b6ed562025f279cb307cc87535,", + "input-telephone.background.read-only.light": "S:798ee68e8f63dbe28f45fbcbd19a524af131076f,", + "input-telephone.border.default.dark": "S:8481b6428820a8b54dd18a9d2985078508c38522,", + "input-telephone.border.default.light": "S:27024a8060fdda1c6bcf8a8afea977d9596d1368,", + "input-telephone.border.invalid.dark": "S:75f0e49b272f2e9938fa9135036bbe10e0fa8c4b,", + "input-telephone.border.invalid.light": "S:93a060762574a7e971cdc08e61a8dd3dfbe8f11d,", + "input-telephone.font.label.dark": "S:abc926e2144cd4c74cc7ad7d39bd8877848a7a67,", + "input-telephone.font.label.lg": "S:8a205ce5810d16873cf900a0a79dfd041f357607,", + "input-telephone.font.label.light": "S:75a84ae0aa47c7e00f87e0bf2cda5a77f89c5afd,", + "input-telephone.font.label.md": "S:54a77d44d73707b65aaee5758f3076b60431ab02,", + "input-telephone.font.label.sm": "S:f88613b58bc1654dc90f7443619cb92238b0c2d0,", + "input-telephone.font.placeholder-value.dark": "S:5344b2a6037ff7272fbc6975f99aacaa5c509843,", + "input-telephone.font.placeholder-value.lg": "S:e8fb2d69816bd781275c2debc085ca748f71acbc,", + "input-telephone.font.placeholder-value.light": "S:6b7b3afee7247497c53fb15277d46932bd9c8497,", + "input-telephone.font.placeholder-value.md": "S:83968af91d3a21a5bf858e31bd967d205848cbdf,", + "input-telephone.font.placeholder-value.sm": "S:b37f49071fa3ddecfcb34c5e78d1c84fae1b8d47,", + "input-telephone.font.prefix-suffix.dark": "S:dbd2509828d859e1e62529bcd08b977911a8b196,", + "input-telephone.font.prefix-suffix.lg": "S:264f720f0850b3fea738a6d532dfbfb60e8b711b,", + "input-telephone.font.prefix-suffix.light": "S:25645f0efc127bc938b6c131b8d1d389ffdfd3ce,", + "input-telephone.font.prefix-suffix.md": "S:bddc9cf9dd159e5655029df72d97642d55b524bc,", + "input-telephone.font.prefix-suffix.sm": "S:7830c1fda212120f4c3270cd8d41296b9c361465,", + "input-telephone.font.read-only.lg": "S:f527b21a5cf7b34f31610bab3f3b84d42e13825b,", + "input-telephone.font.read-only.md": "S:15f6d8f99b6eff5b23e4bef2a02da216a6778df1,", + "input-telephone.font.read-only.sm": "S:e50b16de26f06f571cd9ca02dcf457d4fb407a22,", + "input-telephone.icon.dark": "S:e10d7475b1814aeea2c85894fae9291ca5f049e4,", + "input-telephone.icon.light": "S:f085cda6a4d6338d3fe7bd223eed0324a08697a6,", + "input-text.background.default.dark": "S:e93010e046ae519b2cf9f152c05169878628111f,", + "input-text.background.default.light": "S:c99ba9329ba655a8fb87c343788ae78fb38ca069,", + "input-text.background.prefix-suffix.dark": "S:19262fb57b2be429b80b1255d768b883b7283930,", + "input-text.background.prefix-suffix.light": "S:149149352d75683331f9bd16bc0ac133a091d792,", + "input-text.background.read-only.dark": "S:2889077fe2c60ad1f369492c86d846bdf9180f34,", + "input-text.background.read-only.light": "S:3a515bfe30c4ebfce2f66dcc4ca35ae1cae116c7,", + "input-text.border.default.dark": "S:cd996d1f504df0ca1d496a547e72652c9bce4ae5,", + "input-text.border.default.light": "S:9ae457c041bf6621b7a7c10180cc2767f2b6295c,", + "input-text.border.invalid.dark": "S:d814c7ab10474013b4decce01db0d5e3a6aa1fd5,", + "input-text.border.invalid.light": "S:91bfc58c810dc85f387614b1d3d0fc1cb3ff5662,", + "input-text.font.label.dark": "S:f9ea3edd46f662a0c4e20076fa1d38a4b029fa83,", + "input-text.font.label.lg": "S:6daa522b3dc4e3a7bd488d3412d6d3fe9405964b,", + "input-text.font.label.light": "S:2969df143b88a01c72cfbb0f56e2194e7c50e6ec,", + "input-text.font.label.md": "S:06b10ce7239a0d074c67f8abd087e53da1c4c5a3,", + "input-text.font.label.sm": "S:9bac7c3d6c683a1c2e31310695432d32d46f630f,", + "input-text.font.placeholder-value.dark": "S:63337c9c1f39ef95e07a40194998a358d2c7a81d,", + "input-text.font.placeholder-value.lg": "S:b4002492d06f4da37a1d8d137bc59f11835b5fcc,", + "input-text.font.placeholder-value.light": "S:5e3dbaadd0e9b9fe886aa28be1df4ebbecebeded,", + "input-text.font.placeholder-value.md": "S:26fe6cf5c9c9e60145d8d1430603c6646ea5cab2,", + "input-text.font.placeholder-value.sm": "S:4e0a3c260964a85c26ac5943bcba7523d879f9a5,", + "input-text.font.prefix-suffix.dark": "S:fa18ccf0ef2776cf870cf3c217a853061678f7ae,", + "input-text.font.prefix-suffix.lg": "S:d47ed7e20786ce11569f60aa7ae9b83ea2817ddd,", + "input-text.font.prefix-suffix.light": "S:b175173a439a1cc448065891a03dd12c1ed84f60,", + "input-text.font.prefix-suffix.md": "S:6ff51cd25adb8dec12119c26e9e46c9d9474cff7,", + "input-text.font.prefix-suffix.sm": "S:4fc6c1085a854d1e3dc8b100f455d63b82f36589,", + "input-text.font.read-only.lg": "S:2fe7717c886ccc4d090dfa98625a71d14411756c,", + "input-text.font.read-only.md": "S:97f7cb72ec911451f82005e1fe7e2edfc0dd8fc9,", + "input-text.font.read-only.sm": "S:496e8fd3f1e904cb53b00b09b5dd674c3c53d10c,", + "input-text.icon.dark": "S:ed23738fc1199673aebd7e9b59f898453631b0b7,", + "input-text.icon.light": "S:3ef07951dbd63485b8887ea56629b6ac84e21f83,", + "input-week.background.default.dark": "S:5c8035a84d64414f5672de932f2c9090e4db349b,", + "input-week.background.default.light": "S:e00a9dcf412773c920deaf3fbc0fd48235025202,", + "input-week.background.prefix-suffix.dark": "S:6248d7c78ffdf540d591965f112f4ddb6dfa60bc,", + "input-week.background.prefix-suffix.light": "S:a09866ba5efd3e0e1b289cd727ffbb2ce9d47eeb,", + "input-week.background.read-only.dark": "S:88d9ba3dfcb0f4cd5fa1ae5fb4cc7dbcf6b6ad61,", + "input-week.background.read-only.light": "S:8edbcbc9fc226c61b9bd8ed66f0f246555bf9af9,", + "input-week.border.default.dark": "S:43522b440cd0568375b1f12ed93e759c85b1b2e0,", + "input-week.border.default.light": "S:b92dc615fac0acccc1536f246dfda2b9f568befa,", + "input-week.border.invalid.dark": "S:ff89d31fe3fedb85cdc0bf173b016d03e90fe9c9,", + "input-week.border.invalid.light": "S:4bd330ad14d6c5d661af102b57e0bf1dfce719eb,", + "input-week.font.label.dark": "S:7b3f4b3e6d8dc80e1df7ce2e69a9ef3e446a386e,", + "input-week.font.label.lg": "S:ea5b45815ead598f237b00c26300a3494c49c7d8,", + "input-week.font.label.light": "S:913d983ad4a4d41681a71f01b24d5283589f1a8b,", + "input-week.font.label.md": "S:2b98b876ebc29d0db06f8444a7393233a3c9c0ba,", + "input-week.font.label.sm": "S:98f66bf351e63a16d7d38256068e27530fbd8aeb,", + "input-week.font.placeholder-value.dark": "S:1f43a26a8b40c2c4137e4ed0db14818771055a09,", + "input-week.font.placeholder-value.lg": "S:65d975732d264f005f3feea21d177df46b8a3f31,", + "input-week.font.placeholder-value.light": "S:abae715e65555939f9c4a685bbdc68474eb37811,", + "input-week.font.placeholder-value.md": "S:d3eae3151cd534332b0abb8136e01af19ea33dfa,", + "input-week.font.placeholder-value.sm": "S:c034b464014007ee9a0864f4568216ab962280f9,", + "input-week.font.prefix-suffix.dark": "S:77c616d3b13fbeadd35d9f2ae884050816c513b0,", + "input-week.font.prefix-suffix.lg": "S:88a969ee4a2606da73ee488730f108607e07b51b,", + "input-week.font.prefix-suffix.light": "S:f729b33fe2952754dd1bac1c652648608b897170,", + "input-week.font.prefix-suffix.md": "S:6d98c337821687238f031b1b0788127e170b6321,", + "input-week.font.prefix-suffix.sm": "S:758c3dce5a908e7275c6f981acd28b6dd48313c2,", + "input-week.font.read-only.lg": "S:75d76dddebf48cd954302424a4c5b080bf97ac20,", + "input-week.font.read-only.md": "S:c3ea503b800d006b8af96a7d1c003e7d0b3cdfea,", + "input-week.font.read-only.sm": "S:a82357e6f58d110eb9fb69f4aa35ca5b1ba649cd,", + "input-week.icon.dark": "S:22dddfed96d981eb9cadd43934f85f9c7e5754d5,", + "input-week.icon.light": "S:93eb6f76331623b1e4295a4631215c7e053e357d,", + "label.font.dark": "S:789755729084363f948399a8cc7bed421a650dbd,", + "label.font.lg": "S:e36db5544b2e59e417fbecac6b89fb839c758f14,", + "label.font.light": "S:f96b9463172c54c718ab16f04652e53a2d38749d,", + "label.font.md": "S:7674709aac14bc715513d70125b2d0f2981950d6,", + "label.font.sm": "S:ccad2e8ea4e3567fd50cc4799ea5ca3aa7475be6,", + "link.border.dark": "S:25a754faa7ea08b92e5169f1f43153e2762c8ad3,", + "link.border.light": "S:da6a4bd5e4a7e478fa4978f95fda7ebddc6d63a5,", + "link.font.dark": "S:eca7fd6bab0ba8ff7c89f103b828b9daa0bcb672,", + "link.font.light": "S:4d667225aa3c281aab72f9c62cc57dae8034b051,", + "link.font.regular": "S:96202836cd25e42527188b322dcaaf0a0d65fc24,", + "link.icon.dark": "S:0039552380ba48ec9f05eaa44ab87d4973cf6dc0,", + "link.icon.light": "S:dff668cf8d18be2437490da2ab5c9bf40bfefa54,", + "list-item.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "list-item.background.group-heading.dark": "S:f914ea9406405b8099946ab0e8cc2c7b8be86e6a,", + "list-item.background.group-heading.light": "S:03317e574a5d343a330a00bd09863a538d5c7d19,", + "list-item.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "list-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "list-item.border.active.light": "S:7853c57fe54edf930c293a2baa63087ca5427f47,", + "list-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "list-item.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", + "list-item.font.description.default": "S:a2ea2fc7df6b80ab8c6a22a2fa028de390f696e7,", + "list-item.font.description.light": "S:8b9ec576ddbfcc4ca8840349e34d31c7c9e0d4db,", + "list-item.font.group-heading.dark": "S:a36411fb0f7d1ef2470a11cb897f1d03292d17cd,", + "list-item.font.group-heading.default": "S:c90422ca5f91de42e8d36f84a34fd8c22452b94f,", + "list-item.font.group-heading.light": "S:08404e476f328eb340684e7e42d23d6709655b9d,", + "list-item.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "list-item.font.label.default": "S:7d7d6b93e179cf35a0583519cf0e0dfef6e30680,", + "list-item.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "list-item.icon.content-end-icon.dark": "S:af6c2896b185263759e051e01bbfea5496a95420,", + "list-item.icon.content-end-icon.light": "S:83fb160b39ea86a9f737f961aaacb1552d60cc62,", + "list-item.icon.dropdown.dark": "S:da36b1df35aa927026e23e8ed51f89055c0905a8,", + "list-item.icon.dropdown.light": "S:6f352a76782b988917efb50445dfeb875ebf76c0,", + "list-item.icon.select.dark": "S:680436af6051561f37e2902d764f2bb765ee5467,", + "list-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", + "loader.default.foreground.dark": "S:ac63bdf0ac6a361ee921b1bf249fd8216f3f3bac,", + "loader.default.foreground.light": "S:8d147d86b0ccd1fd10d2c4f66a8c7fe443fffe49,", + "loader.font.dark": "S:accb0333ac5248b9c1fca836f13bdb37fe9da329,", + "loader.font.light": "S:5a966055514aeca6ab96a67a9b338031458fb29f,", + "loader.font.text": "S:1ccd3ce9b93bb1292c06bb81d7f5d9ed09632114,", + "loader.font.value-text.lg": "S:9a72c6243aa7bf16ffe0aab0533c00dccdb467d3,", + "loader.font.value-text.md": "S:adc395ab7d75c4449651c09a90f8ce219fa75cf7,", + "loader.font.value-text.sm": "S:f22e5ce5d2150e799951848c087bfb29e8172071,", + "loader.inline.foreground.determinate.dark": "S:c3c71f30f6786f011212e4ba9c2d6fe51669ce3a,", + "loader.inline.foreground.determinate.light": "S:3297317a25afc9a30ec33fd5848f6db73dd9b976,", + "loader.inline.foreground.indeterminate.dark": "S:bb47320bc845ae395d294e026da57b26c1a4fde1,", + "loader.inline.foreground.indeterminate.light": "S:cba717699668a01f75fc0f9c6c5bf7d71f825277,", + "modal.background.dark": "S:f93665d43acde2723c1dd1fd55485cddccffbe0e,", + "modal.background.light": "S:b0d6ea744610b70eebcee0e94feac890f0f5d2af,", + "modal.border.default.dark": "S:98193e16a2bb683b3b8a486eacab78627a634897,", + "modal.border.default.light": "S:abb269ce6a9ba6f22423ac7b12bb23d89d856d9d,", + "modal.border.top.brand.dark": "S:41182639cecf3238b2adb863c4922eef1e2f8c27,", + "modal.border.top.brand.light": "S:9f60158c0eca6deb5fa20779922da71ed65f3baa,", + "modal.border.top.danger.dark": "S:265067e918dbd864e30fa1a6db51c3e8d405055d,", + "modal.border.top.danger.light": "S:b10cf456b972c7caa6464cd5662b381fbeebf44e,", + "modal.border.top.info.dark": "S:930e1d3c789bcceb317b331e31a0c968752a0601,", + "modal.border.top.info.light": "S:1affdf46fd1350410757747d8734867b5ee3c55a,", + "modal.border.top.success.dark": "S:62036e3463f1008e627f7860d34ead509ebe2022,", + "modal.border.top.success.light": "S:26d02170379c4c03fabea51f5fe85b3e6595ef6d,", + "modal.border.top.warning.dark": "S:bd3549c38757f39a766d2c6e88f74803c736cf68,", + "modal.border.top.warning.light": "S:d0cfb78b85540ec2633cd089ea512cfe9999bfd7,", + "modal.font.content.dark": "S:f35dd6360237726a8e2cc91e2b71589b823418f9,", + "modal.font.content.lg": "S:a32be47169ff68166b446f6ab25f85cf569ecb3b,", + "modal.font.content.light": "S:c7efab5b1cf114942bbf40a4e526af033a6beb3b,", + "modal.font.content.md": "S:f9c86f0d992a2be6fd8e3e532aa290091a2689be,", + "modal.font.content.sm": "S:6919a180dcab263f111ed8d50abb117999dbeec0,", + "modal.font.header.dark": "S:940840e2a9fbeb6a15b6333ba19d72df45cd09e2,", + "modal.font.header.lg": "S:1100f73d9c2607a187e888164c892cefa44069d8,", + "modal.font.header.light": "S:58d3d34af5dca920fc6d567bf456c1ae470a80ed,", + "modal.font.header.md": "S:82b2a96d004a787e86e1725843434db48cddfb81,", + "modal.font.header.sm": "S:d14df03c14aafc3ca13bbab545649ade40a81f32,", + "modal.icon.dark": "S:e33e40e768d91e7c905e135570632eb05cbf4814,", + "modal.icon.light": "S:f3c1087b83d681877f069719e089a8e3bedf1bde,", + "notice.background.dark": "S:f8d5869e219a4a1fd5e44b96498dc6f1a3fa44cd,", + "notice.background.light": "S:ab124d52e87d502dfa8900636b495fed3d87e0d7,", + "notice.font.message.dark": "S:833b6ff7592ae85266f3b8b23fa273e2364ebc3f,", + "notice.font.message.lg": "S:156302888dd124d8dbd7510b29dc065028f7a355,", + "notice.font.message.light": "S:dacb00319d7a749914079f1d4637da29d929eb96,", + "notice.font.message.md": "S:3db726fb72e75445c27050d87de72873ee3031c5,", + "notice.font.message.sm": "S:4183cdefcfa04e780a17bf098a131ab62d6d1fc4,", + "notice.font.title.dark": "S:b0c49639ddc4d125a10059b9ac8d22dc05d9f7fe,", + "notice.font.title.lg": "S:d8a11cf01f4a2362bce4b84fe831b0c86d3df0cc,", + "notice.font.title.light": "S:289b970775ebf6c20528799840cc642cf3c5dd75,", + "notice.font.title.md": "S:24323d8ff76b71d2a492b6754905820c19b0f815,", + "notice.font.title.sm": "S:753bd9d99be05b4f14d8f1668e3a44360317e100,", + "notice.highlight.brand.dark": "S:5a0aa0693983438ce0bef3578d4d009524410210,", + "notice.highlight.brand.light": "S:34279ae2feceb658c878fdba002a5ca67b5d1033,", + "notice.highlight.danger.dark": "S:f2d35771d6aa46d0cb57ec3f967628112be42c6b,", + "notice.highlight.danger.light": "S:611f49de89739a122010020cacc855983c50c897,", + "notice.highlight.info.dark": "S:c3543a525a75d67d5a5fe6f81c5bc385b48b1b10,", + "notice.highlight.info.light": "S:b61327361a3f63b0d3c862ba974703fd99ccbc28,", + "notice.highlight.success.dark": "S:90b78b612bb101ea38e6d090038c35799e1e800c,", + "notice.highlight.success.light": "S:a5a297b70a83f80b9ea37f827acf9c003ef29680,", + "notice.highlight.warning.dark": "S:c8135a8da56c98d8a17fdeec4de1ceb5f1ef762f,", + "notice.highlight.warning.light": "S:130ab09c2aa2b2b58741ec81b99ed97770e82248,", + "notice.icon.brand.dark": "S:db10656434d5ca654dfaaa87527270e943d3b259,", + "notice.icon.brand.light": "S:a454c262b567f94e3020b4b9909781a1439f5df1,", + "notice.icon.danger.dark": "S:d4fa11838d588756a0b506aaf2d2b2a54f135e27,", + "notice.icon.danger.light": "S:e8a2a16570cef752db74099e4c13845a4c255850,", + "notice.icon.info.dark": "S:4817907e00b7b066619b8107f5376f993a440a0a,", + "notice.icon.info.light": "S:3a33c2056b8d723830571e032fb1f1baec3067e3,", + "notice.icon.success.dark": "S:4f8dae981edf6ceab4913e7fdbd27db303b844f3,", + "notice.icon.success.light": "S:8468d3fb596353cadca89fcf5fe97e3a9c9da3fd,", + "notice.icon.warning.dark": "S:7e6dd5517116030f15a2e5085f011f0181d983cf,", + "notice.icon.warning.light": "S:bc65487e49f2e086d8d2f8bb38984b78d3104612,", + "notice.shadow.lg": "S:32a5d1f6be69b783feef78ce04f6888b6f6dbf1f,", + "notice.shadow.md": "S:7d453b1cb8e635fa22bc6358de5568e1893d98e0,", + "notice.shadow.sm": "S:d10d57e8771721e22a8b49b49cc397ead2983ac7,", + "pagination.background.default.dark": "S:f8b4f8ac6efc34cdc1c22a34336b8afb11c4dd26,", + "pagination.background.default.light": "S:e4353bd215bb02cbec19201dd8d51a8d0e71a5a5,", + "pagination.border.dark": "S:b0b31313c12dc608a67682e8f129d077fd5e0c25,", + "pagination.border.light": "S:e28d8b9c3fc6036ded6f93a2488409284e285b48,", + "pagination.font.dark": "S:4000ee1d777e47ae15aa5556162f29cc76d31c2e,", + "pagination.font.lg": "S:c7c49c50e55f36273af30277f00b93990a2bbbdb,", + "pagination.font.light": "S:1ab9bb66e37d8e6d0939678940d56f433cbf0e8a,", + "pagination.font.md": "S:7daf21acd149ad62efadd2e6d948f35a13d9bb42,", + "pagination.font.sm": "S:2169a48d767605a4d92439e231e1ff3322a41e29,", + "pagination.foreground.dark": "S:f5186e448d5adb48314051dc128b192557a705d5,", + "pagination.foreground.light": "S:f342ce11ba0185ce66abc41dba0baf5f05107ef0,", + "pagination.icon.dark": "S:2f95e834a9d178c627a600691c3e08d18800d9e6,", + "pagination.icon.light": "S:5b06660b5ff5d5cdc8b6cc8f65797d08b41f9575,", + "panel-header.background.dark": "S:dffeb5bb12f7df1073117fd0e314bb5fe633595d,", + "panel-header.background.light": "S:8a3703bb079335851e7f21330bdb58524b452f34,", + "panel-header.border.dark": "S:bec375839a8a2546f2c450a9baf182e0bc8346c7,", + "panel-header.border.light": "S:9630c29ffa5404036ad65ed667f8367dbd94855c,", + "panel-header.font.dark": "S:678d3fc94fe4d98c6da516a603166b56e6299945,", + "panel-header.font.description.md": "S:c139d1e31a776b188271ffcda245dc6dd67555e8,", + "panel-header.font.heading.md": "S:301db0aa37a3060cbbb18396fb1b37893b449840,", + "panel-header.font.light": "S:81679ab61b88d539a25eaa9ab6826d9b41bc981d,", + "panel-header.icon.dark": "S:5c7b709bf38ec16d3bd179116a812ca49d4f576c,", + "panel-header.icon.light": "S:060f4dd23e76de25acfb1f0370aaceb2fa70a79b,", + "popover.background.dark": "S:ed16aebbdc7aff5d0a80d6c9cad03be046d4a3d4,", + "popover.background.light": "S:1d3e69e5abb96b7707089d527e1bbcc08192a84a,", + "popover.border.dark": "S:6ff7f9e93196fe1822dbcd98003b88dfc428f3ff,", + "popover.border.light": "S:4977ae9c45d0df12584a239770d71a7fcda4d932,", + "popover.font.dark": "S:2a6c74bd0c499ce5502d1279c0ab3ca31c355089,", + "popover.font.lg": "S:10c0f6480342b452d2362e7995b737d08d09b0f5,", + "popover.font.light": "S:9b136cca46822ed20104f7bd5f72b77d2b24476c,", + "popover.font.md": "S:90126b0d34abe0e77f98a83df8ff424e45fa00c4,", + "popover.font.sm": "S:2484e75b56c06d0ae846cbcef457e960a062eb19,", + "popover.icon.dark": "S:f904b5bb19ed738addf2748b8a37acf84e863152,", + "popover.icon.light": "S:c36e6cf8a806c7cf6ab2245759a89c02d26e6f70,", + "popover.shadow.lg": "S:8595c061a6ba6b2edc06b84266fbb34755785baf,", + "popover.shadow.md": "S:03e6302b06feb738995d8e04ac5783991fb2700b,", + "popover.shadow.sm": "S:a4cbf4f3224e3e077a2554ac80a098932a26c482,", + "radio.background.dark": "S:a946f634993fe3672c773e7fddb87a2e08189daf,", + "radio.background.light": "S:3c924d08af68ea9e84f87eb506b13decd4a34c0d,", + "radio.border.checked.dark": "S:d89e530698a8005b61255eafb56188ce66b4a0db,", + "radio.border.checked.light": "S:9239c1c3230edf523c50c749515ead3332a6fd2a,", + "radio.border.unchecked.dark": "S:af476b8114ebd95e6fc19e07a08d4da007485f2d,", + "radio.border.unchecked.light": "S:7b80988b4abdab9e1eae1d0009cc2883aa35e63d,", + "radio.font.dark": "S:767675ad5b5f1c1cb350dea76b03117673dc874a,", + "radio.font.lg": "S:e6d4d17e51e74ceede42bb152e2b5b673272cc74,", + "radio.font.light": "S:4bfd0ea91003eecfb781da65077c99dafcedfaa9,", + "radio.font.md": "S:25fcb1bce3962eb9c15cea6eff0ec85dfca95491,", + "radio.font.sm": "S:24d08ab1ad2693b5b1943a47f3ecdcf2a787df45,", + "rating.chip.count.font.dark": "S:2850b6201376435a4ea7dacc23a5ba1c5470ea60,", + "rating.chip.count.font.light": "S:1b4379892b2b7364038616b1aba9185269270cfd,", + "rating.chip.foreground.dark": "S:932f922ff703fc0e93741dac1a8fca4cc41d2381,", + "rating.chip.foreground.light": "S:2fa1ebd4f07ec68f98f66a73523afe555034e91a,", + "rating.chip.value-text.font.dark": "S:db09ed4ef52cd09322351cb5b2080c2d70409e96,", + "rating.chip.value-text.font.lg": "S:489e5799888c9891da7143b48eccdd022c106004,", + "rating.chip.value-text.font.light": "S:6665f961c7d72e2e7ce13c295c96daa8c026443c,", + "rating.chip.value-text.font.md": "S:33e2a548f65b958cca78c7999565d098a0b40ad7,", + "rating.chip.value-text.font.sm": "S:b4baa69e16f0403029d3a5d0ac401095b18b719a,", + "rating.star.background.active.dark": "S:136f5afb1132af72ab3cb535b956cfd5b4dbf85b,", + "rating.star.background.active.light": "S:5b6e9bc1959e24eb05fef749444344115cc8edfe,", + "rating.star.background.average.dark": "S:81abaf9538de10f710c05472de085104a93cf172,", + "rating.star.background.average.light": "S:015a125e5436292e757c350adb8a132f7e7ddb29,", + "rating.star.background.default.dark": "S:7df98668b5539e5cf7b31fa259a2f9757e4ace12,", + "rating.star.background.default.light": "S:b1babf0f7635b7abf05f161059976bcfbc9c0994,", + "scrim.background.dark": "S:42fef5e61b8bc2fc0493ef1822bc4431938c5adb,", + "scrim.background.light": "S:8f48354b781f64d58fa628451472e80c5659496e,", + "segmented-control-item.background.solid.checked.dark": "S:26712f5e9e0a0144af034edc2dc1684268194276,", + "segmented-control-item.background.solid.checked.light": "S:88a179e6edd745b991744ceda002358c1eb6da97,", + "segmented-control-item.border.outline.checked.dark": "S:793004104d0cc84702feaa2b25fe133e67dc2ea6,", + "segmented-control-item.border.outline.checked.light": "S:12aa76300c0fe24e498e868ae5f7eb576d491b33,", + "segmented-control-item.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "segmented-control-item.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "segmented-control-item.font.outline.checked.dark": "S:d6e975c4ecd91e29641b6c43f6858952e9e4b9a6,", + "segmented-control-item.font.outline.checked.light": "S:1d4217c75808b52da5cd20a03197e55e3bdaf48d,", + "segmented-control-item.font.outline.default.dark": "S:68abf0c4557368dca8e3448ea038f8ca4879b07c,", + "segmented-control-item.font.outline.default.light": "S:7ed42e89abd05261946f02e9d70d0908e2c5d417,", + "segmented-control-item.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "segmented-control-item.font.solid.checked.dark": "S:05d25ad6857f6699ec9805b56373da2584486755,", + "segmented-control-item.font.solid.checked.light": "S:f49db657f940c34986ff48b31e38bebf4d5d8867,", + "segmented-control-item.font.solid.default.dark": "S:05cc268ddd29a66a166c3c5119116ee355980e5b,", + "segmented-control-item.font.solid.default.light": "S:76a7def62fe43a97befabab2c8c4c8e9c6a35172,", + "segmented-control-item.icon.outline.checked.dark": "S:933b4e9990c6918ba3ec3bc5e2a8e3e7fed5d50f,", + "segmented-control-item.icon.outline.checked.light": "S:7504cec3384e8f5c9f1bd196649989c0b4df39e9,", + "segmented-control-item.icon.outline.default.dark": "S:c7671889bc30260f873c6f3fdd06b47d159f6904,", + "segmented-control-item.icon.outline.default.light": "S:ff5d8b6ff22ac0c2db72a575a5ce2fc759e7996b,", + "segmented-control-item.icon.solid.checked.dark": "S:26e58e479b3fc6e831e37df57ad9b2c793af39e7,", + "segmented-control-item.icon.solid.checked.light": "S:c03ffdfdc0e74ef36be81f70261d6cb6013735c9,", + "segmented-control-item.icon.solid.default.dark": "S:2eac662726c9e8765cd9f4ca308baf332a5f178f,", + "segmented-control-item.icon.solid.default.light": "S:9c8ed4ff26439af5b2860e5a0cff1e74746267f7,", + "segmented-control.background.dark": "S:0ae2a8aa786768682db91d3d34cb7c4bb1d7b1ba,", + "segmented-control.background.default.dark": "S:b6ef14c8a7d7dba948f75936ae8aff66a17f3598,", + "segmented-control.background.default.light": "S:118145446b795466920cb84773a5f8b836faf90c,", + "segmented-control.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "segmented-control.border.dark": "S:289b21bfb19d056ac6f446082da1265a5cdcbeba,", + "segmented-control.border.light": "S:cc34eda67c562cb3861320064ae83ebc45d56de4,", + "segmented-control.font.checked.dark": "S:70cdf3d99ed4ebe1259c56c9da412df592461de4,", + "segmented-control.font.checked.light": "S:40459b09c9d4b357afc0b55a72ae020b6cf8b4d8,", + "segmented-control.font.default.dark": "S:6f813a95e51e56f689960aeca0895e0af3887705,", + "segmented-control.font.default.light": "S:8076526344bf17ef08eedb4f0f5f89cc87b7484d,", + "segmented-control.font.lg": "S:81087abae3e4766d676f2bfe327475772c83569a,", + "segmented-control.font.md": "S:4217bc13c06f7a6d685c462e7151509f0fc86428,", + "segmented-control.font.sm": "S:530e7a6b2a0f03ec118cd89c879e375e106234e5,", + "segmented-control.foreground.dark": "S:a8f5c1aa59ce479b21ffc961f1222147b6a73f2a,", + "segmented-control.foreground.light": "S:47cd623eded741572dab15224f4c5c7e174516ca,", + "select.background.dark": "S:b8c1d11cdae2f31e2199a9b052de454972b24994,", + "select.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "select.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "select.background.light": "S:9fe2b8526f90a4c952a6c4da0f72c6ce226d66da,", + "select.border.dark": "S:2eddac65742b40e10f6eae8396347270b9299230,", + "select.border.light": "S:e296829a2027bbc4e4cde56c3eed975d41d30db0,", + "select.box-shadow.lg": "S:e13b51b3501db393d25693242284df7ece2e52c4,", + "select.box-shadow.md": "S:2d1be1b2815911047a2998daf5f8a8900086776f,", + "select.box-shadow.sm": "S:fc6af9b0932b35a430b5801d07d2a09091f54d89,", + "select.font.dark": "S:9de74fe57bd1560383f1601f128b5f91ec698a37,", + "select.font.lg": "S:5e3e3fdbc70d0ef4a15cd54baf0e8900e3c026b9,", + "select.font.light": "S:8fefcd7b839239750c53e02d6d88d491c2e8f5ba,", + "select.font.md": "S:d4b25dcc93fc0fec142ae2cc23d3650f29e2a95c,", + "select.font.sm": "S:d4379882cfd4cbceaecd76c987fe5a8bb5b837bd,", + "select.icon.dark": "S:6a58964b85910507da8c5603c2594db2377807a6,", + "select.icon.light": "S:4dc7aa4d6f6dded4fd86c44c6b25059bb491a4db,", "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", @@ -1635,70 +1512,70 @@ "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", - "semantic.font.default.bold.-1h": "S:17b20c9348892cad57a5264d833eff914389be66,", - "semantic.font.default.bold.-2h": "S:542864c12a09091cd711ee99382dfb670da75d56,", - "semantic.font.default.bold.-3h": "S:f9691e3bc28d14127e0937c5709a6adac1abb1b1,", - "semantic.font.default.bold.0h": "S:36cc6065d5108adcd6fd5ae0a2dd7aae3ac9b7ab,", - "semantic.font.default.bold.1h": "S:7f20641af4349763385cccaa4c922507d0509bbb,", - "semantic.font.default.bold.2h": "S:7ffe88bbc64eb05102b59d71d053a9eec4e193a0,", - "semantic.font.default.bold.3h": "S:cd6d4da5cbd8097ce2998db554909e0d69681d29,", - "semantic.font.default.bold.4h": "S:6294f9009b4ca52cd74b62fc93429e5270c2e1e7,", - "semantic.font.default.bold.5h": "S:542a6d26a8c5de3ef75e36d3be6e4c77e3e47d47,", - "semantic.font.default.bold.6h": "S:fe0f1febd1e9d6d281b8598a68ed8491c4afc6d6,", - "semantic.font.default.bold.7h": "S:e44d20e160df29f5b8bb28d38b69ea93faf3b424,", - "semantic.font.default.bold.8h": "S:4b05ff3e5710321f82cf95d7e57335bc6ca4f1cb,", - "semantic.font.default.light.-1h": "S:d97c48634357f806ef3d1480c9656ef66fab7289,", - "semantic.font.default.light.-2h": "S:6d4d0ce7635f3287bc32b08ba7b014de59921559,", - "semantic.font.default.light.-3h": "S:448b8eef6afc320529c1511a5d210297c4b712da,", - "semantic.font.default.light.0h": "S:33d15e08a02cd7e1bdf1011762f6b9adfae79b27,", - "semantic.font.default.light.1h": "S:d1ffb1864e795d393f0095a4235916dc58a8259e,", - "semantic.font.default.light.2h": "S:0952400b4b67b69f03816c2f9c925db27c7d801f,", - "semantic.font.default.light.3h": "S:4ea96f94c15953429909c2b2dc15c3bb0b2815bf,", - "semantic.font.default.light.4h": "S:d64e93a9f77b74fa9349db68933422df14e8fb10,", - "semantic.font.default.light.5h": "S:0be059d62f7cfd1b86c5eb059707982ff5e32b23,", - "semantic.font.default.light.6h": "S:0fa03ed4d3b9f4473d72982137b02379de784218,", - "semantic.font.default.light.7h": "S:df73e52a2cdf830d1cee6bbc8c28905ca60a8dcb,", - "semantic.font.default.light.8h": "S:bbf4a7b49b5e20bfd25da69a7a1e081b3922727c,", - "semantic.font.default.medium.-1h": "S:06e0d4a94b16fa9a0c903e1b57f53d101fc775f2,", - "semantic.font.default.medium.-2h": "S:8a9b402b814f835cbc6842d324c047ea41ac92a8,", - "semantic.font.default.medium.-3h": "S:a68637f330054d193a760d2f79d0a8e643e9ec31,", - "semantic.font.default.medium.0h": "S:5ea926036783771ab1655f2b2ceb56250968522b,", - "semantic.font.default.medium.1h": "S:d540a3df6537a70aa5846a51abf53d8648ab1082,", - "semantic.font.default.medium.2h": "S:1472f2ed1508242eb3ec85d507371921258b2bbf,", - "semantic.font.default.medium.3h": "S:98c7c2afadd9444f79f3a87629fc6be454982068,", - "semantic.font.default.medium.4h": "S:371251870d9e73733636f040c0c06062eaeda112,", - "semantic.font.default.medium.5h": "S:4d391a8697373fd0fd8dac6cec59936e7c1598bd,", - "semantic.font.default.medium.6h": "S:5b77ac013b402efcd145ccf0d0719a9299958808,", - "semantic.font.default.medium.7h": "S:67029b6225ab20096df8da8ca9de08de43491255,", - "semantic.font.default.medium.8h": "S:b9869105637e6d3b5e4e789b9adab73c9b0b8723,", - "semantic.font.default.regular.-1h": "S:d226510a3405bab79fb709f0894da8ffe83f0f49,", - "semantic.font.default.regular.-2h": "S:c2ce2e62c26dd7e48297ebb52dd530aa12efe109,", - "semantic.font.default.regular.-3h": "S:e539f06b6ef0f93743d99f050c67d6496056799c,", - "semantic.font.default.regular.0h": "S:901d996f7d9fdb561034d4ec0e8e74ab5de106d8,", - "semantic.font.default.regular.1h": "S:c48245c10d68383746909343a54fdf5a920ae81c,", - "semantic.font.default.regular.2h": "S:9c34f9ed2b0abde711f5f65c08633627314a491b,", - "semantic.font.default.regular.3h": "S:f8ff4a752cb1cc3baeb4c4186543b98a592f6ac7,", - "semantic.font.default.regular.4h": "S:6a50b1b7c5a005593fd4fa8eec8230f8f783ef44,", - "semantic.font.default.regular.5h": "S:34db3a1662fbcf2c075d6e5b607b6bbb27a50948,", - "semantic.font.default.regular.6h": "S:e3f9d7e0f4439e711883b04d94c827dbfff20a8d,", - "semantic.font.default.regular.7h": "S:6683a70fc5ca1dd68eef7ba2656ba179376fe239,", - "semantic.font.default.regular.8h": "S:f33bdcf5723f8bd3ff9fbe33b6d07d1c18525ffd,", + "semantic.font.default.bold.-1h": "S:4b31cd2cd515cf3910f8c11691ccedef991d0837,", + "semantic.font.default.bold.-2h": "S:674e1066d0baa22c092c380af62decdb2f01039b,", + "semantic.font.default.bold.-3h": "S:2c76483a72c4a21aaad0fa7a4e46f21b1d7fd296,", + "semantic.font.default.bold.0h": "S:a322df28eb2fa8ba05f7920dde2f1f8e8c8c72a1,", + "semantic.font.default.bold.1h": "S:35eb3555964ff34f997844be0941179e35614ef5,", + "semantic.font.default.bold.2h": "S:ff58d401037c4df82eb792bdf83dd3a677675566,", + "semantic.font.default.bold.3h": "S:93f34b49ca5a178a3c16c0f038cb2b1f64e7fced,", + "semantic.font.default.bold.4h": "S:8f0c37a3ef5e0177ebcc678205efcc5b08182155,", + "semantic.font.default.bold.5h": "S:381cabceef29ec2c3efb5c4223963e1d2b312ca4,", + "semantic.font.default.bold.6h": "S:ad4b807952d3d14cc9830993044c5344ce822236,", + "semantic.font.default.bold.7h": "S:ecd719ac5e7917ea0b67b60e5da18b2a16307bde,", + "semantic.font.default.bold.8h": "S:2b6b50a315ed33609bc3bc4a941054c0f354312b,", + "semantic.font.default.light.-1h": "S:cb6b1f27136260c73fdd6513526039896f010feb,", + "semantic.font.default.light.-2h": "S:b0d9978911f82bcb6f381af0e524360eac91a364,", + "semantic.font.default.light.-3h": "S:f5a4e50602b887367a443a5a8abbb5b4724ec7e0,", + "semantic.font.default.light.0h": "S:254bb84eae735e5949f26a0fab87742c68a198fc,", + "semantic.font.default.light.1h": "S:58304d7668027480d94504876df7600e8b137344,", + "semantic.font.default.light.2h": "S:340f5bc7522978fcf8c31eb43f56166eb4493386,", + "semantic.font.default.light.3h": "S:0055e7d2c8fbd51f04ca0d1e016b0540c3f82bf4,", + "semantic.font.default.light.4h": "S:e5b76c807b0d1e079369f1bb50a47f15bc22bab9,", + "semantic.font.default.light.5h": "S:14816ad4f69a375b7bc1ff3204124f1411c4ca16,", + "semantic.font.default.light.6h": "S:6fe1fbf181a5d515e716ce8e0426e1331e33ea68,", + "semantic.font.default.light.7h": "S:2300b48d71194b1847e6db7d06790cb2c37eea02,", + "semantic.font.default.light.8h": "S:5800d5425244c907292954598fc7e542b1411224,", + "semantic.font.default.medium.-1h": "S:bf34d212aed602cc4a54c06ff0eac3b11a6188ee,", + "semantic.font.default.medium.-2h": "S:edd9f58b807783dcdb746274342c914bb9c13e0a,", + "semantic.font.default.medium.-3h": "S:01472f62f7552c1e2ccb87fe5552bc8fa3009487,", + "semantic.font.default.medium.0h": "S:54c464fe9a4e5571819cb17dc4eb833a2a32a703,", + "semantic.font.default.medium.1h": "S:6fe01690ea302ec21c4dea56c55bc710618f73cf,", + "semantic.font.default.medium.2h": "S:cd4d1efb402aa84395b7d7016bb94b6a03e29b72,", + "semantic.font.default.medium.3h": "S:175c1a55b79e0f3bd2aa9fcf53c085b8d4efde9c,", + "semantic.font.default.medium.4h": "S:3488f628057a460cf1080103d6913384a25cf3ba,", + "semantic.font.default.medium.5h": "S:d82797ecaa29e3019e42229c3f9e7c0ce26736a4,", + "semantic.font.default.medium.6h": "S:0a32fc55e986aab7cbc887e52b7e6bf97fb29832,", + "semantic.font.default.medium.7h": "S:1a10ccd3e6c96ab3e2cb79c64acb698abb916b76,", + "semantic.font.default.medium.8h": "S:5cc11410706db2c86c602132a15fe4261f4d0300,", + "semantic.font.default.regular.-1h": "S:da8671492525708031275a78ba61c55994876d94,", + "semantic.font.default.regular.-2h": "S:821b5e101e64d15e232768c98dcd41a2b4d99496,", + "semantic.font.default.regular.-3h": "S:613303f6d5e655d47e4a674aaa08ea848404c607,", + "semantic.font.default.regular.0h": "S:93c53d0e2f36444065d7d71fae9489ff36f5abbf,", + "semantic.font.default.regular.1h": "S:d3772de1c389167bea7f3cc6e21d67082da03c3c,", + "semantic.font.default.regular.2h": "S:90b5afec9d19505ea1035744074d6f73006ff52d,", + "semantic.font.default.regular.3h": "S:310f9f4aa86918bc3bca2020fb42dbc1a2f9027b,", + "semantic.font.default.regular.4h": "S:898ce0315c907d907f0a314834162c49cf9404fc,", + "semantic.font.default.regular.5h": "S:7fa979bd44078f70aa1f9e1dbdc58397440c4fee,", + "semantic.font.default.regular.6h": "S:054d8c2b34d2d6f7e5eb8e80cec364ad714fee6d,", + "semantic.font.default.regular.7h": "S:99986f5c9ed7fb33b027a1d2b7a791f7f55f1620,", + "semantic.font.default.regular.8h": "S:3b7e4f90fc5993644a451a01a83165664bcaa3ce,", "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", - "semantic.font.hierarchy.body-1": "S:505abbdd354c8ea55e27b9a500e86276988eb9cf,", - "semantic.font.hierarchy.body-2": "S:c4d02b7fec5d9014e79420d18a7dcc4ad9ce4477,", - "semantic.font.hierarchy.caption": "S:b951134acc837c9c2e0fde5059666306d644a89e,", - "semantic.font.hierarchy.display-1": "S:594de2ae8f95a4557f94948efb92e719c44d8dc3,", - "semantic.font.hierarchy.display-2": "S:345ca489008fa931564b0874bd1e23c4e9d48aea,", - "semantic.font.hierarchy.heading-1": "S:94ccd91356c618934977da98b51a717b141c2b45,", - "semantic.font.hierarchy.heading-2": "S:d5452773dc8e3ac66d43ae15d64cdccb0e8a875e,", - "semantic.font.hierarchy.heading-3": "S:5a462c2c5c170b662f9be6536d6034c222ce5d64,", - "semantic.font.hierarchy.heading-4": "S:2fdd27077600a7745a2573719630a2818c9768be,", - "semantic.font.hierarchy.heading-5": "S:51757e80503233faa7a0102da2d6f7770d620f83,", - "semantic.font.hierarchy.heading-6": "S:b603d2e8c9cf762c51996f290b7e930bef26a327,", - "semantic.font.hierarchy.overline": "S:8c5923b6a044203bd88b4829f85ff177c9950004,", + "semantic.font.hierarchy.body-1": "S:5b767071843a62af32b51d2a7cb60f61b860ce3a,", + "semantic.font.hierarchy.body-2": "S:3904c07211c5f14bff47aa1b191f9ecdf1c0484f,", + "semantic.font.hierarchy.caption": "S:e16e2c260dd7cada77bc8f83a4a5f0cb420ebe49,", + "semantic.font.hierarchy.display-1": "S:e85cad8228cfcdfef6b768b93f2663c1d533d24b,", + "semantic.font.hierarchy.display-2": "S:f1242d23501d30ddf0d63b0fab0b5f1f03d2c5a7,", + "semantic.font.hierarchy.heading-1": "S:5a664c6b4c7c13199a5b5530b0d99edb23bbaee3,", + "semantic.font.hierarchy.heading-2": "S:d037295e85f7ba29498488b2762c4dcd2cf33e18,", + "semantic.font.hierarchy.heading-3": "S:15a89a2902c585f9ec35944391ffae182b4c2541,", + "semantic.font.hierarchy.heading-4": "S:13a84ab577d2cf94d38e5fc773bdeddaf4ca078e,", + "semantic.font.hierarchy.heading-5": "S:65cb86ae71277d90609f47065b4e0d1fcf07781d,", + "semantic.font.hierarchy.heading-6": "S:3f11d2a3c2c6b79cf03602ff6dfecc5348ea0ea6,", + "semantic.font.hierarchy.overline": "S:f46a67697fb07d204f685d4671ca9bdc6f598c33,", "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", @@ -1735,54 +1612,54 @@ "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", - "semantic.font.wrap.bold.-1": "S:c5860e8f1206a3d343390c9a915a8f3f58a0b336,", - "semantic.font.wrap.bold.-2": "S:7f2ba398b489c12db90e5045bb6f7027780a9b3b,", - "semantic.font.wrap.bold.-3": "S:4bca865601ab87f1d77f48d3e1de83d3dbac85a8,", - "semantic.font.wrap.bold.0": "S:ad11f6639ca0cd3d85cf993fbc95e7c9ad9ca269,", - "semantic.font.wrap.bold.1": "S:9313a06be8f7070400e6cfd7f7ff27939d6c6ed2,", - "semantic.font.wrap.bold.2": "S:abfb6349c8c060ad0abdb9ce2f363e08233be443,", - "semantic.font.wrap.bold.3": "S:6a08218bc036ca8a46513197790957e3bb9ca105,", - "semantic.font.wrap.bold.4": "S:4aaaf75ae7f4623fd87f62e8891a36efec7b371d,", - "semantic.font.wrap.bold.5": "S:f7fa8ece8ccab4931cfb0c5e19e970140da9576b,", - "semantic.font.wrap.bold.6": "S:122c69ab69b84f7f77c19a7d4500d945e434f81b,", - "semantic.font.wrap.bold.7": "S:2712dec933d765f4c2e0d201dbcb1fba43b266f3,", - "semantic.font.wrap.bold.8": "S:38b78db6105317957d23ba1adeb83432e7831f5c,", - "semantic.font.wrap.light.-1": "S:7841c5bab1ad63e397e9ac884b8ede26130fe2d8,", - "semantic.font.wrap.light.-2": "S:0575d1464658f6f8233739cd82ec2561a46e8199,", - "semantic.font.wrap.light.-3": "S:ec76af7e237bca56ab3b0eeece5616fc4c66893b,", - "semantic.font.wrap.light.0": "S:ad0064efc4ce82398d0acddf75cbd5e41f06f13d,", - "semantic.font.wrap.light.1": "S:fae87e50783ad1979337a90ab0271f6fd5a150b4,", - "semantic.font.wrap.light.2": "S:3bde43f8548be65880bce5d5c2ccb60a59afe03d,", - "semantic.font.wrap.light.3": "S:75de41b5080babbb13afaca2d11073e996b3b0ea,", - "semantic.font.wrap.light.4": "S:b9d229876f3242705efff7bfe110ca6baaf00f71,", - "semantic.font.wrap.light.5": "S:83e915d79c195eda8a98454dca5868f0225e1bd5,", - "semantic.font.wrap.light.6": "S:6e448d218245dbac9f250f5d6cac088005d5e3fd,", - "semantic.font.wrap.light.7": "S:2e650a9572119390bf68afb9cf7ac1ef2ff16aaa,", - "semantic.font.wrap.light.8": "S:bd6df56d4f7f06585fa5eb1c840507647377470d,", - "semantic.font.wrap.medium.-1": "S:4c6ca23bf1bd7002f101a347c3d9ad21ccbee0e1,", - "semantic.font.wrap.medium.-2": "S:526517080d04515a9580785dddc87f680a179488,", - "semantic.font.wrap.medium.-3": "S:018ce57cb92b0652178256efa6f21989100cf8b0,", - "semantic.font.wrap.medium.0": "S:8746d1c9ca0cd1cdd592df79ab2d61ee859b8071,", - "semantic.font.wrap.medium.1": "S:bfb563f71a916453ce2de93c6cad2fd3738cff6a,", - "semantic.font.wrap.medium.2": "S:7a2f4cdb73d54deed52c6b690c6863d76dbe55b2,", - "semantic.font.wrap.medium.3": "S:178f16dbb959a506aed5aff27b4f64ab33e204d3,", - "semantic.font.wrap.medium.4": "S:0100d6fb52cf898cd004a8752d03f5dfab4d7216,", - "semantic.font.wrap.medium.5": "S:9f7368f9e7cb233d4585c25f6e7b7b6ac9f1e857,", - "semantic.font.wrap.medium.6": "S:1ad763f1dc801bceed5a8c2027fa2a357c1fcf55,", - "semantic.font.wrap.medium.7": "S:1e0e5b711985bce690c3e32dd663eae62fe99dcb,", - "semantic.font.wrap.medium.8": "S:ad7eb3080e7540ca64cb61b2b599c73a73da2e9b,", - "semantic.font.wrap.regular.-1": "S:8cfb200ba516a6a75a81538c8d9a5273692f7b91,", - "semantic.font.wrap.regular.-2": "S:79bfcbc46d7482725a02f917f86341342900cc4c,", - "semantic.font.wrap.regular.-3": "S:791af7d01240411e1aada55cc97dd03f9e9a447a,", - "semantic.font.wrap.regular.0": "S:66b886195444d65889657f414927f31bcf090174,", - "semantic.font.wrap.regular.1": "S:34fdc8e0ee010877423e5f7bad26f54e5f4c1ec4,", - "semantic.font.wrap.regular.2": "S:2e82a159ce76ed0c68d7a20f72c38807a69ad104,", - "semantic.font.wrap.regular.3": "S:9e278573c267b7f30f5719e73b1d21105edf49a9,", - "semantic.font.wrap.regular.4": "S:f52208a0d4984cff2d733adce9803ea89a41cc55,", - "semantic.font.wrap.regular.5": "S:a5d4a2bfedfd60bcc6d076cb87053eb396109863,", - "semantic.font.wrap.regular.6": "S:a7a9d92ab31a81a26ff26d3f8193670dabe1cfdf,", - "semantic.font.wrap.regular.7": "S:879ab6791a3c5b321e06c04b83ca30528264ff54,", - "semantic.font.wrap.regular.8": "S:a9f87e2be6eaf5de030dfa0f406f14f6d26369b2,", + "semantic.font.wrap.bold.-1": "S:ba11fe7747597abb54fa5b32a98e284cbc825a51,", + "semantic.font.wrap.bold.-2": "S:5600f5d4d0b0251471f8f82f85ba243dbb746f44,", + "semantic.font.wrap.bold.-3": "S:8307ce906af9e391ffd42642822317af73379a9a,", + "semantic.font.wrap.bold.0": "S:75085a92ee414c2839d33a80f63b6bbe23afc043,", + "semantic.font.wrap.bold.1": "S:9399483e6c3cc719e1b9070ace4f4d6fc4c15351,", + "semantic.font.wrap.bold.2": "S:76178ac0fc3b1484bdcd6307e8e861f6ae8bdf49,", + "semantic.font.wrap.bold.3": "S:a2e054c431d04c3f6d2c9c749954caf8139b5977,", + "semantic.font.wrap.bold.4": "S:41518de5de1f2b61f69b74070b4844983d80fa09,", + "semantic.font.wrap.bold.5": "S:39386b9d7b98663749bc7557d80b7d24892eb145,", + "semantic.font.wrap.bold.6": "S:533c60890127728b56e1b513f7ae329d9a1b440d,", + "semantic.font.wrap.bold.7": "S:f86251c287adfc2cbaaa08732fd51c40855c3623,", + "semantic.font.wrap.bold.8": "S:2001ca9ce906248cca95762574d405b004a9528a,", + "semantic.font.wrap.light.-1": "S:5d85b2b674dd39a2e52a13457d19821dea3b5e42,", + "semantic.font.wrap.light.-2": "S:31dc78ff6ec2aa71fdae7ba753a1c62273aea712,", + "semantic.font.wrap.light.-3": "S:deb3af06f1594881cdb623118804511cfb6a060f,", + "semantic.font.wrap.light.0": "S:c66ae67c42670b6400036f4a90dc284d3dad14fd,", + "semantic.font.wrap.light.1": "S:9bcc0b4685cac69afea80b92ca5a45609647e5ab,", + "semantic.font.wrap.light.2": "S:c9460f873a2e2c4e478f3d6cfdfd5e19258bcb0b,", + "semantic.font.wrap.light.3": "S:a1d276d86cee439652d9c890624c4993e06c2316,", + "semantic.font.wrap.light.4": "S:446fc35dbc99e42a471f262b45124e9ce5cf1029,", + "semantic.font.wrap.light.5": "S:378fd43637ed47feba8db5f8039a7efe5827ac53,", + "semantic.font.wrap.light.6": "S:39f8605888eb7acbd1d55c8eec15a0a2bbd29d23,", + "semantic.font.wrap.light.7": "S:9d7fdf657f6feadbd2ea149c8e999d1032d1cd64,", + "semantic.font.wrap.light.8": "S:4f99775004bf07e11eb513c20beed888cbc27d52,", + "semantic.font.wrap.medium.-1": "S:cdc3b116e7334b91bfb8a0e0248b46ddf1c6310b,", + "semantic.font.wrap.medium.-2": "S:5a1ee045ccdabd23524b6c179e5904516f5e708a,", + "semantic.font.wrap.medium.-3": "S:59797901a00a78e6186925f412fb0251d9ae5ca8,", + "semantic.font.wrap.medium.0": "S:5e2974078f48efc02ff0d7be2a40bb8449482237,", + "semantic.font.wrap.medium.1": "S:74f4134e0bdc1f8e7f92bda1cb1f6a0b5bd502b7,", + "semantic.font.wrap.medium.2": "S:8f9731fa3d24706cc727278076a4dc5e2135f6d7,", + "semantic.font.wrap.medium.3": "S:ddb7bd08f2334c6e5cff5feb14052497972f7a54,", + "semantic.font.wrap.medium.4": "S:de13ab75116b371318d761b95ed60937d23fc964,", + "semantic.font.wrap.medium.5": "S:b21237680b3f749885f1bff3b06e3336ad0c8bbd,", + "semantic.font.wrap.medium.6": "S:2edcdad9c73731d81f7863273c7828c4a2392aeb,", + "semantic.font.wrap.medium.7": "S:e7551e51ec07ac633b614ca932777226c636b0de,", + "semantic.font.wrap.medium.8": "S:a455c1cc8b147c188e14ac10f4730816fe6ca2e7,", + "semantic.font.wrap.regular.-1": "S:4b2a26b52c4df709253557f9b96aa4125504b1df,", + "semantic.font.wrap.regular.-2": "S:8e5021b29fedd7c4d51d88362cbe9b390aea1c19,", + "semantic.font.wrap.regular.-3": "S:1e7b2eb20a5b7abff7477076ad64bdbd4cc7d417,", + "semantic.font.wrap.regular.0": "S:e46722a3a67dbec63aef8992f980171daa47bf19,", + "semantic.font.wrap.regular.1": "S:466c87c6cd5104222b341c217027c8128688f8cf,", + "semantic.font.wrap.regular.2": "S:8e0434b501da3f5ff822e9b37ccb784c98e2e7db,", + "semantic.font.wrap.regular.3": "S:b1124a862077b4c9d3df598d75938cc7ff5e4dbd,", + "semantic.font.wrap.regular.4": "S:b5e9160647e0d1a33c8539b363d5aa498e451a16,", + "semantic.font.wrap.regular.5": "S:44d73560b1462e981fd53f8f713e1459e2eaf501,", + "semantic.font.wrap.regular.6": "S:ccb54f0a9ead3217db631e90f897196fa12cd740,", + "semantic.font.wrap.regular.7": "S:d1118faab6bc2df898db2f6ca718b07aa86a6193,", + "semantic.font.wrap.regular.8": "S:99e1786f387889452832b6daf4c9c09014ce094e,", "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", @@ -1879,356 +1756,361 @@ "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", - "semantic.ui.color.background.dark": "S:25ddbb665ba99d050fcfd4a1eca4307eac11f69b,", - "semantic.ui.color.background.light": "S:306f58c70f1ef21336c630a511f67008734c7695,", - "semantic.ui.color.border.1.dark": "S:de10c926746cf058e312d25bbe1293923913ea3a,", - "semantic.ui.color.border.1.light": "S:a96ee43d9f87e727e1d163dae97e943aa9748f52,", - "semantic.ui.color.border.2.dark": "S:d5b02aa93adc37c2cb7f7ad09e2c9936fef1af79,", - "semantic.ui.color.border.2.light": "S:c34ac7fe01960d487e1340a413d05bbbce372b8c,", - "semantic.ui.color.border.3.dark": "S:72dc2b15e848a591fce54e9a782b31cfd35f69ea,", - "semantic.ui.color.border.3.light": "S:99c548dfdede861e5b4ca80c8e0e27a8ffd970b2,", - "semantic.ui.color.border.input.dark": "S:9b2d20bd17e3afe23b7555baba0542ed04718efa,", - "semantic.ui.color.border.input.light": "S:05a96982b292c82f827ed448b7d1b1b73112f0ff,", - "semantic.ui.color.brand.default.dark": "S:ff86eaace467ba24e95a7f0d1ca36e2e3dc13c36,", - "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", - "semantic.ui.color.brand.hover.dark": "S:5e594584b58499f6ff3a7585e6f5cfac871c883a,", - "semantic.ui.color.brand.hover.light": "S:875002e4989b5f6f33ba973f006d3047f2b75ec8,", - "semantic.ui.color.brand.press.dark": "S:913695f5e3dcf642406582f6968dd8d79ec5d4e3,", - "semantic.ui.color.brand.press.light": "S:1cdfc0334a4e2836371c621c8bbe1b3eae058378,", - "semantic.ui.color.danger.default.dark": "S:bcd9526377574c8aa55265c56efe052ee58106e5,", - "semantic.ui.color.danger.default.light": "S:d9e760f9671a60e78405554f0d6136d5d8da409a,", - "semantic.ui.color.danger.hover.dark": "S:3bc83d4c69f16109138ff03bd2c9305f9ca12b55,", - "semantic.ui.color.danger.hover.light": "S:3248a4c66f727779f4aa07e18ad426c7700efe27,", - "semantic.ui.color.danger.press.dark": "S:c7a0d083475a2dbaa3b2c5cee77b93b306523975,", - "semantic.ui.color.danger.press.light": "S:0317416c5e7ce3abeaf8c10beef54611785cedd1,", - "semantic.ui.color.foreground.1.dark": "S:ce0f83b6569b348b76c4640824e2d0a656e6275c,", - "semantic.ui.color.foreground.1.light": "S:9dd422cbb46d827a6a16c08ceec1c4b521f43d1a,", - "semantic.ui.color.foreground.2.dark": "S:f260c383d532520db9d12e649a880b2cfb7b8e24,", - "semantic.ui.color.foreground.2.light": "S:a31002f2b1a51bd4fedafbf593735a26461b3a7d,", - "semantic.ui.color.foreground.3.dark": "S:b6288fc1b16cd947843f0b1d5b1fc659c3d5e4ad,", - "semantic.ui.color.foreground.3.light": "S:a9d51394e6365799ec9946a3f10d571337ad925a,", - "semantic.ui.color.foreground.current.dark": "S:7843aa25183f4168e7e37abc38238f90178fbe20,", - "semantic.ui.color.foreground.current.light": "S:6f322dcea6ed2d12012f28be4a31b05432ece061,", - "semantic.ui.color.info.default.dark": "S:8941782f2e8868518a8fba39df6bc1cea8fd42d6,", - "semantic.ui.color.info.default.light": "S:bc35ccb3f80820fad15134da4de9ca7ca618e760,", - "semantic.ui.color.info.hover.dark": "S:23f26a31cedad39725a8c7549d93d5d427a3298e,", - "semantic.ui.color.info.hover.light": "S:1e1db2e409ab5142882dcca056f99a725da762e1,", - "semantic.ui.color.info.press.dark": "S:27a9a23a009acf6a0e1491af580f2483da196ae4,", - "semantic.ui.color.info.press.light": "S:1532ddb6aa0fc5804f9c7abe7a09f5bb3171e400,", + "semantic.ui.color.background.dark": "S:a5bd4e603fffa5f5b6859dfcbcf20a88177d252c,", + "semantic.ui.color.background.light": "S:5e75028db99d0945b50a5a928332257b8289694f,", + "semantic.ui.color.border.1.dark": "S:d88fc9eca5f2cc5adc92719b9c9c25a95814c8fd,", + "semantic.ui.color.border.1.light": "S:2beaa21f22906b25d820bb21ac1e4b32b70df7e8,", + "semantic.ui.color.border.2.dark": "S:858713903a54d205d20883c01bc83383437df4af,", + "semantic.ui.color.border.2.light": "S:4439f6a5c85616b5578e5f9365db9b8955668e60,", + "semantic.ui.color.border.3.dark": "S:308407b4a38b1b466c99fc2a06b5baf1b1b47faa,", + "semantic.ui.color.border.3.light": "S:ecfc52c571a41eb0de729476318048f422ac5e68,", + "semantic.ui.color.border.input.dark": "S:8ff87d0713fee3ea5ef9813ad9aa6e86543b85cc,", + "semantic.ui.color.border.input.light": "S:f2ca8cdb21a4e0e51fdf3f8a925c5411fb3eb717,", + "semantic.ui.color.brand.default.dark": "S:7853b1ceb4c6f40bff23a4b68b77ba8e8c9d32ee,", + "semantic.ui.color.brand.default.light": "S:d3ba0b013c6263bf825d18032c76f1149747b0e7,", + "semantic.ui.color.brand.hover.dark": "S:c9e87d26764b32699e4d125ef17282305829103e,", + "semantic.ui.color.brand.hover.light": "S:95477e49df7153c0fa05dcee12802f8c178780bd,", + "semantic.ui.color.brand.press.dark": "S:28975f395e08675e0de58431fadadd6dc435f18f,", + "semantic.ui.color.brand.press.light": "S:a4839abd24167474833bca3e938f5fbc373cd48a,", + "semantic.ui.color.danger.default.dark": "S:17c2b16247a340097253fe2e80af82b4302698fc,", + "semantic.ui.color.danger.default.light": "S:61ff19065cdf814863ffb5c850232c34cc5e1b6f,", + "semantic.ui.color.danger.hover.dark": "S:e99c8e128c1e0822b9e7ed4ff95699a1f15799c8,", + "semantic.ui.color.danger.hover.light": "S:3d701ec1b31b1cfb7b61e728ff0792a707e89b11,", + "semantic.ui.color.danger.press.dark": "S:6d2a2410f9d0888086bf810c3c645aba9ea15f80,", + "semantic.ui.color.danger.press.light": "S:c64652f7c97216555a5a13b4c05c2221608eb8b5,", + "semantic.ui.color.foreground.1.dark": "S:060c80d8778ca230a4d8028989c5abdd88ffb32f,", + "semantic.ui.color.foreground.1.light": "S:770cff909db18e1d3642c04ce219f506bec35dc6,", + "semantic.ui.color.foreground.2.dark": "S:778c8e6c9bb623da9be438ed113cc8ddec26f21e,", + "semantic.ui.color.foreground.2.light": "S:9d52c565b5373e801e333fcc0c74d5e228f7d7eb,", + "semantic.ui.color.foreground.3.dark": "S:134c4b8169e251c71975fc95df0b37b1c526dc4a,", + "semantic.ui.color.foreground.3.light": "S:183298a1a842ef867e7bbdc1c26ba7b101b6d3b3,", + "semantic.ui.color.foreground.current.dark": "S:e3ec6384e71d3573d972098650aea042ce6103bb,", + "semantic.ui.color.foreground.current.light": "S:ac8a6973d318778ad5b0e98411c50bb7a79307ff,", + "semantic.ui.color.info.default.dark": "S:89fdd06b061a270972930b83a5fefe07afa38798,", + "semantic.ui.color.info.default.light": "S:000243272fe67c0189882f15cd6b0c2558f38f17,", + "semantic.ui.color.info.hover.dark": "S:0719d9fc6b02f8e9e9e86dede063039aa3f55030,", + "semantic.ui.color.info.hover.light": "S:5d8bc1175b943d333584437c6c5556d5d9ca283b,", + "semantic.ui.color.info.press.dark": "S:85642920d919a383aa5c6a52a6442d9288100cb1,", + "semantic.ui.color.info.press.light": "S:ab4514642bc86477e29ec757eda5e1def3334ccf,", "semantic.ui.color.inverse.dark": "S:a32fdc05568e2e4282b4836265cb5687e2521e91,", + "semantic.ui.color.inverse.default.dark": "S:a60f0410c01d31edaa62f9c2b21258a3aed11fce,", + "semantic.ui.color.inverse.default.light": "S:801f7d23768ad2752327e79cfd734ab9b62719c3,", "semantic.ui.color.inverse.light": "S:5b474932a5a9f9d8b7c02009b7a5100290ee961c,", - "semantic.ui.color.success.default.dark": "S:a4377176e8858a49ec7bb8466e663377b9bbe1c0,", - "semantic.ui.color.success.default.light": "S:c7736e420c97f32c40c2aff9ba2dc3f35cfc4692,", - "semantic.ui.color.success.hover.dark": "S:370f35e29a3a78b921a889a3b667ee01f0500cca,", - "semantic.ui.color.success.hover.light": "S:aadf659591f998182a22a593a71e4b8b2647ee00,", - "semantic.ui.color.success.press.dark": "S:c11d3d9223c0c3ffe3e32bedd5d6e04f56b6befd,", - "semantic.ui.color.success.press.light": "S:65bb5e488168506c092284ea9943854bee4d8f60,", - "semantic.ui.color.text.1.dark": "S:e21a0c3c8d5a685ab9c217f711d86e4e0d7c14b2,", - "semantic.ui.color.text.1.light": "S:8c8054c9d1acdad360937d1e87b39868b4a30cdb,", - "semantic.ui.color.text.2.dark": "S:a7860d0a07d9c233bc07a62703bf53a65a12accf,", - "semantic.ui.color.text.2.light": "S:5a28ed5672ec6dd9950a05742f3be134c44c2d51,", - "semantic.ui.color.text.3.dark": "S:3783278595fbf16ede70a66d09553f69b13b53a5,", - "semantic.ui.color.text.3.light": "S:ff1caa6a3822f4a34a62a44f8f98f63a1940fd73,", - "semantic.ui.color.text.inverse.dark": "S:73a7f9d57384b11dc91f8bacd71aa73ee3768a17,", - "semantic.ui.color.text.inverse.light": "S:f1e9b8d6929f1e925d6fa3f1c0964ab856d616d3,", - "semantic.ui.color.text.link.dark": "S:a5f800dd18722eff9d0f9bec0656826fedee956b,", - "semantic.ui.color.text.link.light": "S:325ed178e00c12b2ed52ba1a50938d96244776ee,", - "semantic.ui.color.warning.default.dark": "S:de4aea1e80c12dbbacaf32f2839123028a90ccb4,", - "semantic.ui.color.warning.default.light": "S:a5f527c61c655c43a0032fe9357db48396daa2ac,", - "semantic.ui.color.warning.hover.dark": "S:c004e1251a7e8ab8dda7d53acd286eea6b8da229,", - "semantic.ui.color.warning.hover.light": "S:b6f88f4f688d7ba49a0ffe93f8a3476b930f05c3,", - "semantic.ui.color.warning.press.dark": "S:463b75a567d4495c2cb746fdc8292f0b9f661548,", - "semantic.ui.color.warning.press.light": "S:864044c19214493bb045462f0fead60fe6c064aa,", - "slider-histogram-range.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", - "slider-histogram-range.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", - "slider-histogram-range.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "slider-histogram-range.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "slider-histogram-range.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "slider-histogram-range.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "slider-histogram-range.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "slider-histogram-range.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "slider-histogram-range.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "slider-histogram-range.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "slider-histogram-range.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "slider-histogram-range.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", - "slider-histogram-range.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", - "slider-histogram-range.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", - "slider-histogram-range.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", - "slider-histogram-range.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", - "slider-histogram-range.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", - "slider-histogram-range.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", - "slider-histogram-range.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider-histogram-range.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", - "slider-histogram-range.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", - "slider-histogram-range.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", - "slider-histogram-range.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "slider-histogram-range.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", - "slider-histogram-range.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", - "slider-histogram-range.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", - "slider-histogram-range.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", - "slider-histogram-range.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", - "slider-histogram.active-end.background.dark": "S:42a2ced53672247a20f98edb87562a99a5aca41d,", - "slider-histogram.active-end.background.light": "S:8d8d3af5d1021f90b1327dc018d5dd21e6c43693,", - "slider-histogram.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", - "slider-histogram.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", - "slider-histogram.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "slider-histogram.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "slider-histogram.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "slider-histogram.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "slider-histogram.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "slider-histogram.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "slider-histogram.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "slider-histogram.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "slider-histogram.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "slider-histogram.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", - "slider-histogram.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", - "slider-histogram.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", - "slider-histogram.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", - "slider-histogram.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", - "slider-histogram.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", - "slider-histogram.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", - "slider-histogram.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider-histogram.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", - "slider-histogram.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", - "slider-histogram.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", - "slider-histogram.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "slider-histogram.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", - "slider-histogram.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", - "slider-histogram.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", - "slider-histogram.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", - "slider-histogram.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", - "slider-range.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "slider-range.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "slider-range.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "slider-range.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "slider-range.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "slider-range.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "slider-range.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "slider-range.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "slider-range.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "slider-range.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", - "slider-range.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", - "slider-range.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", - "slider-range.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", - "slider-range.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", - "slider-range.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", - "slider-range.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", - "slider-range.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider-range.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", - "slider-range.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", - "slider-range.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", - "slider-range.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "slider-range.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", - "slider-range.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", - "slider-range.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", - "slider-range.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", - "slider-range.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", - "slider.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "slider.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "slider.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "slider.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "slider.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "slider.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "slider.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "slider.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "slider.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "slider.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", - "slider.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", - "slider.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", - "slider.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", - "slider.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", - "slider.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", - "slider.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", - "slider.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", - "slider.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", - "slider.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", - "slider.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "slider.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", - "slider.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", - "slider.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", - "slider.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", - "slider.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", - "split-button.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", - "split-button.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", - "split-button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", - "split-button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", - "split-button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", - "split-button.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", - "split-button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", - "split-button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", - "split-button.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", - "split-button.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", - "split-button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", - "split-button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", - "split-button.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", - "split-button.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", - "split-button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", - "split-button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", - "split-button.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", - "split-button.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", - "split-button.border.brand.outline.dark": "S:1206b15553941f23d821e3ac2e2356e86733333c,", - "split-button.border.brand.outline.light": "S:5942ca53e46c9c4d7505a40a90b90a8ae3c87afa,", - "split-button.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", - "split-button.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", - "split-button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", - "split-button.border.danger.outline.light": "S:dac592a30b402672ee19c38cee360264a7823546,", - "split-button.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", - "split-button.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", - "split-button.border.inverse.outline.dark": "S:0f0f21f139a36b68f9c46a82a4f3a0d871225328,", - "split-button.border.inverse.outline.light": "S:75364b4f0c001e011435396de3da6507780ce7d2,", - "split-button.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", - "split-button.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", - "split-button.border.neutral.outline.dark": "S:e31fa7bb3960cdf35f11e1a4f512773f5504100b,", - "split-button.border.neutral.outline.light": "S:17b18a49ebbd56a80e8d4f01b445d0e3203788a6,", - "split-button.divider.brand.outline-fill.dark": "S:e0361488773a28bde3a43e62be9c915182875306,", - "split-button.divider.brand.outline-fill.light": "S:09abf747e710b5189b9d5af8efdb236965e6d2b0,", - "split-button.divider.brand.outline.dark": "S:7ca95385d3cd6c3ca0d7b3ccc310c85278d604ed,", - "split-button.divider.brand.outline.light": "S:ae414b1b2e1500191e28a3a35a78a0b2d5021c90,", - "split-button.divider.brand.solid.dark": "S:040643b017550540295e39af834ce0727e36f417,", - "split-button.divider.brand.solid.light": "S:f3907b1e2011db5bc8ba8b32d7c7754fe6a0cf12,", - "split-button.divider.brand.transparent.dark": "S:011a75726685c59fbf16ae6fd2892432fca29be7,", - "split-button.divider.brand.transparent.light": "S:004ebd42468b602354cd292b48a24f09a1018c12,", - "split-button.divider.danger.outline-fill.dark": "S:657b2c4cce0fef37165e77b114c0b08409ade3d1,", - "split-button.divider.danger.outline-fill.light": "S:6a586971d32ff0064f4a35b7145b308f567111f6,", - "split-button.divider.danger.outline.dark": "S:b880746cb4e5cf8e14c98770516cf322933ea0a1,", - "split-button.divider.danger.outline.light": "S:8e4cf698f01e40e81435f2e61670627c40ad385e,", - "split-button.divider.danger.solid.dark": "S:4e3d4364749947d861d81914749b1d3b4c14903e,", - "split-button.divider.danger.solid.light": "S:7326ee571ba5b45ef2f5341103dcc6ca4f55f20d,", - "split-button.divider.danger.transparent.dark": "S:e94b635ad1bbf73c275ab9de227839fb290871a0,", - "split-button.divider.danger.transparent.light": "S:d0590600df31d1b53d4b0e989dc49efd1920ad1e,", - "split-button.divider.inverse.outline-fill.dark": "S:9688a5c1b2ad5999da192aaec45a351b0f61f39a,", - "split-button.divider.inverse.outline-fill.light": "S:68d0d54f9077da4ed71eea134ad69991c5aaadc4,", - "split-button.divider.inverse.outline.dark": "S:e29086325428f3768ae9b3d8032ed138b540678b,", - "split-button.divider.inverse.outline.light": "S:7d2abc11aa11557bcad0b7159a3b985bf7404c7a,", - "split-button.divider.inverse.solid.dark": "S:f9e5f06c0f90df05499ff6434746b6d0526dea76,", - "split-button.divider.inverse.solid.light": "S:faf949f46b9e98d76d764c162c84e7bf3c805a87,", - "split-button.divider.inverse.transparent.dark": "S:73e30ccc276621b7c5cbeee15af9059ef6493b3f,", - "split-button.divider.inverse.transparent.light": "S:0494750a4ce6c87ba5342bda04dfe3e1b2386731,", - "split-button.divider.neutral.outline-fill.dark": "S:5dcceed203792587cd24998549207702559d0aea,", - "split-button.divider.neutral.outline-fill.light": "S:9064dd0f28564e0d1f06da3fcf24064d1367330e,", - "split-button.divider.neutral.outline.dark": "S:005eb1c4d9a870d9fa7325a7717b83b8aab81cd2,", - "split-button.divider.neutral.outline.light": "S:361671e08751c062c80ff7acd1a9662961d7c2b6,", - "split-button.divider.neutral.solid.dark": "S:868fd537733d832e99361df22c7105babc381c74,", - "split-button.divider.neutral.solid.light": "S:d5d34078e8f8dce2d1074fe937570512618640e2,", - "split-button.divider.neutral.transparent.dark": "S:edc8287cffd2b3249f8fdf66b3426058c2eb464c,", - "split-button.divider.neutral.transparent.light": "S:f071a60687f9e060f9c0b71d3a6e0efe789a630e,", - "split-button.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", - "split-button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", - "split-button.font.brand.outline.dark": "S:7beb60e35440fb45e91d24d8acc14db5b1533bb4,", - "split-button.font.brand.outline.light": "S:a929ca685859c1fc5e7faf543728b2edf3b5f243,", - "split-button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", - "split-button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", - "split-button.font.brand.transparent.dark": "S:8d19dd77778ab4642015721ce060bd7ec15f240d,", - "split-button.font.brand.transparent.light": "S:74cfdb55361a2fcfdf0e79657b1aa9b3e6cffb8c,", - "split-button.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", - "split-button.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", - "split-button.font.danger.outline.dark": "S:9d611a3ad95a4e7c417d38dcf707aa9dfd4b1da8,", - "split-button.font.danger.outline.light": "S:9cfd1204a77cb867927a91597db7211a001d3a04,", - "split-button.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", - "split-button.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", - "split-button.font.danger.transparent.dark": "S:957fbc6785acc68533d73f89c39099f0da9feaf9,", - "split-button.font.danger.transparent.light": "S:6399b4fb7079f55df8a107aa677eacad644890c9,", - "split-button.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", - "split-button.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", - "split-button.font.inverse.outline.dark": "S:a58a68dd030763cd3b979f3c9c8b53d55cb9904b,", - "split-button.font.inverse.outline.light": "S:625d9574b0882315179cfc86548ed6471b4d016a,", - "split-button.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", - "split-button.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", - "split-button.font.inverse.transparent.dark": "S:c22b36e585444176b35d2985759be4ab13f7912f,", - "split-button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", - "split-button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "split-button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "split-button.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", - "split-button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", - "split-button.font.neutral.outline.dark": "S:c7418479a6a19078629d08ff0d250434dd7aa6d8,", - "split-button.font.neutral.outline.light": "S:8f1c1a86e08810a6cc0ce7394e4c8ddf6cf7cb4d,", - "split-button.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", - "split-button.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", - "split-button.font.neutral.transparent.dark": "S:1a2ab9b9fdc12ddf69da58e4784f878a6c75fc66,", - "split-button.font.neutral.transparent.light": "S:3d2e4e2536be873c087f6b6181332bf2ce825c42,", - "split-button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "split-button.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", - "split-button.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", - "split-button.icon.brand.outline.dark": "S:6a8c3b2e8887bf20eab6a4f1e3ae0ed577ec662b,", - "split-button.icon.brand.outline.light": "S:96930a17711f286e1a97b8b7ca57a1c37431a621,", - "split-button.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", - "split-button.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", - "split-button.icon.brand.transparent.dark": "S:33667181ea79a9be22a25c217678cd18dd0018a4,", - "split-button.icon.brand.transparent.light": "S:e76ac2dd6b78f85c7892ae2f30e58e8325587168,", - "split-button.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", - "split-button.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", - "split-button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", - "split-button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", - "split-button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", - "split-button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", - "split-button.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", - "split-button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", - "split-button.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", - "split-button.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", - "split-button.icon.inverse.outline.dark": "S:9137cbda0b1d79a7a6daff11f72580e2a6fda301,", - "split-button.icon.inverse.outline.light": "S:80c8d7dcc226ba8c08f306b5c6729d81de95efb6,", - "split-button.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", - "split-button.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", - "split-button.icon.inverse.transparent.dark": "S:8a8366de3e4b5f5ac023b2c703cc641c21a4453b,", - "split-button.icon.inverse.transparent.light": "S:1d9ed9e6c0eca660882d7c5705d97d7eb4455e72,", - "split-button.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", - "split-button.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", - "split-button.icon.neutral.outline.dark": "S:1d09040ccbfbdc3f8f89047c3eaab5dc24b7463c,", - "split-button.icon.neutral.outline.light": "S:933927902689b45a97c31f92ab03e1dabfa62bdb,", - "split-button.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", - "split-button.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", - "split-button.icon.neutral.transparent.dark": "S:060673768cd2545a55330e2a6c2c67e82627bbf2,", - "split-button.icon.neutral.transparent.light": "S:b3eb473ce8edf72285c36f6fb42680395ef7d7c1,", + "semantic.ui.color.success.default.dark": "S:7945d57a1fe02552d42fd1f3dfd1454604347512,", + "semantic.ui.color.success.default.light": "S:abe2892ce9f0120bf5b39633e50983a4ae7f7386,", + "semantic.ui.color.success.hover.dark": "S:3cef3ca67c634e5c2bb7a97d9020f06ff8723713,", + "semantic.ui.color.success.hover.light": "S:483e2cae2b7eb56425548c339bff1027b2c0a662,", + "semantic.ui.color.success.press.dark": "S:b1ee7232866ec2c26d2aa7fd1d4c0721ac4f37b0,", + "semantic.ui.color.success.press.light": "S:6b22a2c104f97cc04bc82ccb56d727050a15d10d,", + "semantic.ui.color.text.1.dark": "S:3bbd93cc847046751584bb51e2c6d35ea9c11cdd,", + "semantic.ui.color.text.1.light": "S:1cf0daf060c584f388c86edea09fd8f7821b5136,", + "semantic.ui.color.text.2.dark": "S:59380d01f0741c6f93b60f7c5db6b83275a17695,", + "semantic.ui.color.text.2.light": "S:1ab0d8cd6e36092c84c6346a3317dafe6dc95494,", + "semantic.ui.color.text.3.dark": "S:ab5c5cc93cc81a60ebbf279f4d1b81190e2e5e00,", + "semantic.ui.color.text.3.light": "S:aa1fca9bd3667b126a9dc08ab036a3a5a832ade9,", + "semantic.ui.color.text.inverse.dark": "S:d644afeb7b90a917e02fb79e13b5b46377fe92f0,", + "semantic.ui.color.text.inverse.light": "S:0e6c1a19467916ac3f1e9af9f911c4dcf61518d0,", + "semantic.ui.color.text.link.dark": "S:dbce3ce767c2ac2fa637223759128d14a545518d,", + "semantic.ui.color.text.link.light": "S:e00e7a70c7f08c08939f24be3a79c55687a2223b,", + "semantic.ui.color.warning.default.dark": "S:513655849b9dc6025c9c485df1bf5485f0f4c5eb,", + "semantic.ui.color.warning.default.light": "S:fc859d3d9093cc28608d998540fe790f74904937,", + "semantic.ui.color.warning.hover.dark": "S:454191ab71560aeaf7a8e4ac8ee47b287d5ab1bf,", + "semantic.ui.color.warning.hover.light": "S:203853c858e9055ba9b9ccc13efd93c0e8e6def3,", + "semantic.ui.color.warning.press.dark": "S:4bdc7dfe93477a57fb8b301b3972839bae48df86,", + "semantic.ui.color.warning.press.light": "S:98381803e2d2915e2d4b9055f633ad79f9411346,", + "slider-histogram-range.area.active.background.dark": "S:538e67648acd5c6de6dc5bf3cdf529a8f4f86e38,", + "slider-histogram-range.area.active.background.light": "S:46edc83e59cc74117605f316cb2de1dc80a56a82,", + "slider-histogram-range.border.active.dark": "S:f60ad26bce908f9ecd213470bb6a61f7b24c2ac6,", + "slider-histogram-range.border.active.light": "S:f8015f686ea01714a028f813463a064c9f1fa88c,", + "slider-histogram-range.border.default.dark": "S:0b79808469ac36055b08185d845fb0d7ac19e599,", + "slider-histogram-range.border.default.light": "S:699149e4266e5cc84f1072ead3447ca3f0b9f725,", + "slider-histogram-range.font.label.dark": "S:8fe1bf7fa611c656abd115a9cc1c3e4274d78a14,", + "slider-histogram-range.font.label.lg": "S:117ab226ea97ede8862680238b8d560f8dfd5b6e,", + "slider-histogram-range.font.label.light": "S:f3664c7d9b72e5c25d5a8ebd5e3c145cf610ccb5,", + "slider-histogram-range.font.label.md": "S:1d60186a4366b45fc85dde5b5f88031830cad80a,", + "slider-histogram-range.font.label.sm": "S:402375800cf55b3bf153620cd98e0f2ade4cb335,", + "slider-histogram-range.font.tick-label.dark": "S:61ca078bb0e41005c0b2f12287e9e4448f976dcb,", + "slider-histogram-range.font.tick-label.lg": "S:d0a30484b36217bca7b4e7581dce555d05ba67be,", + "slider-histogram-range.font.tick-label.light": "S:dc2e2bc3bae521f3e9578a31863367e80afd70a4,", + "slider-histogram-range.font.tick-label.md": "S:fcc57521aae7a6c111a5ab02c1acb94351647634,", + "slider-histogram-range.font.tick-label.sm": "S:a146731fbd43db6682e91a34181b77400b9e401a,", + "slider-histogram-range.handle.background.dark": "S:2fca12cdc93537dfe5556151527638038fdf788d,", + "slider-histogram-range.handle.background.light": "S:29a8b5d86f64ba8ad75ea481d4e1a00af46d24a8,", + "slider-histogram-range.handle.border.dark": "S:27dfaa021d9b5ca92accbd3f552a355a86dd1440,", + "slider-histogram-range.handle.border.light": "S:e10054a02171397c0045a88812e9e1a1200bd28b,", + "slider-histogram-range.tick.active.background.dark": "S:708ae1a0adb35f369340b3f0712723459e642cb3,", + "slider-histogram-range.tick.active.background.light": "S:89aea9b3fea12babb784de2ecc23683891d3c84d,", + "slider-histogram-range.tick.active.border.dark": "S:c59ee496b4736c4494c7626840cf37f2eff4f162,", + "slider-histogram-range.tick.active.border.light": "S:8abb79b9ea77c7f09f520b9534495b8bf712bda6,", + "slider-histogram-range.tick.default.background.dark": "S:e71d6046b0342bfa2b40e26ae31151caca1b697c,", + "slider-histogram-range.tick.default.background.light": "S:6596ff7a19e3a942d8d0ea90e7914067a5bb50b4,", + "slider-histogram-range.tick.default.border.dark": "S:b58e0bbeb7ef2aed4bfd0852f0c88f2b516c2b7d,", + "slider-histogram-range.tick.default.border.light": "S:c378c6fe6a5427970b575cc9966139ef4a40d02e,", + "slider-histogram.active-end.background.dark": "S:a33914636950b67c118519b66e96397806dca0f7,", + "slider-histogram.active-end.background.light": "S:7dce7d4ea1e9be21ffdfda3f53c643176b3789ed,", + "slider-histogram.area.active.background.dark": "S:f3ecd7e84b96fbe26368b46ac75625e0fa2d21c6,", + "slider-histogram.area.active.background.light": "S:22f9fd6581ea83d7b529c199d0050c48424cdafd,", + "slider-histogram.border.active.dark": "S:35f3bb2ddbd3fe9c3a01b9d47430dc6ee2eeb880,", + "slider-histogram.border.active.light": "S:b733958c27edb1107ab207f21843732473d2b716,", + "slider-histogram.border.default.dark": "S:5561116fbc065f945291098b1af750ab76a2b8f1,", + "slider-histogram.border.default.light": "S:6dbee5d7d00cb8db68368c241f43e581fcb7ea6c,", + "slider-histogram.font.label.dark": "S:5436a7da24cd185e98f2489b98260263cc30c04c,", + "slider-histogram.font.label.lg": "S:cdeaf38e7fbcf7b13e522aa099718d77aa77d434,", + "slider-histogram.font.label.light": "S:747063bfb2d768d8cfc6d0ee4e971dcbb711c51e,", + "slider-histogram.font.label.md": "S:d6f3fb83fca8c33f16aad26ecc85ff12bca020a0,", + "slider-histogram.font.label.sm": "S:711004e658ab7c682c35906a38fbe6ffe59be6f7,", + "slider-histogram.font.tick-label.dark": "S:fa5221ac6f80a675c627c87dd5e88b31a3da205c,", + "slider-histogram.font.tick-label.lg": "S:4b67fdc14b474b664d2beba05766e195f15f1261,", + "slider-histogram.font.tick-label.light": "S:6c2e80a3115a6936e8c53c8306f454c6d2aa92bc,", + "slider-histogram.font.tick-label.md": "S:dc9b909ac4d7759cbfdb56ce29815b38f76809c3,", + "slider-histogram.font.tick-label.sm": "S:25480b318ab2f53014b2c14d673bf0a27548879f,", + "slider-histogram.handle.background.dark": "S:ca4b26880006be64bcd4a45e6c0a0b693383bc59,", + "slider-histogram.handle.background.light": "S:bfcabd7972c7e9223fbef59a0f8b54254fea3138,", + "slider-histogram.handle.border.dark": "S:c802dc52cc536193495fa5de89e9eabc7aa9cb58,", + "slider-histogram.handle.border.light": "S:b566476e69fec9446b299bc45259722bffb090f7,", + "slider-histogram.tick.active.background.dark": "S:340b8cb1cbb41049d74877bbfd733692b20eceb6,", + "slider-histogram.tick.active.background.light": "S:1e76a8804d476413f78f0d11ac007e633e8de394,", + "slider-histogram.tick.active.border.dark": "S:bee9b0369c0e001c75816cae01045e067400b8e1,", + "slider-histogram.tick.active.border.light": "S:3a20644f522b9e37b7ea073a367d606143b8c40a,", + "slider-histogram.tick.default.background.dark": "S:b503f26434046f724885e172efb9b5a802ddff7b,", + "slider-histogram.tick.default.background.light": "S:18920a34b408d20c60fc1d20e46fee7cc8bbcfb1,", + "slider-histogram.tick.default.border.dark": "S:7ec914b8a06973513007df7b8026b784f5d3c647,", + "slider-histogram.tick.default.border.light": "S:c845248de0ac5793b0511d7d5016c1edc0e84d51,", + "slider-range.border.active.dark": "S:3e846ada310e4b9c069c1c46d19da7222e1d1b23,", + "slider-range.border.active.light": "S:fa1c1347455f8989d77506385bd6dca5d2ab5170,", + "slider-range.border.default.dark": "S:5a5fb8ba0433c36ad7c17fa66aac3e7e745fb8f7,", + "slider-range.border.default.light": "S:1ab8d1c925b20c4523cf926c01f3f0b735eee2b2,", + "slider-range.font.label.dark": "S:42143e33daf248b419153cc7d474f77bdae6468e,", + "slider-range.font.label.lg": "S:584a006b540372648fbc5aeeb0be9bbdbafae701,", + "slider-range.font.label.light": "S:30202fb5d467970f87b724858f77e37f0cab4553,", + "slider-range.font.label.md": "S:2cb15481ffca34b3168239fb9336e3ea5f9631c9,", + "slider-range.font.label.sm": "S:77efb4a69474f19a14031d6976ba650397739228,", + "slider-range.font.tick-label.dark": "S:7a981b34f93b3f7599cf0eb673e9fee0bfce4009,", + "slider-range.font.tick-label.lg": "S:3a5884199bf77310738e12663c6563e5d2706c21,", + "slider-range.font.tick-label.light": "S:c7c1d5f9039244693d41b9f336596bf8b09032e5,", + "slider-range.font.tick-label.md": "S:495650188588377165bd7db58cd5c63d9b0c0fb8,", + "slider-range.font.tick-label.sm": "S:305c582f9ac667dc6fcb8388a8d0b836255b79d9,", + "slider-range.handle.background.dark": "S:20a471d6d0ee0b5a4001f882566af29aa3cafd80,", + "slider-range.handle.background.light": "S:0ac6483c08fb37db6a74981988f63f78caf1e47b,", + "slider-range.handle.border.dark": "S:c3e18f24c8e88723085e8dcfd5555a21a240ee59,", + "slider-range.handle.border.light": "S:c95182c032c5bf9a16935e9eaf01ed78c160b415,", + "slider-range.tick.active.background.dark": "S:8d50ea267cb4a81d9c12eb797b88bf0fbab94d94,", + "slider-range.tick.active.background.light": "S:b207bbe53294a1453aa6570d80c23f959ace73f0,", + "slider-range.tick.active.border.dark": "S:9692bddc8d867a73a9bf621778c725fd5db093b4,", + "slider-range.tick.active.border.light": "S:34657d397111761f70e7d5b651c7130f6f6f0fd9,", + "slider-range.tick.default.background.dark": "S:01cffc1f842126655ceda5370d6f2f0a2b8d0c52,", + "slider-range.tick.default.background.light": "S:c36f84381133b8438625fa5b91dd687a5f2a4652,", + "slider-range.tick.default.border.dark": "S:8838e21f816781fced11a5742d801f3f10eb2217,", + "slider-range.tick.default.border.light": "S:fb7c538e82a9f5f2407bcb0c2735aea59fff65d1,", + "slider.border.active.dark": "S:8bb365d7fc791f36368c746d88244eb100283444,", + "slider.border.active.light": "S:a22039fff51c9d66dd50ea27164816b015653313,", + "slider.border.default.dark": "S:24ba4028def509e8a4b7fac1b94020bda6a73ab2,", + "slider.border.default.light": "S:58a36760ced2183f932af5ef8804716982a8e78c,", + "slider.font.label.dark": "S:2ed7153b11863babc8269ee0a3846eead4cc851f,", + "slider.font.label.lg": "S:214dba64c02fe052ce0950ba62acb0a613b0400a,", + "slider.font.label.light": "S:ed46b23640cccf92ce74f361096a4a2e1dc09545,", + "slider.font.label.md": "S:8b1be2823a195bd90c4488fef40af7799c79599d,", + "slider.font.label.sm": "S:502d362264eb1c2dad3dd3056ac7e1dce1fa1007,", + "slider.font.tick-label.dark": "S:1fb0e37bee934a0d7eeee805a6d6ba3daeadfb06,", + "slider.font.tick-label.lg": "S:3ed359c3ec80ad1b948c01b8962adc5f809c3da3,", + "slider.font.tick-label.light": "S:28c0e819839642f5f8a9eb6bccc4c22b45f51dac,", + "slider.font.tick-label.md": "S:40a0717726a02b072b64293bbd6b0d04e0146e4c,", + "slider.font.tick-label.sm": "S:3918ca6be39fb684eeb496773cf3bfe6489d0b14,", + "slider.handle.background.dark": "S:a47a1ebd5f539e232232ee5b507449932c9a04d1,", + "slider.handle.background.light": "S:dec027518570ba73b1d2a0b6e31e833ac881efe5,", + "slider.handle.border.dark": "S:3ab9fcd8651235cbf53571d5e4ac2f4c1d44309d,", + "slider.handle.border.light": "S:523344ce571a0fff6811975a70bbad30c8f23183,", + "slider.tick.active.background.dark": "S:9883e3fb1b1b993f25026270f0a9491082e682df,", + "slider.tick.active.background.light": "S:01fd7f496d12beb586d3a4a9b47a6058caef99ea,", + "slider.tick.active.border.dark": "S:d10e2166a9adb270bc7031acbf68a90bd5ba56c2,", + "slider.tick.active.border.light": "S:abe78a2b9f1246f9f198268490cea327344be00f,", + "slider.tick.default.background.dark": "S:43842718702260dd9d360316223d61ad8ecc3e6e,", + "slider.tick.default.background.light": "S:71881ac812f887b81d38196633abb61805212ac5,", + "slider.tick.default.border.dark": "S:90b375b392fbbb088ddcf0ea8ba276c005a19edf,", + "slider.tick.default.border.light": "S:3b51af218d5798ca03242ad45a58e3a16dbebc03,", + "split-button.background.brand.outline-fill.dark": "S:b6965e440c48312a26140b80d15118e90bfed6e4,", + "split-button.background.brand.outline-fill.light": "S:8b5a723a9f1dcd4d909b92bfcfbbd4174a95d325,", + "split-button.background.brand.solid.dark": "S:801f02ef15caffc8b09b52a7693cee41a4cea305,", + "split-button.background.brand.solid.light": "S:8ee3de032946b0bea835d6c11a5a2275b818f6b7,", + "split-button.background.danger.outline-fill.dark": "S:3246399a89888754b16066b66238c84426cc7e01,", + "split-button.background.danger.outline-fill.light": "S:556ecf3b8efd273a1538d6824d90f05635965e0c,", + "split-button.background.danger.solid.dark": "S:3fefe3d9b23f78e13bb57249852ec5957c5a2527,", + "split-button.background.danger.solid.light": "S:987b7a26253ef2bc59dacb22fc6cddc22f49e03a,", + "split-button.background.inverse.outline-fill.dark": "S:b83f70d77e988a0a7ac2023cc6b46cfbabd8c1e3,", + "split-button.background.inverse.outline-fill.light": "S:dba453b9ea66457d9ba7b2f838965629c60bf118,", + "split-button.background.inverse.solid.dark": "S:85332227fdd7976650f6e8ec75f47c85af504aed,", + "split-button.background.inverse.solid.light": "S:724f48e1713847f4ebd249be7a07ae6adbb0d2a0,", + "split-button.background.neutral.outline-fill.dark": "S:1c9c0c65378ce8f2bc8e7049a14d881e7b955921,", + "split-button.background.neutral.outline-fill.light": "S:4bb2106454ff477bad12c4d2cc2a7af867604cd2,", + "split-button.background.neutral.solid.dark": "S:d7027d844a9e57ddcb83d38e9610494a632ca630,", + "split-button.background.neutral.solid.light": "S:bbed5a0e99d78373a015770264d2b2954e4530aa,", + "split-button.border.brand.outline-fill.dark": "S:5b17cab37d4c9cb2373e51761bba563c1e9fa909,", + "split-button.border.brand.outline-fill.light": "S:725bcc9d95026688647b70280d2a7f0c5ac3a6db,", + "split-button.border.brand.outline.dark": "S:c5f919243e113b44ba6a23d326bd3748c9c05579,", + "split-button.border.brand.outline.light": "S:5344985ad80e8fb453b5e5ee91a3bd2f7469d850,", + "split-button.border.danger.outline-fill.dark": "S:5b68e1e26cb86b003e1e2bc869f89a42f403f72d,", + "split-button.border.danger.outline-fill.light": "S:2c4301edf658fb07f7993e5a5b884fa42ea8b53c,", + "split-button.border.danger.outline.dark": "S:40040aa8d72ca0efa6c56489e56e57388af0e5c8,", + "split-button.border.danger.outline.light": "S:74490a450a624be15038de808cc87509f51a0e91,", + "split-button.border.inverse.outline-fill.dark": "S:cc6f5f117931a14b4558f8ed44fd409f8cfe0895,", + "split-button.border.inverse.outline-fill.light": "S:0db7445b079fe35ac4821736e0e1c62ae51df632,", + "split-button.border.inverse.outline.dark": "S:f80db3e84f06a4bb91bfdc8c2a063ea417b2e5fb,", + "split-button.border.inverse.outline.light": "S:e056fdbe5cacd9f10b6763d08c9ef1a751414370,", + "split-button.border.neutral.outline-fill.dark": "S:4a093f38621d2d2e2b04fa8251d0a6578cb5b2ea,", + "split-button.border.neutral.outline-fill.light": "S:99258c38073a70bac89d362748ae46440a246390,", + "split-button.border.neutral.outline.dark": "S:3218fd5cf01ea8957a667a6c0c9a79bf1c98f29c,", + "split-button.border.neutral.outline.light": "S:d3b10ac76c58e063f02ebb7116bb544d3f0a479b,", + "split-button.divider.brand.outline-fill.dark": "S:e87474016b54b1543246cb30f1493c35340312fc,", + "split-button.divider.brand.outline-fill.light": "S:e0620b322100056cf574b9b2acfe4df064e8a03b,", + "split-button.divider.brand.outline.dark": "S:515ba36ea16048368e218ee3cc1dcbbf0bfb8592,", + "split-button.divider.brand.outline.light": "S:9911b473d07d875bb23ab3170d6d431e85102c62,", + "split-button.divider.brand.solid.dark": "S:aa939ceaa6145c36135c4c873f17f809f8ffb78d,", + "split-button.divider.brand.solid.light": "S:8e2c2a0df3d2a1fbf3cfab0b1f9088311c30fefa,", + "split-button.divider.brand.transparent.dark": "S:76801dc0f452250249b678e22c26ced58e86c2ac,", + "split-button.divider.brand.transparent.light": "S:f72a3525e297ba95216352b8c30d4d6255008c4e,", + "split-button.divider.danger.outline-fill.dark": "S:f67ba3c44f847912f3d7daea5eabad275d8a0c05,", + "split-button.divider.danger.outline-fill.light": "S:05f6bd37e89b19bb924a074ea63aece177718481,", + "split-button.divider.danger.outline.dark": "S:921e1029d1684681230f5c233d8baeb51e9f2df2,", + "split-button.divider.danger.outline.light": "S:d9468a79673b353759535f36f9c81f3b3ce571f1,", + "split-button.divider.danger.solid.dark": "S:4cb6ff9d5ce3c96dfe140558246accbe1898a9ef,", + "split-button.divider.danger.solid.light": "S:e7347fccef68b7631dcfbc118518b2ea3e11359d,", + "split-button.divider.danger.transparent.dark": "S:8dd0b00aac181e63507007bab519e8f9d6707995,", + "split-button.divider.danger.transparent.light": "S:04e1e1218ae56e1756d8859e0263c8571d064165,", + "split-button.divider.inverse.outline-fill.dark": "S:a49941ca75926b4f4c97a02ae6b8166ed0429029,", + "split-button.divider.inverse.outline-fill.light": "S:cb1d8b1465651450de6322e1602cd4eff9bee05b,", + "split-button.divider.inverse.outline.dark": "S:e2b4e18e00ad82941741f2a9c7f92cdfc9e36978,", + "split-button.divider.inverse.outline.light": "S:1a60af1f1b51a2f3d4ee1fec17cd2bc56132b70a,", + "split-button.divider.inverse.solid.dark": "S:a6aec92e721fc9b7e45c798e9a46251c20bc2808,", + "split-button.divider.inverse.solid.light": "S:3eef988b75063c690085fd9814eee6844beae399,", + "split-button.divider.inverse.transparent.dark": "S:ef4920286d9371b738a8674a13cfc5aca5726da6,", + "split-button.divider.inverse.transparent.light": "S:76ca768a984a2524d43dca23eb26974c012610f6,", + "split-button.divider.neutral.outline-fill.dark": "S:6cbe81c97a457212c2e369ea5c2ad2bef7d0b14c,", + "split-button.divider.neutral.outline-fill.light": "S:b06da11568944d23033f3fe47e026762b32b621b,", + "split-button.divider.neutral.outline.dark": "S:b859c02a5816ae2a2e37b730acf43317c155ac51,", + "split-button.divider.neutral.outline.light": "S:a3697312ed061a076a84c008a1d9c6b306888b93,", + "split-button.divider.neutral.solid.dark": "S:cc48ab1bfd1ca8bbd7fac3567b7002e97d391bf9,", + "split-button.divider.neutral.solid.light": "S:1b3940d8b1d85b42c31ee715708ab4f960afd371,", + "split-button.divider.neutral.transparent.dark": "S:7223954780d8e24067cae5c40e03e6f2f30f4bbb,", + "split-button.divider.neutral.transparent.light": "S:c49f24ccd7909df664b08e490d626638ea7c3442,", + "split-button.font.brand.outline-fill.dark": "S:666e8810e3a20dd520b684ac4ee78e8d71d9b812,", + "split-button.font.brand.outline-fill.light": "S:c41d92d308cdc31a093462ab1f423f6b69e0b0bf,", + "split-button.font.brand.outline.dark": "S:6a8858b1668491ef1ee85279c4e795efb3091495,", + "split-button.font.brand.outline.light": "S:29e89e00f7f04bfd050e608089c7724cdc9d583e,", + "split-button.font.brand.solid.dark": "S:b6d3893e1ec5f31b45195bab83b2fb764102f4c9,", + "split-button.font.brand.solid.light": "S:5d58402e37d82fdb909951ef09a3734ff827ead8,", + "split-button.font.brand.transparent.dark": "S:c99d977bb36917126f3375a7dd717b29ebae710a,", + "split-button.font.brand.transparent.light": "S:b9b0c634d7ffcca82a1a136f4d6f7953099f12a6,", + "split-button.font.danger.outline-fill.dark": "S:2656259bd90b0f153505771fa6d5f74ca89febf8,", + "split-button.font.danger.outline-fill.light": "S:f9c416b7429f2124f42b065a45ac75ad62a39b67,", + "split-button.font.danger.outline.dark": "S:54f5d259cf209659bfbc4ccdcc773004d8dc3f1b,", + "split-button.font.danger.outline.light": "S:312629518048becb7a6a7e19a61844bedfe45450,", + "split-button.font.danger.solid.dark": "S:809252b940c62ac3e2304e6d0756907badbd1d1a,", + "split-button.font.danger.solid.light": "S:69586eaadabf22f25984d37b877871332ac7579e,", + "split-button.font.danger.transparent.dark": "S:6f62c9f511acd4d17def528786de554e8f171a5b,", + "split-button.font.danger.transparent.light": "S:5ef7ac2fbd9a4ade72a9491972d511fa3cc142d8,", + "split-button.font.inverse.outline-fill.dark": "S:aa615ee5958ac328ce55de6ca694a22b579abcb7,", + "split-button.font.inverse.outline-fill.light": "S:cf51323b8e0cf88a5696e2ae946665a930625ed5,", + "split-button.font.inverse.outline.dark": "S:29df6530ca86ffdf0a922d122bf62d03d98144f2,", + "split-button.font.inverse.outline.light": "S:c7a4afffc35d224513f8b4b1652fcd518cfb9dfa,", + "split-button.font.inverse.solid.dark": "S:a77bb7cc83a600fdb42f8cafe2835328be707bbd,", + "split-button.font.inverse.solid.light": "S:e6c3ecdf24c72e09d83ceb340e841ed65fdab5c7,", + "split-button.font.inverse.transparent.dark": "S:7de5c2af5972f637dd80487174db36b6ecab779e,", + "split-button.font.inverse.transparent.light": "S:b058fee31d34ad67e066aa72c36670dac86c6c15,", + "split-button.font.lg": "S:09925fc7ca6caf33466c66ef050353ca019459ab,", + "split-button.font.md": "S:2a34628d4c4e77ea114a97007babaa06e5af44c4,", + "split-button.font.neutral.outline-fill.dark": "S:ddecbfdc8350222fcdf339d44176bb480c9413d8,", + "split-button.font.neutral.outline-fill.light": "S:3b951cb203138b985568240599b11c851009d7f5,", + "split-button.font.neutral.outline.dark": "S:26d91cfe408bec5845f0df837242dc011d045540,", + "split-button.font.neutral.outline.light": "S:6dbb53b66fe9c01abefadfc0d7ee9c9c5bac3c7d,", + "split-button.font.neutral.solid.dark": "S:3e4a005a416250d35e535d9f9cb7cac4ee6f7f17,", + "split-button.font.neutral.solid.light": "S:c25a4aaeeb78840853da7199782fa427340f765f,", + "split-button.font.neutral.transparent.dark": "S:b9fc2a59c3f988db3ad53925e4da241d970d7057,", + "split-button.font.neutral.transparent.light": "S:8294edf332df9c19b63546f4048ea538ca935353,", + "split-button.font.sm": "S:7a12eab48632d717a66e2eb2801c5481df61e12e,", + "split-button.icon.brand.outline-fill.dark": "S:51fbdd6d121f8b9535fbe031936eecf8d14ecb2b,", + "split-button.icon.brand.outline-fill.light": "S:f13ab49ab2717c66c3fcfbac791291a898bbdbcc,", + "split-button.icon.brand.outline.dark": "S:3f4dc789719638ad6948b7e88d4025ea7dacd9bf,", + "split-button.icon.brand.outline.light": "S:7aab75d761c432b2c005fe4b655da5465b7004d1,", + "split-button.icon.brand.solid.dark": "S:420cbe919979543d0359ff7ea0bc58cf2c0458a0,", + "split-button.icon.brand.solid.light": "S:143fb28207034c92b74b3b03a931a807d7d6152b,", + "split-button.icon.brand.transparent.dark": "S:922c0b5bc279e3ef5ee451048c83e84f3a7568e2,", + "split-button.icon.brand.transparent.light": "S:9f401d1147445c561fddbe3814d9758bf24ab571,", + "split-button.icon.danger.outline-fill.dark": "S:4b879e9a0582f94d6aa6019a563b47ad15d69ea6,", + "split-button.icon.danger.outline-fill.light": "S:24de3480014908186f36731bf924581698d466e1,", + "split-button.icon.danger.outline.dark": "S:d9a198519e2e5b54e21c5336790b90086882673d,", + "split-button.icon.danger.outline.light": "S:2314ba0f4be351434f0fcb49b5a80134ea5141a8,", + "split-button.icon.danger.solid.dark": "S:9ca60430b7c04187064a14a0d97de033c62bd33b,", + "split-button.icon.danger.solid.light": "S:08761ac05a0342dbf63556d0bdd656fab160dfa5,", + "split-button.icon.danger.transparent.dark": "S:55644a8f7042538348667518dfdb03616de4a483,", + "split-button.icon.danger.transparent.light": "S:5c14b97ffb046772d6dfccb7927c7bd19aec9b9e,", + "split-button.icon.inverse.outline-fill.dark": "S:f7da547e680230fff1d3222bf3ddd2d98e6acc18,", + "split-button.icon.inverse.outline-fill.light": "S:a5db2e9b82b67d35c832969309fbf5194f162205,", + "split-button.icon.inverse.outline.dark": "S:da737a3dd425014f39409b397c00bcc0a770c765,", + "split-button.icon.inverse.outline.light": "S:7b7fa15c65cea0273417eb089a81c9ca62e90cfa,", + "split-button.icon.inverse.solid.dark": "S:6a97f8894e333d6360dcff8f5ed06047c243fb50,", + "split-button.icon.inverse.solid.light": "S:058ceed606dd0bdc04c42588b46f80fb3ed7b462,", + "split-button.icon.inverse.transparent.dark": "S:90c081ef4eb7cc726dfea01bfcca0f3691651b2c,", + "split-button.icon.inverse.transparent.light": "S:3dde601d327939e808680f10114f31d87ec3a26c,", + "split-button.icon.neutral.outline-fill.dark": "S:66d7b2f4b7f2549d859409d575f693dac48aa633,", + "split-button.icon.neutral.outline-fill.light": "S:55ff10ed63eddeb74678c63b34779f92bc3cde7d,", + "split-button.icon.neutral.outline.dark": "S:b0e17979306490cebf984a6d5383675f9ad3eaba,", + "split-button.icon.neutral.outline.light": "S:791743bb996406c67ed7b8a19a9fc27b989a0c35,", + "split-button.icon.neutral.solid.dark": "S:a72da5e2ca48ad3ec68d3b6cd50b9b61c62cf944,", + "split-button.icon.neutral.solid.light": "S:701972f4b195d5d36b76a394e3a151b748eeebbb,", + "split-button.icon.neutral.transparent.dark": "S:d4428984929f28c50899e664b43c3e80c53b129a,", + "split-button.icon.neutral.transparent.light": "S:43ef85b403b0c89a0b7e7a0dffa43fa626841a62,", "stepper-item.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "stepper-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "stepper-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "stepper-item.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "stepper-item.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "stepper-item.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "stepper-item.border.error.dark": "S:7020352ed69885c054a137ec55107272685b832e,", - "stepper-item.border.error.light": "S:334ffb7849b067fc4e31f80ff89b89961d87dd94,", - "stepper-item.font.context.active.dark": "S:24c588d01dfda605f594684ea3090e1493db2b25,", - "stepper-item.font.context.active.light": "S:46ab1687c1369c4a0c9a40e46f104648bea60a9c,", - "stepper-item.font.context.complete.dark": "S:3a1c4f0a7c7946f28090a8055d680bba4bfa988f,", - "stepper-item.font.context.complete.light": "S:332da58af9bff487a26ccbbdbde4a5c5ee0d4bba,", - "stepper-item.font.context.default.dark": "S:c90b39576e968cfa065778663f73a8c6bd853c74,", - "stepper-item.font.context.default.light": "S:24b28ebd7d47f0e14e3ae7de6441cf47da4e56ed,", - "stepper-item.font.context.error.dark": "S:dd3d49dadf6070de590566ee4913755255d80318,", - "stepper-item.font.context.error.light": "S:a7b82b3be10e9cdc737078f5f28470aa8e220e5c,", - "stepper-item.font.context.lg": "S:a50a4612be56085023ef5aad149ba7b5ba7e4261,", - "stepper-item.font.context.md": "S:755519eba87a336180ceaa2605e11f468c4bfa2d,", - "stepper-item.font.context.sm": "S:da64e75edca6fca30de3e1bb0224f0d71452b4f5,", - "stepper-item.font.description.active.dark": "S:5a4965dc35cdba19cefa3f4e22052abe89ea8722,", - "stepper-item.font.description.active.light": "S:b440a2640643ed554d42000d15fba7521000d877,", - "stepper-item.font.description.complete.dark": "S:98f30ea8b9e815dd36681cf18acdd8a474a44272,", - "stepper-item.font.description.complete.light": "S:a013ceeaefe60b844168f6a523ac006fddf265d4,", - "stepper-item.font.description.default.dark": "S:bb68feb462ab14a8d979d6916bc8f61c7776c153,", - "stepper-item.font.description.default.light": "S:c1f37b5b087232d3d69b2d2343154a494bebf829,", - "stepper-item.font.description.error.dark": "S:321c552c4829bd9ab0ab5412e5dc6723031f3017,", - "stepper-item.font.description.error.light": "S:c02eca656fda2efc2f18e0fa10141e8d804f4bca,", - "stepper-item.font.description.lg": "S:23af9aa67ad9cf7d3bbdec0a84a3a9decaa099a2,", - "stepper-item.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "stepper-item.font.description.sm": "S:e4ebff926d9e4d2f4b9b20ef895b87979b82bacc,", - "stepper-item.font.heading.active.dark": "S:219c33d16e6f3f2ab8844186171482269d81164d,", - "stepper-item.font.heading.active.light": "S:7599968187e637add83c21f7864eebb5893ee6e7,", - "stepper-item.font.heading.complete.dark": "S:1ee0e61d48ee69dbec6d6fcb04514893febf3b52,", - "stepper-item.font.heading.complete.light": "S:fb92dd236702e411cb7037b3434c8fbe560bf92d,", - "stepper-item.font.heading.default.dark": "S:f175c2a3fe052c485d5ecfee58101ec273441d59,", - "stepper-item.font.heading.default.light": "S:40ce528e19b100251c7b871858873db10af26b9b,", - "stepper-item.font.heading.error.dark": "S:6a23496900d852a45c92ae33a23d16ee193ceb06,", - "stepper-item.font.heading.error.light": "S:437eb6f82fe8c92b38c7bc86c4e5df0612120737,", - "stepper-item.font.heading.lg": "S:26e38b824652312797550c4393b9af9201d16410,", - "stepper-item.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "stepper-item.font.heading.sm": "S:22cd3c704f1ff153a930b1de5482c90d06b68463,", + "stepper-item.border.active.dark": "S:78609c25722caa2ed59df30f43a794bd551f86ab,", + "stepper-item.border.active.light": "S:9bbd1ed0ed36d481afcef3f66f6a11a5c1c121ce,", + "stepper-item.border.complete.light": "S:1d99cbf6804d7dc901a08d0fe8d4908778e7ab13,", + "stepper-item.border.default.dark": "S:34991ae42356fb4d85bc28cd0147687f4b878e58,", + "stepper-item.border.default.light": "S:507effb8a9bdbac725961ce97c61788749639c56,", + "stepper-item.border.error.dark": "S:b1f9590f9112a32ea6b026f72b6e6c32a6ee1578,", + "stepper-item.border.error.light": "S:862e2d43c64af695ec2dbd2a649081f7783592dd,", + "stepper-item.font.context.active.dark": "S:fbbf2755a83e33fb0db16b70378ad6477adb4281,", + "stepper-item.font.context.active.light": "S:0d04db126badcf1bbe8f96681816d760a6a7ea47,", + "stepper-item.font.context.complete.dark": "S:87bfc76f64f51a604645c5ee97827e5199480ed2,", + "stepper-item.font.context.complete.light": "S:f965b6f57cf171d87a657f3c88c92afcc2efd643,", + "stepper-item.font.context.default.dark": "S:ac7879d8d8c1cdb18a8c91a69cd16a36d8ad5d5a,", + "stepper-item.font.context.default.light": "S:87ea006d6bb1b0086a17e5eb5bffd82dafb84a1b,", + "stepper-item.font.context.error.dark": "S:8d244a46c5511c38809e252f4e7bf4eac990eb00,", + "stepper-item.font.context.error.light": "S:28b3583d79919d1e4ec91dfa7e136b39de9293c5,", + "stepper-item.font.context.lg": "S:c1b9fc32b68a1763f7c5e91fa2b8eadaf9b9efb6,", + "stepper-item.font.context.md": "S:818cce1bff5b22ab50f238dbd30d3d4be5114f66,", + "stepper-item.font.context.sm": "S:970d4e92f7022584cc07cd17ed3bc670f8b09d4a,", + "stepper-item.font.description.active.dark": "S:55e20dc296c9b1d2760dbd4549ce66905fb3ada5,", + "stepper-item.font.description.active.light": "S:875d07a3a63b72631a676195e1e0759991153dbf,", + "stepper-item.font.description.complete.dark": "S:d579a552e3d78d31b8a390ac2ff1511181b02a29,", + "stepper-item.font.description.complete.light": "S:8f56f9d1e86e61dabd975ef412ac4fa0188b910f,", + "stepper-item.font.description.default.dark": "S:ddf8704d0ca2af6915caafddcdbed6fc3f8fe1a5,", + "stepper-item.font.description.default.light": "S:072155213d697ef932e5c2db1988a91f37d1eb17,", + "stepper-item.font.description.error.dark": "S:5eadc336361ad3dd17599ab008232640d05213e6,", + "stepper-item.font.description.error.light": "S:999ebb7557968e68183548560cd0ed526ee3a749,", + "stepper-item.font.description.lg": "S:62276cfddb1f6ddd7540b403ebb19e1444398b38,", + "stepper-item.font.description.md": "S:7c1bdc0f1fe7961924a92208befc2f57c0f1eebd,", + "stepper-item.font.description.sm": "S:763071f2001eb4311c0c830fce34cbf0ff0bb7e4,", + "stepper-item.font.heading.active.dark": "S:d3172cf9103239664c1f68bea004d556bc01b011,", + "stepper-item.font.heading.active.light": "S:65f20a8b947e7e363a76b89d6fe9e715b5169ef7,", + "stepper-item.font.heading.complete.dark": "S:220c93d30643cb40e5bfb11d520f272fd88176f8,", + "stepper-item.font.heading.complete.light": "S:0817d5f840cc7ceb25ad13efe5b3b384244fa426,", + "stepper-item.font.heading.default.dark": "S:785d90c26f73dc5e125d3441e3484b37782d906c,", + "stepper-item.font.heading.default.light": "S:f158eb92e9b491149570dab53362e429b1b5bfd8,", + "stepper-item.font.heading.error.dark": "S:967d70206e702b1af9b3a3e583afe04344cb615c,", + "stepper-item.font.heading.error.light": "S:f1798f396ab033c1fa875eeefcd9b64c96607f81,", + "stepper-item.font.heading.lg": "S:de4f9f2ac9efec08d5e39e7d211b68b579a3667d,", + "stepper-item.font.heading.md": "S:615b151bac3b480674704df9b9d50101457ae28e,", + "stepper-item.font.heading.sm": "S:91061f2afc1ae9d013c7d1ef49788dcb8ba9726a,", "stepper-item.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", "stepper-item.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "stepper-item.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", - "stepper-item.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", - "stepper-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "stepper-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "stepper-item.icon.error.dark": "S:e156fd5ba38f1d8b86af0cc31e7c7a7845942e16,", - "stepper-item.icon.error.light": "S:4870f6f31a7bd5c16b5c7f457d0652ce44a45c29,", + "stepper-item.icon.active.dark": "S:1c7a042030405feabe43a137833599ccc907a10e,", + "stepper-item.icon.active.light": "S:301fa3e75c68e63626c0451db4cc9214d45e9bcf,", + "stepper-item.icon.complete.dark": "S:d1399fa2003cfcb954021f37aa6d089ebaa8e2c3,", + "stepper-item.icon.complete.light": "S:c885fc296fa6ec247e128ac3ea9e27525e15ec0e,", + "stepper-item.icon.default.dark": "S:8808f5340d780d495770440ae7f1f39212a50ae1,", + "stepper-item.icon.default.light": "S:29b0e91caba0f58583526195d4a94c98ebb0a528,", + "stepper-item.icon.error.dark": "S:2c8333f2bc87d9b555703baaf5d15bb4ee2ba175,", + "stepper-item.icon.error.light": "S:91daa1cc9a2798de6f49de749ea6ec1c5f6ed0be,", "stepper.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "stepper.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "stepper.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", @@ -2242,119 +2124,2709 @@ "stepper.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", "stepper.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", "stepper.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "switch.background.checked.dark": "S:cbe1f3df2b63dfcfec9daa27715cd5021382308e,", - "switch.background.checked.light": "S:0ab45ed9bff22a94a58242207f07e8511f3a81f1,", - "switch.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "switch.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "switch.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", - "switch.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", - "switch.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "switch.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "switch.handle.background.checked.dark": "S:0589e976bec8b67f097ba545e5d07e22e765adcb,", - "switch.handle.background.checked.light": "S:cd22cdbfb2b7d5bd9d470aa561e6be2bc2c38dff,", - "switch.handle.background.default.dark": "S:86c4b5b13f25bf62f7d22b82eb3e777cc4949016,", - "switch.handle.background.default.light": "S:746d55ebf4063086d8b02ca467e617f06f2215a0,", - "switch.handle.border.checked.dark": "S:53dd1b99e591b0427a5766fe42f5cdacfe9e3e50,", - "switch.handle.border.checked.light": "S:c436707d0a2bc0922d42ae2b9a5fa6b9d7f3841a,", - "switch.handle.border.default.dark": "S:44c909d394bca66186f97c7b4ff700cdda1b2a21,", - "switch.handle.border.default.light": "S:da3a5b3202820a53a539eecf457e7df62c9ebc9d,", - "tab-title.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "tab-title.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "tab-title.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", - "tab-title.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", - "tab-title.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", - "tab-title.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", - "tab-title.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "tab-title.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", - "tab-title.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "tab-title.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "tab-title.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "tab-title.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "tab-title.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "tab-title.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", - "tab-title.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", - "tab-title.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "tab-title.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "tabs.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "tabs.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "tabs.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", - "tabs.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", - "tabs.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", - "tabs.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", - "tabs.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "tabs.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", - "tabs.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "tabs.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "tabs.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "tabs.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "tabs.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "tabs.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", - "tabs.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", - "tabs.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "tabs.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "textarea.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "textarea.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "textarea.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "textarea.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "textarea.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "textarea.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "textarea.font.chat-limit.dark": "S:14ac320a893a6133618f2c147881beb7caf1d565,", - "textarea.font.chat-limit.lg": "S:e5da8e77c6e39ed414fbd9ae5620564fd78ab3bf,", - "textarea.font.chat-limit.light": "S:d036a96c3e40b11a613c327a3a0a7cae0b72fcde,", - "textarea.font.chat-limit.md": "S:a6aafccb6ad4bfb6e67f2503e562666d7024adf4,", - "textarea.font.chat-limit.sm": "S:715a88be81f03c0539a4573a8095ea899279e87a,", - "textarea.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "textarea.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "textarea.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "textarea.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "textarea.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "textarea.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "textarea.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "textarea.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "textarea.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "textarea.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "textarea.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "textarea.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "textarea.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "textarea.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "textarea.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "tip.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "tip.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "tip.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "tip.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "tip.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "tip.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "tip.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "tip.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", - "tip.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", - "tip.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "tip.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "tip.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "tooltip.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "tooltip.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "tooltip.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "tooltip.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "tooltip.font.standard": "S:d06a201e347559fb01fbd66261b7a3ab8b268fb0,", - "tooltip.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "tooltip.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "tree-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "tree-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "tree-item.font.children-selected.dark": "S:b607abfaf491569cb3a94468e43250d5eae4d270,", - "tree-item.font.children-selected.light": "S:dfd1a09df6ad5d51d017fb59ebcc0b4ae6396ac3,", - "tree-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "tree-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", - "tree-item.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "tree-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", - "tree-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", - "tree-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", - "tree-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", - "tree-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", - "tree-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", - "tree-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", - "tree-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "tree-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "tree-item.icon.selected.dark": "S:5adbcfb229680d6c9c5722e501a6202edd952b19,", - "tree-item.icon.selected.light": "S:ece20359c4d66506c3bbc5619ee5f4f305878423," + "switch.background.checked.dark": "S:16d712ed98ebe801dece8fa7a880c520a194c52d,", + "switch.background.checked.light": "S:61375fa887a0860de3855443d2f43b40c7a05ce7,", + "switch.background.default.dark": "S:f7bfcd0383438b574acca1aa753795fc09d0dae0,", + "switch.background.default.light": "S:2b546b8a3f15b4665c6411200e7fe1a8e4ab85ba,", + "switch.border.checked.dark": "S:e5d3dedd3decde60afd05c82cf42aa11abce81d2,", + "switch.border.checked.light": "S:ce290372fed1bfef6c1b4ed0bd37c6df515437db,", + "switch.border.default.dark": "S:97f36591fa4a4ca61e7888717f7e95096ce8c643,", + "switch.border.default.light": "S:715f8376ec739e417bc47d9a4f60827eb3a13f55,", + "switch.handle.background.checked.dark": "S:a5acf0c9707ff86c70fe7a4bdc66afe768586f0f,", + "switch.handle.background.checked.light": "S:862b6ae13d09d4bdfa12c8241ed87194a99dab9f,", + "switch.handle.background.default.dark": "S:479daf9d19f0c9343377ea058a93be4caf5aa0fe,", + "switch.handle.background.default.light": "S:aab434820c553cc8a0aa5934e7d8daea6c7d0eff,", + "switch.handle.border.checked.dark": "S:8f8d66cdbbfcc33004961a47530be48276d2dc38,", + "switch.handle.border.checked.light": "S:91c9d6d275712cfa3b5947de94a6b07f6320c8da,", + "switch.handle.border.default.dark": "S:d4fb27d30157e782637359a3b32d2c4659f3a1f2,", + "switch.handle.border.default.light": "S:c5c77e646fa6de5e01c238ae5da0dd34770a7208,", + "tab-title.border.active.dark": "S:9e3988e0c96c720300ade9e55d932b9729c4ff27,", + "tab-title.border.active.light": "S:84700debebe5a1cfb5c0c88ba87420c0d40b7ca7,", + "tab-title.bordered.background.default.dark": "S:03079e5eca9b53f58c98c7b62d130c6bd3e83869,", + "tab-title.bordered.background.default.light": "S:2425c4c8b6f706ee60ba38bf277e3bca064852df,", + "tab-title.bordered.border.dark": "S:5fd239592d3f24d639295d9d353e5a9f87219c46,", + "tab-title.bordered.border.light": "S:03f542e34f37d7e9ea61ca0b3b67fc2308d917e5,", + "tab-title.font.active.dark": "S:cada25e9a2d89ac1e42574b53b4aaa1612129a46,", + "tab-title.font.active.light": "S:543fbcdd816ff1732c70183eafb888480d8238b2,", + "tab-title.font.default.dark": "S:15faf1082e4bb9b5b46f066cdab671e8260cc4e7,", + "tab-title.font.default.light": "S:9a57745d106317348f7ace141d511f24dc529225,", + "tab-title.font.lg": "S:cb05e1d326acb1bdf2b4681b1ec28a9c5028ab79,", + "tab-title.font.md": "S:d4b72f1d0428e8a565e62a8282add4b2102df7fc,", + "tab-title.font.sm": "S:1e6318532ca60c8ce726b22fa5e3c803cd498d25,", + "tab-title.icon.active.dark": "S:76d7d14f1f1471c5a8de8570973ecf1ff80ae792,", + "tab-title.icon.active.light": "S:53ba0f53e54cc84a0c966563e28de67a6d1cad28,", + "tab-title.icon.default.dark": "S:222822eb939a053d4274c90c621c46339140b375,", + "tab-title.icon.default.light": "S:13e2b038c88b3b4a303112d5eaaa768d100a0d60,", + "tabs.border.active.dark": "S:f7135b0aec347af3f3f679b53f68cea007261bb5,", + "tabs.border.active.light": "S:e8a1357561da29a84c7d34be2e981c158efe03f6,", + "tabs.bordered.background.default.dark": "S:b98a3852fbb6ba87a7a8be8e41d16ac06dc1a03a,", + "tabs.bordered.background.default.light": "S:d06dde9168b23902df7827ba94e7e6b66ed11520,", + "tabs.bordered.border.dark": "S:4a41d6a4fef5b3b6d27bd771d2f81ab27775ee1c,", + "tabs.bordered.border.light": "S:a3328e044b7b6572aba48e9dd617546dcc391111,", + "tabs.font.active.dark": "S:ebf437266f9ff18c6487767c73fb7a59e1055014,", + "tabs.font.active.light": "S:92168d075f8b3f11f054bc4cebe76ccb25f66ad9,", + "tabs.font.default.dark": "S:a3b81dfeacf4271af6ce32e2db2323c0b199cacb,", + "tabs.font.default.light": "S:8880eada81e8e029fe0af6a56a3060a835beca06,", + "tabs.font.lg": "S:49cb7962fa60280b42809c2bc0de3e525edde234,", + "tabs.font.md": "S:445015cc13989fbaa4073e097a5e4642df23de80,", + "tabs.font.sm": "S:6db6b73fdd21cc26caec06a43701b41b682ea489,", + "tabs.icon.active.dark": "S:22f0031ea24a9faa52e2db619695bfeb6e1cf9c2,", + "tabs.icon.active.light": "S:671e236d323440529266b7ea518e77da9f10b2b9,", + "tabs.icon.default.dark": "S:1f0e0911d6c9686c913bd1376eba535ffc4dd8db,", + "tabs.icon.default.light": "S:f1ad0895ef0297cac3638077da865afb51852266,", + "textarea.background.default.dark": "S:a8a5da6acfbbf7b60e232bc727dc40834f1b2d51,", + "textarea.background.default.light": "S:0bc6e63733d303b3740fa023dc950f38590e6d2c,", + "textarea.background.read-only.dark": "S:81ac33b88f9996b22d7d23a3454766c0d4653821,", + "textarea.background.read-only.light": "S:45cf3de68dde2aef65d5b21024eebb83b6803f2c,", + "textarea.border.dark": "S:717c32db72787148556506bd619924a7fbdaff59,", + "textarea.border.light": "S:03c882f648ad710a98aaa8e2b04da9b8786f40fb,", + "textarea.font.chat-limit.dark": "S:bdc4da0089f875d998021eba6325106eca87fa42,", + "textarea.font.chat-limit.lg": "S:a9075f1d5af38a5092830babd56eca7fd66ab696,", + "textarea.font.chat-limit.light": "S:380db810cbab7b461fe36c19a8b21a60eac5db5c,", + "textarea.font.chat-limit.md": "S:2422dd40de1fb0eac8d685c15fde7892b95ea660,", + "textarea.font.chat-limit.sm": "S:b2e138c7f6997da6fd81d93296485d0f539a34e9,", + "textarea.font.label.dark": "S:60f29d939ec49adb0a01fd834f2b7d7d392eff73,", + "textarea.font.label.lg": "S:5fa37a9a7899577df1b8e71632ccb32d30ddb60b,", + "textarea.font.label.light": "S:582e560214f9afbad8359e4a874e25307813d4af,", + "textarea.font.label.md": "S:21c9140a937b8912efa5cefb77680a7ad86dadec,", + "textarea.font.label.sm": "S:cc60ffb6a341805fd400a2a673d458f1aece6966,", + "textarea.font.placeholder-value.dark": "S:df30de98a2fe38e515e510c31369a6aa55f76711,", + "textarea.font.placeholder-value.lg": "S:99b00127846913ddb74334cc9e27fc7b73d1d647,", + "textarea.font.placeholder-value.light": "S:776be81ecc91ed35e5dd3afad8b16d1b58f4e1b8,", + "textarea.font.placeholder-value.md": "S:aba3f967f6864f5f83a6e5452c4e7b942d24c695,", + "textarea.font.placeholder-value.sm": "S:fc2cd42d088ee4838d662154a16403bd197391ad,", + "textarea.font.read-only.lg": "S:77b57e6391a5c94b14c0b0943acac682ba8f063e,", + "textarea.font.read-only.md": "S:a00719600c3914c814fcb17a536596d9edbffcbb,", + "textarea.font.read-only.sm": "S:dbc4988bb204377539ec4bdf5ee0c2560dcdea69,", + "textarea.icon.dark": "S:49d9840a88662f05023b1ff514be04894ddc96a5,", + "textarea.icon.light": "S:9e00af09fd86dcb40f2eae34a6b28e117ffe7dad,", + "tip.background.default.dark": "S:2f26455cd965787ddf3d4a5a589d6ccf78589152,", + "tip.background.default.light": "S:39cc316dc5381100dd3c9652fb290604d26c521f,", + "tip.border.default.dark": "S:bf009c62d89ffb90e1d4aa36bdd0ebd406c4920b,", + "tip.border.default.light": "S:28e6571deba5882d3cd5b9995cafa7526cca1d14,", + "tip.font.description.dark": "S:cb3411825bbe1e2992734fda0aadcd9525a5bb5b,", + "tip.font.description.light": "S:5849f322b7c8d1c5cd87fa38e056764d283de7a0,", + "tip.font.description.md": "S:5d5914be9f786ed8fa5a7069227ea5f8e43663c1,", + "tip.font.heading.dark": "S:fd96a010fd75661acd17b8fcad482a2225bb1a24,", + "tip.font.heading.light": "S:455f5131b171c82a8aad3fdfd293ec9aec519407,", + "tip.font.heading.md": "S:fcc248db271e7817fd138090cb4af1532b6dbb6f,", + "tip.icon.dark": "S:3cf33994f0f542b89204369a024dbe82e3c52e4e,", + "tip.icon.light": "S:1ab2bf420bc18fada9cea3b1e850b4a329a2d3f4,", + "tooltip.border.dark": "S:a2a29ef0fa73b7b162125da5762952ba3e25a0ab,", + "tooltip.border.light": "S:5e0db83b772de505652c05c96ec5e9f83978eeff,", + "tooltip.font.dark": "S:ea30350b940e5c7143efc2ddb8e11fec64d4f493,", + "tooltip.font.light": "S:2494310023585eb48e4cbd3c8dc3fb493558dfb5,", + "tooltip.font.standard": "S:50a0705e29e3e9e03901c9f548035294df2c10bb,", + "tooltip.foreground.dark": "S:e339b8901f69e86a199fefc5c2d1eb9fcb510730,", + "tooltip.foreground.light": "S:3783e832b557933fa092ca021ba7d4d51e669d31,", + "tree-item.border.dark": "S:fd774d7a27f82bea9ba76e0eb9e482c84af8aa74,", + "tree-item.border.light": "S:68660ecf0f9ac397348b2bec941a59a9509fe75e,", + "tree-item.font.children-selected.dark": "S:9e9d4fa001ee0f18d5353e19a1b95c5587a34b9c,", + "tree-item.font.children-selected.light": "S:ae7a3a0f39fc9901c503c50ac69ea27b3dc54c90,", + "tree-item.font.default.dark": "S:3330d7e9f65c06bd420316a1b3e6f7d1b44b52fb,", + "tree-item.font.default.lg": "S:07930566222866bf8b42f7ec032bb41561b3075a,", + "tree-item.font.default.light": "S:4fd621a968c7efc23149a7c87cd8e367ada5347c,", + "tree-item.font.default.md": "S:da7ce8b6dbad3df7bf0fad67b99c2ce9806fac35,", + "tree-item.font.default.sm": "S:294aaca0ce42ba8c6860ae76ff6c4b9945bf96fd,", + "tree-item.font.selected.dark": "S:648a1b7d60f57508db08b600c0971112dcaba70a,", + "tree-item.font.selected.lg": "S:5352a3c7596dbeaeccfc70413adad6c7177a9f6e,", + "tree-item.font.selected.light": "S:7c53629923e3d6e1f81e3228271f514ac4fd1746,", + "tree-item.font.selected.md": "S:571cd4467530dfafa664a010860412421831555f,", + "tree-item.font.selected.sm": "S:48f1c29fab7223cbce9f1336bdca5fd7b492f80f,", + "tree-item.icon.default.dark": "S:14fb95fc288a1433aacf485cb8415fad7d04a359,", + "tree-item.icon.default.light": "S:f94487d16f291b63a1c2871408dfa0aff9520d5b,", + "tree-item.icon.selected.dark": "S:08f6c9208404a01eb7eeaacb1320db48e2423e70,", + "tree-item.icon.selected.light": "S:ba029db68c3613b03f2ac836bfd9bc82f9525cbb,", + "stepper-item.border.complete.dark": "S:d9c9868a3a5bb958c4722d6bc41ccf5d1d3e4a8e,", + "semantic.ui.color.inverse.hover.light": "S:21b594689acb79f7376d40e43dae510e76d7528e,", + "semantic.ui.color.inverse.hover.dark": "S:5fd28e2d7576ae5718dd05b98738b559b162bbae,", + "semantic.ui.color.inverse.press.light": "S:0169881606d2d1e9305f21f7d46d5e13e2215b6f,", + "semantic.ui.color.inverse.press.dark": "S:f638f7faefa3d33eba9251d43214fc28b71d5450,", + "semantic.ui.color.transparent-hover.light": "S:5dd76f4cfedf4053033a4071f190458ae912b936,", + "semantic.ui.color.transparent-hover.dark": "S:c0fdf83bb4f016ff4d6aab8319938eede2de5d70,", + "semantic.ui.color.transparent-press.light": "S:ec996774523e568e3841da611cca52e6e3c6f8a5,", + "semantic.ui.color.transparent-press.dark": "S:84647d7454e18cfa3b284a9878c1b808737b4140,", + "semantic.ui.color.ui-text-highlight.light": "S:06e5bc287e569c48deff48c1e14bb27ccace36c6,", + "semantic.ui.color.ui-text-highlight.dark": "S:05318a231a493ad130367f4a4c3f2c6fb5ae4f8b,", + "card.font.subtile.md": "S:6f3e80c9c0763cdf0c123fe956ce9011669fd572," + } + }, + { + "id": "fbbf5dd5296d2a38e339473b8a81f72005eaa89e", + "name": "Calcite - Grayscale", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "component/accordion-item": "source", + "component/accordion": "source", + "component/action-bar-grid": "source", + "component/action-bar": "source", + "component/action-pad-grid": "source", + "component/action-pad": "source", + "component/action": "source", + "component/alert": "source", + "component/avatar": "source", + "component/block-section": "source", + "component/block": "source", + "component/button": "source", + "component/card": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/color-picker": "source", + "component/combobox-item": "source", + "component/combobox": "source", + "component/date-picker": "source", + "component/dropdown-item": "source", + "component/dropdown": "source", + "component/fab": "source", + "component/filter": "source", + "component/flow-header": "source", + "component/input-date-picker": "source", + "component/input-datetime-local": "source", + "component/input-email": "source", + "component/input-file": "source", + "component/input-message": "source", + "component/input-month": "source", + "component/input-number": "source", + "component/input-password": "source", + "component/input-search": "source", + "component/input-telephone": "source", + "component/input-text": "source", + "component/input-time": "source", + "component/input-week": "source", + "component/label": "source", + "component/link": "source", + "component/list-item": "source", + "component/loader": "source", + "component/modal": "source", + "component/notice": "source", + "component/pagination": "source", + "component/panel-header": "source", + "component/popover": "source", + "component/radio": "source", + "component/rating": "source", + "component/scrim": "source", + "component/segmented-control-item": "source", + "component/segmented-control": "source", + "component/select": "source", + "component/slider-histogram-range": "source", + "component/slider-histogram": "source", + "component/slider-range": "source", + "component/slider": "source", + "component/split-button": "source", + "component/stepper-item": "source", + "component/stepper": "source", + "component/switch": "source", + "component/tab-title": "source", + "component/tabs": "source", + "component/textarea": "source", + "component/time-picker": "source", + "component/tip-manager": "source", + "component/tip": "source", + "component/tooltip": "source", + "component/tree-item": "source", + "calcite/grayscale": "enabled" + }, + "$figmaStyleReferences": { + "color.blk-000": "S:2dfa1477fba66ce281ddbed91bb90d9c01b3a22a,", + "color.blk-005": "S:827be3b7a0dd744792e98a5929aa956b08607486,", + "color.blk-010": "S:ff6abd820ebfc5f2cec37b675f4fc233bfab951e,", + "color.blk-020": "S:1eeac5b606e5d1be74b6791bfb29fa041d130d35,", + "color.blk-030": "S:ffd5c174496166fafeeb395d761a1b91b97a2c12,", + "color.blk-040": "S:18b314be87cf986e6bb4ee5f0ceb75385a391676,", + "color.blk-050": "S:92c728a70cd2c6081239f35b9dd48ceaf6192f64,", + "color.blk-060": "S:33c42d72c5106d26f9c7a793450077aa3a1ca404,", + "color.blk-070": "S:b32f4d579f9cb5e455ebffc4165aaef38ec1dbd2,", + "color.blk-080": "S:9961cc1cc065ce29cb0e43a036ffc77ea3d9a679,", + "color.blk-090": "S:91141e4a5090419afafa7e5b96707521b5f76908,", + "color.blk-100": "S:8c177ca05dcf56478cdcc518816438f365eed4a6,", + "color.blk-110": "S:7d4f6dfbd5096e3820e4706da77a5ec28e919099,", + "color.blk-120": "S:7fa770bf305a3a46dfa61f88f73f326e62db3992,", + "color.blk-130": "S:b4c70983f40b98f3c48511fc6e152cf0e8636802,", + "color.blk-140": "S:78181ed61678f3efcd108e6be232d3997b568d5b,", + "color.blk-150": "S:9886107acfdec738f359e9b0e97652e9b037fdb3,", + "color.blk-160": "S:a83a4dadce1f44d3dd28296751b3c15a7435f3c7,", + "color.blk-170": "S:fea9bf7cedf86f610f8ab13793be469717825e4d,", + "color.blk-180": "S:2a2361e2f5683f6d60214a97a34306cec377a7fe,", + "color.blk-190": "S:d4d504eff5a34fe62f1c49f487c0ac87580df5ac,", + "color.blk-200": "S:67d6dff61b58524d2b0cf666a2044756bcccf2c5,", + "color.blk-210": "S:a991e3d10bfdae43f9e3de0ac9c499dce90fcc4c,", + "color.blk-220": "S:b1c5a4f2701c61c6ba0e86dedbc746e6c2325825,", + "color.blk-230": "S:aad4ddf1883067471d9c39daf1c8c1bcbd3148bf,", + "color.blk-235": "S:42d29ca527b689efff95d9f7f21acbe93a836fa9,", + "color.blk-240": "S:e9403db7ed52c288eb96d811e68ea5bb944530c0," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "calcite/light": "enabled", + "component/accordion-item": "source", + "component/accordion": "source", + "component/action-bar-grid": "source", + "component/action-bar": "source", + "component/action-pad-grid": "source", + "component/action-pad": "source", + "component/action": "source", + "component/alert": "source", + "component/avatar": "source", + "component/block-section": "source", + "component/block": "source", + "component/button": "source", + "component/card": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/color-picker": "source", + "component/combobox-item": "source", + "component/combobox": "source", + "component/date-picker": "source", + "component/dropdown-item": "source", + "component/dropdown": "source", + "component/fab": "source", + "component/filter": "source", + "component/flow-header": "source", + "component/input-date-picker": "source", + "component/input-datetime-local": "source", + "component/input-email": "source", + "component/input-file": "source", + "component/input-message": "source", + "component/input-month": "source", + "component/input-number": "source", + "component/input-password": "source", + "component/input-search": "source", + "component/input-telephone": "source", + "component/input-text": "source", + "component/input-time": "source", + "component/input-week": "source", + "component/label": "source", + "component/link": "source", + "component/list-item": "source", + "component/loader": "source", + "component/modal": "source", + "component/notice": "source", + "component/pagination": "source", + "component/panel-header": "source", + "component/popover": "source", + "component/radio": "source", + "component/rating": "source", + "component/scrim": "source", + "component/segmented-control-item": "source", + "component/segmented-control": "source", + "component/select": "source", + "component/slider-histogram-range": "source", + "component/slider-histogram": "source", + "component/slider-range": "source", + "component/slider": "source", + "component/split-button": "source", + "component/stepper-item": "source", + "component/stepper": "source", + "component/switch": "source", + "component/tab-title": "source", + "component/tabs": "source", + "component/textarea": "source", + "component/time-picker": "source", + "component/tip-manager": "source", + "component/tip": "source", + "component/tooltip": "source", + "component/tree-item": "source", + "core": "source", + "semantic": "source" + }, + "$figmaStyleReferences": { + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.button-transparent-hover": "S:2759662b0656aff9d42add13e0ce7d6c4fc7c825,", + "color.button-transparent-press": "S:be07d9ab5e2c76d279a35e75f79dfec08c41d37e,", + "color.component.accordion-item.background": "S:4cd0fa289585251874490cd7f70c76ead0324baf,", + "color.component.accordion-item.border": "S:4063746b58c74acd320fe42d2a591f48bd8368e0,", + "color.component.accordion-item.font.description": "S:c5ace963ed2122877a8b35507f3dc43f69785bb3,", + "color.component.accordion-item.font.heading": "S:ace317e2742d45fc2e2a9e4aae3c3919324b9748,", + "color.component.accordion-item.icon.default": "S:d008b4ab0c0ee1aa960069122e5000590a234247,", + "color.component.accordion-item.icon.expanded": "S:7dc0b18413d3f0d492b67346634823a4abca8b32,", + "color.component.action-bar-grid.background": "S:c6259e75c8a04b8670c127327ea86378d0dd7ff4,", + "color.component.action-bar-grid.border": "S:e42bcb38df032c705b3fc7a06ebc4fbb5fdd1283,", + "color.component.action-bar.background": "S:1107779508838f17280d6bb3eaf3ca9134726b6c,", + "color.component.action-bar.border": "S:c4161f61205362ebe8ca6dd5669b971652aaada3,", + "color.component.action-pad-grid.background": "S:5cf0b91c93a7075c75cce3bcf2d94a47157d04de,", + "color.component.action-pad-grid.border": "S:9ca1745d67f1e13e79e3c059c956efd31ccce6fa,", + "color.component.action-pad.background": "S:76b1ec554d3f5c73481b19053114cf9fdd263d06,", + "color.component.action-pad.border": "S:615482f9d8048d88c493791a9671292af6e83b5e,", + "color.component.action.background.active": "S:cfeaf2bcbd5f827c14b716a8845f332865f50eb1,", + "color.component.action.background.default": "S:40a1bdf1cfc216f7e15c4557fe112348f8d0ecc5,", + "color.component.action.font": "S:7136e98675c29dcd2fcc0015531c98cf0dbd64e7,", + "color.component.action.icon": "S:e59c51f0c7f019e64e7cddaf1e38114c8f5999a3,", + "color.component.alert.background": "S:d8a79afed145b40809eb11992655c75f3a18bcdf,", + "color.component.alert.border": "S:ce939d5988d3f88019d50a51a48755cdebb94793,", + "color.component.alert.font.message": "S:8fb8af6addab7f8e09e65acd3c7204c5670de68c,", + "color.component.alert.font.title": "S:488a8de24e920a297eff282c0c74d1cbf1f60eb5,", + "color.component.alert.highlight.blue": "S:68045d1780dcf10ef6acd62b5de8c69e2417fe49,", + "color.component.alert.highlight.green": "S:4c2ac620658cf3ffd821c3ce5fb9dcfbc9b24201,", + "color.component.alert.highlight.red": "S:f2a903be049b50fb396bd9d678aedc2c9d909437,", + "color.component.alert.highlight.yellow": "S:12b855c6b738056d12fca7449dc09201c81f6d44,", + "color.component.alert.icon.blue": "S:b3d0ccb38b5e58160a7bbc56cbaded4a0fd802cb,", + "color.component.alert.icon.green": "S:060f232b3a258bc393fe1df999ae816cdf24bf99,", + "color.component.alert.icon.red": "S:fac94827a5ddd8cf006dc9f4702b01fe25709b17,", + "color.component.alert.icon.yellow": "S:e0ee279cde2b429bf155a2fc910af1d5b7303063,", + "color.component.avatar.background.blue": "S:8f02d042b0cc2a9b5c81f544583e2a28f34ae90a,", + "color.component.avatar.background.default": "S:23362233b2cf4429830449870073c74fa384a44f,", + "color.component.avatar.background.green": "S:8bd108293df804287b3955f6b7f96a59eb4542df,", + "color.component.avatar.background.red": "S:8a8e63f52b69d0ea164a8a645539bbe302ca2a56,", + "color.component.avatar.background.teal": "S:e5d4f6ae6e18837d5993c02a8d70addb34815db6,", + "color.component.avatar.background.yellow": "S:62697591b85d5f7a49b568a39ecf5d3399c7a91b,", + "color.component.avatar.font": "S:99dd9b031d240860f93808c7d0c2b792c5f167f0,", + "color.component.avatar.icon": "S:79159f1a0750adf4696c7f63512ae12b71030c25,", + "color.component.block-section.background": "S:07c4bbcd2193447bd3096759e006cc6805a452b0,", + "color.component.block-section.font": "S:b105277b5afd683ac0ef815363e9c7a73d65b3b8,", + "color.component.block-section.icon.chevron": "S:d272f5d7c3cf67595754f59425b5f8e723dfba00,", + "color.component.block-section.icon.invalid": "S:662ff768b9c597db376afc8414ed90563c272574,", + "color.component.block-section.icon.valid": "S:825437012527770901c2729f400af0c3566226a1,", + "color.component.block.background": "S:6e5480c9843b43a5488802e08400abbc982d33ed,", + "color.component.block.border": "S:e06a784fe507eb9a4974c18f83cbc69066f0b7a7,", + "color.component.block.font.active": "S:b2d89d8d3dde0cf84a9d6448274b05f2a26ef8e8,", + "color.component.block.font.content": "S:1c0d021278360780f11b07cf7b0c0654616b646f,", + "color.component.block.font.description": "S:b8c4e9e79bcf4b98c6e3e04ce2e0fd0c3a048e95,", + "color.component.block.font.heading": "S:4463a142b4f249ccf5e8a3e127ee036feac386d5,", + "color.component.block.icon.chevron": "S:3e7f8974bf7e5590706968377fc1a91cd2ce6565,", + "color.component.block.icon.drag-handle": "S:000ad1257814cbaec72a024e9f0233a4a8cfb38c,", + "color.component.block.icon.idle": "S:509769bce42c162186d27b34a71704653df1364b,", + "color.component.block.icon.invalid": "S:11f910a7c580672bf83738f63baab9f3ad768339,", + "color.component.block.icon.valid": "S:1596ac3eae05bdbc6c94a29e4fd153b517073154,", + "color.component.button.background.brand.outline-fill": "S:147f30a42b6aad66e107ef3e71339ba8c0b290b5,", + "color.component.button.background.brand.solid": "S:051c77b5322d69905f4dd0b851b5fdaa848a253f,", + "color.component.button.background.danger.outline-fill": "S:13ac713157fce299eb872aebfa46a4d8cc496c69,", + "color.component.button.background.danger.solid": "S:b4f8ee1c53cf5710c626833ccb6fcd4d56f7db0c,", + "color.component.button.background.inverse.outline-fill": "S:b862c724ebb0103d316db09128519844d94d563b,", + "color.component.button.background.inverse.solid": "S:34bdc7cfab1978f20d2777665d3e3c527ff2517e,", + "color.component.button.background.neutral.outline-fill": "S:bdd084828a89348301a47e5545f4d63a8a561fa1,", + "color.component.button.background.neutral.solid": "S:163ffb8d38ce712315d8c7a930d5b9db07b3f70d,", + "color.component.button.border.brand.outline-fill": "S:09e2723410cc282d57fb291e1b64ec2fe49fd587,", + "color.component.button.border.brand.outline": "S:0032d6073f5b0a149e09c49eb52853b839a17fad,", + "color.component.button.border.danger.outline-fill": "S:42550145a4dc44e7913cf5bc66886dd6e3dee64d,", + "color.component.button.border.danger.outline": "S:922022014ad4fe8bf15c61f237625247f77b1b52,", + "color.component.button.border.inverse.outline-fill": "S:9e1d1609f7000d1dec3a881213ebf8d82fc1cec9,", + "color.component.button.border.inverse.outline": "S:438f7fea47f15be9eaf6efd31baac9ae8a602b2d,", + "color.component.button.border.neutral.outline-fill": "S:bd1b2b30959a4cd43b255875fd87907ccd3bb2d5,", + "color.component.button.border.neutral.outline": "S:6602c24fedda7fc80cccfd821891fc271938dc0f,", + "color.component.button.font.brand.outline-fill": "S:e5c4ab1359c732974e251b5a128c64c97b20bceb,", + "color.component.button.font.brand.outline": "S:19f034363efac27ad3252963dd683bcde8e12ecb,", + "color.component.button.font.brand.solid": "S:a0ca92f28ce698c67507f20cd8bb8be9c4d20705,", + "color.component.button.font.brand.transparent": "S:8ebfe1e87fec8777b6652fcabf53930cd5458e4f,", + "color.component.button.font.danger.outline-fill": "S:e8686b7dd079f19b3128466bada68e3c44e5f371,", + "color.component.button.font.danger.outline": "S:d72c7be1f3db03179ff8c43825bf449f139a2b07,", + "color.component.button.font.danger.solid": "S:323ff658ba011cd5b2dbc50ac68a1f1b16216f6e,", + "color.component.button.font.danger.transparent": "S:d958155a592ef4745b6e37c1173fccca3f10859d,", + "color.component.button.font.inverse.outline-fill": "S:7f3247f9459e581c7fd0b688fe661cb0786d1dad,", + "color.component.button.font.inverse.outline": "S:e63de4efeb23b7229a500824afa068f90c979146,", + "color.component.button.font.inverse.solid": "S:0d6854574bec333dabaa760fcdccbbbb6767cda3,", + "color.component.button.font.inverse.transparent": "S:e4dad21ebe5d50c2c0aaf65a58a0202ed8d66f20,", + "color.component.button.font.neutral.outline-fill": "S:4b3e967c53ce9f9381bd2745461e0a411a3a5c5b,", + "color.component.button.font.neutral.outline": "S:3364de31c368b53e1b7f7ddd9f1e0940b5aaf82d,", + "color.component.button.font.neutral.solid": "S:deb90e82f2dd4b3cc104d3de715bf42ad77c0470,", + "color.component.button.font.neutral.transparent": "S:e381ff48951e71594d8b9ebab0a5f151513b616f,", + "color.component.button.icon.brand.outline-fill": "S:582a35c4c1521cf9f21713e6e1345d5fa2053d49,", + "color.component.button.icon.brand.outline": "S:2426cc0f3dab92d4d6b3cf533d84d0d292efd2fa,", + "color.component.button.icon.brand.solid": "S:af24ec31671d06d9ecaa7e7fe9c7db72163535f8,", + "color.component.button.icon.brand.transparent": "S:1c3729de216d0a1ed66315a27177188b9bfe285b,", + "color.component.button.icon.danger.outline-fill": "S:404720422a846bcd3ea49d2883885b7d2cf65c44,", + "color.component.button.icon.danger.outline": "S:643378fd2fa238f2de36a4971caba44d76fefe23,", + "color.component.button.icon.danger.solid": "S:8fe63da007b4b811d15c36d14235a3049e21215b,", + "color.component.button.icon.danger.transparent": "S:8141dee2374293e0f0774fcc2365717185f9cb0c,", + "color.component.button.icon.inverse.outline-fill": "S:79f34baf04d9e1f7c11bd6bd1441b23075637f2f,", + "color.component.button.icon.inverse.outline": "S:18cb9c43ce8fa3ad9b137fe969b1022391c54ce2,", + "color.component.button.icon.inverse.solid": "S:b63c80f9c5fb69439d90c0dc31149202b15cfa76,", + "color.component.button.icon.inverse.transparent": "S:dbd8523c158fcdb7050e4924e36c13d89e6dceae,", + "color.component.button.icon.neutral.outline-fill": "S:1733fa6ea888ba6049389dac55912a8e53250fb9,", + "color.component.button.icon.neutral.outline": "S:1da69c5aec1cdeecea8fdd6c1c87ba0388259417,", + "color.component.button.icon.neutral.solid": "S:9249601bcbf01bf04ad3f06446b771370b8d88bb,", + "color.component.button.icon.neutral.transparent": "S:0098e94022ddbf9ad14aede7d607f4a8f87f27ad,", + "color.component.card.background.default": "S:06e062f4366c189ae6ef1766060511721a50775b,", + "color.component.card.border.active": "S:29503c58f14f32e1ee63c508b86d325a5de29cee,", + "color.component.card.border.default": "S:1c9a94adbfc59503e6599cad89b942083fa68e6b,", + "color.component.card.font.description": "S:63835a09cca5adb3d05c8645baccc8d3ad3c8326,", + "color.component.card.font.subtitle": "S:337d37ea57467b1b7bad79fc9be0d8b616ff52c0,", + "color.component.card.font.title": "S:ac445ed4f8af77082524ef5be8eb5b34226b035e,", + "color.component.checkbox.background.default": "S:e1f00e223a9ffd6a55eabe3c9cd1f2640b1116cf,", + "color.component.checkbox.background.selected": "S:1d1b2218abbf129ce7ad7b69a77f46b41c17f4d0,", + "color.component.checkbox.border": "S:ed3580d4840d467862ce53604c3fd028202dfda3,", + "color.component.checkbox.font": "S:1cc9e185cb13f14b3fca8a64d921992216233d79,", + "color.component.checkbox.icon": "S:ce5a18d4219e04d8292659bed4c79779faf450b3,", + "color.component.chip.background.solid.blue": "S:763587ab0f04ea33816bc570b1140839a1b44fa1,", + "color.component.chip.background.solid.green": "S:68c5d9bed23a6d61508c811336093bbcebcb16e7,", + "color.component.chip.background.solid.grey": "S:f39c5811a5319d453fc54214db833839c0c7dc9d,", + "color.component.chip.background.solid.red": "S:4ffc84253d17655d1c104d03703a8e40c256b141,", + "color.component.chip.background.solid.yellow": "S:1e2f57d397a32d637a34322cc849d1b6e0d06825,", + "color.component.chip.border.clear.blue": "S:fbe61c3dd5c88c5b0b65e32b2b921ea4d1c57b02,", + "color.component.chip.border.clear.green": "S:790ab7a70adc52d41541a35e1ab2c563acf09c90,", + "color.component.chip.border.clear.grey": "S:e9698270670567b7b6ee2e3837216bd4a4b7ded7,", + "color.component.chip.border.clear.red": "S:d1bd448590b3a9987c00af89f5f7d46667927235,", + "color.component.chip.border.clear.yellow": "S:40bd5afd2d6da024bf53650150b8624a66c093ab,", + "color.component.chip.closable-icon": "S:04950617ba50eb1abcbdd4d13213966f637d9c19,", + "color.component.chip.font.clear": "S:4c33cdccb2a5570332da91f6aa47ac3db593a75b,", + "color.component.chip.font.solid.blue": "S:66e416274be36ecc6605bf64cd18887192a40d27,", + "color.component.chip.font.solid.green": "S:21874597ba30e9bdffaa4e2895bf10cbc5679c1e,", + "color.component.chip.font.solid.grey": "S:e0339db1d4ee8a1a8331a90905fb03639ab41a27,", + "color.component.chip.font.solid.red": "S:2620166893ac59e19cbf47b647514e0e9de86a89,", + "color.component.chip.font.solid.yellow": "S:0c845fae877ccea1f9e26dc3507b7c0c97b31690,", + "color.component.chip.icon.clear": "S:3f01b089d53712d8061034fd0900730e9701964c,", + "color.component.chip.icon.solid.blue": "S:a48fc69c5185a133035e31b68791530917c1e0b2,", + "color.component.chip.icon.solid.green": "S:2aa064b3497d61d4405087b3a7aa2158a96eeac9,", + "color.component.chip.icon.solid.grey": "S:351c6fa1dc3e53e5b698dbeddba15dd2fd09d3c7,", + "color.component.chip.icon.solid.red": "S:bcc4e4feee5d861f5e4bdbb2f4338e5e8846a056,", + "color.component.chip.icon.solid.yellow": "S:f6ba405835dda2f8a9e6975d3a77e845c3ac8550,", + "color.component.color-picker.background.default": "S:bfff29dab7c0b1f2643fe2c632fcc05918e3a409,", + "color.component.color-picker.border": "S:f3108a3eeefa7b3cb3fed427e701d286ecde5af5,", + "color.component.color-picker.font.label": "S:0880e7c19e0f026f4e84a7ffaf3105862bf91083,", + "color.component.color-picker.icon": "S:fb6e41fd015f02cd5fa2fec3f572321d1c1dc7ac,", + "color.component.combobox-item.border.light": "S:ed3f9a558d6f3aa473ae15605a230fd20b45c7ef,", + "color.component.combobox-item.font.default.light": "S:b4e4404fb9aa1d4e761f3c03f56b600e6d68a1b4,", + "color.component.combobox-item.font.group-title.light": "S:f5cbe83a52d6c6bc1db9f1f03bcba1f895058838,", + "color.component.combobox-item.font.selected.light": "S:4ca8f3549ab7c97f5b60f957fd0fb1cc2921dca5,", + "color.component.combobox-item.icon.default.light": "S:d29677ca13b68852e2a8c883965a05de6091e4ee,", + "color.component.combobox-item.icon.default.selected.light": "S:5d3b71d137d90d16e67eb299c99ba41c97584189,", + "color.component.combobox-item.icon.select.light": "S:b09d228fb1bbe2570c282eb762483a9c938a1023,", + "color.component.combobox.background.default.light": "S:bb24df5591c95cc6325618b3073ef40700c9ed9d,", + "color.component.combobox.background.item-container.light": "S:ce51f11e780dd03efef03ea2cb9e912825e5ffa4,", + "color.component.combobox.border.light": "S:292c25d1452713167cb0ad88f162dc129ac2a525,", + "color.component.combobox.font": "S:26d507d76a0452fa24df8deca8a9512b611fb562,", + "color.component.combobox.icon.default.light": "S:b3248aef45e751c34e6e06a5999c1b342f7ae38a,", + "color.component.combobox.icon.dropdown.light": "S:e14c2189f6be87fc2dd5836bbd077be804129d82,", + "color.component.date-picker.background.date.active.light": "S:588163968f2d20aeb9024f962285edaeac703b67,", + "color.component.date-picker.background.date.range": "S:bd80d2ee9ff8c61d9519b74c04f2a042b4915206,", + "color.component.date-picker.background.default": "S:9bba83cfef23f4342e6485bcec3688671cad9b2c,", + "color.component.date-picker.border": "S:dd8e9c89fc45a2e00c95eb4915ce367f8a4b6986,", + "color.component.date-picker.date.active.border": "S:44e30c7cce69a4c905d6e5dd84aa663c7001d458,", + "color.component.date-picker.font.active.date": "S:1fe38ddac7b9311d19c9e0dea128a4b7edaa7917,", + "color.component.date-picker.font.date": "S:692c95c9922a002c66a5ab7dd4634e9ffa741927,", + "color.component.date-picker.font.day": "S:c5febae7cc34730eef187f9ed1e871dac374d5f7,", + "color.component.date-picker.font.month": "S:f7c08840912b80a5b56a7346dd1436d496cba0e7,", + "color.component.date-picker.font.range.date": "S:5d4df6fba16497bf85f88ef92b691a1676f478c5,", + "color.component.date-picker.font.selected.date": "S:d3d0ed9e835ff489ee36842e115553b75c04a5e0,", + "color.component.date-picker.icon": "S:8cb5f379526fd7d536e14442f6c7a5011125421c,", + "color.component.dropdown-item.border.light": "S:1e8055c0e237480ff0314c0e5aba032b6d551379,", + "color.component.dropdown-item.font.default.light": "S:2693f614235daaf22c886d971b4512dfa5918a0a,", + "color.component.dropdown-item.font.group-title.light": "S:a5b5baaedd391a89d6bc6110a110fe735480be8b,", + "color.component.dropdown-item.font.selected.light": "S:cb1860deddec27bea37a00a2eb5482506d593f52,", + "color.component.dropdown-item.icon.default.light": "S:bff893c75fac15dcc5b721056e19ce835abefee2,", + "color.component.dropdown-item.icon.default.selected.light": "S:1b81e81a59e4a297af68212979d62c11ee86564b,", + "color.component.dropdown-item.icon.select.light": "S:aba2700b500e1d47db3c52ddec6d8c9c471896fe,", + "color.component.dropdown.background.default.light": "S:9f4b4ec82af35b210c9bd5661d55209f77c72347,", + "color.component.fab.background.brand.outline-fill": "S:1a75b0bcb0cbbaec299b9be4dad7324156cf7dcb,", + "color.component.fab.background.brand.solid": "S:961d590f06058c7d5ec59dad60fd6a2f46c4806d,", + "color.component.fab.background.danger.outline-fill": "S:15f024c15f7f895d0212582a00173a2337c1e8d9,", + "color.component.fab.background.danger.solid": "S:137c34f61f4f59f6eb9fc1322e7e836191a446f0,", + "color.component.fab.background.inverse.outline-fill": "S:07e8bdb918ee2a95f9d758047d3bbc02c46ad492,", + "color.component.fab.background.inverse.solid": "S:76be78a7f964bc8e9d6296155c524f19cf139834,", + "color.component.fab.background.neutral.outline-fill": "S:aba2b3556e6ee84dc39db2d0389c94d8e59e95a2,", + "color.component.fab.background.neutral.solid": "S:a291cca6d38acbcb4cc265fb24b8ab534461ddda,", + "color.component.fab.border.brand.outline-fill": "S:9ca1647d8edd7179802b84e04dc8b55fe36a47fd,", + "color.component.fab.border.brand.solid": "S:0395dc2927b436fe83190d915e8aa5427f0ddae5,", + "color.component.fab.border.danger.outline-fill": "S:1266662ad4468c859ff66382b6da1125a96b68b5,", + "color.component.fab.border.danger.solid": "S:e9b37ea5ae4631ef87d8defd8849d39a75df2656,", + "color.component.fab.border.inverse.outline-fill": "S:6ba3e896fc47627f50e6890f706bb83a9f5ba813,", + "color.component.fab.border.inverse.solid": "S:88b47730d07f978f7a3156878aeb2909cbce133b,", + "color.component.fab.border.neutral.outline-fill": "S:974d01e6e87d2283ee80b19d8efc345f3499211c,", + "color.component.fab.border.neutral.solid": "S:940806a480757e4fbe8be39d67e0de9fa2c9bb98,", + "color.component.fab.font.brand.outline-fill": "S:92cf54449bbc42fd8f4e93f1513fb78ec92fa79b,", + "color.component.fab.font.brand.solid": "S:24e7f323b5f590d0e3eb5e392253ba3d0174a5a5,", + "color.component.fab.font.danger.outline-fill": "S:e2ed6e2798548a7fb3cf711e78aafc577f09ba45,", + "color.component.fab.font.danger.solid": "S:f3c6c971ef543e00088b337728ea73e987571b60,", + "color.component.fab.font.inverse.outline-fill": "S:234de9eb12aa7366ec20d493e0f41fd61fe525c0,", + "color.component.fab.font.inverse.solid": "S:f84e0d1dc039df455ccfce973f8c46c636dd902d,", + "color.component.fab.font.neutral.outline-fill": "S:aedc66bd46f3a5b684377a48546a0ebebe04c343,", + "color.component.fab.font.neutral.solid": "S:d284065bb8ca6fd702cb9635d9e401e5b91e9641,", + "color.component.fab.icon.brand.outline-fill": "S:972a7801d3c5d85bae1bfea801c5077d9e68f6a2,", + "color.component.fab.icon.brand.solid": "S:dddc48798d1cb6fd9f7b6dbea4e9e558415adf47,", + "color.component.fab.icon.danger.outline-fill": "S:203bd3008468f8349f4ef580bf89a80e1dd6d66b,", + "color.component.fab.icon.danger.solid": "S:40dfc6b725ee19183c34dc2858d154448a37257a,", + "color.component.fab.icon.inverse.outline-fill": "S:81907a7adce8bbf2e9260cd7a383744f0dad091c,", + "color.component.fab.icon.inverse.solid": "S:9e84350a56085c94fc34592c07a4b392a144950d,", + "color.component.fab.icon.neutral.outline-fill": "S:e8767d95941924ea6747551752d8f305dd46bf60,", + "color.component.fab.icon.neutral.solid": "S:d98dbdd3e020602b97b74a070c6e0a650ad753fb,", + "color.component.filter.background": "S:725db9c2200bb18b29687ec6bc58b665e3d280e9,", + "color.component.filter.border": "S:e840230c2143b3283ba249c75f97cbbc0d14e1dd,", + "color.component.filter.font": "S:83f9dfff9a133939f45a087939ed2c7df7524cee,", + "color.component.filter.icon": "S:40a95a32091cfbf716a8fced2d8c922d171f43a7,", + "color.component.input-date-picker.background.arrow": "S:c4538ed5878b6ab97fa2a4e2ff93ce01d3085c7c,", + "color.component.input-date-picker.background.default": "S:bb89fc8992116f0c07db73e8581f58ddce1d7f09,", + "color.component.input-date-picker.background.read-only": "S:bc0aab56b7918c78c11e74a25646f9d4496959bb,", + "color.component.input-date-picker.border": "S:76339e8ab86a1358c8666f0e6dc6558edb3f0c64,", + "color.component.input-date-picker.font.label": "S:9ce6952622b19bb65f6bb7ee75f41970d5149c20,", + "color.component.input-date-picker.font.placeholder-value": "S:2666862f3b9008882b61bdb1dc252df0cc100de9,", + "color.component.input-date-picker.icon": "S:64e36a970acbaeae675a2f3d07c9733c86b1fb76,", + "color.component.input-datetime-local.background.default": "S:24eb33fbaa252b272d9b290942ecceec3298ac5e,", + "color.component.input-datetime-local.background.prefix-sufix": "S:89d0cef17179197aa126793a362ae846b1ecff6c,", + "color.component.input-datetime-local.background.read-only": "S:6120a553f71e0bf30360a1bfe025bb116b1cc297,", + "color.component.input-datetime-local.border.default": "S:5945825f85b12fe50239ce3e7a10c517a3431fd9,", + "color.component.input-datetime-local.border.invalid": "S:059f60194ad48784996a2e1300382e3f2fd469be,", + "color.component.input-datetime-local.font.label": "S:23e50cc06d56df38ee3a0f69976d12082e794df3,", + "color.component.input-datetime-local.font.placeholder-value": "S:b7ea60488887db9185571416954ad9424e062617,", + "color.component.input-datetime-local.font.prefix-suffix": "S:4a66bab5e2e72bc31aaa3e7e992987e203d54be7,", + "color.component.input-datetime-local.icon": "S:28d2626c4f173f604c597fa46f47faac470b73d7,", + "color.component.input-email.background.default": "S:171fa0e9ee48eef3ca16657ca9d2c13f65b8e939,", + "color.component.input-email.background.prefix-sufix": "S:857b0e5288d4b9e8e20c641e8fedab3033a2f854,", + "color.component.input-email.background.read-only": "S:f050b683f178bae92bb40cb9a2fbbb71e6dd0cbe,", + "color.component.input-email.border.default": "S:6da7284c3e364adf9e00b8797813610bfe643eec,", + "color.component.input-email.border.invalid": "S:f2023d75949eac36b5b902832511dbfdf8248215,", + "color.component.input-email.font.label": "S:bbb70bc2e966085656b15257c2d8eb135b58312b,", + "color.component.input-email.font.placeholder-value": "S:4d47eeb0cb534b7cd2702abbc534389f0166f719,", + "color.component.input-email.font.prefix-suffix": "S:0a22e6e76ad99fe685640d5f98f63cd93faeacf9,", + "color.component.input-email.icon": "S:f68310eb222d267b09f3d90f4e45ee32a94b59df,", + "color.component.input-file.background.default": "S:9184ba3d1c2a0d07670e173cb0876df371aa5d8c,", + "color.component.input-file.background.prefix-sufix": "S:afbb0899267194c3b6c5f999942ee7dee4a08c22,", + "color.component.input-file.background.read-only": "S:3a0fd2492a89548dc56267caf1aaa91953f506dd,", + "color.component.input-file.border.default": "S:ab10d025d7a0398968d7e5e9975c0c633d1892a5,", + "color.component.input-file.border.invalid": "S:127accc041786425f4704de2c00aceb3c19fb2ea,", + "color.component.input-file.font.label": "S:96d62e49484370a57ec82a799c1c5461f0457b9c,", + "color.component.input-file.font.placeholder-value": "S:7f10a127b2d9f35f9ff5788f6a5e04755f59f7d0,", + "color.component.input-file.font.prefix-suffix": "S:f349d152250581e6ecb148b9ca2ac425f861cc94,", + "color.component.input-file.icon": "S:297fa003049e1c6454a08834aae19dc4b1edbb4c,", + "color.component.input-message.font": "S:d074c73feab5a54bd04f42b9a3c83e619d9a9914,", + "color.component.input-message.icon.idle": "S:0c655658289b3f664d81eab3face6ec0a440d92f,", + "color.component.input-message.icon.invalid": "S:4267889e6f4ae126947ec17eb24f85f57235a570,", + "color.component.input-message.icon.valid": "S:1f4968249fb08c3c012eb78dcfaf8fd92a494e66,", + "color.component.input-month.background.default": "S:e75ba912127037de20bc8d13115f04808e29f216,", + "color.component.input-month.background.prefix-sufix": "S:a6d62640293cf723554d9e2200b24cb371d66d92,", + "color.component.input-month.background.read-only": "S:6d4767c92a206760a2d7819c6ffefb948257d71c,", + "color.component.input-month.border.default": "S:8e79412cc0312a9810a2aedf3fe5c38a5ab04a9c,", + "color.component.input-month.border.invalid": "S:0eeaeb4b77cc21890e40b5160cfdd18caa349dfc,", + "color.component.input-month.font.label": "S:2a806e1ab3bf072ef213b6896775c53131b4b153,", + "color.component.input-month.font.placeholder-value": "S:ceba10c41613a96321893b6d88e3e9ea8aeba1e8,", + "color.component.input-month.font.prefix-suffix": "S:41d5d194ec4058dd75c7c01dd48803de06d0ab0e,", + "color.component.input-month.icon": "S:2e0f5f081a799ecdb99997b4f946e22011f6ad72,", + "color.component.input-number.background.default": "S:a1d84c97d6ebdd5f839ebed40561e55381808e4c,", + "color.component.input-number.background.prefix-sufix": "S:3d37c3e20f638560ca35396e983d9d14bfcdcab7,", + "color.component.input-number.background.read-only": "S:c2687e19570a5d008b763f42ce14d034996cfa49,", + "color.component.input-number.border.default": "S:52a75935e987771991d55dcd0927d25b4d1ef940,", + "color.component.input-number.border.invalid": "S:bff0087abff3294ac2d1dbc818007117c1585ef6,", + "color.component.input-number.font.label": "S:af74fa76b922cfbd86eecc2e2a765e0d0949f43d,", + "color.component.input-number.font.placeholder-value": "S:2ce7fa74c70119b42375139892361ac48d7f1f99,", + "color.component.input-number.font.prefix-suffix": "S:3f9419bbde1118231957ed84f7e5e320262d6e13,", + "color.component.input-number.icon": "S:00feabc4050cb357995c21220084205656385aa2,", + "color.component.input-password.background.default": "S:8d1e305547660742ab986799ae5de77d745f6e35,", + "color.component.input-password.background.prefix-sufix": "S:07bafe27b8fe2e73e68b2aff656916a1cf2032f1,", + "color.component.input-password.background.read-only": "S:9e449cdbb58729c25c6ffc085f88ed6a6593a70d,", + "color.component.input-password.border.default": "S:f00d2fd8ea2fecff14e8afa3bb27def2117eed9d,", + "color.component.input-password.border.invalid": "S:4f45ac56c7e50f8e3b87e7c26e7c54d60a91d6a0,", + "color.component.input-password.font.label": "S:af63bcc89576e38f01e6aff30a702aa245dcd2f3,", + "color.component.input-password.font.placeholder-value": "S:cfc68272a26224fa45fb8d2a44facaf5b6dad7d6,", + "color.component.input-password.font.prefix-suffix": "S:2c6961c55ad8f65b8c727cceef602ffe11751a54,", + "color.component.input-password.icon": "S:1b5bc9715bf5799c7ac9b2fb31df5f869bb30521,", + "color.component.input-search.background.default": "S:b112639173e8e70809eb967ffa2114995406337c,", + "color.component.input-search.background.prefix-sufix": "S:ea308cb3694d81e13d80df2840db7c9466dc0b0c,", + "color.component.input-search.background.read-only": "S:b7f3956064865d23eea0661c849e7f8a286e7261,", + "color.component.input-search.border.default": "S:c413fdc82e04abbae5b3f55c4e6e11ab29b46a83,", + "color.component.input-search.border.invalid": "S:c89a8428169076dbb0fe0529ede411c7545210b0,", + "color.component.input-search.font.label": "S:1293559296b6288554ec88b38e86645b291de5b8,", + "color.component.input-search.font.placeholder-value": "S:be34c4dac2dc856744130218441920cbdb86e555,", + "color.component.input-search.font.prefix-suffix": "S:787c825ce88d80de416299ef9ac5c829a35fc25a,", + "color.component.input-search.icon": "S:a233176f02ffde31a4f0b2cc5babcd2a74b39986,", + "color.component.input-telephone.background.default": "S:a182e5b2ccb71989da1919e91402d423eaa9ce92,", + "color.component.input-telephone.background.prefix-sufix": "S:82cad6c91a25842673c74a38f7f857c6ceddccd8,", + "color.component.input-telephone.background.read-only": "S:83c64dd00e9581ff356a79df54f847ee6f551c5b,", + "color.component.input-telephone.border.default": "S:6267589434b4c6a48b29b3c1ec05c65d8bb94b21,", + "color.component.input-telephone.border.invalid": "S:55948480058992ce6fa85baeec210c4a6cf4a9d3,", + "color.component.input-telephone.font.label": "S:e0f933c8730ceb5021655bc3efd1e0e44f1c2de9,", + "color.component.input-telephone.font.placeholder-value": "S:6260a0a949b9995dbcd7ca763482ff1a66fcae11,", + "color.component.input-telephone.font.prefix-suffix": "S:fe4da170bf39cf04d8d2658ac704f0a0f2dc4e20,", + "color.component.input-telephone.icon": "S:c6bb4f07b43785eca90c148e98aa7f66a22cf11d,", + "color.component.input-text.background.default": "S:f1c6bc780227efc7c5121ad86b0b305adda11347,", + "color.component.input-text.background.prefix-sufix": "S:a4bc3b9ca1fd3b589857ff188c12d10c00f82035,", + "color.component.input-text.background.read-only": "S:e134fb784c8a21780ee38a899309db26b6c4fbf4,", + "color.component.input-text.border.default": "S:ac96fa6668148f6cdc06f1ac875efde121f008f6,", + "color.component.input-text.border.invalid": "S:e9a965647ae9d9a8f1e6eb344a42bbac78c20e00,", + "color.component.input-text.font.label": "S:ada44c94ff8c47ef4b9a677489b05dacb9c41f3e,", + "color.component.input-text.font.placeholder-value": "S:40c10b6dec9d2f994690ea8916b019ab9068a970,", + "color.component.input-text.font.prefix-suffix": "S:50abc161eaa090d5c8f989673506cff81885dc66,", + "color.component.input-text.icon": "S:75ac01f7d6771e0fd62ea57a562b86078d784cb5,", + "color.component.input-week.background.default": "S:82db09f953116f4161152cfcec4bf8d2558b1075,", + "color.component.input-week.background.prefix-sufix": "S:8a8e2d6fa2c63d0ef7d35dec1b268b41af3e596e,", + "color.component.input-week.background.read-only": "S:408f9cd163c3ec0c92b4d92bbec00a15288a8074,", + "color.component.input-week.border.default": "S:1205df99c0efa9ce2f02a5c2d4d8359eb6f72a3f,", + "color.component.input-week.border.invalid": "S:855609147349c23363f30396a7c554a5279d2b31,", + "color.component.input-week.font.label": "S:5697a9bb1f27f07e1cf8feee1244f20dd57ceccf,", + "color.component.input-week.font.placeholder-value": "S:2373194150a843634ae66a6234c3b608aaa5067a,", + "color.component.input-week.font.prefix-suffix": "S:697893b9a96aa983d19b12abf201f8d97563d623,", + "color.component.input-week.icon": "S:259afd4af7020ec94ba7ba757f73b04fbfca8f3c,", + "color.component.label.font": "S:c78d760948ec9d8966f10220718d46922dbf5220,", + "color.component.loader.default.foreground": "S:c6a355913919116421c596998eb67db36ebaacd9,", + "color.component.loader.font": "S:ad5e4542ceca25f2384cae88536c7c5cfd749c6a,", + "color.component.loader.inline.foreground.determinate": "S:b6a494a8574df1c89176f718331cacc23e234662,", + "color.component.loader.inline.foreground.indeterminate": "S:87ee08017e0aa2f72c3176c3b3b9478d9888f97a,", + "color.component.modal.background": "S:f67412b906dc67b123f61613c9e92fffe5da9555,", + "color.component.modal.border.default": "S:ea26a2e3e0a638677d8151c960446225d996f1a4,", + "color.component.modal.border.top.brand": "S:f0d3ded541c73be5fba8f252211059b70c124b8c,", + "color.component.modal.border.top.danger": "S:3db8926d1533956c8b36cf2e696d2b2e263983b2,", + "color.component.modal.border.top.info": "S:a6f5836caa705378e775ee6d83816a31b65bd650,", + "color.component.modal.border.top.success": "S:5bab8b7922da164c28bb556eedd6a1c0ee6cb5cd,", + "color.component.modal.border.top.warning": "S:897f0cc6c06184bf19bcaf3e47f0e1972eacd1a3,", + "color.component.modal.font.content": "S:ba48ecf8126269c5eb959a5fe82291beb8bc8b2b,", + "color.component.modal.font.header": "S:e8611eb60709089ce59cb0c2be847a7eb96103b6,", + "color.component.modal.icon": "S:0555ef1b438a6876547b6e62f5d42fd37bac4fb9,", + "color.component.notice.background": "S:a8b0b677fc0df691313f985a5b6c0edc21cdc08c,", + "color.component.notice.font.message": "S:d422fa94f8a1a3cae80afd5b0311fafc31a142c6,", + "color.component.notice.font.title": "S:7aae7e0a7eac1bc1a7c5113783aa0a1a11896ca3,", + "color.component.notice.highlight.brand": "S:eb35c6b72ed61a915c621594f17297386c3a8da8,", + "color.component.notice.highlight.danger": "S:24f162b1fd4e8bd2d52f45c25041dd6e0e4e9173,", + "color.component.notice.highlight.info": "S:2e3b1b82d9e3b085553c9932dad9766303ae47ab,", + "color.component.notice.highlight.success": "S:5df954bd9460699f6f45ca31c011f2a603d7a157,", + "color.component.notice.highlight.warning": "S:cff6cdffeebeca15fb426e1c60c1e4e8b52ccd33,", + "color.component.notice.icon.brand": "S:19406494c12d7f5a505cb102daa91a05f4334d38,", + "color.component.notice.icon.danger": "S:6dbea111ba161e13d6ee7f3b9f679806c206b9a9,", + "color.component.notice.icon.info": "S:f671f6b15b60c85322fefc555cde06272b21144c,", + "color.component.notice.icon.success": "S:ab267ac9a8f6267b55a46dec68b8285babba5bab,", + "color.component.notice.icon.warning": "S:0635a546849ebb0f3fec3aea6bbcb0c05355d7b8,", + "color.component.panel-header.background": "S:e487d1e8981723ec77aea0b1f50c15fb3821824a,", + "color.component.panel-header.border": "S:3bf7c951cc0a5efc88a35e63c2149c651be655a4,", + "color.component.panel-header.font": "S:400d4f91318b254c2904cd0611281358f05689d8,", + "color.component.panel-header.icon": "S:e54583628cfc68c6843ad684d33adbb2b52a1414,", + "color.component.popover.background": "S:4dc7f488ff50c349b810480c9e5729119e6fab23,", + "color.component.popover.border": "S:4677bc4365437fbf5b73e9ff13f50cfa2ae83946,", + "color.component.popover.font": "S:bb853baf12b56a3ad72eaed4e656bd6d394e97e1,", + "color.component.popover.icon": "S:45648af473279e31413d30c530b4a16f44849356,", + "color.component.radio.background": "S:fef338d03d65eb1b654ead6cdc81ec3e275ebb46,", + "color.component.radio.border.checked": "S:c7d1a90c753062fbc1ec3ca67acc1bc5ce705808,", + "color.component.radio.border.unchecked": "S:757d245130209831b7d7dca528b45725cb6fe487,", + "color.component.radio.font": "S:c09cfdc5b51c4591d65daff85c650f73dc3500ff,", + "color.component.rating.chip.count.font": "S:e6ad7bdbc0913f9caf98d4373306857bb341aff4,", + "color.component.rating.chip.foreground": "S:2ff118e5af9f52981f9be1f6046d82c5e5eb92bf,", + "color.component.rating.chip.value-text.font": "S:3cec670e2fcfad1596781bbae21066279586f98e,", + "color.component.rating.star.background.active": "S:b176a412561d8e20763ce2fb45c703b3ff5569da,", + "color.component.rating.star.background.average": "S:aa848469864b28911ba3ba2c58381ec47e1d6e3a,", + "color.component.rating.star.background.default": "S:2483f34f99cdc1b2ae0d98495367e10a6fbbd619,", + "color.component.scrim.background": "S:2ee44d09bbb29bb3e704260c54cddef8f3245c30,", + "color.component.segmented-control-item.background.solid.checked.light": "S:5bba63f64fa83b1db6c2c6442b08c323e6ee8bbd,", + "color.component.segmented-control-item.border.outline.checked.light": "S:d2e68c0c4f7263c07185ecf26e05c8bf623a30ee,", + "color.component.segmented-control-item.font.outline.checked.light": "S:1163349a215c4616339d1d57b4898d4101afe624,", + "color.component.segmented-control-item.font.outline.default.light": "S:1cb4d8a4316e825e0ddd626f7cb557ea772f1d7b,", + "color.component.segmented-control-item.font.solid.checked.light": "S:ec5ffa1ca1b516e9a49690d0f9f87ea9b938f12d,", + "color.component.segmented-control-item.font.solid.default.light": "S:b093c0584b83b007951653fc8490611e8c1ce828,", + "color.component.segmented-control-item.icon.outline.checked.light": "S:e97505350c312819c893cd229dbefa1fd3997b17,", + "color.component.segmented-control-item.icon.outline.default.light": "S:a0227de709abe1a8ccbf38db61822ac8b92fe256,", + "color.component.segmented-control-item.icon.solid.checked.light": "S:1d03d6734387256ae86bd7365ef40cd5089c3317,", + "color.component.segmented-control-item.icon.solid.default.light": "S:f3e3d0db0f776dcf835f2b15b75399835f3cdc10,", + "color.component.segmented-control.background.light": "S:706ea99243a89e95eabcf018ec6913bb40839134,", + "color.component.segmented-control.border.light": "S:580b3bdcc65c00cef1474865d1c254df72f3b5ea,", + "color.component.select.background.light": "S:40cab88e73cd82ffd1540982b04ed2a4b8d93e1d,", + "color.component.select.border.light": "S:1ffeea76a621e2cf1127ec2f5c357809967e3068,", + "color.component.select.font.light": "S:68ec23657acb7dd5bd13ec66c58ac1e4a416cd3c,", + "color.component.select.icon.light": "S:d407cd837f1f19275e4d56e92bb732617266632f,", + "color.component.slider-histogram-range.active-end.background": "S:73c829a1e28fbd19ba4e210251491a29f8e7977f,", + "color.component.slider-histogram-range.area.active.background": "S:2302babe052a8672a41fb6ca40313e059b327f7c,", + "color.component.slider-histogram-range.border.active": "S:6c7a0cbd6d5a1efd8d7bd0a78fc595de8b8ec304,", + "color.component.slider-histogram-range.border.default": "S:0592d7e2479bcbd83ad1ea993dd2ad2247a1620c,", + "color.component.slider-histogram-range.font.label": "S:e39c4ba3a3d943132410d2bae7b90113749ec969,", + "color.component.slider-histogram-range.font.tick-label": "S:306f8d233692d0835128c2406c3ef4b37e2afc60,", + "color.component.slider-histogram-range.handle.background": "S:7221e793c40e0cc22eb5fdadd54d7a44a9ce7fe2,", + "color.component.slider-histogram-range.handle.border": "S:0a44e7596b04d6c36fecbb03127c2bde02d910c5,", + "color.component.slider-histogram-range.tick.active.background": "S:fadbc5f515935a906096400a55388b930ddc45db,", + "color.component.slider-histogram-range.tick.active.border": "S:c8ce41e029ff6cec0f7fe841f859978f8642ff34,", + "color.component.slider-histogram-range.tick.default.background": "S:a62bac8caa147936654c45fcef4ef0210ff880ed,", + "color.component.slider-histogram-range.tick.default.border": "S:d6ddae84ab1bfc1209bf490167d2103ccb5eee1b,", + "color.component.slider-histogram.active-end.background": "S:35c5ff833ee679ad68750a9e1bc92f9d26ef3d08,", + "color.component.slider-histogram.area.active.background": "S:c6defd49e41b02bcd315a786f63707b879608b5b,", + "color.component.slider-histogram.border.active": "S:cf68b2b79f7f249a3e0293fc63dca626ed0d8d5a,", + "color.component.slider-histogram.border.default": "S:52ca1c6803ccab0cc79f21e32f7325388fa004bb,", + "color.component.slider-histogram.font.label": "S:8ddfbcf100355f37a3ff5eaa2f04532f50402d6a,", + "color.component.slider-histogram.font.tick-label": "S:1a148ac5a62db7df77278b2504d05e5c6ae8857e,", + "color.component.slider-histogram.handle.background": "S:35b834d275271404fb25fbf4f03958005796284a,", + "color.component.slider-histogram.handle.border": "S:bedab28b25f091e70f3352a09539c84dd582e434,", + "color.component.slider-histogram.tick.active.background": "S:c07793b1d005960d8547e6ab9d8d2ebccf4ddcab,", + "color.component.slider-histogram.tick.active.border": "S:9055e780e48a8b4d884bcfe179d19137f9afd0e0,", + "color.component.slider-histogram.tick.default.background": "S:8f1692b3615b7d22169a56446d6f7946caa30a83,", + "color.component.slider-histogram.tick.default.border": "S:c61d5d8b7edcf07d8f4a7e5bcd5401fd78870e29,", + "color.component.slider-range.border.active": "S:edc3d407772a24ae37d43c9f77f116a000c8b8ca,", + "color.component.slider-range.border.default": "S:28b18c5dc39a0ba353b2dc128c8799f76677c121,", + "color.component.slider-range.font.label": "S:4bdf1ee03d6cb9a2b463ecadcd0bab7a91f44c66,", + "color.component.slider-range.font.tick-label": "S:bb69cd415e8034bbe94f8878634f5554a48c1054,", + "color.component.slider-range.handle.background": "S:e2e2acf4071c54fee2a81564af13a3eaad90fecf,", + "color.component.slider-range.handle.border": "S:c99e92701604edec9ebbfb1ef4b23c0f46e567c8,", + "color.component.slider-range.tick.active.background": "S:f8e0d69d76a11cc2da6a3b93b2e4c064d659658a,", + "color.component.slider-range.tick.active.border": "S:be122105a2309b39b3d18e54f1e659f1458f1f7b,", + "color.component.slider-range.tick.default.background": "S:6cfbdd31e60bbb0eea7108ec704204bb10ef69d2,", + "color.component.slider-range.tick.default.border": "S:a59ff0074154ff2fcb416146b1a4615f9ede0744,", + "color.component.slider.border.active": "S:3a0358905acc757c684f5048d226135d5be0398b,", + "color.component.slider.border.default": "S:ff1ff78044ce5956c24505c26aaed3fd1daf68bb,", + "color.component.slider.font.label": "S:2c57b6d03ece2ba6db0575dacc84662ffef38463,", + "color.component.slider.font.tick-label": "S:4df2f0cc169f8dd6595530387a4aa0219b6363f0,", + "color.component.slider.handle.background": "S:9b10a24e963536dc6f2fd162c0e7df9acfdf5a4c,", + "color.component.slider.handle.border": "S:8255b9eb217cca2c7dd05599390b3d23a0ad098f,", + "color.component.slider.tick.active.background": "S:22b478ae3ba9f6b906865d46989a136b29c0abfd,", + "color.component.slider.tick.active.border": "S:81b2eadc28f3a33e1a46198121055e2e67b04444,", + "color.component.slider.tick.default.background": "S:cef3b587d74bef656563c97330288315a8458334,", + "color.component.slider.tick.default.border": "S:95310d80c653c5491f2f961a8bac572db6134cc4,", + "color.component.split-button.background.brand.outline-fill": "S:c72eb3f0f75ed1cb02837177aea30b38ff5903e1,", + "color.component.split-button.background.brand.solid": "S:49b0dd1c9725f7b2509bfb6a23f53c691fe7aecb,", + "color.component.split-button.background.danger.outline-fill": "S:26ba7bfc35da61a6c1cb8d27a6995890a125be04,", + "color.component.split-button.background.danger.solid": "S:c37f88f941f21e925ca579ca4c553e62532230cc,", + "color.component.split-button.background.inverse.outline-fill": "S:806fc1b323bd70df95d431d6f5253210221fb09c,", + "color.component.split-button.background.inverse.solid": "S:5c72c396a0b59cf64bf480fde3245f450f1aa62c,", + "color.component.split-button.background.neutral.outline-fill": "S:1ad854d9965a09f6c5ae2b4eff281f52dbd463e6,", + "color.component.split-button.background.neutral.solid": "S:9b129967a9de7216a6b1eaa4c4dd83b95a074cdb,", + "color.component.split-button.border.brand.outline-fill": "S:4f76acc4e083068c535fe7186c9784a0f926a4be,", + "color.component.split-button.border.brand.outline": "S:6b8549e7db91a8207f551452331a278e5ce22998,", + "color.component.split-button.border.danger.outline-fill": "S:73c67daee80b7d2aac12c2b5015ac1da3ab01bc7,", + "color.component.split-button.border.danger.outline": "S:53d8f8772df7a0a379d42caa72a72b5fb179e022,", + "color.component.split-button.border.inverse.outline-fill": "S:5a2cb892751e114e2ad3de6f74034fd5ea482465,", + "color.component.split-button.border.inverse.outline": "S:14cb4515102ee2a0c07d20b44adb940bd8839c8e,", + "color.component.split-button.border.neutral.outline-fill": "S:8ff8d15b863013d8b79ac774609e08f9bd020f47,", + "color.component.split-button.border.neutral.outline": "S:5b3a9c14da07510a0dcafec6c5bdb61a725bb97e,", + "color.component.split-button.divider.brand.outline-fill": "S:d07db3f36c00d076458b41b13abfc8793001ea6d,", + "color.component.split-button.divider.brand.outline": "S:301ee0f9da1b1319208357a964129e0cb07d0cb6,", + "color.component.split-button.divider.brand.solid": "S:53dd6b63e008691ecd56e3bfefd3ca8a38e31978,", + "color.component.split-button.divider.brand.transparent": "S:0a23a0111779ef4edac64f1e34544d82870da9b9,", + "color.component.split-button.divider.danger.outline-fill": "S:7de14f968e80234730f1b0676c7eba779ca53a5e,", + "color.component.split-button.divider.danger.outline": "S:dc6dcacc1d1a29aefdf58cbb79f700699a1fa12b,", + "color.component.split-button.divider.danger.solid": "S:2d237cc96e8ed3643f227383165dfc8ca02ba041,", + "color.component.split-button.divider.danger.transparent": "S:058fe01a0b7861d205a122b8526f15bb854b4fc1,", + "color.component.split-button.divider.inverse.outline-fill": "S:82d58f435e47421aaf8a5664aa129dcc2a69ec69,", + "color.component.split-button.divider.inverse.outline": "S:f4889cb308ceda53cb91a0a81c747c97ff1e26fc,", + "color.component.split-button.divider.inverse.solid": "S:50101927aacd4b44722dfbaf8a64a5fec1604629,", + "color.component.split-button.divider.inverse.transparent": "S:5e6d98a86125d0a61725057e2a02f049436f660c,", + "color.component.split-button.divider.neutral.outline-fill": "S:b242589b9ebadd6f799f21ba41352600989430b6,", + "color.component.split-button.divider.neutral.outline": "S:a7d37c77585f541d00ecf098a8f97141e8767b91,", + "color.component.split-button.divider.neutral.solid": "S:ddfa82556d55ac7e33d79926074f3acb383b3581,", + "color.component.split-button.divider.neutral.transparent": "S:9b9414389c677b2ec480ca895763666f5d71045d,", + "color.component.split-button.font.brand.outline-fill": "S:f60d6df939e264584f1a2b67b3cf3c5261502dfd,", + "color.component.split-button.font.brand.outline": "S:d32adfc36968eedaa8ff2fba5b8720402d474dc1,", + "color.component.split-button.font.brand.solid": "S:13c0e8da945d5e68a1ecdc55494067ef93fe9bed,", + "color.component.split-button.font.brand.transparent": "S:f373c45b6d2998a8cf13cb29bc1598ac7823a0cb,", + "color.component.split-button.font.danger.outline-fill": "S:f92a130595156fc623f438204b73a1eadf3ff8c3,", + "color.component.split-button.font.danger.outline": "S:fc8840ff4376f27594661ad25db325aae61308fb,", + "color.component.split-button.font.danger.solid": "S:3f8d24d4cddf10a37a9af45c3fea23c326cfd248,", + "color.component.split-button.font.danger.transparent": "S:3581c4ddbfaac811708b5ff8f9b370cebdbc4f91,", + "color.component.split-button.font.inverse.outline-fill": "S:a9a8f3db1ce21dc6e82d61931e0c5135ac01e7ed,", + "color.component.split-button.font.inverse.outline": "S:36b0f6e6958c34f5b8c4dc2b77584356aa4c168b,", + "color.component.split-button.font.inverse.solid": "S:3a8896c88f23c98bfd453a14379e0763480eadf2,", + "color.component.split-button.font.inverse.transparent": "S:202ac5dced41ef22b2541d3e6cd1348b39a3c8bf,", + "color.component.split-button.font.neutral.outline-fill": "S:d82dcb75bd547357ad837acc21bdca9a74890ead,", + "color.component.split-button.font.neutral.outline": "S:2c969b6774f1b59aa3a544f4d5bb6b93246bc1f0,", + "color.component.split-button.font.neutral.solid": "S:e9c943c4709e13c4d47235b3bf57ede1085581b1,", + "color.component.split-button.font.neutral.transparent": "S:563f83bf024bd7d16da4c69836e0d0f34c73d712,", + "color.component.split-button.icon.brand.outline-fill": "S:8bfbbf2f1a6d49e2679ccca3ed57122fecf9ebcc,", + "color.component.split-button.icon.brand.outline": "S:00d23bc90548d2b80a6469561ecd0a483bc440d4,", + "color.component.split-button.icon.brand.solid": "S:ac032fb9f535aa6a5738342f5aaac428a38693ad,", + "color.component.split-button.icon.brand.transparent": "S:5235214c2334e8e248078fbfc27561d76e72cc88,", + "color.component.split-button.icon.danger.outline-fill": "S:bf9ed0e7d6b17624a2073af4631afb1c8a975ee8,", + "color.component.split-button.icon.danger.outline": "S:aab01df5152cf1225d04674f7ff535490d816f14,", + "color.component.split-button.icon.danger.solid": "S:01f1762f39265f6119595b70d9e17fde77468e3e,", + "color.component.split-button.icon.danger.transparent": "S:50c081a936b531173b177c02bce5c3529cde05e7,", + "color.component.split-button.icon.inverse.outline-fill": "S:05a37331bf1b79e9f255d03c2609159af5de92bc,", + "color.component.split-button.icon.inverse.outline": "S:c17e499a0e8b81cae93134d59394bc4fd6ccd9df,", + "color.component.split-button.icon.inverse.solid": "S:fb3240517115758a5b53f0e0d7d0cf65d8ce3cb0,", + "color.component.split-button.icon.inverse.transparent": "S:2f7b7ebbc7dc3507b1e3a1ff6c40849673af8d4f,", + "color.component.split-button.icon.neutral.outline-fill": "S:2b1798e563ce4d9f114b349cd034219f045b02be,", + "color.component.split-button.icon.neutral.outline": "S:586a2b832847eeab10c4fc5ff531d88fceebdad0,", + "color.component.split-button.icon.neutral.solid": "S:18b868a5728f88215343d0f3b7ad93378f6f7c1a,", + "color.component.split-button.icon.neutral.transparent": "S:78e3b9368b9ac70f8c0d8b46f62b1d3367a49506,", + "color.component.stepper-item.border.active.light": "S:53c35b2a984487f4b369bf00b0e7e6bf66708cbf,", + "color.component.stepper-item.border.complete.light": "S:e50dd00ca2e49ae055b0f967459aadb680f20782,", + "color.component.stepper-item.border.default.light": "S:ee68d7fb05df6e07fdae6751413e28d8f7aa3d7a,", + "color.component.stepper-item.border.error.light": "S:ac25626c94aac1f63b5c59cfa9baa9d6494a4ad4,", + "color.component.stepper-item.font.context.active.light": "S:fe38cbbbac74a9a16fb942ce8197fe68102ef30e,", + "color.component.stepper-item.font.context.complete.light": "S:2b41d3fe09fa66c69e1459e3291ead96079bba83,", + "color.component.stepper-item.font.context.default.light": "S:14a92549312234405588a66cd2925e3deb9cb72b,", + "color.component.stepper-item.font.context.error.light": "S:f43d169a87ee4d6f06f49fd31a691c2129d22ec2,", + "color.component.stepper-item.font.description.active.light": "S:e72d0996a1a79194f765fb8f0ee94c78860514a8,", + "color.component.stepper-item.font.description.complete.light": "S:4a778efc5266b9aaa75ec0ca0280762846573146,", + "color.component.stepper-item.font.description.default.light": "S:19bbce3d3eb1a888030cb9206b34045f3a210174,", + "color.component.stepper-item.font.description.error.light": "S:305398ba7ffcde2ff30e00c37358b1012f8f1ca0,", + "color.component.stepper-item.font.heading.active.light": "S:3211bd2fb835c80eb3b9bf9dff3b1c5931de42be,", + "color.component.stepper-item.font.heading.complete.light": "S:a21091239c9a90448ff67424ea17fa628eed9e5b,", + "color.component.stepper-item.font.heading.default.light": "S:0dd8064e704b6031f41883e9d0b88de7377a6be9,", + "color.component.stepper-item.font.heading.error.light": "S:add98fdd677d51ae3e0dcd3740034b57ab340ad5,", + "color.component.stepper-item.icon.active.light": "S:681b33fbcb4497eab71e8102cea87a195a339088,", + "color.component.stepper-item.icon.complete.light": "S:4e9136711e4dae99497fb0c3d4bfc48bfb219bba,", + "color.component.stepper-item.icon.default.light": "S:6f99edc66abe693232ac25f7ed7f1c3881458241,", + "color.component.stepper-item.icon.error.light": "S:b325ffea040f238404e967ec793bae03038c6252,", + "color.component.tab-title.border.active": "S:2bee2f5a311ba6fd000a56f9b27570ceaf4ed957,", + "color.component.tab-title.bordered.background.default": "S:c2c09f9f42e49b19ac09b67d29ded9171ff45dfd,", + "color.component.tab-title.bordered.border": "S:ce105909cd91482ad3db3ab59be2a6534b7d5264,", + "color.component.tab-title.font.active": "S:ae6690457b544d2176a1ff55fbb00092a5893b9e,", + "color.component.tab-title.font.default": "S:dcecc2be472bd2c4e94d106cb27d4e50c2450433,", + "color.component.tab-title.icon.active": "S:c8132dc23ccacb3b805d14e3858510d2ed8fd58b,", + "color.component.tab-title.icon.default": "S:308ae6e6de4eda09a365c50b9af23f565842be7a,", + "color.component.tabs.bordered.background": "S:84c1a376a32377549908efe3da8c80cc4378ef75,", + "color.component.tabs.bordered.border": "S:a3dd743afcdb42ae391dd7887430a982717de5b6,", + "color.component.textarea.background.default": "S:06f9d10c0c1b9784138ae9974cb123cf9b991c70,", + "color.component.textarea.background.read-only": "S:c214e2886200e75907fce5500feffc284b96e2a1,", + "color.component.textarea.border.default": "S:850beace6a0a9169fc5a934dceef701af9b080f3,", + "color.component.textarea.font.chat-limit": "S:1dea29ae0cf23f83859b4120bcf1f80de4f4b51e,", + "color.component.textarea.font.label": "S:8605fbc727fa00d5a0a58c5db784f46e3d7419f5,", + "color.component.textarea.font.placeholder-value": "S:78d6ab2594815d5cf9c4164424c9bd5dad8b2a85,", + "color.component.textarea.icon": "S:34e0e208e6d520029c084ebcefa8b346f4f227a6,", + "color.component.tip-manager.background.default.light": "S:6c1cb4842190fb30b56e71519a13cf09d0423bde,", + "color.component.tip-manager.border.default": "S:db7398f2f881fb79ecb5804a7480b1de90ac1c3c,", + "color.component.tip-manager.font.heading": "S:64668aff96b797add5c92f1a9d4bd29630394484,", + "color.component.tip-manager.icon": "S:a8e328913be9ed32860a7017da9abcb535bcced1,", + "color.component.tip.background.default.light": "S:852aded6ee76201c16d74aaffa1f115473c4ccfe,", + "color.component.tip.border.default": "S:51b60818dd729c530054532feed98b5fc8e83201,", + "color.component.tip.font.description": "S:9795c1b43da2c6fbf957cec7a261741b33b4feab,", + "color.component.tip.font.heading": "S:0199d2afdc33416cf811050863c81fc4446a371c,", + "color.component.tip.icon": "S:1a611f3b799ba88349d46039ab9d167201a31c1d,", + "color.component.tooltip.border": "S:7fd1685f5bfea393804910265b358a492072d065,", + "color.component.tooltip.font": "S:e8c8f147b4d80d6b7c2ff4820008f5ae1f422c49,", + "color.component.tooltip.foreground": "S:96285b986c6bee3e8b6db871bc096ee3556452cf,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.ui-background": "S:ffe482caf8b3a7cf8f5d3c06e6a3dd92f207b680,", + "color.ui-border-1": "S:02a6bcfec7b1362a4ae092b62eeb5a5a6057f715,", + "color.ui-border-2": "S:c947419e0daba4771debf5e7d24e43bdd4616658,", + "color.ui-border-3": "S:b9dce1546beaaa1cc0a66e4c29948287339401bf,", + "color.ui-border-input": "S:422ec644bbb2771a0c7456f829bed035f0faa641,", + "color.ui-brand-hover": "S:bc745ff144dc0389b441a26bb80d215ee6f2c7fe,", + "color.ui-brand-press": "S:fbf217e84d862f63ef6f6f2908a8e4bbe32bc696,", + "color.ui-brand": "S:b504b995e0716b8a7e4d34ce0fd2e9278469c12f,", + "color.ui-danger-hover": "S:93001df5eaaecfc39f165faebcc0eb73ec632559,", + "color.ui-danger-press": "S:e9cc81d9ccfcbe145dd5bf7e2d46759b9e61a234,", + "color.ui-danger": "S:964b18f8c4ec68899752c2b0421c4d672f71e2df,", + "color.ui-foreground-1": "S:8790db7f3f21e7f3d6bd77d52ba30adcd8d5555a,", + "color.ui-foreground-2": "S:7343b08056a2d90265a0456a03925c2a4f68b015,", + "color.ui-foreground-3": "S:df2e9ba9f4e2aa045421950bb6ee1c6ee2cead0b,", + "color.ui-foreground-current": "S:a5c03217bd8973ad2caa892d4a18b5c3a0078d05,", + "color.ui-info": "S:db95d5f9d88c75954f4db0a8287795c75ba376ca,", + "color.ui-inverse-hover": "S:83e92f4d97b046c058f547acaf63e4cc3cd07ba7,", + "color.ui-inverse-press": "S:00121247df5ff377d80120ffa109a80c47bc0995,", + "color.ui-inverse": "S:7ca347129261fb5a3a5a31d5d873a5cd5f751a21,", + "color.ui-success": "S:2ac2e7e3a4edadb424c1783e89b55e5101346332,", + "color.ui-text-1": "S:5ba4bf71c6e328912f4b712c9cfd7eeddaf0f566,", + "color.ui-text-2": "S:56aa4e774ddcfb789e7248d1f904839983c31655,", + "color.ui-text-3": "S:8cf6732297541395c0e999b29f77a9ca05f50266,", + "color.ui-text-inverse": "S:3dfe4cb90daa8ffe18c0536dd86858150e983d11,", + "color.ui-text-link": "S:0047d203c54c72356cdd0444835f61c9758f4e00,", + "color.ui-warning": "S:d0c73d6b9df742858ce917bd620cd52143aeac2b,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "ui.background": "S:88e3a85b0f4b78d54f88d428f64b089bd8c3de81,", + "ui.foreground-1": "S:4d605200a8c5f18e3377610c5d88c5deefbca4ef,", + "ui.foreground-2": "S:3fd46e68641bd9dbbe5036db1bc316c9d5439966,", + "ui.foreground-3": "S:af125fc1be07b10d1e85ac1ce0bf72e7d3d6747f,", + "ui.foreground-current": "S:dd135999aea4a2521957c1eecc67ef4e49f431fd,", + "ui.text-highlight": "S:6deaefa3c81c402de15074d2ab48a56628d54eaa,", + "ui.brand": "S:e8f3b1410dde88cfd05925cfe53d738417f3c3a8,", + "ui.brand-hover": "S:e0900bdabc704660d56ea77a30cd39587aa3a956,", + "ui.brand-press": "S:e209ab65a3e65d2eccb4f5b4302ae68327b2e736,", + "ui.info": "S:c34c7a59961166bb3b17b2ec95edeac3ff9556f9,", + "ui.success": "S:778548df6cf53ce4cc2c55a5ed7f4cfb5db12ec0,", + "ui.warning": "S:12c341810cabe0a5a66b9a00200b5d39bd04cd5e,", + "ui.danger": "S:1f4d8b8a60359ea0b7c4e9e837e4c337dfe3e72d,", + "ui.danger-press": "S:26b8a4c6d201267383484b44ed4c35b2ffb1f885,", + "ui.inverse": "S:33aea474380e07802481474541f75c20432d3057,", + "ui.inverse-press": "S:0b47f654b85579f5d1bf82fbcebb78a6ab85937b,", + "ui.inverse-hover": "S:0bbe862faa53b23a6bdc279358e0035395f9c59c,", + "ui.text-1": "S:fedc8d89feeff23569cc2fa65a2b3c5582b43f42,", + "ui.text-2": "S:22470cbff4de00c867e17305185a0323780c5b21,", + "ui.text-3": "S:c1344b9666729646f6b2a66eedc1b40b6b913b48,", + "ui.text-inverse": "S:accc2d26f59e4369fb10a0d90d8baf097d6390b6,", + "ui.text-link": "S:3a4b8a39a43a9f0b57d48f1f3773b474693b5da4,", + "ui.border-1": "S:5508ef5d2ce90e2474c36e1a47ef4531e710a887,", + "ui.border-2": "S:61cbc414112e9cc9bb3fe8273540bcace4f9c0c4,", + "ui.border-3": "S:d2bae5bf180721915b95f75bc5325e91b60cd460,", + "ui.border-input": "S:f15d7b2adcab2e1c5d673377f19e37acfbb3469d,", + "ui.button-transparent-hover": "S:3a0ea6b4f313e9567dc1bf2222019abaa9f091cc,", + "ui.button-transparent-press": "S:ff286b77cf468e2a81f843573dfa792e97912ddb,", + "ui.component.avatar.font": "S:1363a748700388b17e9ac065a550839519f4ff53,", + "ui.component.avatar.icon": "S:22d07bf996147f28b600cfc2c3bf239089865ee0,", + "ui.component.avatar.background.default": "S:8ecb2146135a3565951d55143a9125c5c11f83ef,", + "ui.component.avatar.background.red": "S:c129f481466a019916fb47f7afc3ec330daa1914,", + "ui.component.avatar.background.teal": "S:ef48986d0d2214c56968e965a3a93a52e6bd49a2,", + "ui.component.avatar.background.blue": "S:46c1f6d519f2cf7af36ac2159111c52b7950e743,", + "ui.component.avatar.background.green": "S:e6ac6294d707d97083763a6d1d52eaff6f54c049,", + "ui.component.avatar.background.yellow": "S:0013983df71b24e00c5ad7233812520b9c78398f,", + "ui.component.checkbox.font": "S:e0f9f778f9204c14505c18e7f4b21dd1677c971d,", + "ui.component.checkbox.background.default": "S:d67b6eb03f8922322dadd1168837de18117a72fa,", + "ui.component.checkbox.background.selected": "S:fcee4c05e6c239d0a4015790c8b269bdc5443333,", + "ui.component.checkbox.icon": "S:eb6e333647534b6edb5e90a2f9611e4b6912a3dc,", + "ui.component.checkbox.border": "S:eed55caa6f8ff961c880e54cc336691126c8567e,", + "ui.component.radio.font": "S:01536f979a00645e8dc83b9804f3caa26fa499b4,", + "ui.component.radio.background": "S:3a12d0c8c6dea920a35fd4386988e8e318e313ac,", + "ui.component.radio.border.unchecked": "S:3b4ba8e1ee6f83b8e5ff6d53377d8713d209f92b,", + "ui.component.radio.border.checked": "S:4131a07c61fd1258237cdbf019824979bf11c4c5,", + "ui.component.chip.font.clear": "S:454349bb2dde5626baa91df46d45c07d077d0ad6,", + "ui.component.chip.font.solid.grey": "S:7dc389b8f81f5d67d31f3da507ff3b857b2e55ef,", + "ui.component.chip.font.solid.blue": "S:2819cee98f0615e1973fe2b7e6d455e2362d99a8,", + "ui.component.chip.font.solid.red": "S:67d357e6be46b7bc677b4cca073f0b6354806310,", + "ui.component.chip.font.solid.yellow": "S:fc7a43e15dfa033fb4016c12479d84247950bba5,", + "ui.component.chip.font.solid.green": "S:5e9cd1c3848df0cf5371e35bcc4ef0f2a6872bf0,", + "ui.component.chip.icon.clear": "S:1dc2efb7d00b0f1a78fbec7c80a5448c5d532d1b,", + "ui.component.chip.icon.solid.grey": "S:a354481e6dc767125ff7b9b2a340ec058500d4f1,", + "ui.component.chip.icon.solid.blue": "S:65b94161c7fe8d1188cbc79e58aa77adfff5750f,", + "ui.component.chip.icon.solid.red": "S:663242e4dd54c79621cc15905c1fac8b962c299a,", + "ui.component.chip.icon.solid.yellow": "S:61d1c01756900b211e6743f3248273fdf1afff25,", + "ui.component.chip.icon.solid.green": "S:d66d9fcc1f681d03e8832f6dbaa5dcb2e51b3a53,", + "ui.component.chip.closable-icon": "S:141a440746b33eabc03ab68820527634bd9c5669,", + "ui.component.chip.background.solid.grey": "S:b4d4f699abbdd419b8c323ad9aa37fe4eaf22f5a,", + "ui.component.chip.background.solid.blue": "S:cc7632599c4083a6a6ef66e36020c46ab52d0b41,", + "ui.component.chip.background.solid.red": "S:f1f16bcd65da1e5d1420f7594fa67c3d60337a1e,", + "ui.component.chip.background.solid.yellow": "S:8af66977da940e68d30881fe033b040b70114393,", + "ui.component.chip.background.solid.green": "S:404422068d8f59e9c6af3c92d9dda9914aefadb1,", + "ui.component.chip.border.clear.grey": "S:7001db84c6c511e0ba85603dc5a1188e082161c8,", + "ui.component.chip.border.clear.blue": "S:67acee5cc7ecc4439b149f3a8cfdb96e0f94dca2,", + "ui.component.chip.border.clear.red": "S:2b8fe90b4d1230f371e0d928f28891f8970c3cb7,", + "ui.component.chip.border.clear.yellow": "S:9f5934b02979230cdbc42282f91aa16ce1620999,", + "ui.component.chip.border.clear.green": "S:a3ea936e4d300445f4cfbf2ecc6dbf055c543973,", + "ui.component.label.font": "S:c1d77f9d80ad21bdbf9ad8fde1c57add71fdcdf4,", + "ui.component.loader.font": "S:5dfd743bb766dfe905114d3271b0cce4fe6c0e0d,", + "ui.component.loader.default.foreground": "S:41d302dc59c67217c461e8929d56fc6ef81a20b0,", + "ui.component.loader.inline.foreground.indeterminate": "S:d58c55975b385d4435588d0c41f34fd17ad23ff8,", + "ui.component.loader.inline.foreground.determinate": "S:5771e439ebddfaad0658f1a9035a062341ab839f,", + "ui.component.rating.star.background.default": "S:56f3d54d930c7b9cee43fdbadeddb0f332f0f2f5,", + "ui.component.rating.star.background.active": "S:96cc4f17ed0ba9102c53184d88864808706f62bf,", + "ui.component.rating.star.background.average": "S:7712ff4d7e15af153aeec86afed97025e0b14764,", + "ui.component.rating.chip.value-text.font": "S:252e9c91e7b50cf8ad1fa71111e36864b5c0c440,", + "ui.component.rating.chip.count.font": "S:6f262248935421cbf68819911fefb2b74294c157,", + "ui.component.rating.chip.foreground": "S:d08f05b52b01ed3e4eaf0596f1bc55b6b9c1462e,", + "ui.component.tooltip.foreground": "S:32fb35e1d90f9f545e11e0f694a765511748e45e,", + "ui.component.tooltip.border": "S:0814bbf78582c35d91cab243046e8d40c53477e8,", + "ui.component.tooltip.font": "S:80ed6802f693fa395c12cb1a943db19b21e07c7b,", + "ui.component.accordion-item.font.heading": "S:5ac32536f8d5baf6242eda195c5dd8aa3492f697,", + "ui.component.accordion-item.font.description": "S:150e11737cdeaac5c1b65776c8821c7c691b9976,", + "ui.component.accordion-item.icon.default": "S:0438e9483f5fe6b1716f59fd5e1ee749539cfe55,", + "ui.component.accordion-item.icon.expanded": "S:eda278b82a664b6f8e476641b9089bbc4a716aa5,", + "ui.component.accordion-item.background": "S:4adec0130fb3e73919532107430f041389073789,", + "ui.component.accordion-item.border": "S:e4a59652ea44bf1cc457357ebee74ad1128f56a1,", + "ui.component.input-message.font": "S:e80f211711f21a7b706bd656ff240a32fd1aa972,", + "ui.component.input-message.icon.idle": "S:52a5c2dfb063a4a60683086aa6dd3718cbfb99c0,", + "ui.component.input-message.icon.invalid": "S:cd9243fd0f49150720fe591e27cfd91941e35525,", + "ui.component.input-message.icon.valid": "S:79f782d9e11bf2f6c60d42fa0aa882975ed2370d,", + "ui.component.alert.font.title": "S:11f0c3a40a840aa6a216ab761d952f3a3971c477,", + "ui.component.alert.font.message": "S:455754e442264245b87bc218841b09c0c78e8ee0,", + "ui.component.alert.background": "S:1e16bdb14d47900ca4ecd47a87b08abdd30477ef,", + "ui.component.alert.border": "S:603711c0960151db5bb5692b4ff08e2feb7a8e5e,", + "ui.component.alert.icon.blue": "S:9905451a42fc3f69467c391fd2b47a0ce61ca632,", + "ui.component.alert.icon.green": "S:a069fafbfe349d3f8b4ea0f5da8a35fa0317ee00,", + "ui.component.alert.icon.yellow": "S:1421a130d6d1eccf9ef38366e82ddf90ceaf51f1,", + "ui.component.alert.icon.red": "S:53ba0f82180fff5e77e27a6f3cee237b48459f2e,", + "ui.component.alert.highlight.blue": "S:e016874bfb10e781aa064ebf3f0a3104d7dcac24,", + "ui.component.alert.highlight.green": "S:48d0ee1a827da9edb2d0c22d087fcc0d26cd7d1d,", + "ui.component.alert.highlight.yellow": "S:948f7f1ee10ec4def32d26760f9a46d407d78c31,", + "ui.component.alert.highlight.red": "S:886e1f2014bb6335a609a65dd079b25ad83a1a6d,", + "ui.component.tip.font.heading": "S:693267b7acd0badcbca906d819e6a5b652cdf845,", + "ui.component.tip.font.description": "S:feeae3a8887c26ac89b4ceb2a6e90cfa4c7516b5,", + "ui.component.tip.icon": "S:64d0de2b38fa5481189542151d8b07aee3be6de7,", + "ui.component.tip.background.default.light": "S:352e8c2d9cc42e618053197e2dc45df8556493f2,", + "ui.component.tip.border.default": "S:abb5616b8065aa64fafa1575f73d7a77ad5f3518,", + "ui.component.color-picker.font.label": "S:e91631444d6dc57b9fd85f7cebc9f533dad262b2,", + "ui.component.color-picker.icon": "S:a72dcb3c2b0c79a5003717488daea644cc1cb559,", + "ui.component.color-picker.border": "S:cb5d19cc4a46e5442c727811fcf929085c57cc32,", + "ui.component.color-picker.background.default": "S:02186adb639b3a7884bc9a65f96cb942e6734b1e,", + "ui.component.date-picker.font.date": "S:c01601664b54a49db7843649e61218d72b0cce21,", + "ui.component.date-picker.font.range.date": "S:549e76bba04b1fbb3c7a155f76b70c9f5366939a,", + "ui.component.date-picker.font.day": "S:a569339bd45276583d56ad8e6dfaff48cabaf275,", + "ui.component.date-picker.font.month": "S:ba48e4e4e94a1f4084857b77fb2e5fb86d089381,", + "ui.component.date-picker.font.selected.date": "S:93517e7c93c5abe20a2399fef1d2987e2928448b,", + "ui.component.date-picker.font.active.date": "S:e3fd0d20c88ba4d29a07463b1e16e0825bfb1bfe,", + "ui.component.date-picker.icon": "S:ee48c33b488930c176663ed69597395a54b3eaf9,", + "ui.component.date-picker.border": "S:19692b58674f27f4b2da4d7c9db8c4ef5dfdd2df,", + "ui.component.date-picker.date.active.border": "S:bdb6414bb89e0e3bc850cad6f0ec18af49d0fa1d,", + "ui.component.date-picker.background.default": "S:2cfe639601a7c881a378094eafb96d93f98723e9,", + "ui.component.date-picker.background.date.range": "S:91d394ae4af3a20b5fb06a34226786e69e10c6c6,", + "ui.component.date-picker.background.date.active.light": "S:ce05d66de6e0204a71774e1d7cc87254c4fc88db,", + "ui.component.input-date-picker.font.placeholder-value": "S:da83b796571e8dbcf9609823a7f4f6aa95d69200,", + "ui.component.input-date-picker.font.label": "S:a191ad184546c0e3a216f3e16de03011552fdc9d,", + "ui.component.input-date-picker.icon": "S:4e49be088dd0bcf5ddd575d4023390235137907a,", + "ui.component.input-date-picker.border": "S:9b4d9c1fb3e70568f1e4612d54371f74782cf062,", + "ui.component.input-date-picker.background.default": "S:32f805e1d8a22f02501917969c44d8ca00444375,", + "ui.component.input-date-picker.background.arrow": "S:3b43ca57377d082a2b1e6309e487ad85f0b4e897,", + "ui.component.input-date-picker.background.read-only": "S:2e6d69ef19fbc4211630df75f51d195aaa9c11fc,", + "ui.component.input-datetime-local.font.placeholder-value": "S:7e6c0ae580c92db013c62a40dc6270c5d5f9c19a,", + "ui.component.input-datetime-local.font.label": "S:6ae51ee37296e0fa4b9e66de36ab50f6f5b27f52,", + "ui.component.input-datetime-local.font.prefix-suffix": "S:65dac1a18d2171b2d8028f80baced1cf47319018,", + "ui.component.input-datetime-local.icon": "S:0e2abc5c50469c2f70ba7b5087293cf242ab3b6d,", + "ui.component.input-datetime-local.background.default": "S:fa27ac5623b00fed4fda6d67d0942634431d46af,", + "ui.component.input-datetime-local.background.prefix-sufix": "S:bb356e0ba980e7f4c545a65c2457775d7956dddd,", + "ui.component.input-datetime-local.background.read-only": "S:07ec6b6e53995831a168bd49209e12504410932b,", + "ui.component.input-datetime-local.border.default": "S:6d252d2e672e2812b08dfa1c135a87374e249ef9,", + "ui.component.input-datetime-local.border.invalid": "S:4bbcfc2743de4a6144d3dde1341e1f341d30f060,", + "ui.component.input-email.font.placeholder-value": "S:a0948d1fe59913a909a49e2a863b1706a196712c,", + "ui.component.input-email.font.label": "S:492580c195f41682419ac19149cfa0f6d6448f25,", + "ui.component.input-email.font.prefix-suffix": "S:6103697ca67518794c1f83c232a547bd2aa0f9af,", + "ui.component.input-email.icon": "S:d5ab8575f12df768c2c1f155c45beee3a0406563,", + "ui.component.input-email.background.default": "S:4edcf70f60ead37de95a0253b9f1898c20d58bac,", + "ui.component.input-email.background.prefix-sufix": "S:76848e9b59e747f568702aa010fb2a61ecd002ca,", + "ui.component.input-email.background.read-only": "S:41acfe7fe1adf4e55c02241df13a9b43f13d49d6,", + "ui.component.input-email.border.default": "S:b99acdff195da9e668e9cff46cf1b8c8403eff8a,", + "ui.component.input-email.border.invalid": "S:4b27b4678bb758159ce94062d0787917fa0d62ef,", + "ui.component.input-file.font.placeholder-value": "S:0efd8e2514efddd82512af96f94a3baa59d871dc,", + "ui.component.input-file.font.label": "S:0f4367fcddbe84ab12b7edd44477071f884da434,", + "ui.component.input-file.font.prefix-suffix": "S:1e5e34c36f7817788184c064d33685175774a081,", + "ui.component.input-file.icon": "S:02c86bc196195adb7a11c383cb615255ff12601b,", + "ui.component.input-file.background.default": "S:e90063d7d12cef1a1d5634d0703298e69b213d33,", + "ui.component.input-file.background.prefix-sufix": "S:7f20d0bda86fe423fcd27b566d270e1ffe76e319,", + "ui.component.input-file.background.read-only": "S:518e259ea6036457ba40baf4361e179010c421b4,", + "ui.component.input-file.border.default": "S:331f4c32b50433b383bf6427d48256d3c8d3b747,", + "ui.component.input-file.border.invalid": "S:7c80b10e7c4df574d2f3c5219fe9fa59a7e401cb,", + "ui.component.input-month.font.placeholder-value": "S:7728c2e1d211adddbabf6ac65fa9dec6279b3e47,", + "ui.component.input-month.font.label": "S:f7bb57c0344a4be68b8294ca6dd1221a7bf8789a,", + "ui.component.input-month.font.prefix-suffix": "S:0966270b0b187c643c1d6dc4e69de18ed311ee7c,", + "ui.component.input-month.icon": "S:88338ed4b28172e9c9f6e46b6fbca4e3f3c66d5b,", + "ui.component.input-month.background.default": "S:65cd6c96c1cfc30a9f47449dec0a0ec0c1abee64,", + "ui.component.input-month.background.prefix-sufix": "S:1ac543eec7e0a47a901801f3b18b597fa8d4c8f0,", + "ui.component.input-month.background.read-only": "S:4d39786079c40b7f3bd2cb90a64fcc39d220d33a,", + "ui.component.input-month.border.default": "S:dd53d657c05998a94e9c08d53217447b822fc1f7,", + "ui.component.input-month.border.invalid": "S:b475c8e5fe32567b7efcdb3fdc6911ccb606f047,", + "ui.component.input-number.font.placeholder-value": "S:26dbea19a2058168fe843cbd1ae487e4a1f5886a,", + "ui.component.input-number.font.label": "S:8786b55b5c19a2e0d1610f63991e12097af54bd4,", + "ui.component.input-number.font.prefix-suffix": "S:9eda8d0d159a237e06ea2ddaf0842d6a2942a5a3,", + "ui.component.input-number.icon": "S:dddff2226ced684ef535514a803fd95250240763,", + "ui.component.input-number.background.default": "S:8856bacffdf400945360685de9d1141de2019580,", + "ui.component.input-number.background.prefix-sufix": "S:722b6412c573c6b31540d5de7eb65e209f16b9d4,", + "ui.component.input-number.background.read-only": "S:0ec9ced5ee7593d74a0bb8f34de716e560bc88dc,", + "ui.component.input-number.border.default": "S:e501842374e49a4403a787e3c592aa1fd92a0bb7,", + "ui.component.input-number.border.invalid": "S:bd174162311a344b638291c63cbda73d8e2424cb,", + "ui.component.input-password.font.placeholder-value": "S:8fb3dd5a76cd95146b2a0da1019c8de82e38268a,", + "ui.component.input-password.font.label": "S:2436ac54685b055f9f5ce7b30e325f02db7774ad,", + "ui.component.input-password.font.prefix-suffix": "S:cb4c60664e57140548a7885ffacf1facec514673,", + "ui.component.input-password.icon": "S:dc5a184b85092e79ca716528e99045b23fdd3039,", + "ui.component.input-password.background.default": "S:672cb78ebb2f9fbaa0a1a33034a2b99ed64eb291,", + "ui.component.input-password.background.prefix-sufix": "S:7950353ee7d92819efe98e69d9b4afcfe9713587,", + "ui.component.input-password.background.read-only": "S:bd1c444d4aa171a90cc559a517416219a1bcdb92,", + "ui.component.input-password.border.default": "S:e057fae0bdcc91f90ab81509b42254989cc22227,", + "ui.component.input-password.border.invalid": "S:c33c325d78d21eac9817a4901fb0396ae4f85e59,", + "ui.component.input-search.font.placeholder-value": "S:82f11e76f62c0ce868790883d29cc27c6bc3b50c,", + "ui.component.input-search.font.label": "S:c9e91271f8bee455a72a9de4efa435e393efd9a8,", + "ui.component.input-search.font.prefix-suffix": "S:c26a505689617bdba99f62fa00e3245ba618cee0,", + "ui.component.input-search.icon": "S:be0e15d57ab442ad905f3311191c77aae2074ca4,", + "ui.component.input-search.background.default": "S:7e446650a2358f661100467a6d9e6eb25cbc8fa0,", + "ui.component.input-search.background.prefix-sufix": "S:73d22fe12847357313ad7d0c51862e5336e4e86a,", + "ui.component.input-search.background.read-only": "S:a7895e278ef21029b581b0fc2b4f2bf7ad168306,", + "ui.component.input-search.border.default": "S:e2e607a7a3a1cd9a13317260bda70251741122ae,", + "ui.component.input-search.border.invalid": "S:e312081cc97124fc92a36d735830c081e910e83d,", + "ui.component.input-telephone.font.placeholder-value": "S:f03dd6a7e733cdbc7deee5382308232e451444d3,", + "ui.component.input-telephone.font.label": "S:a6aab93e1a44d99627b327fd90b8b24bb8ceccd3,", + "ui.component.input-telephone.font.prefix-suffix": "S:271c882926917f9ed45508c8547f8718bb37cc5a,", + "ui.component.input-telephone.icon": "S:18a76c2ee0e7ad26c5d2dda67735de08c00931f2,", + "ui.component.input-telephone.background.default": "S:f41cbff2ebde0f466e3392f777b1ad8973edb3b0,", + "ui.component.input-telephone.background.prefix-sufix": "S:f8f8ab4600ad74a74c0e3358ad18da285ad881ac,", + "ui.component.input-telephone.background.read-only": "S:f86f9157eaa5dab35083610604a56597f297f5c2,", + "ui.component.input-telephone.border.default": "S:bc1db64b798c5f5499404f3d0854939932a63f2c,", + "ui.component.input-telephone.border.invalid": "S:789964b785405f9844a80d5deaf6930243c8642c,", + "ui.component.input-text.font.placeholder-value": "S:4b582ee097c580aee5a16e694dbead4b90bced36,", + "ui.component.input-text.font.label": "S:ed0563187da12a7f7dec0bbcdc69a42acd4e0c05,", + "ui.component.input-text.font.prefix-suffix": "S:c118c833108067d9af5a8ad5f0797a2ec7839486,", + "ui.component.input-text.icon": "S:e671eac5683ce430197713bd2a9da8fc938085b5,", + "ui.component.input-text.background.default": "S:32eb08e2106cbaeff6c8165756709be4881400f0,", + "ui.component.input-text.background.prefix-sufix": "S:2556dc7873ed65aec1c57070213d5c10b2cf82bd,", + "ui.component.input-text.background.read-only": "S:78df1aff94da9e2ca48b91f95720d6d52408810f,", + "ui.component.input-text.border.default": "S:8b55ff074893a7b5d63baa8ba7bcc8179502de3a,", + "ui.component.input-text.border.invalid": "S:6a5dae6fa0322fd34997de4f2c503e063499ac3c,", + "ui.component.input-week.font.placeholder-value": "S:08e2c9c9ab158019ea4dde5dd5565aebd4ac2ed9,", + "ui.component.input-week.font.label": "S:629edbad09cf878536e9d950c6260104743cfbf7,", + "ui.component.input-week.font.prefix-suffix": "S:29cf2e77492c372d08c804a1e441738365594916,", + "ui.component.input-week.icon": "S:0595e3833c183084d30e67bafbdab4ef076a5ef4,", + "ui.component.input-week.background.default": "S:176d956b2f7b7c822330e78b2246ee67d45e9dca,", + "ui.component.input-week.background.prefix-sufix": "S:fe906633d0721b9778570be8d2d5016705b8f961,", + "ui.component.input-week.background.read-only": "S:17f4af047c58254395dccf88207f733654849b14,", + "ui.component.input-week.border.default": "S:f3f1e9327c14c23d89f2ab9a10e7a911f9106f0b,", + "ui.component.input-week.border.invalid": "S:d59352fb1418f589f35ff0448ed8999d7b169b55,", + "ui.component.textarea.font.placeholder-value": "S:3587604875bb247ac3b7b66025d67728c31b5d85,", + "ui.component.textarea.font.label": "S:038ae41aac151588aebf5f903e876d85f09f4368,", + "ui.component.textarea.font.chat-limit": "S:2b1579591856f908fcbdfe47ffebdaba1eb6f046,", + "ui.component.textarea.icon": "S:e220c253ef8cd4bf7aa1e1c8e3573ebec55379c6,", + "ui.component.textarea.background.default": "S:d3b7a1845c90540cdc183a97618df8468404279e,", + "ui.component.textarea.background.read-only": "S:1e9a7aebc581c8bf4018d0fecde00606a812ca86,", + "ui.component.textarea.border.default": "S:fa54964daa38b5c71d7e8b8485becaa20ec299a2,", + "ui.component.tab-title.font.default": "S:f8d836e5633dd3e13dec0060cc58972c7aace664,", + "ui.component.tab-title.font.active": "S:967d20d76f59ae90c5f18ba87059d9fdd50f4f74,", + "ui.component.tab-title.icon.default": "S:830b60c28a52226db982a99c10b086ec1a61ab56,", + "ui.component.tab-title.icon.active": "S:20445b7de3d9b07151a353507aa014def738bbbc,", + "ui.component.tab-title.bordered.border": "S:5baa4343b052dc732d7b551ffc126e240376fd1f,", + "ui.component.tab-title.bordered.background.default": "S:27c3001e1250a6479b6109b835027c1750f8e16d,", + "ui.component.tab-title.border.active": "S:52d58ad66d84ce361fd59dc32f28481d455e51ac,", + "ui.component.tabs.bordered.border": "S:f113b7793fb94de8fcef8d3f390c111bbd685786,", + "ui.component.tabs.bordered.background": "S:42c858b6772746c667ded4421abdf66f3d6f76e7,", + "ui.component.card.font.title": "S:cb6ef4a27b2e77f6e448a188afd2e3540b077bcb,", + "ui.component.card.font.subtitle": "S:f9d1a94cd176bf2ece784d74773d080c75259fdc,", + "ui.component.card.font.description": "S:0628842b8aa04ae00419ab7523fc547351c9947e,", + "ui.component.card.border.default": "S:0e7e505a4627c86a2acfbd8fd165922f16043870,", + "ui.component.card.border.active": "S:0a4fe076440d27df7f25637b83b8ceb45563ac80,", + "ui.component.card.background.default": "S:9cb5cf297af6069f8d607c7a043a8c635937b829,", + "ui.component.action.font": "S:0731175a69796d5c54b3e9c680372c6f022069dd,", + "ui.component.action.icon": "S:7460a128d266007a7c08c9bd97767e74ce05a749,", + "ui.component.action.background.default": "S:e120672494aa3375267693d8943d92d8c253b370,", + "ui.component.action.background.active": "S:852e4934bbec6716b69b7985fbdedb6311164482,", + "ui.component.action-bar.border": "S:f3233e7f3c6d6d0434f39871e78a7e893dd49938,", + "ui.component.action-bar.background": "S:973fa8c874c4be0234b194e567bedbd90f3b21df,", + "ui.component.action-pad.border": "S:4e8e829567089e4ecd509d2116b0cbba7e270391,", + "ui.component.action-pad.background": "S:b2e3cd5dd35fef6e8262dc541892fdb41fecffe5,", + "ui.component.action-bar-grid.border": "S:0cfec482af333c0964e9627e0cc0aa509d19ca72,", + "ui.component.action-bar-grid.background": "S:5e9a4439ced2c0667595c2acffbe278cbffcd770,", + "ui.component.action-pad-grid.border": "S:85dd61735a0021facd489017901efc6b0bf83343,", + "ui.component.action-pad-grid.background": "S:78397d106a3767299d5a1d813d11b5191b455df3,", + "ui.component.block.font.heading": "S:3a97434c422ebcf6e10badfc38a788690381ebcb,", + "ui.component.block.font.active": "S:890c2f45049553d97053093536ef072ca1d65cbd,", + "ui.component.block.font.description": "S:e87dcc05dfc1444785c1dc8b49b37c1e73bb6bad,", + "ui.component.block.font.content": "S:e1af4d6e9d064022cca6a490a83db2024170d66d,", + "ui.component.block.icon.idle": "S:97678ab459a2310f303c95568e2f1e052fff4a1e,", + "ui.component.block.icon.valid": "S:3f6ce35602d1120ce6a6171f4f852506b6f48eec,", + "ui.component.block.icon.invalid": "S:c06b5acec6e0ff29e6c3058851e9e1cd0c54cd17,", + "ui.component.block.icon.drag-handle": "S:11a7a5049d4bb8e5667dfc85d6e29e213d018e18,", + "ui.component.block.icon.chevron": "S:cc79ab14256bd3e014b0fda2ee2fff7b69bc87c8,", + "ui.component.block.border": "S:23269f06ccb40413699a3ce78bfafddeeb9d6f57,", + "ui.component.block.background": "S:3a0a6811a09e1066c48aaf5f17058b022073e4ef,", + "ui.component.block-section.font": "S:eda758e3346a4a4b375bf0448a548bef44c5c439,", + "ui.component.block-section.icon.valid": "S:f8307b4a92d263ca47db3f0f05d062d8909122bb,", + "ui.component.block-section.icon.invalid": "S:24a9bce617b504835a250af940d30de08a5e31dc,", + "ui.component.block-section.icon.chevron": "S:24af1732cae9d64311eb4a0731ae5bcf1a487003,", + "ui.component.block-section.background": "S:8bc7c287f356c07010556e42b9aeb06e2c67e808,", + "ui.component.notice.font.title": "S:6558954775bb2476734c7fa2c0491e93bf0c9a32,", + "ui.component.notice.font.message": "S:63b5c17d503b0170df5d4d8a14a9787d5a28e091,", + "ui.component.notice.background": "S:51e277a9cf30deaf8b7ea3339624efff091549a8,", + "ui.component.notice.icon.info": "S:111c7cc4d63298819668a9f92c9e5729c0a6f90b,", + "ui.component.notice.icon.success": "S:ed86ac824919bf17b8c37199b90fc50f44b979f2,", + "ui.component.notice.icon.warning": "S:eaedbed69e4aadaa9997b9ad90e862390430ba28,", + "ui.component.notice.icon.danger": "S:1929c4eb6167309ac75205cb64f97f4c895f0960,", + "ui.component.notice.icon.brand": "S:bc8ac280ba735f4f383c2a2e21a2277565f61dba,", + "ui.component.notice.highlight.info": "S:69cba460aaa995adea8b2f8967284feca208eec2,", + "ui.component.notice.highlight.success": "S:62c25be739280d7a492e61373df48249c435d2b9,", + "ui.component.notice.highlight.warning": "S:166f07a4237f95e023d3dfdf5382765e43243725,", + "ui.component.notice.highlight.danger": "S:df2d37929d589aaea6773623c6d0ea5c125ff2d3,", + "ui.component.notice.highlight.brand": "S:364e7cccd5d2041bc3e37334c5b78044d7800604,", + "ui.component.modal.font.header": "S:afa49681937fe21ac52c7fbb24573fc5e670da92,", + "ui.component.modal.font.content": "S:afc66c8a927b43b896028e0150acc45c6f977bbe,", + "ui.component.modal.icon": "S:378bfabe54a088e6c7e96dd552a056d2c7d34fe9,", + "ui.component.modal.border.default": "S:cbf6b70137adcf61e4551a8c1d2cb78d78ba81d9,", + "ui.component.modal.border.top.brand": "S:6dffa8aa793394eb735b53fd07f08c4a022b953a,", + "ui.component.modal.border.top.info": "S:255c0df89c21f6af09e941060b34a73146b0ca9e,", + "ui.component.modal.border.top.success": "S:3ef38ba5135ecd8aae48bbf7f00c4f2737734403,", + "ui.component.modal.border.top.danger": "S:662a8332d27edb8355955a2b0833e1bb65219843,", + "ui.component.modal.border.top.warning": "S:95cf5387f5261a3e841fc3865f9842011500b4c2,", + "ui.component.modal.background": "S:d00fee8e988d3c6e76ba068660c57b70cf57ca7e,", + "ui.component.panel-header.font": "S:43f78b566e28d07f84d367d3a5357d6fcbb4da69,", + "ui.component.panel-header.icon": "S:87f81ce09a91c907a329f7cbdacc01cfa49fe823,", + "ui.component.panel-header.border": "S:278ae70565abb80b939d8bd658c074cb15f25ba6,", + "ui.component.panel-header.background": "S:ac523398aa7caf649003c6ea272b5aecfbe7d25e,", + "ui.component.popover.font": "S:f8b856a9c0d3a0712f0160da080fc6205fd6288b,", + "ui.component.popover.icon": "S:420c6d64cb4695d8ef8dec406d918a243c88c1cb,", + "ui.component.popover.border": "S:97ddddc0529ccb6b38d81d8691636e1675996b9a,", + "ui.component.popover.background": "S:387fe396d0fed322666f12e3ff533473c4171309,", + "ui.component.slider.font.label": "S:d7ee0bff979ffbd0359c76a40880dad5342c0a4e,", + "ui.component.slider.font.tick-label": "S:efade870d2a007c834eee443fb4b105d3a83b54c,", + "ui.component.slider.handle.background": "S:da09c9b0cededdd32ef0d5dd6896ba21b8808129,", + "ui.component.slider.handle.border": "S:fe714eb142accb3e727cc3df0b4c336ff2fd4fd6,", + "ui.component.slider.border.default": "S:f2175be6d76d8887f1637d0202266e9be90dee79,", + "ui.component.slider.border.active": "S:c5910034e0fd77a55e9d5826bba565c2b81ac319,", + "ui.component.slider.tick.default.background": "S:4f4e11ab4f0b3b820d6e0b13f9c682a9ab7648ee,", + "ui.component.slider.tick.default.border": "S:cf1903fc5888cb11979d544948c250084ae0e4c6,", + "ui.component.slider.tick.active.background": "S:1d2e7d4e2394832025cbb9f04d80bca853a78612,", + "ui.component.slider.tick.active.border": "S:9c1762562448739bae1155c6df61d531dcff81ab,", + "ui.component.slider-range.font.label": "S:78de2199d0c9045942b87495b9c15b71166df40a,", + "ui.component.slider-range.font.tick-label": "S:7b245a7fb29ece6d61980c9f5968243697d0cd40,", + "ui.component.slider-range.handle.background": "S:6d2f8ae2fab67cb8ba2e59e5207ca92d7193014d,", + "ui.component.slider-range.handle.border": "S:8a4ba1733f7994732c79c52d468852b9303f3b84,", + "ui.component.slider-range.border.default": "S:b574140c3738ea049f1af91dba38fb22676e7371,", + "ui.component.slider-range.border.active": "S:4161a14747f8e9ea0afed1754829e1cbb8e771cc,", + "ui.component.slider-range.tick.default.background": "S:01baad5a91da2679f113ce46fe145f13a1dc72eb,", + "ui.component.slider-range.tick.default.border": "S:8dc418e06615af7729afbfcb9b0f8cdbc329053e,", + "ui.component.slider-range.tick.active.background": "S:f2debd62f4b270663fd9a5b3d95e8676fe6c9ca6,", + "ui.component.slider-range.tick.active.border": "S:57edb6a76c3ccda905d8eebd3a65adccb3f181d7,", + "ui.component.slider-histogram.font.label": "S:0e2b1a07e3b04e8ea1a727a72b89f10a90ac394b,", + "ui.component.slider-histogram.font.tick-label": "S:e6fbf46ecfb20b9ff981360807e85add2fc69dca,", + "ui.component.slider-histogram.handle.background": "S:e3b9f294d95cdcb2d21bc4967f4a830d7ace7801,", + "ui.component.slider-histogram.handle.border": "S:c3a06fbad9a316391d042ac87d8736fae27d5e8f,", + "ui.component.slider-histogram.border.default": "S:7812c8b86588ebc1466158725e33b2d3f39f6804,", + "ui.component.slider-histogram.border.active": "S:fd18cef278a992f04590666f1abfb876c299267b,", + "ui.component.slider-histogram.tick.default.background": "S:b2ab292e9bc23911a0bb33d5b453a8a34c9c5d8c,", + "ui.component.slider-histogram.tick.default.border": "S:a7c785c461eaa4c68c41ed2a78fb276f2ef3fba0,", + "ui.component.slider-histogram.tick.active.background": "S:92ff8f0b1b7ae69fa12775241821d3fcc296c30a,", + "ui.component.slider-histogram.tick.active.border": "S:08650b89041993567cfa53eff6a226de6349be80,", + "ui.component.slider-histogram.area.active.background": "S:2ad898e0ac6db8e910a149f866eb11952c97ae07,", + "ui.component.slider-histogram.active-end.background": "S:28078ebeb425165ceda5b610b0f7398770511b82,", + "ui.component.slider-histogram-range.font.label": "S:ff91f612914cff450ab171f641f507d4bc11737a,", + "ui.component.slider-histogram-range.font.tick-label": "S:c1a3db268a3c36e7494f82fc7b0bd86c7ecf8095,", + "ui.component.slider-histogram-range.handle.background": "S:d05c2f84ab714701720146dc419ef1224311785a,", + "ui.component.slider-histogram-range.handle.border": "S:526ea48097875c566829e4c12bfe2f0c6e7dd3ad,", + "ui.component.slider-histogram-range.border.default": "S:b46844377fe7cc9a91c2458b9a32777e2f11fa67,", + "ui.component.slider-histogram-range.border.active": "S:d0eab509c17a62410ac01f200e0ac0263fae6ad4,", + "ui.component.slider-histogram-range.tick.default.background": "S:2f85e36eceb5ee8fae70e866fa666aa210b3bea5,", + "ui.component.slider-histogram-range.tick.default.border": "S:3411d1347c37f75f25a3d832fb4d66893197cd8b,", + "ui.component.slider-histogram-range.tick.active.background": "S:668e3ab7d4293c607f41228a728b3d0ae57c8ac7,", + "ui.component.slider-histogram-range.tick.active.border": "S:7bc5dc1f2ada671be89e7cd70a14af70f337c88d,", + "ui.component.slider-histogram-range.area.active.background": "S:55bbf8f9aba5ebf3f4fcb6246a42f751fadf2f85,", + "ui.component.slider-histogram-range.active-end.background": "S:a367fe30375b8c1b7c1c6900525926933c5965fa,", + "ui.component.filter.font": "S:1e17fd47c376c6baa884431b3c91f32d0093afe6,", + "ui.component.filter.icon": "S:892f1dfab94716fea0eb13863ac5e6e6928db566,", + "ui.component.filter.border": "S:636893a50a740a974003c887e192aea68319fac8,", + "ui.component.filter.background": "S:c6c0a5171900d0237bb3aa7652030a32ca92d4a8,", + "ui.component.scrim.background": "S:e704cd8df0bae14a221017bca87544458333a911,", + "ui.component.tip-manager.font.heading": "S:6aea94e188b3248ad002f99ae1ae1724d65da2b0,", + "ui.component.tip-manager.icon": "S:1ba17b801f84f9d950925f78f1b6c5e51c905ba5,", + "ui.component.tip-manager.background.default.light": "S:4cee600ef24e6a9291a35099dcccfd0ba989d0ef,", + "ui.component.tip-manager.border.default": "S:2ed79607b956c086b266a19ceae6cd10c6b00092,", + "ui.component.button.font.brand.solid": "S:782d420301fa50e7d1b4105cb549a95e63a07670,", + "ui.component.button.font.brand.outline-fill": "S:6173e148d8055f7f947e9b8a8f3c0a5bd8cd726c,", + "ui.component.button.font.brand.outline": "S:ab6978e023a81771f4d2c4266c61f902c7137292,", + "ui.component.button.font.brand.transparent": "S:5b7ee0ad3a26f8bb4340713f10dd7b1761325b83,", + "ui.component.button.font.inverse.solid": "S:397292fcbd522b22a30cd7175f56fa538b452526,", + "ui.component.button.font.inverse.outline-fill": "S:76fec7c6b39a658f86b2ea93803e2cefc20d8ebe,", + "ui.component.button.font.inverse.outline": "S:7844b63ea7c98796fc0544c6e547b8bb3ea90eea,", + "ui.component.button.font.inverse.transparent": "S:3dd1256228fab6a9116b645577b52c13c0f7e001,", + "ui.component.button.font.neutral.solid": "S:5bcfc3bf3253281cf02f3b8bdc031cd263e3f820,", + "ui.component.button.font.neutral.outline-fill": "S:70252e60cc520763f7bfe0366f2c664fef17b7aa,", + "ui.component.button.font.neutral.outline": "S:ec073a10e05d5320f3c66d926f334cbc256915d4,", + "ui.component.button.font.neutral.transparent": "S:78292492bec6c0389d41cbd5c2ef551452332f2f,", + "ui.component.button.font.danger.solid": "S:655e202a6a3f72ba7f3bca057947132ea97e8965,", + "ui.component.button.font.danger.outline-fill": "S:d690fe69a99752662a9d966f4309fd0bb4abddac,", + "ui.component.button.font.danger.outline": "S:2cfeb34e95d31547025631e9fa5c353c0266e61f,", + "ui.component.button.font.danger.transparent": "S:1a73c622c3c951be77cee5d179f04730c7231641,", + "ui.component.button.icon.brand.solid": "S:9a3e1cec97add161dc184eda03285aa74babd0f1,", + "ui.component.button.icon.brand.outline-fill": "S:0e62063c4e6427446c05fc6223f0b6bc85c54052,", + "ui.component.button.icon.brand.outline": "S:1642e23a77b041d0387a68a0d42e50ae81a955d4,", + "ui.component.button.icon.brand.transparent": "S:ddcf0e37f083051a330ed4d305da1443bd6b1dfa,", + "ui.component.button.icon.inverse.solid": "S:ab6e1a85844a58403dd12edbfc91839f0e1618cb,", + "ui.component.button.icon.inverse.outline-fill": "S:854742d81b14a840b58f7b3e1e6a8eda11245ea1,", + "ui.component.button.icon.inverse.outline": "S:78c1c0a72eef9bafd1f0dcc0b47f6d2cefb5a4e3,", + "ui.component.button.icon.inverse.transparent": "S:a60519eafd606e6d4cad736e013f8ddbf333c36f,", + "ui.component.button.icon.neutral.solid": "S:ecd75daccb1ec3863b40d7bad0a91840897db46d,", + "ui.component.button.icon.neutral.outline-fill": "S:30577b18aee52d61219737dacf5d0555511cf405,", + "ui.component.button.icon.neutral.outline": "S:1de06db10069c86330dd5cd87854c2eb30fead25,", + "ui.component.button.icon.neutral.transparent": "S:8b5c62eb4ab5a9650c8c301fa4eece091f95d5db,", + "ui.component.button.icon.danger.solid": "S:44d153e8b10af266932f6d8504069ada8e7695bf,", + "ui.component.button.icon.danger.outline-fill": "S:9ead08e3e7da20a8310426b865052091b2313111,", + "ui.component.button.icon.danger.outline": "S:57b878bc4c8748614ca3259ea0d5138f2591703c,", + "ui.component.button.icon.danger.transparent": "S:25eb89e6e58c41212bc886db05f638a5d5935477,", + "ui.component.button.background.brand.solid": "S:9fafa8eb84f9aafcfe4f55d42e005bb949e47c4b,", + "ui.component.button.background.brand.outline-fill": "S:782b3ba3a9d97f19a0f40b873106e18b22bc0cf9,", + "ui.component.button.background.inverse.solid": "S:d62543b09f524d73585cd0deed75f5d2500f3ad1,", + "ui.component.button.background.inverse.outline-fill": "S:e3e52468222399de100840dbf5f663a57bec1be6,", + "ui.component.button.background.neutral.solid": "S:7fd721287974bc44b9ee56934c0458b63e79859a,", + "ui.component.button.background.neutral.outline-fill": "S:6ee55b86a6fba024cf4bb3852412c3afbc288a6c,", + "ui.component.button.background.danger.solid": "S:35ac24f8e4045d6a4ca90b1ec29298a3e27f7f12,", + "ui.component.button.background.danger.outline-fill": "S:9ac878548f434bc41682d007d9e69a08a6792fc7,", + "ui.component.button.border.brand.outline-fill": "S:f774b769292b8b9be796a6e2136e1fd81bc8dfe0,", + "ui.component.button.border.brand.outline": "S:de4dd0f69b23e32036377efd90c54b109585eff6,", + "ui.component.button.border.inverse.outline-fill": "S:63c5235e2c094f7a2183e44a644babad30085ed7,", + "ui.component.button.border.inverse.outline": "S:6150401a4a468be83c3c324a10dcc36288ff9c58,", + "ui.component.button.border.neutral.outline-fill": "S:11928aa30de05b6d34a7f6602cec3abe4748ace5,", + "ui.component.button.border.neutral.outline": "S:017adb751abe2765f0ba891410257da7ed8a1493,", + "ui.component.button.border.danger.outline-fill": "S:8183212268fa8842a9db08856ac5df8a5ab5c78e,", + "ui.component.button.border.danger.outline": "S:a1058e0c0f2ba278322e8560999a197eb94212e7,", + "ui.component.split-button.font.brand.solid": "S:b1e5cb236b02e7679f8c55191ae8b841df0cf9a5,", + "ui.component.split-button.font.brand.outline-fill": "S:e5fd4b865334c0ed5a2fa92cfedda6712defaffc,", + "ui.component.split-button.font.brand.outline": "S:ad3cbbe1e1c8e94013e70f6fddcb325fa71f90ae,", + "ui.component.split-button.font.brand.transparent": "S:a21f579c222bb903630658e83f6da6e04385e33a,", + "ui.component.split-button.font.inverse.solid": "S:5936e923c53b6951b3961b70bf69b73178864e62,", + "ui.component.split-button.font.inverse.outline-fill": "S:a4938b11f99cc58efae04da706848f12a3099e08,", + "ui.component.split-button.font.inverse.outline": "S:4974e8f54aec4364be813bd7d81066f025212d51,", + "ui.component.split-button.font.inverse.transparent": "S:e28baf73122841d740914e854f03e64279830470,", + "ui.component.split-button.font.neutral.solid": "S:be1d4234952c0b43fe5b5b5ec08f946567847f15,", + "ui.component.split-button.font.neutral.outline-fill": "S:2fb58a1fbd2f17fe2f1c34343404c6251a049537,", + "ui.component.split-button.font.neutral.outline": "S:3e899165c6b39c4184634e62f4a14c7105e8f229,", + "ui.component.split-button.font.neutral.transparent": "S:cee08c46e92a07fcf13ae3d1e6c249282ac3892c,", + "ui.component.split-button.font.danger.solid": "S:18cd3ef7595d65bce37347964e23c048c438e7b1,", + "ui.component.split-button.font.danger.outline-fill": "S:4dcf55003643751b8a45f8ac7533d040e37d1c8f,", + "ui.component.split-button.font.danger.outline": "S:b992c17e57b44df443da825759462bac7e731499,", + "ui.component.split-button.font.danger.transparent": "S:2ba55aad6ad73e8ed57a3a5b1c23b1b90fbe8896,", + "ui.component.split-button.icon.brand.solid": "S:221d89adcddcc79385030935c3a9f974de1af95a,", + "ui.component.split-button.icon.brand.outline-fill": "S:17953c7787c2f1790888c7ad92db74c8f149a061,", + "ui.component.split-button.icon.brand.outline": "S:b205dfcb141ea7437256438c36b948dd93c3fe38,", + "ui.component.split-button.icon.brand.transparent": "S:7e6967db4ea511f5748eaa95651652e25f187f9b,", + "ui.component.split-button.icon.inverse.solid": "S:c8d19636bf233a02899857e0938776242a47ee3f,", + "ui.component.split-button.icon.inverse.outline-fill": "S:12800cd595250a0e83bb8c938b5d5ef66bd6eef0,", + "ui.component.split-button.icon.inverse.outline": "S:5a379baf21d6acc6001e2cef943150460049d323,", + "ui.component.split-button.icon.inverse.transparent": "S:0d6ec1df5832ff408b3fd726823bd70b63087f89,", + "ui.component.split-button.icon.neutral.solid": "S:eb34e0987b99fb768dcd708dd12c61c19be12f7b,", + "ui.component.split-button.icon.neutral.outline-fill": "S:e9f49c50a073ac1d34e480e8309a01651506820b,", + "ui.component.split-button.icon.neutral.outline": "S:c953b0c78ee28b34b2eafa3c61ecd9dec7de146f,", + "ui.component.split-button.icon.neutral.transparent": "S:627d9951c4936e0f40ed48725187b0399d07253f,", + "ui.component.split-button.icon.danger.solid": "S:0ba0a62ab6a65156ffb5c6ab52f9eb34a99c7d61,", + "ui.component.split-button.icon.danger.outline-fill": "S:f0947a4e970f4cc06063a91ac53f2095555c8712,", + "ui.component.split-button.icon.danger.outline": "S:bb7d54b4ce8709703a878db99a7b247bfb14a0d0,", + "ui.component.split-button.icon.danger.transparent": "S:ff69c14d2cfb4bd61c6d2be36e20a062c4ddd334,", + "ui.component.split-button.background.brand.solid": "S:75ee168649a3e7a6b64f4bbbf56efb0262807836,", + "ui.component.split-button.background.brand.outline-fill": "S:3ed8c2a9cdf7047beadf3f98924ecf3090ab8b8e,", + "ui.component.split-button.background.inverse.solid": "S:c6095cce43caeb4d3247b75074fba2ea764d9e2b,", + "ui.component.split-button.background.inverse.outline-fill": "S:3ce23011843fdafec7c54d67ee46238a55a29451,", + "ui.component.split-button.background.neutral.solid": "S:ee7cfe01964f263bb361b617fb674f23e847fbdd,", + "ui.component.split-button.background.neutral.outline-fill": "S:d9ca5bc33dd58f71f38d353a39772f2ad68353f3,", + "ui.component.split-button.background.danger.solid": "S:188a49fdab3fd21e5f249e1be7ba1b421ce1ac91,", + "ui.component.split-button.background.danger.outline-fill": "S:07d45a5767aa69775567cff25a0ff2ce56323aed,", + "ui.component.split-button.border.brand.outline-fill": "S:7c1c15c52cd709295c6001f9bce2bd771fd84a7c,", + "ui.component.split-button.border.brand.outline": "S:767874cb2a8b5473e8895651d6daf99994e101da,", + "ui.component.split-button.border.inverse.outline-fill": "S:99b311a75dee8178ee4e9c26812199005926822a,", + "ui.component.split-button.border.inverse.outline": "S:3fd26fad8b4240d7d78e5f6ead9b789d56296eeb,", + "ui.component.split-button.border.neutral.outline-fill": "S:603b038b11e33fcde64c6fc7c171a070a2edcde4,", + "ui.component.split-button.border.neutral.outline": "S:2e6d491e05221a6379bf6eba02a93adedaea368d,", + "ui.component.split-button.border.danger.outline-fill": "S:42af1b51f89185176ed97715da6bdfbe49c5c2a9,", + "ui.component.split-button.border.danger.outline": "S:2ff01f486ec06210b062fe6522591af320646ebf,", + "ui.component.split-button.divider.brand.solid": "S:1a49e832ea1b26984e38993a22be6b7f3373d0be,", + "ui.component.split-button.divider.brand.outline-fill": "S:b6cfafa0bc4e211241eff3597be77abfc7c16639,", + "ui.component.split-button.divider.brand.outline": "S:3e8ae1b63fc9c7e0818469b2fe72c6615f415f51,", + "ui.component.split-button.divider.brand.transparent": "S:1ab4c29cf84c9ef4be8045b62db42ee9fe869a2c,", + "ui.component.split-button.divider.inverse.solid": "S:7b97ab9d092ef7f3b5f05d18aebe4f6eca61d7c6,", + "ui.component.split-button.divider.inverse.outline-fill": "S:4eb3b24183d1e9fdd89ca8210cc5338339d509f7,", + "ui.component.split-button.divider.inverse.outline": "S:f247a7fc948e3426fb3b63fa41129e1a7fb02ba5,", + "ui.component.split-button.divider.inverse.transparent": "S:a9b81d407396cc0b422a28f133e1e81cb6b75cc8,", + "ui.component.split-button.divider.neutral.solid": "S:b498c4f8aecb1da7a4c4debfb3887aafbf81a4fd,", + "ui.component.split-button.divider.neutral.outline-fill": "S:2975214d9413a2bdc37e40fcc39037367e5546a4,", + "ui.component.split-button.divider.neutral.outline": "S:1da215197d8bff865d7a20c4dfe77b383ce29a36,", + "ui.component.split-button.divider.neutral.transparent": "S:2d7d33b7e8eba0e02da8384c5758411dd6007671,", + "ui.component.split-button.divider.danger.solid": "S:3d20c05f64b688569cd9ef7d7f3e47d05673787e,", + "ui.component.split-button.divider.danger.outline-fill": "S:63809f950cf17d477397c1986ecc25cb58aac73b,", + "ui.component.split-button.divider.danger.outline": "S:8a555829dbac13b050e34b0619109d7389162f8e,", + "ui.component.split-button.divider.danger.transparent": "S:adbc9ac3f51357534e908e080e7c6c67b9c460d2,", + "ui.component.fab.font.brand.solid": "S:779392fea3e33c173430dd0cad18f18ae49ce512,", + "ui.component.fab.font.brand.outline-fill": "S:6fb81f28ef81556e3272fd9c414aea2cf8d19860,", + "ui.component.fab.font.inverse.solid": "S:1cd6133a7235a750486acde04af0b19581a13e53,", + "ui.component.fab.font.inverse.outline-fill": "S:161a0361f3ca28b4bf44aa09b27f64590b73fbe5,", + "ui.component.fab.font.neutral.solid": "S:ec1ff9df938159332c4c8f31c2f8ce1da78df96c,", + "ui.component.fab.font.neutral.outline-fill": "S:9977b7404d81394616fe1cf27b13e560926976db,", + "ui.component.fab.font.danger.solid": "S:8753ce65d48c65cb2e576078bab580cf87d762b2,", + "ui.component.fab.font.danger.outline-fill": "S:7eb1717808f185510175ee734d2d29b5a84c0253,", + "ui.component.fab.icon.brand.solid": "S:98364bef61c6db8973ce094066407ab04632e086,", + "ui.component.fab.icon.brand.outline-fill": "S:5ff74543b61a376e37695c03e24df2447a3d798e,", + "ui.component.fab.icon.inverse.solid": "S:7525eb0e429ed50a83107965640e83e7896910e9,", + "ui.component.fab.icon.inverse.outline-fill": "S:29c2aaffa8222880dc693d9ffba2c5d16b0a94c2,", + "ui.component.fab.icon.neutral.solid": "S:3ddfbad8f0437bf3aedf418b4147680a09114c50,", + "ui.component.fab.icon.neutral.outline-fill": "S:05ab6c41dbff1eabd76c3e04acf783ce66230f77,", + "ui.component.fab.icon.danger.solid": "S:d00f6087e0c10a95032c201db697b5bc7a0a4757,", + "ui.component.fab.icon.danger.outline-fill": "S:eb0cbb83ff8f8fafa525f1573e088f5b6a460d1f,", + "ui.component.fab.background.brand.solid": "S:950a0b3b9e881f9cf2f127a1079faedf16463486,", + "ui.component.fab.background.brand.outline-fill": "S:8a59ee2c7085bc4673dffca618bbfdd00cc050fe,", + "ui.component.fab.background.inverse.solid": "S:c359e91d3a1839d9f48257eab500aa884a84671e,", + "ui.component.fab.background.inverse.outline-fill": "S:55b760798b8b34921d2e4b0b25bb196705863937,", + "ui.component.fab.background.neutral.solid": "S:7e97346f3041a7140bed54b03588f9864b8208bc,", + "ui.component.fab.background.neutral.outline-fill": "S:1366543dd61b8b4db57e76de6b053ea0e93ebbd6,", + "ui.component.fab.background.danger.solid": "S:bdc628ec737a2f178a7fdc31655bca72b36f7fab,", + "ui.component.fab.background.danger.outline-fill": "S:c3c7fe9d789e32d515ddbd3cd9837096513c116b,", + "ui.component.fab.border.brand.outline-fill": "S:e274dc7c22fb17754420fdf9dfa9cee17978462e,", + "ui.component.fab.border.brand.solid": "S:91b1dda988c03bfe1ff1540c54b4e466920e9046,", + "ui.component.fab.border.inverse.outline-fill": "S:9aa1e0c54390c69c718e279514783cd92ba10e35,", + "ui.component.fab.border.inverse.solid": "S:dde2e874ac189d7651d336d7f21d01598858b21e,", + "ui.component.fab.border.neutral.outline-fill": "S:c9dfc42a8661307008a6a0d0524468c8ef50ba85,", + "ui.component.fab.border.neutral.solid": "S:9f1db0aad4a50b5ac691ac3a428d5ca7a44db80b,", + "ui.component.fab.border.danger.outline-fill": "S:78eeb70d17f9b731b0c5a6e450878f7fe521a966,", + "ui.component.fab.border.danger.solid": "S:7f8ca08621425eebdfb86a37f41239bef9fefe17,", + "ui.component.combobox.icon.default.light": "S:5cc01e17df2c86c28a0333706d3048db8078ccdf,", + "ui.component.combobox.icon.dropdown.light": "S:720fe6a44d721ed96916b3a122cfa525380b663a,", + "ui.component.combobox.border.light": "S:bd71459bf6075452a75e5c34d99d6f6f37f0659a,", + "ui.component.combobox.background.default.light": "S:91b8d48ee28398b41a97ab7971507978684d3359,", + "ui.component.combobox.background.item-container.light": "S:e305812b279a192dc60965f94f737a713932971c,", + "ui.component.combobox.font": "S:2f6c1e9e707b073e492c5d1ab571a5d71ee6ff4a,", + "ui.component.combobox-item.font.default.light": "S:297832d01221057a0f85d06d024de31f2aabeca0,", + "ui.component.combobox-item.font.selected.light": "S:1801f5f66385ddd53bea244ab93e56367aa3668e,", + "ui.component.combobox-item.font.group-title.light": "S:59df28ade15e864a3720e861ccbaa309fcbd3f0f,", + "ui.component.combobox-item.icon.default.light": "S:857237444c08a6c746cdeec7dc0e58d49263d43b,", + "ui.component.combobox-item.icon.default.selected.light": "S:ea579a67dcb3d3bcf420771638ad39694a49aeb0,", + "ui.component.combobox-item.icon.select.light": "S:ae03b35fbf03fc102e66a964c651941b9e81208c,", + "ui.component.combobox-item.border.light": "S:fa4c909c6e414852a15bcc2d4d57162e1b5d7677,", + "ui.component.dropdown.background.default.light": "S:cdc0a8bd2d3a047873450989918748d6e053102e,", + "ui.component.dropdown-item.font.default.light": "S:5afb551bf9aef40542f17d6c10e48101ad63ce38,", + "ui.component.dropdown-item.font.selected.light": "S:302e89d4ed536d8f5d6cf0f14e825b092f56fde6,", + "ui.component.dropdown-item.font.group-title.light": "S:5dec69305270c2e39f01705a9e4e5f86bfeca12d,", + "ui.component.dropdown-item.icon.default.light": "S:d8fc8b1bf9ac1d74fdc1ffb3d02af1d4ed72ac06,", + "ui.component.dropdown-item.icon.default.selected.light": "S:b84fd31d7b0769746c0477fd113ca7f4e085340e,", + "ui.component.dropdown-item.icon.select.light": "S:414f5a9b55a11d07fa2fe2f8f692302f069b25c7,", + "ui.component.dropdown-item.border.light": "S:0f64c5abd33057beb0adf07b3080ee3f6a7d5e2e,", + "ui.component.segmented-control.border.light": "S:56be679936a4bb7d166c3203771c5cf3d83b4fd5,", + "ui.component.segmented-control.background.light": "S:98d85026ad07de7ea02ef72eb0cc1137c77d6a15,", + "ui.component.segmented-control-item.font.solid.default.light": "S:b6e73cc8caff1e6322ff575e5337d669fcf7f970,", + "ui.component.segmented-control-item.font.solid.checked.light": "S:1948bc3ee0b89fc659a70d831dbdc7c172273cea,", + "ui.component.segmented-control-item.font.outline.default.light": "S:3da88c6e589d0729f676bda28f7643bb407122c7,", + "ui.component.segmented-control-item.font.outline.checked.light": "S:2bc23ff8b241d5e96ec2b134bd857f1de92fb972,", + "ui.component.segmented-control-item.icon.solid.default.light": "S:c8c968107e3b2d6a4f8c6e62eef5262744a85602,", + "ui.component.segmented-control-item.icon.solid.checked.light": "S:7c73d28e40bdc32de0d3423c4e053e261acee77a,", + "ui.component.segmented-control-item.icon.outline.checked.light": "S:50bcc62fdb48b83bdcd6df626b77c24ffbe90232,", + "ui.component.segmented-control-item.icon.outline.default.light": "S:83efc837cdc213837f0a04ef56cd1dbab967b5c6,", + "ui.component.segmented-control-item.border.outline.checked.light": "S:cce095d9ae241a77750ab142553d17cb5251d16c,", + "ui.component.segmented-control-item.background.solid.checked.light": "S:a026a449ec907947ace0990624deddfb7fc57e57,", + "ui.component.select.font.light": "S:33c58becf52c374e3d1ec262ed68b614e6b90100,", + "ui.component.select.icon.light": "S:780ca35241bf787127b93d1569d55e0034ae16fa,", + "ui.component.select.border.light": "S:c213d42347a70cc1e35f4b6f03b01407b250f4cd,", + "ui.component.select.background.light": "S:f400497ecc6ead127a03b2112601cebbb749e570,", + "ui.component.stepper-item.font.heading.default.light": "S:03733cf44b3c9409681ded550ac917428d132fd0,", + "ui.component.stepper-item.font.heading.active.light": "S:7cc17e8046ae24db406f9515ea881bc4d7aa3c0a,", + "ui.component.stepper-item.font.heading.error.light": "S:4f3b1b2845e7553a01f3bc56150fc4e6ca186de2,", + "ui.component.stepper-item.font.heading.complete.light": "S:af51bee560b7139bbc58f667860f0088e98fee41,", + "ui.component.stepper-item.font.description.default.light": "S:d1e6905e250a2ca6f7c50d7116e1f619932c6ad4,", + "ui.component.stepper-item.font.description.active.light": "S:29b4138c364c2721ddcd465d28ba2d4ebfa1428f,", + "ui.component.stepper-item.font.description.error.light": "S:b214f5e19f2beef6988ba71c71cc74fd2cc395e1,", + "ui.component.stepper-item.font.description.complete.light": "S:609d69f74f82f45bca13d1cee6bb238c96f902ae,", + "ui.component.stepper-item.font.context.default.light": "S:9db59184a2ce036a3308f4aa940578964f8472f2,", + "ui.component.stepper-item.font.context.active.light": "S:3bde243a0004873f62792d2013306cd765b2491c,", + "ui.component.stepper-item.font.context.error.light": "S:5df5e875f4e6a791a275eeb68e174652d6cf10bd,", + "ui.component.stepper-item.font.context.complete.light": "S:69fa83aa05723a289accf7ff85f42f95a8d52d84,", + "ui.component.stepper-item.icon.default.light": "S:3b1baf9e5e9cb034cdf02da07fc1d525e45ecf0a,", + "ui.component.stepper-item.icon.active.light": "S:0e17c96f4653565a4929a8bb3caf99b4fa5c5a13,", + "ui.component.stepper-item.icon.error.light": "S:f533a9b77e9e8f51b79923380ea8673c61180599,", + "ui.component.stepper-item.icon.complete.light": "S:b09868557a5a227880f8465d24c20a161fd22379,", + "ui.component.stepper-item.border.default.light": "S:e072bd569acb2f47a6b840efc6dfee0c0bebc0e7,", + "ui.component.stepper-item.border.active.light": "S:8903b1019981844e219ad8fdc7e4cb4f61e86819,", + "ui.component.stepper-item.border.error.light": "S:435d1db55ba39c26cbd8e9cbaad2aa5d6f31a980,", + "ui.component.stepper-item.border.complete.light": "S:acdba13235a3ce163dcd6a79037b6a916fae9a46,", + "ui.danger-hover-dark": "S:67a8c75368cdc5a9effa6f9c95941027bb2c055a," + } + }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "calcite/dark": "enabled", + "component/accordion-item": "source", + "component/accordion": "source", + "component/action-bar-grid": "source", + "component/action-bar": "source", + "component/action-pad-grid": "source", + "component/action-pad": "source", + "component/action": "source", + "component/alert": "source", + "component/avatar": "source", + "component/block-section": "source", + "component/block": "source", + "component/button": "source", + "component/card": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/color-picker": "source", + "component/combobox-item": "source", + "component/combobox": "source", + "component/date-picker": "source", + "component/dropdown-item": "source", + "component/dropdown": "source", + "component/fab": "source", + "component/filter": "source", + "component/flow-header": "source", + "component/input-date-picker": "source", + "component/input-datetime-local": "source", + "component/input-email": "source", + "component/input-file": "source", + "component/input-message": "source", + "component/input-month": "source", + "component/input-number": "source", + "component/input-password": "source", + "component/input-search": "source", + "component/input-telephone": "source", + "component/input-text": "source", + "component/input-time": "source", + "component/input-week": "source", + "component/label": "source", + "component/link": "source", + "component/list-item": "source", + "component/loader": "source", + "component/modal": "source", + "component/notice": "source", + "component/pagination": "source", + "component/panel-header": "source", + "component/popover": "source", + "component/radio": "source", + "component/rating": "source", + "component/scrim": "source", + "component/segmented-control-item": "source", + "component/segmented-control": "source", + "component/select": "source", + "component/slider-histogram-range": "source", + "component/slider-histogram": "source", + "component/slider-range": "source", + "component/slider": "source", + "component/split-button": "source", + "component/stepper-item": "source", + "component/stepper": "source", + "component/switch": "source", + "component/tab-title": "source", + "component/tabs": "source", + "component/textarea": "source", + "component/time-picker": "source", + "component/tip-manager": "source", + "component/tip": "source", + "component/tooltip": "source", + "component/tree-item": "source", + "core": "source", + "semantic": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202,", + "color.component.radio.font": "S:28367cca73d3c156bac98b8a1301c03133aa602b,", + "color.component.radio.background": "S:685dc063b371b9d8d58b9232e00a9e50d63bbd8f,", + "color.component.radio.border.unchecked": "S:f16a1ea9e4cc252f5fe368f0c4d259130c37a8ce,", + "color.component.radio.border.checked": "S:2c8b7f4025cd54659d9fec4373d5e25906ce8927,", + "color.component.chip.font.clear": "S:82e2e52caeab327eb3c1faf012a372a746948aa0,", + "color.component.chip.font.solid.grey": "S:37523ddbb8699c51bc212d5a8ae22a60f3db7227,", + "color.component.chip.font.solid.blue": "S:83017e42f4e22a9225765c9517f6c00b0d41e3af,", + "color.component.chip.font.solid.red": "S:33d35beefdc46bf3f0d865f538e20936aa497881,", + "color.component.chip.font.solid.yellow": "S:b211e1022e6b8416fd17c9b60563c26cfcf820d3,", + "color.component.chip.font.solid.green": "S:c8c8f5ce4bb6b1d0e91ab2e9255f50addcb7346d,", + "color.component.chip.icon.clear": "S:ddcd5912435ca0e39810ad6a69282de28631fce8,", + "color.component.chip.icon.solid.grey": "S:5a8848133b2e0c677661f4837b6d0878ff73e9dc,", + "color.component.chip.icon.solid.blue": "S:b9d0fc946e276056c493e2856c3f77bc424a7e49,", + "color.component.chip.icon.solid.red": "S:690f5bfed99621eb36f8e6fe069c3ce80ed1ab77,", + "color.component.chip.icon.solid.yellow": "S:f5d816446db2aa49e1c7c6d67217ac6b27908afa,", + "color.component.chip.icon.solid.green": "S:2174ecabcb3895263247165a2f12a21d3f712912,", + "color.component.chip.closable-icon": "S:93f7ba7fdcf9c61dd383645ffc3d05d5da3b5080,", + "color.component.chip.background.solid.grey": "S:29e55875055a1a4b7d22a1231dc79eafe135b9b3,", + "color.component.chip.background.solid.blue": "S:3eb5dda1dc28795b8d94b897bb0b684ea475fd29,", + "color.component.chip.background.solid.red": "S:a0dc90c6bcc70c8e6eca1a33d0ed93a2d8d1b1b0,", + "color.component.chip.background.solid.yellow": "S:b2d4082f2d28056182e04f00fa2acf73dbcc3d85,", + "color.component.chip.background.solid.green": "S:6b9e4f9854fa13ad688bc534429e68281561cfd7,", + "color.component.chip.border.clear.grey": "S:364b4ed6969619a21c19f975ed62584aa14fa666,", + "color.component.chip.border.clear.blue": "S:afd0add3ded3e0330e2dce4336b3d3f7025438bc,", + "color.component.chip.border.clear.red": "S:f3e723d0326816354f02220e19b0ff9a0ddf6fb7,", + "color.component.chip.border.clear.yellow": "S:9002906e4f7a157b1254adb9fa5c50b838254720,", + "color.component.chip.border.clear.green": "S:c1961f02d925e85abb3f7cd0d207986707cd5a1c,", + "color.component.label.font": "S:b4e0e68c6c23df8fb865b29e5d14a008b0a02728,", + "color.component.loader.font": "S:d62b208187740cc61a07579cc8f2380c7c638554,", + "color.component.loader.default.foreground": "S:cc65fb1fff3bd373fe7d17f48355a9771bfe13c9,", + "color.component.loader.inline.foreground.indeterminate": "S:beea9a55dd607d8d49b71a6ff25ada827db4bc0d,", + "color.component.loader.inline.foreground.determinate": "S:9cb29760c84899ae7ed17fbb1dbe9a8cba18b990,", + "color.component.rating.star.background.default": "S:8b34a162f4b45b935e7a71241ffc3fe4d600d31d,", + "color.component.rating.star.background.active": "S:f467e80f60e3308e11fb49ed2b19117d0a598434,", + "color.component.rating.star.background.average": "S:53ad72fb051908befe6881225d2500ce73d9346f,", + "color.component.rating.chip.value-text.font": "S:8de25d50497e356e1034b8eb15771e1d489a2687,", + "color.component.rating.chip.count.font": "S:76095738a949ccb77e1b2b887484a92c00703180,", + "color.component.rating.chip.foreground": "S:2c4cedc4ef7cee78326e34d2a99d64f61e87299d,", + "color.component.tooltip.foreground": "S:ea78e0278626b595d9bd8ff070e9fdbd089a594b,", + "color.component.tooltip.border": "S:a653ed836362fa7cbb8927da570562871187d6d6,", + "color.component.tooltip.font": "S:31a865bdddc9246c165026e9316e4351abe70149,", + "color.component.accordion-item.font.heading": "S:f6a7ceb45dc523ad8c267ece146ae767ed3d3bd6,", + "color.component.accordion-item.font.description": "S:7f3c0b94e29829b22536b3e1b4a120ae64f2e52a,", + "color.component.accordion-item.icon.default": "S:2ab111c59e92fbe87aa3a31f7c8eafca04c348f7,", + "color.component.accordion-item.icon.expanded": "S:297d5150a52d1c40e79d375ed7cc4227bbea7c50,", + "color.component.accordion-item.background": "S:f33afd73daca2b1707d66711afcf22bef6b8c052,", + "color.component.accordion-item.border": "S:dcba1d58e8c8b966e5c56fdfc46599a21b7f4c8c,", + "color.component.input-message.font": "S:6d4ddfad1fa9e367f9d3fb9fb2c61e48904f2c48,", + "color.component.input-message.icon.idle": "S:763e7e66e2cbe4dee7d5f47e841ab4847d08ee5a,", + "color.component.input-message.icon.invalid": "S:ee291b1e3592cf175f3ab22c1aeb4de4074acff8,", + "color.component.input-message.icon.valid": "S:6e2c602895be9baf7739eafffb4af4f100aac4a3,", + "color.component.alert.font.title": "S:3fe992b4776b7b498a35470e91a6a15e59715e79,", + "color.component.alert.font.message": "S:56ce688122e0f8961c2b08b60be9dbc4e5c3fea6,", + "color.component.alert.background": "S:ea7479a9d45b3b59c24971e380da7bb66a818b0c,", + "color.component.alert.border": "S:b13075aa87a5bda465c79f50d04b62ba3cd5308e,", + "color.component.alert.icon.blue": "S:553582caa5cd81f8c24b65e74a4d92a949b1dee3,", + "color.component.alert.icon.green": "S:14a72cac5bde15b49127d6a65c762c5744026ecf,", + "color.component.alert.icon.yellow": "S:27d0a984f07861ea57e78a4491db12feaa29ef9d,", + "color.component.alert.icon.red": "S:3d9465c857cfe8ddb6bc72d0deedf6702ae50d6c,", + "color.component.alert.highlight.blue": "S:af42060d4b3a1d838c8d43cfbc779785048e88b4,", + "color.component.alert.highlight.green": "S:a6d7b79458245faf37cb4f9661c86c7e3aaad526,", + "color.component.alert.highlight.yellow": "S:44728da690f1d8815638c7cca9e21e9ff37545ea,", + "color.component.alert.highlight.red": "S:84d71fce7deabd5b8499eeb2950f5ba9497b25b5,", + "color.component.color-picker.font.label": "S:ae00cde6a8f341514914c599f73def1510d5675d,", + "color.component.color-picker.icon": "S:3d38013a329c613fd4b64473d5eaba50697f0f15,", + "color.component.color-picker.border": "S:c2683963a67628dd633cb5ed2cd4a623244b9f90,", + "color.component.color-picker.background.default": "S:41e8da24d42dff3d9b697ac0354cf6d5e9dc1493,", + "color.component.date-picker.font.date": "S:ecd7e4b30e4a787c688f08c58fc3f905d3f7f219,", + "color.component.date-picker.font.day": "S:ff811d0c255d3fd3061b1ca232eafaa199132cb3,", + "color.component.date-picker.font.month": "S:2c14af60350c9d07529ce000c430a9efd6f0f373,", + "color.component.date-picker.font.range.date": "S:dc490f031a3a55974fbafea34311c6dd81ef562c,", + "color.component.date-picker.font.selected.date": "S:ec1c3fd78661afe8ad4dbff3074f452601841a84,", + "color.component.date-picker.font.active.date": "S:703b8f7a7e4eaee282b2b53dc721493883efec59,", + "color.component.date-picker.icon": "S:276587829a546542a2ad54b2cc09582d2f8e0b1c,", + "color.component.date-picker.border": "S:0a8d6f6c02617c5a98aad0195be1d3c542497194,", + "color.component.date-picker.date.active.border": "S:eba437115f16d03a200cd8e796e8a5d1c4ef08d8,", + "color.component.date-picker.background.default": "S:863d8699a17624c25a7f28071e68f23f26b9174a,", + "color.component.date-picker.background.date.range": "S:63a658f6dd1079b658f2ca634503a742dc379e19,", + "color.component.date-picker.background.date.active": "S:6c84995570a9ef51d154eb4e1f3ddf333a96546f,", + "color.component.input-date-picker.font.placeholder-value": "S:5edf7873a5256c11377903deba8fc7a0419eb66a,", + "color.component.input-date-picker.font.label": "S:933961a00c061377cc8c11f1ab44a5d0a46998f5,", + "color.component.input-date-picker.icon": "S:224d5ad2aa497ddd44589637e1586b718261fc84,", + "color.component.input-date-picker.border": "S:579a7cf0b825ff7281678924add12c1da7806041,", + "color.component.input-date-picker.background.default": "S:d41981a3b8893551c3c1bf9358533ddf8bbed8fa,", + "color.component.input-date-picker.background.arrow": "S:b32f6d9a140dc1dc7c7886edc8c541441123e8e4,", + "color.component.input-date-picker.background.read-only": "S:61192eb951c1661598c2ce2ae314fdeeb2e50fe9,", + "color.component.input-datetime-local.font.placeholder-value": "S:11caa4b6bf2f7607a508c791cd3193c81f70fd20,", + "color.component.input-datetime-local.font.label": "S:e659063659df79fb526f524ce4fb590a40dff397,", + "color.component.input-datetime-local.font.prefix-suffix": "S:d5454374407acacfbf49c9f01e309d28d6efee32,", + "color.component.input-datetime-local.icon": "S:27e85f23e9100734c12ba3e7cf6be60bcb43a00e,", + "color.component.input-datetime-local.background.default": "S:d4b4814e6c3f5feeb88f75a278813a820ffbfeec,", + "color.component.input-datetime-local.background.prefix-sufix": "S:376c73231137df2cae694e87ee73c3c9240ac213,", + "color.component.input-datetime-local.background.read-only": "S:db9f5f33469731e38a61c451d4365d802b84f24b,", + "color.component.input-datetime-local.border.default": "S:8c63a9c9c1bb78ddd3d2446a0e1d4bb2b459eee8,", + "color.component.input-datetime-local.border.invalid": "S:7157e8ecf2fb43679e8ba98224bc96d29710eeb9,", + "color.component.input-email.font.placeholder-value": "S:c8ec4f1140efdc064b547f3a1120f17bc9c5c5e0,", + "color.component.input-email.font.label": "S:e2efb919bfd6c18c3d8399b8cd0a43664fb15ca4,", + "color.component.input-email.font.prefix-suffix": "S:56fe77d37c0d635056dda4fadf95b9721af96f98,", + "color.component.input-email.icon": "S:686446981d7fb411b027bbec1a47fb9bbb1bbe06,", + "color.component.input-email.background.default": "S:89408bc79c1cb8fb073b4226346967e4c9a5a568,", + "color.component.input-email.background.prefix-sufix": "S:a4aaa81ba1e957ad240872dedfc70c7c86524fc5,", + "color.component.input-email.background.read-only": "S:9c594798596db12a89fb47ed0a3301287bf7e849,", + "color.component.input-email.border.default": "S:c789828b3202e7bbd3d09e2375bacf337d1f4e21,", + "color.component.input-email.border.invalid": "S:fb22e8db8e157fad52330746a932b74bb891115f,", + "color.component.input-file.font.placeholder-value": "S:6cc4765b7edba0df0119ea4f6e481dde602bb346,", + "color.component.input-file.font.label": "S:becf50bac6c8151409468da9ad0c41509ef3e1ba,", + "color.component.input-file.font.prefix-suffix": "S:1b98997abc18e919b7b88004cb45ab9ec68074be,", + "color.component.input-file.icon": "S:08e849b3577741c4d0f5b14b570b3dedd0409ae0,", + "color.component.input-file.background.default": "S:90bc55b0c0eac769b975310cbaf84bbfe403ef18,", + "color.component.input-file.background.prefix-sufix": "S:9af88d8b9bf8c5fd63e5557afa9f03358ab23432,", + "color.component.input-file.background.read-only": "S:51bb552cbc7b9a3e2ad8dea746ae4074910ae0e1,", + "color.component.input-file.border.default": "S:716fda3caa1dd63980435252f94965e8ebf4352d,", + "color.component.input-file.border.invalid": "S:129378eb8acdb34dc0499977d1e6f5061b9ccd7b,", + "color.component.input-month.font.placeholder-value": "S:31c69f501d49f7bc5589a6757367d48516491915,", + "color.component.input-month.font.label": "S:37353b65c15c9d02899c1620d21d28756e2e90ee,", + "color.component.input-month.font.prefix-suffix": "S:e2d806652a25ae5d2737d4932c83826ea94db95f,", + "color.component.input-month.icon": "S:f51e98513a30af39a2d003314fc2a9c55893f0d0,", + "color.component.input-month.background.default": "S:6687ac9d177c478619fd9545e6816f1629ce96b7,", + "color.component.input-month.background.prefix-sufix": "S:292c4c830a2d92f3ce4deb2d6b43b732f94a704c,", + "color.component.input-month.background.read-only": "S:dc93eae3ed727b01f9539be8c9ec03bb9fe58046,", + "color.component.input-month.border.default": "S:4f61e39454e82f3a42e8212dd397300956a696f4,", + "color.component.input-month.border.invalid": "S:1c9690d175f0b2cb76ff5544e1d0ea1128906eba,", + "color.component.input-number.font.placeholder-value": "S:f284516bf010fe8c94cecdd268fb3f0fb4c8cb3c,", + "color.component.input-number.font.label": "S:ab48c32a7915afcebcb11754266cb29fec0c8ca1,", + "color.component.input-number.icon": "S:504b31c0b16c3dd61c5ab8900cedf8e692a7ff74,", + "color.component.input-number.background.default": "S:904fdd03c036cd15598ae9787496db66569049b2,", + "color.component.input-number.background.prefix-sufix": "S:1468d63ae8c04df44cc0da994f39031f039d1d8e,", + "color.component.input-number.background.read-only": "S:d724df13e46bf81c5c3fc5b7616e772d75d9a783,", + "color.component.input-number.border.default": "S:cb11ce8ec7145a057972c04ea151cd1898f47629,", + "color.component.input-number.border.invalid": "S:67a8bc93e9867a69a58f95bf123186922e0d0202,", + "color.component.input-password.font.placeholder-value": "S:7e3cda5b0854795861a55eb1cede7aa767bac790,", + "color.component.input-password.font.label": "S:460c4251d3df389f478b2f52c4245247ffa35faa,", + "color.component.input-password.font.prefix-suffix": "S:0b9eee41b5d2e6969ebfec062f15553b98348624,", + "color.component.input-password.icon": "S:30bbeb9fe38e622ef4e395dd6e538dd4015a6d5e,", + "color.component.input-password.background.default": "S:4ff277c156a53608fc13f4efb9786e11a9680784,", + "color.component.input-password.background.prefix-sufix": "S:0e07cf212380e510a3ee75f6ce1cc34251471bf8,", + "color.component.input-password.background.read-only": "S:f72baefca07ed3a988ceeb37220c35cb8a346fea,", + "color.component.input-password.border.default": "S:30ec1938415d8cab48bfb8685e0ad3e3261f9efe,", + "color.component.input-password.border.invalid": "S:275a948863aed5a876850f65a8b4e41a88562620,", + "color.component.input-search.font.placeholder-value": "S:e44422fba65b0b4cf34779e0d83cf73bce3c6838,", + "color.component.input-search.font.label": "S:4d8e74b2652d43452ed766abb39dbd0ba7b5e8c2,", + "color.component.input-search.font.prefix-suffix": "S:c79aaa3d62acd70f718dc80d3b57db0b6b735d6d,", + "color.component.input-search.icon": "S:f248eec88bea03299449cd6911ddf0d5d2d02c15,", + "color.component.input-search.background.default": "S:c5e1490180a318e0482da2f401064044f4fcb6ed,", + "color.component.input-search.background.prefix-sufix": "S:2a8f333cc4ab06628d2532537f122b2201a875be,", + "color.component.input-search.background.read-only": "S:9e43d25b6a4cabab8534ef1a9c56aee0a2cf4da4,", + "color.component.input-search.border.default": "S:508529ce76c68340f2438dc73ba2161a9d7e5b4e,", + "color.component.input-search.border.invalid": "S:168db285acc469546e2dd3fda9830970dca72ea0,", + "color.component.input-telephone.font.placeholder-value": "S:80e113e120d3ab21516053df1478e7f3eba1016d,", + "color.component.input-telephone.font.label": "S:52a8d4d761df2a719ed6fc8137e6ff7b9a288ba3,", + "color.component.input-telephone.font.prefix-suffix": "S:73a9f6f0d216faa2355108da1f98e684f8531978,", + "color.component.input-telephone.icon": "S:fcaea19392582be1e983877a52babccc8af39361,", + "color.component.input-telephone.background.default": "S:199cf956a41f1acc4024b49781d834029a1e689c,", + "color.component.input-telephone.background.prefix-sufix": "S:d96c0b8bb94cb1a1dbbc89f6a3075765cf59760f,", + "color.component.input-telephone.background.read-only": "S:7324c2fc4154e10bbf29769cb56b59518fe85397,", + "color.component.input-telephone.border.default": "S:9ea4b66309f342a90c9d045ae2cc30ccbac5d841,", + "color.component.input-telephone.border.invalid": "S:a5e325e6391431f3fda3ee72048264978d993afb,", + "color.component.input-text.font.placeholder-value": "S:b848d034f46231b6433743e958f334cfb1683358,", + "color.component.input-text.font.label": "S:8ec7a538918197d146d0790d0bf2cfd457fa4792,", + "color.component.input-text.font.prefix-suffix": "S:5933daf6ec40e5bebbafd267c1beb86ac99bdbfb,", + "color.component.input-text.icon": "S:9d63b96ad2fa40b81e07c8f24374acc796846b3a,", + "color.component.input-text.background.default": "S:fcdf2c58534792c41b48483ea5b6d0d6d1360336,", + "color.component.input-text.background.prefix-sufix": "S:ce719064951b9fba6a110a0316bbf2f0291efae5,", + "color.component.input-text.background.read-only": "S:d5afc1545959fc24f56667a6820a4bf9f362e23d,", + "color.component.input-text.border.default": "S:9c3d227902f790faa4aaee759ce3e3b2e57a0193,", + "color.component.input-text.border.invalid": "S:66d6331a0abb39375e90d960b1457bfe49c85c88,", + "color.component.input-week.font.placeholder-value": "S:2b968b4e738bcc9e1bd54ac707c193b35ea0313a,", + "color.component.input-week.font.label": "S:b026be6ea5726a437f285db5aa9e715c7188846f,", + "color.component.input-week.font.prefix-suffix": "S:8fd34fe54d379a8872d2c402e16131d48cd0de5a,", + "color.component.input-week.icon": "S:9f87d63dcdb87de433866898e1813a5e61115391,", + "color.component.input-week.background.default": "S:2e7b4bf2595839a8c285334b58e727d71d7a06c7,", + "color.component.input-week.background.prefix-sufix": "S:573ca758f96c759c6d65b4cf3acd47deda9ea8a7,", + "color.component.input-week.background.read-only": "S:233bd34a25bc7e103712af9c08227d6ad1c71090,", + "color.component.input-week.border.default": "S:60b0c4c7ccfb8c3f6cccb1f51dd0cbb761896f24,", + "color.component.input-week.border.invalid": "S:83c5ea6783335164d5d309e63a8bcb3874abbbed,", + "color.component.textarea.font.placeholder-value": "S:abd7ffdd16b69f78421bdebe488f550304f748e7,", + "color.component.textarea.font.label": "S:2e04dc92a8b9fb56b376a27af36f8114c33b168d,", + "color.component.textarea.font.chat-limit": "S:9eebc1ae3b8311932f52bb77da325913dab7fd4f,", + "color.component.textarea.icon": "S:b10036f31696035040f81a4d488c3f73429fc0a3,", + "color.component.textarea.background.default": "S:06bb99c409364198a7b44ac2a79e46a3c9b10170,", + "color.component.textarea.background.read-only": "S:13598ab71b7f5cafc677b0752ed71acc31e9f1a7,", + "color.component.textarea.border.default": "S:2d5deb78b4ef6b945fa79d2e4ae63a7df57c6cf7,", + "color.component.tab-title.font.default": "S:51a13105951132a602cd8ea92f5f6660001c152e,", + "color.component.tab-title.font.active": "S:24ffb4e8c673c4a0975b128edd256025235e6f02,", + "color.component.tab-title.icon.default": "S:c92f59f139b1fa761d47f9780ba734135610287c,", + "color.component.tab-title.icon.active": "S:d23bbe84b72209e72d3bffd83ba8c5eea9a4b9a8,", + "color.component.tab-title.bordered.border": "S:58e223f1e372de01adf0c114d01bb21222f354e0,", + "color.component.tab-title.bordered.background.default": "S:21733973d73eabc52b32dd4603cf7a16887ec07c,", + "color.component.tab-title.border.active": "S:6d089d948aabcf507143c09f8a108979a3ac65d7,", + "color.component.tabs.bordered.border": "S:de2e8e0fcda90e018dba60fc37014c6f04e71eeb,", + "color.component.tabs.bordered.background": "S:f1bb825f8844179016903c3c69c565e4a721a17d,", + "color.component.card.font.title": "S:a43a65080a8f7d5da812f5775769493ed8d597e5,", + "color.component.card.font.subtitle": "S:2fbc04143f8d3ff24477b04cfc1e44625c4c074f,", + "color.component.card.font.description": "S:a16ce0dd8af4c77abccfed39320ae326768e3131,", + "color.component.card.border.default": "S:9e96eee68742532d4e5b141545380adcaf2f0946,", + "color.component.card.border.active": "S:a96ac3bb58cfc04d3571acdb1ab5d3a6e5892b14,", + "color.component.card.background.default": "S:4dc0ac9a57f1e229038b446be185e8fdb3efe855,", + "color.component.action.indicator": "S:5a15770844f7a54ac6825289622653c50f5bfbd5,", + "color.component.action.font": "S:2876f8d34ce69935169b30b798782943060395fc,", + "color.component.action.icon": "S:1518f73de3c2da14cbff2f4994b1e9d0d790ffb1,", + "color.component.action.background.default": "S:cb84f81e286ba7c4f99b2ced2d36f380af60b328,", + "color.component.action.background.active": "S:22281cee725d0c5ff593194e117555e819017308,", + "color.component.action-bar.border": "S:14d48c0de4971311289428040f3acc6d61b4d01f,", + "color.component.action-bar.background": "S:e0c9682c69d4f890f51dca5c86601faad089a085,", + "color.component.action-pad.border": "S:074f8ba3c95f32b46a6333154011cb22319292ef,", + "color.component.action-pad.background": "S:e80d6232b7dc41ffcc81333cfbfc06fe3e40f899,", + "color.component.action-bar-grid.border": "S:e18d68e254e09e34299c18eaa726177fa1eba56a,", + "color.component.action-bar-grid.background": "S:11502ccbbd7429c4d8e65299a4d15e4cc30aff4d,", + "color.component.action-pad-grid.border": "S:7931cbf77ed027c33340059174c246c48df2c6dc,", + "color.component.action-pad-grid.background": "S:131b9e47a94634a9aae36084a84646e4a47c767b,", + "color.component.block.font.heading": "S:c373cf00b3b7ce8964c707d6772c8e25a813b81c,", + "color.component.block.font.description": "S:eb7975992158fa32ed7d08e0306ecef727caaabb,", + "color.component.block.font.content": "S:bb5cac9046caad7c00b1bebc1cd2af98eba59974,", + "color.component.block.icon.default": "S:59cb3b068269ac4615b0afaef42a2de3cdfbdcb6,", + "color.component.block.icon.active": "S:0706cb0626eabcf9447cb2a2ba5813431f760d8b,", + "color.component.block.icon.idle": "S:76fd50fb2e80dbadcc1bc34e1d60e6e406b7d9b0,", + "color.component.block.icon.valid": "S:ad47ebd8e8b2a65d3191037a454f28d0e1c35138,", + "color.component.block.icon.invalid": "S:cbddaffb2bbf91cea5cff6dc5328e9b5fc913747,", + "color.component.block.icon.drag-handle": "S:a15dc3b92e506af5ac3259a6d3d0d31b2721622f,", + "color.component.block.icon.chevron": "S:69b9693c02a1a7b1c6ec1d9a7c8f806f619421fb,", + "color.component.block.loader": "S:af32fb7c2d2ef6f2eb3e3833a5d176e3ac540b4c,", + "color.component.block.border": "S:11d9a6085303dc0172cfec0a9493f25b3eaf248c,", + "color.component.block.background": "S:3fdea37fd38291aab1875fa1413da7502e81ddb0,", + "color.component.block-section.font": "S:7749b05108c7d1a83f435f93fd72a85ef76ba1a6,", + "color.component.block-section.icon.valid": "S:94a134ac8992df7b6dde842dfc6d114dc5bd070d,", + "color.component.block-section.icon.invalid": "S:1b50f5dc91213c90ceef687f36cc66bcef493693,", + "color.component.block-section.icon.chevron": "S:450d6bf44bfaf913b2cb086ec0d884f11e333f91,", + "color.component.block-section.background": "S:56ceef6ed6774a457b565526a91525d94ecda8ca,", + "color.component.notice.font.title": "S:92ed6304659d0ef6129050e4ba9403040ee9ad1c,", + "color.component.notice.font.message": "S:b695ae4933ed00b9cfdc1149e22506ee1adc9ff5,", + "color.component.notice.background": "S:ff0ac8e3fa4fa8a33b7d0175431454889d5f2ca3,", + "color.component.notice.icon.info": "S:50c19167e302f02c25d98dacd0fa1e0d78601102,", + "color.component.notice.icon.success": "S:31c21c8178d0e8c5ef46363fe75bd0696842222e,", + "color.component.notice.icon.warning": "S:3dd1752b143ba8ac6cc2d5d2aaf523e5de625de8,", + "color.component.notice.icon.danger": "S:cb4679eb6d61fdbd7b0e34891884bcf809cf545a,", + "color.component.notice.icon.brand": "S:95075947ae16b72ebb80239f134acd5c23e58a50,", + "color.component.notice.highlight.info": "S:e6e39dfc36aa43cd367ae978b980a191c13c1f70,", + "color.component.notice.highlight.success": "S:6a0a2ebffa34f004aa0f14e68caf31adb4258db2,", + "color.component.notice.highlight.warning": "S:849548d37351fe7788c14ff2bf47d5b7279a83c7,", + "color.component.notice.highlight.danger": "S:e5c621c23915ca660972e07c6a46ae1f70c11386,", + "color.component.notice.highlight.brand": "S:923189154b0f6650b1d21238836b8e3ce80c97ae,", + "color.component.modal.font.header": "S:8d00ad8b84bda4b85bca281cc7dda65bf07dede0,", + "color.component.modal.font.content": "S:21c10b798bd49c018ae3d9321181856e8a01fa9e,", + "color.component.modal.icon": "S:fb7104156857085d750dbff1e8429d020ce348f9,", + "color.component.modal.border.default": "S:71d63cc28db7343c08f1e7b5ce4749bc0e934d45,", + "color.component.modal.border.top.brand": "S:2260a8b79dd5d65b07c9db524086ba1c1c337429,", + "color.component.modal.border.top.info": "S:d45209f66ffd9dd84678e200b4163b212d72bac5,", + "color.component.modal.border.top.success": "S:b3ed19a82ccf3b2e713a54cdd70710f8b895c914,", + "color.component.modal.border.top.danger": "S:05edeee87701b5fc58df98360a414ce4766fa088,", + "color.component.modal.border.top.warning": "S:e0ed21a54c08efe2b1f30231a0dab6d311119d9d,", + "color.component.modal.background": "S:7331f4eedeb99bd80dcc0324fd1f9bfec86118f4,", + "color.component.panel-header.font": "S:b1b620f465fa98e58ee481d26c73f5fcd195f4e3,", + "color.component.panel-header.icon": "S:7862539d74302db1a0cd25b3c2f55029a318ecda,", + "color.component.panel-header.border": "S:4d4469498bccdd9e7dea802cebaa49c3b3b56e71,", + "color.component.panel-header.background": "S:befcd1d230ce5e4c570cdbcd5a95b293af3491dd,", + "color.component.popover.font": "S:0992a5f41edd4ffc8584b2bef129cb27b8969b70,", + "color.component.popover.icon": "S:6149cb77a9fa6ffa8c04a630d58de570baf68450,", + "color.component.popover.border": "S:d080807f32ee0ce0b2c9435740ae0dad73d55f18,", + "color.component.popover.background": "S:da438c74ab4933789aca4d641d847eb7381f7462,", + "color.component.slider.font.label": "S:1214330733e082140294a10bf1d7756e300542d1,", + "color.component.slider.font.tick-label": "S:3633ba6964eff2b832f99c52669245eadd32c66e,", + "color.component.slider.handle.background": "S:71be37ed2e8d2967178c415cce58967df531ea85,", + "color.component.slider.handle.border": "S:04149de4543c2ee38b5cb3cadfc6185733844eb7,", + "color.component.slider.border.default": "S:356e7bea2cfb543c6fe0b3d8958310212034a15a,", + "color.component.slider.border.active": "S:0960863f2dc7fd67280a82e88c3de2d60055b2f1,", + "color.component.slider.tick.default.background": "S:92d824ad9ecc032a3be1c1e9bd1a2b066f01f969,", + "color.component.slider.tick.default.border": "S:966ccad2ee0a7e564eb8fd81e4f1b36b5ad46783,", + "color.component.slider.tick.active.background": "S:a66878a140ce320e8995da0815772ce6dc6b30fa,", + "color.component.slider.tick.active.border": "S:36bccf2efacff68e8c5a3ea29ab2e21fcb24065c,", + "color.component.slider-range.font.label": "S:566472d6d1fd6905c642591a5487b891d3bb9178,", + "color.component.slider-range.font.tick-label": "S:6cb75ed2e3e6e98a3bced7f7c8fc7404a3e7b635,", + "color.component.slider-range.handle.background": "S:a5284d1faccc362d2515e6e56b96a0db5ed598cd,", + "color.component.slider-range.handle.border": "S:97a204ffc278abd33ce910edd3afd956dab1f09e,", + "color.component.slider-range.border.default": "S:d764ccfdb095baa8007e49712bbcd469326fde4c,", + "color.component.slider-range.border.active": "S:161b701c0fefcc0f258a5ad8f7a6db72ac2edc20,", + "color.component.slider-range.tick.default.background": "S:cdd25d7543be8deb0b8fa7e484f55d1edac31e0e,", + "color.component.slider-range.tick.default.border": "S:f52511564f711938c347161a7f2a927f794ec914,", + "color.component.slider-range.tick.active.background": "S:d7b9b249653fb1d0cad6005802fabbca889ced89,", + "color.component.slider-range.tick.active.border": "S:4537295c3af08dbf1365dde8f690ea810ded09e1,", + "color.component.slider-histogram.font.label": "S:b9d25b08bb31f04d0ce091b6b7dd10dbd4ec11b4,", + "color.component.slider-histogram.font.tick-label": "S:9ee9e4a034ddc813056173cce7ada4ca361289eb,", + "color.component.slider-histogram.handle.background": "S:d08a29051e6d892f9de1186d43c4660730362f47,", + "color.component.slider-histogram.handle.border": "S:e8850bc33691b63a04b63e67dda3f52c920b1a13,", + "color.component.slider-histogram.border.default": "S:0223d4c97175e828db89196a2cd670ca6d1a76b4,", + "color.component.slider-histogram.border.active": "S:82b024647b61dc5ad283d9d5eaeb51822bf2b33e,", + "color.component.slider-histogram.tick.default.background": "S:de0a23772f2e807f21ccdaa8e3f1c475589cfeef,", + "color.component.slider-histogram.tick.default.border": "S:51535ca7754073f5220a3064ede0f891cd8802c2,", + "color.component.slider-histogram.tick.active.background": "S:77e7d74f101fb6a4074f94044ae436552182926f,", + "color.component.slider-histogram.tick.active.border": "S:55277a6ac35783654d60a9c0fbe161146c856de1,", + "color.component.slider-histogram.area.active.background": "S:f44f588f048a77d5f1637adc19d959cdf4532f25,", + "color.component.slider-histogram.active-end.background.dark": "S:5e3fbef5136b0338db1ea87c19c8085db593d741,", + "color.component.slider-histogram-range.font.label": "S:c12bbe0653f373e709f2c10eae450792f9b0ac46,", + "color.component.slider-histogram-range.font.tick-label": "S:6c3b2f19d8ba57288bcf39038d75d2511eee68ef,", + "color.component.slider-histogram-range.handle.background": "S:2df158326948f8ac42362dff5e31db9af1b7ecbb,", + "color.component.slider-histogram-range.handle.border": "S:a9f796afff7a4cb274c3d0a2b9c93e56709253bf,", + "color.component.slider-histogram-range.border.default": "S:e14fa4dcc33fbeed35b1e6622fa833e604f4d183,", + "color.component.slider-histogram-range.border.active": "S:9256ee5bf9bd9374da39b53a027b206a00164a69,", + "color.component.slider-histogram-range.tick.default.background": "S:ae9ae4322a5a315257d5b8edf0bdb869444df70c,", + "color.component.slider-histogram-range.tick.default.border": "S:e9c227991ebbbb7815ff6b44063d6e7bde5bc489,", + "color.component.slider-histogram-range.tick.active.background": "S:a8442695edefa89bff9536ecb818fdf2c4279ef5,", + "color.component.slider-histogram-range.tick.active.border": "S:6ed916d0c5e550f7bc739b106437a9ce43f9f5b4,", + "color.component.slider-histogram-range.area.active.background": "S:00c9fff6c5c77497e17027c228ed5ee8b22a95d8,", + "color.component.slider-histogram-range.active-end.background": "S:f65c4a92b104c0f5f1bc9d8cf38150661ca3a931,", + "color.component.filter.font": "S:d276f3d2c4ee22ccf4c569c4fde8c58486e59199,", + "color.component.filter.icon": "S:ffb8503a521fb14ac0e8e7ff13fd296323d818eb,", + "color.component.filter.border": "S:fee18a8e6036a84234ddfa977717e6ba72e9a92f,", + "color.component.filter.background": "S:465cc9122b176ab1029340c990662c577af04342,", + "color.component.scrim.background": "S:922a92c205bc35e5a730ca48f93783419e023ba2,", + "color.component.tip-manager.font.heading": "S:0fd4726103f275c1dc68f9bd4b770365dc6b25f8,", + "color.component.tip-manager.icon": "S:9253bbe25d84394b6b34999a1e58cc37c369f40c,", + "color.component.tip-manager.background.default.light": "S:59590700d6e19cf81dd323972f00881394cf9235,", + "color.component.tip-manager.border.default": "S:c6d32577e412efc77dce583fd63c5b4abc4e0301,", + "color.component.button.font.brand.solid": "S:3fe82dc072ada61b96bb07b9d8c4cb1c538e6032,", + "color.component.button.font.brand.outline-fill": "S:37fc3cd1e7fe01f66e66241973596a943725a8b3,", + "color.component.button.font.brand.outline": "S:85b122326fdfae7e82b16b65124a81d0c14ddea9,", + "color.component.button.font.brand.transparent": "S:74182b37a887ce44777762d08013678dbf20f16c,", + "color.component.button.font.inverse.solid": "S:b629e9f9cdc9f900e2cdc1307d133f4cbb4ae151,", + "color.component.button.font.inverse.outline-fill": "S:5f31156046b8f9bc8848162d8ad6832c2ca00bcb,", + "color.component.button.font.inverse.outline": "S:f7c8cd89a1ae352d1b8992d2567dc90307d1e5a8,", + "color.component.button.font.inverse.transparent": "S:ca0f5e4b1ab6a039ba170fc00f3e4838046e81f3,", + "color.component.button.font.neutral.solid": "S:f4dfaf687306973fca333fa36f84cff1bf929894,", + "color.component.button.font.neutral.outline-fill": "S:c4c31c170de7b853c976167ad1e2f76c04da1a18,", + "color.component.button.font.neutral.outline": "S:71d3a48828798aa91a5666b52c630ac54e212b1a,", + "color.component.button.font.neutral.transparent": "S:a3ce00145af80c51f9f4501921be88c553d5a0f8,", + "color.component.button.font.danger.solid": "S:df0a15405034fa1d122d9f63ce4b93e34dadf802,", + "color.component.button.font.danger.outline-fill": "S:d2c161168b9bef4a06706100f317d5b0b0c5fd90,", + "color.component.button.font.danger.outline": "S:1917f846c082c08bc90cb26db2fecc42c5c2e4e1,", + "color.component.button.font.danger.transparent": "S:5abba32c35533b4fac51a1cd2dc418c8447db559,", + "color.component.button.icon.brand.solid": "S:08556e2b6c883ed466d040709b49256840743085,", + "color.component.button.icon.brand.outline-fill": "S:0c287748bb1f9c256b5fad8bcfc170f2537e89b7,", + "color.component.button.icon.brand.outline": "S:9dfa73d9f66eb6a55a769ff3aaa064a134e9d4e5,", + "color.component.button.icon.brand.transparent": "S:c6f10592bb8a4f8cfcc6380d49d3218662ccdb63,", + "color.component.button.icon.inverse.solid": "S:457cbcaf72a75ec46792cbc3f4cb952dcbf4463a,", + "color.component.button.icon.inverse.outline-fill": "S:79ea71f93e9373fff5cf27cc67bc0ed9e59af3dd,", + "color.component.button.icon.inverse.outline": "S:37e57e2db5365240de99ea17612bacc68a0511ed,", + "color.component.button.icon.inverse.transparent": "S:670157fdcef9b341d5a80a65f843c9edb8d96774,", + "color.component.button.icon.neutral.solid": "S:3ed62ec6b3c0b167951a6eb8965d9e4717d5771e,", + "color.component.button.icon.neutral.outline-fill": "S:d7f5877f4a75a300d9520ceb165970a16074cb72,", + "color.component.button.icon.neutral.outline": "S:2012355b67fb4869756befa71fbb8c532f8b76e1,", + "color.component.button.icon.neutral.transparent": "S:81d3cf808cb661be102f4d599698a00faaaa6295,", + "color.component.button.icon.danger.solid": "S:de387fa2996fe9e85add7487952c0a479596760f,", + "color.component.button.icon.danger.outline-fill": "S:35f3fc53b3529c1a8e958646362e3d61248eef8c,", + "color.component.button.icon.danger.outline": "S:215f76c20d44300ac6e7a8b0d9efe2c444acf850,", + "color.component.button.icon.danger.transparent": "S:fabd47e36e76ac7bc3015cced994b04c6083b45c,", + "color.component.button.background.brand.solid": "S:5237d85a48e79d2afc2b2d226d2a005ce29b88df,", + "color.component.button.background.brand.outline-fill": "S:92a64a3075bb2f6bd8f1e35221b40d5bc09e8980,", + "color.component.button.background.inverse.solid": "S:6d8fa0049d01eff5e57494f524094a488c46c2c2,", + "color.component.button.background.inverse.outline-fill": "S:e479719dbacc8ab1b6d9bfbba683888fce3b3224,", + "color.component.button.background.neutral.solid": "S:1ed4fe8817fec12e7151e4171a703b5980df4de2,", + "color.component.button.background.neutral.outline-fill": "S:62cbde8fe3173edf2cceabbf8aea5fc990d7e30a,", + "color.component.button.background.danger.solid": "S:54fb125fad25937719a335d0ade028dfd72f7b2a,", + "color.component.button.background.danger.outline-fill": "S:dcdc818f615ec820ec772a8afb69e10f211250e0,", + "color.component.button.border.brand.outline-fill": "S:4048268e007a31fe30b335388c38b432d7e99915,", + "color.component.button.border.brand.outline": "S:dce70841be9eac633bf769f5c3c50d2cb65fcbf3,", + "color.component.button.border.inverse.outline-fill": "S:79219e487169f4fd284de9c83cf30bfa11830840,", + "color.component.button.border.inverse.outline": "S:0737e16de0b956758db14bd9660f76a1d9736896,", + "color.component.button.border.neutral.outline-fill": "S:2ff5be5692a8245581663c6611971afc2c61f7aa,", + "color.component.button.border.neutral.outline": "S:70b6e2fee158142b59b57ce0d494f1f7c9abdde6,", + "color.component.button.border.danger.outline-fill": "S:fa7819f68ecc6ef663c3eab17c59862bc87703ed,", + "color.component.button.border.danger.outline": "S:44eeb8041f4fab160aaff51547368a41c41a2981,", + "color.component.split-button.font.brand.solid": "S:5b901bdc2a5ead15fa817a98c8b6c96901eb95cc,", + "color.component.split-button.font.brand.outline-fill": "S:b063e41ee8f3c89074a0cfadfc7a47d94182f1d8,", + "color.component.split-button.font.brand.outline": "S:ebc162c8b21194910a35ad32d6381ae2ff97defe,", + "color.component.split-button.font.brand.transparent": "S:4d0be1e25ed1364b5ada2f780cb6ca7db10f6036,", + "color.component.split-button.font.inverse.solid": "S:3e1a3a9aca4b68f27f44f1e00f5a87e4d179adfa,", + "color.component.split-button.font.inverse.outline-fill": "S:fcfd5ecee2fd9d55ea587af3a22704752423f0f5,", + "color.component.split-button.font.inverse.outline": "S:715293637d1d19a23d49b74f67894b2b2d4ce222,", + "color.component.split-button.font.inverse.transparent": "S:c94510ebcaff9dbf524309a9be1efabea4750f56,", + "color.component.split-button.font.neutral.solid": "S:463cd2aefd34c5b8f4f61bb628eb2d16a2ce1c53,", + "color.component.split-button.font.neutral.outline-fill": "S:e3ea51890b07070ec0e0ae3f7022aa48952917f9,", + "color.component.split-button.font.neutral.outline": "S:29bc436861fd4dbd02c1b6c4a8d47085aa0eef52,", + "color.component.split-button.font.neutral.transparent": "S:ef346610e28eced8e5f9d4e3d06f0eb3765b213b,", + "color.component.split-button.font.danger.solid": "S:837d4b9c9782e38978d4ab29dab1b0f687ea0f97,", + "color.component.split-button.font.danger.outline-fill": "S:6ab4e2e5fc5c5f42bd791473ee9d5058c4c21b69,", + "color.component.split-button.font.danger.outline": "S:87ed247bef4408e7f682ce8fc6bce7942aa9201f,", + "color.component.split-button.font.danger.transparent": "S:12b1b3da1c8eeaf70e91ec7c42ae1e154b2d11dd,", + "color.component.split-button.icon.brand.solid": "S:ccfb47312f729988384a0eeff779beafbf81837f,", + "color.component.split-button.icon.brand.outline-fill": "S:7fd6853a3c789158a6cea18f70287d43f98b583e,", + "color.component.split-button.icon.brand.outline": "S:5293d699938069a23e2689c67ad4254a42eb9d24,", + "color.component.split-button.icon.brand.transparent": "S:50ad39f33c8ac75f14966939c69fa57118acc2b6,", + "color.component.split-button.icon.inverse.solid": "S:ecb1fbd7138594f5be61b6d36b8bb81e46fbd652,", + "color.component.split-button.icon.inverse.outline-fill": "S:b500c00dff421eae5df1960bb82f3d7cf9ef8f61,", + "color.component.split-button.icon.inverse.outline": "S:2c4ceabdef9281222b790814660ad08d44db5514,", + "color.component.split-button.icon.inverse.transparent": "S:8aee6269bab102df2968105bb814b227e7f6b8dc,", + "color.component.split-button.icon.neutral.solid": "S:a7a0f553b0297d30710502ffd03c3ddec329cfb9,", + "color.component.split-button.icon.neutral.outline-fill": "S:74a4ff152b1ead50ac5e41aeabe070c1ad420550,", + "color.component.split-button.icon.neutral.outline": "S:1cefa4b278deb32afe59ee5546ee67b99e093bc8,", + "color.component.split-button.icon.neutral.transparent": "S:39493d9411bd8c658aed1523e5642ac338f55fcd,", + "color.component.split-button.icon.danger.solid": "S:ab8558af1d90ad320bcd92554a80f353127cf89a,", + "color.component.split-button.icon.danger.outline-fill": "S:97c74f60525f45239fe53763c6e471e3fcc61e72,", + "color.component.split-button.icon.danger.outline": "S:f14067e96e98fdbad3d366c286c40061e80b8c67,", + "color.component.split-button.icon.danger.transparent": "S:2f97ebe516164d2c730c09fd216240dcd8e5d457,", + "color.component.split-button.background.brand.solid": "S:ea712011b95d77b2e30b54bcd04a9f5bb62370dc,", + "color.component.split-button.background.brand.outline-fill": "S:6f5343d4c5b6754d4fc5d8eca2705fd44bfc086c,", + "color.component.split-button.background.inverse.solid": "S:6317361fa45ebd804d1b13a6ca0d6be51829427f,", + "color.component.split-button.background.inverse.outline-fill": "S:206b2cd258d06abe0368fdba23ca63d5b3b83289,", + "color.component.split-button.background.neutral.solid": "S:3df992cda042ff8b2a18398a9290c4d88d51cc3d,", + "color.component.split-button.background.neutral.outline-fill": "S:d912dac2ce7a1d5735b7bc6a42050c2fc82855ab,", + "color.component.split-button.background.danger.solid": "S:e20a29f1f74d4acdc856787a117ffcbcc721b15b,", + "color.component.split-button.background.danger.outline-fill": "S:22a0c7516594731164e359952665a34d57b82ca2,", + "color.component.split-button.border.brand.outline-fill": "S:518e08e4bfa6d8e1695285e178177e12933730eb,", + "color.component.split-button.border.brand.outline": "S:6ade724bdd13e248db0ae3b4e72acd238b72c711,", + "color.component.split-button.border.inverse.outline-fill": "S:de22e61ffec005932bac0f524f4310475d7e4c21,", + "color.component.split-button.border.inverse.outline": "S:2048046d774279b6aed9eea9100d28575b13f0b6,", + "color.component.split-button.border.neutral.outline-fill": "S:f89e12b2e1ab2de3832186d2cf5be4cae3fa89f2,", + "color.component.split-button.border.neutral.outline": "S:3f4cb52fe79c4117fb9cf8126f189d75536d34da,", + "color.component.split-button.border.danger.outline-fill": "S:c1d0119b28d46c15c92720084cf400d7d107d84e,", + "color.component.split-button.border.danger.outline": "S:e00804370d3c41e9c35e8bcb83e8c05e9c88acb7,", + "color.component.split-button.divider.brand.solid": "S:1a5ca48860c06ab06a22b4e7ce0b47413dbe546d,", + "color.component.split-button.divider.brand.outline-fill": "S:755fa548d84b00d15a8a254eb53b34d66f587d46,", + "color.component.split-button.divider.brand.outline": "S:63e081f03cdb349650fb14668374d3304d44a31f,", + "color.component.split-button.divider.brand.transparent": "S:2c9e7958c52f49e92102ae36638281187bb02de1,", + "color.component.split-button.divider.inverse.solid": "S:5750d47dd7aa251e055f21dcf86081bbbb3ddaa5,", + "color.component.split-button.divider.inverse.outline-fill": "S:db51f814a5669143002e6c6853590a53c1a4bf3e,", + "color.component.split-button.divider.inverse.outline": "S:6f1fce1323a8826b074a7e7115379d19b6f5e5bb,", + "color.component.split-button.divider.inverse.transparent": "S:03f47e00c40f31adeb3f40bcc57e94971093ddea,", + "color.component.split-button.divider.neutral.solid": "S:e352c6e6c5b88f97112c24afb81d9c94d416498e,", + "color.component.split-button.divider.neutral.outline-fill": "S:4e5c9e305d43dac5aae6325e69ee7fd27e0e47fa,", + "color.component.split-button.divider.neutral.outline": "S:4349ad6b5d96fe7612a059b96fb383731d65fa35,", + "color.component.split-button.divider.neutral.transparent": "S:dafa195f03265cb5859a876972a7cf84018a2e6b,", + "color.component.split-button.divider.danger.solid": "S:1a9daf87b3d9d5dae2cdd1426c681c0733bc22b8,", + "color.component.split-button.divider.danger.outline-fill": "S:15bd1b4566da4161afe6173deb7db13416cb2f8c,", + "color.component.split-button.divider.danger.outline": "S:e3328b70eb8d522af149a77efeef90963bf02523,", + "color.component.split-button.divider.danger.transparent": "S:87e395d0f52658b5fb11fc4d3a3aa2a780f42bae,", + "color.component.fab.font.brand.solid": "S:4e32d4beb5ae5e6b89181e73bffa0bd68511cfd6,", + "color.component.fab.font.brand.outline-fill": "S:40b7adce591b56fc26d3e0106d822ce645eab98c,", + "color.component.fab.font.inverse.solid": "S:4baaef83cc1c692361f9d2ad183832c32480c2d7,", + "color.component.fab.font.inverse.outline-fill": "S:a165c9e300fbe507bd003d73a4a7259d4526766b,", + "color.component.fab.font.neutral.solid": "S:a6480a631a1682be927e985e6e9b7730800c611f,", + "color.component.fab.font.neutral.outline-fill": "S:e3530d10e71a683d5660be777d5000274cc3c30b,", + "color.component.fab.font.danger.solid": "S:ebc16f3cbae4d3e4df721cd6d5c719d3d35efa7a,", + "color.component.fab.font.danger.outline-fill": "S:eeadea227db84065b150e1ab8e567ff41a46e026,", + "color.component.fab.icon.brand.solid": "S:cac1a897cb4bd33a216395e137954ee9d54130be,", + "color.component.fab.icon.brand.outline-fill": "S:909aa3aa4117624ac62ded48d9948d49e2c23db4,", + "color.component.fab.icon.inverse.solid": "S:9ebec9ea48df92549fb3616f8b40e7742b7dc114,", + "color.component.fab.icon.inverse.outline-fill": "S:b1801cd288f53a966d6dd5fb35c40145fd12f37b,", + "color.component.fab.icon.neutral.solid": "S:9aca318c01a0067623173002baa19ef8c801f937,", + "color.component.fab.icon.neutral.outline-fill": "S:833ea732836c9b28d12e49763448596c9a2eb1e7,", + "color.component.fab.icon.danger.solid": "S:ac3f54c0a60d518f2f14806a93a6f02549842b0a,", + "color.component.fab.icon.danger.outline-fill": "S:331d6656a963fbc17dd7660e9f90b8cb93cdcf68,", + "color.component.fab.background.brand.solid": "S:29dd97a6bf86871b47d513cdcafac7ab097c5f7b,", + "color.component.fab.background.brand.outline-fill": "S:e70d40651c8a6a20c420931ccb7c901eddb2cc55,", + "color.component.fab.background.inverse.solid": "S:72f07682f4fdb63d651c2e66dfbf3ef215453584,", + "color.component.fab.background.inverse.outline-fill": "S:79b41ef9bd83960eb55290625ffdc64a1840b05a,", + "color.component.fab.background.neutral.solid": "S:5223d14210fda641018d54d3f6c86636a3df8a6c,", + "color.component.fab.background.neutral.outline-fill": "S:68dc2bf07a9acec410c390b6d9846f0172f6254d,", + "color.component.fab.background.danger.solid": "S:9f3526070f761c3a9e7c95da320031a9b3cccc27,", + "color.component.fab.background.danger.outline-fill": "S:911e312ef9a054d4564c2eb77f35984eecb15814,", + "color.component.fab.border.brand.outline-fill": "S:fadc73523cf022e39522d46b1648b05f4e21d254,", + "color.component.fab.border.brand.solid": "S:7891d04c8d0777b99dc52e7c08371b0a5f4966d8,", + "color.component.fab.border.inverse.outline-fill": "S:a8427726b44bee366d22661a759bb0f46874e110,", + "color.component.fab.border.inverse.solid": "S:a286d7cf673e68334e0d4a33de793d4bd167f06c,", + "color.component.fab.border.neutral.outline-fill": "S:877348195b4cfd3dc374043fe3c074977acbb828,", + "color.component.fab.border.neutral.solid": "S:51a047ab604092b7a8e37bf3eb27a5b2c7a21f9b,", + "color.component.fab.border.danger.outline-fill": "S:fe303a8ec6a9e360961d219df08e21ec262f4425,", + "color.component.fab.border.danger.solid": "S:22269449878c68bbb26b6f7460dc61bd6e859c8c,", + "color.component.combobox.icon.default.light": "S:a1fc6c908b1cbf66860f5c7fa57284067e55ea69,", + "color.component.combobox.icon.dropdown.light": "S:bf19f7f6dd39def8940f138977c44bb1c955cd2e,", + "color.component.combobox.border.light": "S:1809b3436041a9efee9367c3ee7a505e00d8354b,", + "color.component.combobox.background.default.light": "S:d6dd849a4edd632232ae88d58b849475bb0ef98e,", + "color.component.combobox.background.item-container.light": "S:68cdaed513c49c473be881a5b846b37ffb2c2c46,", + "color.component.combobox.font": "S:9233044f0abbf86b4b9682e5a95e5dfe8972290a,", + "color.component.combobox-item.font.default.light": "S:10ec0f419a7ded5bb978e9946fffe17012537271,", + "color.component.combobox-item.font.selected.light": "S:7dbaf2711ef406a835d2a6559e2f5234b96aa504,", + "color.component.combobox-item.font.group-title.light": "S:e845d6d5b2edd60e0435f7245edbd175f13b2792,", + "color.component.combobox-item.icon.default.light": "S:52476173d2814b706604c7dad012219152befab4,", + "color.component.combobox-item.icon.default.selected.light": "S:35147473eec175c8dc428d948c9afcfc1bd508f6,", + "color.component.combobox-item.icon.select.light": "S:4c78423abb6c3cfd6b6f108e1c60ce9ae1e43a75,", + "color.component.combobox-item.border.light": "S:6044e1231ba3622f7f58d2a01b97110e55637dce,", + "color.component.dropdown.background.default.light": "S:8b6485ab270795af43cc1a3cb770281c5352a907,", + "color.component.dropdown-item.font.default.light": "S:a861835f7600f7d4b4a0e614cd46c7651fb9566f,", + "color.component.dropdown-item.font.selected.light": "S:a804ca2b38831f2e6912f11219544c677ce793c7,", + "color.component.dropdown-item.font.group-title.light": "S:9035f6df8c52b56f7b121431bc4166e60850ec16,", + "color.component.dropdown-item.icon.default.light": "S:80aafd08be54db99c5a550931fb8dd066a2c1b42,", + "color.component.dropdown-item.icon.default.selected.light": "S:6bbf901208a3345bd2e69ac8fa4330d9ff7b8411,", + "color.component.dropdown-item.icon.select.light": "S:b93f59b6c1e2d9c629c0668f5a2911e4ee2ccba1,", + "color.component.dropdown-item.border.light": "S:03488e4f77893ca26ff903fd5b4d6ce25a479a85,", + "color.component.segmented-control.border.light": "S:a1a3cc1ba11888a4bd274d664dd7ba9244e490e5,", + "color.component.segmented-control.background.light": "S:ab29f653c71ea42adb6063d795d17fab3131d70e,", + "color.component.segmented-control-item-.font.solid.default.light": "S:cc0fa7734e241b562d9ea680cd6af67dfb672854,", + "color.component.segmented-control-item-.font.solid.checked.light": "S:498975a6249729928286aea1816b8570ec9e9b01,", + "color.component.segmented-control-item-.font.outline.default.light": "S:83f628ee9ad9b0b5490041e938708f632e2449c5,", + "color.component.segmented-control-item-.font.outline.checked.light": "S:474c0363c6f2df9811ad100bce39c39c5c848bee,", + "color.component.segmented-control-item-.icon.solid.default.light": "S:434ca04bb6905cb097161463f00da2a7dca6bdfd,", + "color.component.segmented-control-item-.icon.solid.checked.light": "S:179a58ab80ba76b0a4342d1fbd2af16d1553c704,", + "color.component.segmented-control-item-.icon.outline.checked.light": "S:d148a648a5d0e4193234b1d6215eb0085d37d3dc,", + "color.component.segmented-control-item-.icon.outline.default.light": "S:8821bcbc5dc31a15fd5eb94697e2d835dd6b4c0a,", + "color.component.segmented-control-item-.border.outline.checked.light": "S:99643c865ea63315c4848f8164113a31ff09c590,", + "color.component.segmented-control-item-.background.solid.checked.light": "S:374adf02c78964c8303a5d60000deeca12176530,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "ui.background": "S:38dd2dd4ccfd5f8657bde776b47605065d1cea11,", + "ui.foreground-1": "S:6999e98fe6773317691fc2a7834993b6055e4a84,", + "ui.foreground-2": "S:685e9fef7d6858fb4788fd2333cb61b1bcbddfad,", + "ui.foreground-3": "S:a576af9a9c9954c8f4a5ab3937d1f00eec4d5bbd,", + "ui.foreground-current": "S:a78d2aee17c9c7646426e31ce5c030da4952f2e9,", + "ui.text-highlight": "S:238206ee72f7819ba5e23eb91e6db93d4b410a7c,", + "ui.brand": "S:c720157f05053f2cd5b56aedbe1b7c5a17797c2b,", + "ui.ui-brand-hover": "S:b92e2f015b0d66cf83795b73d2d95938e7250957,", + "ui.ui-brand-press": "S:dda528590a338a63df1e3397c894f892375c569a,", + "ui.ui-info": "S:82c4ce0f64e709f1cfd27c1ab0f5d36e9f504bec,", + "ui.ui-success": "S:9f3f639cc309a36de52084b356332f5958c6c1f5,", + "ui.ui-warning": "S:b53a72c66b796cec1c47aa0628eeb71b20909b45,", + "ui.ui-danger": "S:bda742eb5d2d494f501343025637824c229a38f9,", + "ui.ui-danger-hover": "S:bbf2b568937575f43b6e9e5a06fe350f1897cc0a,", + "ui.ui-danger-press": "S:99d4361e300fa67712dd0c6b446ab3988ff5ba53,", + "ui.ui-inverse": "S:82e47e8588cf72abf9041aff40c3cc4af617e17d,", + "ui.ui-inverse-press": "S:6b08830f808f7cc9a6a57f7c0c3cce6b9319f91b,", + "ui.ui-inverse-hover": "S:5b23ecefd3fcafc659d053ff89ec55f5030fc68e,", + "ui.ui-text-1": "S:b05e3c1b41faac1a5ecc79e61ccb29dacb500b43,", + "ui.ui-text-2": "S:e452da2249eac9ecb1c42078e41cb51c7d29a695,", + "ui.ui-text-3": "S:dfc332386631a170c011a2d311dc357113b206ad,", + "ui.ui-text-inverse": "S:f2155488d833626658da15f15a182ca7bba6bd4a,", + "ui.ui-text-link": "S:5d111e33064ed0f7976e4d2e0cb82f8412610701,", + "ui.ui-border-1": "S:5a648ab65a216b5de1317c10e228e9b1ad9bcd40,", + "ui.ui-border-2": "S:d98f8d4614121cca3a4e083139b1cfc88b6b8dc8,", + "ui.ui-border-3": "S:79a86406b08158d7ba424dd0c380edf6ef4b77fd,", + "ui.ui-border-input": "S:3f1684fc257b47359d84a902250005f752886866,", + "ui.button-transparent-hover": "S:67e61c497d90d97ab01a3f30e3c6c790a4af25c8,", + "ui.button-transparent-press": "S:8ee6685e6cf50b1019c9c8466ffab4f8a33b88df,", + "ui.component.avatar.font": "S:419c3e529594af92cee7bf6b29a4b68f5d9f4bfe,", + "ui.component.avatar.icon": "S:1f21d3487d6abc56204150db94b1b729afd623cb,", + "ui.component.avatar.background.default": "S:2b48fc74f11668351b0524e703c27a0267b90d69,", + "ui.component.avatar.background.red": "S:74fb102c9296e8ac78d64d0bce7a2242e193df4f,", + "ui.component.avatar.background.teal": "S:2eeb5ddc9111eed0e8e96fd4aad7aa45ba8ada40,", + "ui.component.avatar.background.blue": "S:11463833d2c89be490962f1dc91ba2de918de1a1,", + "ui.component.avatar.background.green": "S:5446e7993604a98618fb55ff378906e40188c782,", + "ui.component.avatar.background.yellow": "S:34a52ef2c817418d68dd2f00ad069395cc22b36f,", + "ui.component.checkbox.font": "S:2ca045a8f99163433efacf4eba004a79f2a38740,", + "ui.component.checkbox.background.default": "S:f85f45fb0cb6b42d639ae77dd4712a8a8e3a19bb,", + "ui.component.checkbox.background.selected": "S:747f7dc21ff274de5bb1c5882b59db560e315196,", + "ui.component.checkbox.icon": "S:38fdb13c659b545b92b3a82d9928fbfda19cbf2b,", + "ui.component.checkbox.border": "S:657bdb2fc0ada69e0b049f05aa4f675f338bb525,", + "ui.component.radio.font": "S:9ed230ef66f94fce733697131d86800dc5c96d00,", + "ui.component.radio.background": "S:938173c469c2710d01bb41cb110ab302056c49ca,", + "ui.component.radio.border.unchecked": "S:7c64c4ca2bbe605d3950930d164c8b9e50a2d25a,", + "ui.component.radio.border.checked": "S:16433c459064a13aac32395ec334caa814bd752e,", + "ui.component.chip.font.clear": "S:e11302270ba46e6c73201f6af0d191ee6e4f5a5a,", + "ui.component.chip.font.solid.grey": "S:ce67594cff765d38357a9c7e76753ccd19cd8144,", + "ui.component.chip.font.solid.blue": "S:3c6da0f4a654c8d559cb98dcaeba85af736db623,", + "ui.component.chip.font.solid.red": "S:b53c3193142a28382f010f8de1634d06fd0ce8e0,", + "ui.component.chip.font.solid.yellow": "S:f5b8c23dfe2b810f350b1a4dcefe4e7bb3fb32f3,", + "ui.component.chip.font.solid.green": "S:2a19e5c15470211474cdf51dbf1268b01063127c,", + "ui.component.chip.icon.clear": "S:a9a592dbafcbd0db9992e9814973ad2f7662a687,", + "ui.component.chip.icon.solid.grey": "S:3d3bf9c77be9671b4fe9abaf5e1c0881649e95bc,", + "ui.component.chip.icon.solid.blue": "S:6b81495646be58786a2003c3c78a9fecf5982312,", + "ui.component.chip.icon.solid.red": "S:be4f7ac0614597fb6cc9d1697a0c587e8eee08e5,", + "ui.component.chip.icon.solid.yellow": "S:465a461ac469aaa2a2994c7457e9e326ebed412a,", + "ui.component.chip.icon.solid.green": "S:c81398695897c7200558b8340941ffa724a9044e,", + "ui.component.chip.closable-icon": "S:b80fede70d909ddb078dae7eb511b2031979026f,", + "ui.component.chip.background.solid.grey": "S:3a35f7058e3be16ef4ff78921ea2331c8e21401f,", + "ui.component.chip.background.solid.blue": "S:15395df8f6b2f2c05d49dd67878c6be875c8761a,", + "ui.component.chip.background.solid.red": "S:471a0cbc7abeaee6ff00422fc0fc285a63f95bcc,", + "ui.component.chip.background.solid.yellow": "S:8f80371c293b1841b337e3224fc8dbfaaee93957,", + "ui.component.chip.background.solid.green": "S:eca28b0997c90c77d794346f1165ead59b6e9900,", + "ui.component.chip.border.clear.grey": "S:c6768f24a0eb0fa79954a89b5e0721de3989b92f,", + "ui.component.chip.border.clear.blue": "S:c11b063a5e596c6bfffe2ebb850141ebadefda7f,", + "ui.component.chip.border.clear.red": "S:aa9bb18a99e69c6a19aa2ead7e80e35e9c45daf7,", + "ui.component.chip.border.clear.yellow": "S:7f4ac85a5bc8051f59a9a109ff6ef3d3d6b4311a,", + "ui.component.chip.border.clear.green": "S:b42f5bede7226e778ef49ab704257938606d8e26,", + "ui.component.label.font": "S:db758dc0b5f9fd361e48a701ef561c1db5de207e,", + "ui.component.loader.font": "S:3c1a9edaf02eb4d71b57142635433e36380e9f96,", + "ui.component.loader.default.foreground": "S:c09dadcc08dd2c767d84ca7dd6b92cf7ece46013,", + "ui.component.loader.inline.foreground.indeterminate": "S:ef64777b84492d5d7659bac91ea033746f7601a9,", + "ui.component.loader.inline.foreground.determinate": "S:384640c76e1093bda022a2a36e71fd29d7c08a0f,", + "ui.component.rating.star.background.default": "S:9f64d5d178dfadeaffd381e269c239bcb417127f,", + "ui.component.rating.star.background.active": "S:a208f94fed7b7f11447eb5b98e49bacba327f2e9,", + "ui.component.rating.star.background.average": "S:e634d5198bebc76485590674c7963fad8ea36390,", + "ui.component.rating.chip.value-text.font": "S:289c315bd9678a3ce6168c08b627c52c73eb9433,", + "ui.component.rating.chip.count.font": "S:f55a0feefc978aca78320ba93877174c3404297f,", + "ui.component.rating.chip.foreground": "S:683d7e9fb9bd1486e2317c1c022e2d45238797b3,", + "ui.component.tooltip.foreground": "S:5fe7085f37d78feabe2c0e60216981a1ebeb69a1,", + "ui.component.tooltip.border": "S:60d80674dbd4f28fdf13ab4d7317010dce3db413,", + "ui.component.tooltip.font": "S:88472a09f485d8658a25e1f133ec792b3aa31879,", + "ui.component.accordion-item.font.heading": "S:4d9af0e889b2e9583830934474a70f16f31ff45f,", + "ui.component.accordion-item.font.description": "S:cbd49e042983f0682ad3fdabebaf8cf4f9352809,", + "ui.component.accordion-item.icon.default": "S:7d4507b417db4d8434d362ab74fc5756003eef29,", + "ui.component.accordion-item.icon.expanded": "S:a897d9452d45451d48c051293cf9f3aec632245d,", + "ui.component.accordion-item.background": "S:628d9cda730885f3f6fc8a6a7b36859ee48065c3,", + "ui.component.accordion-item.border": "S:af2c6743df731289af3190d13cc23234a9171888,", + "ui.component.input-message.font": "S:84dab022222d52633848b865feeeb7c1bb77ed25,", + "ui.component.input-message.icon.idle": "S:978815add3e27deb800540bdfc31c58acb39afc7,", + "ui.component.input-message.icon.invalid": "S:f44243393234c02c6e2122b74c3e835274bed024,", + "ui.component.input-message.icon.valid": "S:2da9910ff2012175cc004bd3734e5a16ddd8525f,", + "ui.component.alert.font.title": "S:ee64ad3eafb20bb31d113d252a7aac8ce8d8a137,", + "ui.component.alert.font.message": "S:252914d64ce890e278fb4b25274c616795bc6fb5,", + "ui.component.alert.background": "S:7bf2ec7696c21c6ac4bc6553595993fd4425394c,", + "ui.component.alert.border": "S:25af1928fa5679c31cf545b33bf57a5ecf64d9fb,", + "ui.component.alert.icon.blue": "S:c7e75684560904cb1a233f5280372dce7d5d2f17,", + "ui.component.alert.icon.green": "S:a400b96d6906e72a958307c8db7af40924a5790f,", + "ui.component.alert.icon.yellow": "S:847b3244d8dcc05fb1cf95444e85a798dfcbc87a,", + "ui.component.alert.icon.red": "S:86d1699a06fa8497a5975a76e0acecb2c32b7984,", + "ui.component.alert.highlight.blue": "S:08bd850d80578dd0b5558f5b3edbc010ef29dcd8,", + "ui.component.alert.highlight.green": "S:f92a49adc03b00ef02156295de52c4fb1dc7c106,", + "ui.component.alert.highlight.yellow": "S:95c305ea593c48206253510e1f54a11a7630313e,", + "ui.component.alert.highlight.red": "S:9e5d4b2b593451d884330cba3f3f5f93e780d4ab,", + "ui.component.color-picker.font.label": "S:9ab6d09a242d7392f0d934ae710052da324a79e8,", + "ui.component.color-picker.icon": "S:9008be677d609e80d455986dabcce14e08ead3a3,", + "ui.component.color-picker.border": "S:627c743453b5c31025937a26115d4251e3c9704d,", + "ui.component.color-picker.background.default": "S:675a70afe6cf8a2c924c186f123cd9cfd42e671e,", + "ui.component.date-picker.font.date": "S:4b234f0639154fba114dbc8c8be68815d7c945b6,", + "ui.component.date-picker.font.day": "S:9acf9c86c4d0245b30e0a772929ece7807727a93,", + "ui.component.date-picker.font.month": "S:1e5d32d63c52ab694403ff3555eb79e4d58289eb,", + "ui.component.date-picker.font.range.date": "S:a7ab1f0aa59cbe536fb50a942ca24fb4deb3fc54,", + "ui.component.date-picker.font.selected.date": "S:2b7b8d1f1895e94d59f17c412df64b337f9362ab,", + "ui.component.date-picker.font.active.date": "S:2a294274bbfb636de88d010c9b9f1eecb91fa725,", + "ui.component.date-picker.icon": "S:bf05e10bb91382967d17d088c43cbedef7fc9266,", + "ui.component.date-picker.border": "S:c993a082745ce3d11d0d2293b5d1562b3241d419,", + "ui.component.date-picker.date.active.border": "S:a4ce7d6f29d3f7fa5526c9ced98606fe8aff32fd,", + "ui.component.date-picker.background.default": "S:7485ee36f3700167b9d6ed96a56e23ede007fef2,", + "ui.component.date-picker.background.date.range": "S:aea5e756c0d959c4887c8ac386f47daf24307e8e,", + "ui.component.date-picker.background.date.active": "S:4d4e7891f8288921c6d107fc09d57b1a139e1327,", + "ui.component.input-date-picker.font.placeholder-value": "S:93cbb2b6ad935a4b39888f450749b070f1167957,", + "ui.component.input-date-picker.font.label": "S:13309880c077073e09df44b7d273dcd14c50d556,", + "ui.component.input-date-picker.icon": "S:2dba1c7bec36d8e1b2109fc14f5989032d2c9139,", + "ui.component.input-date-picker.border": "S:09f425ffb4b6bf85b8e6f422e1f556c398227429,", + "ui.component.input-date-picker.background.default": "S:e2f8a5a46b6e8123ea703132b0db7596b2259804,", + "ui.component.input-date-picker.background.arrow": "S:b1141dc4da0aff0e58ae023b0dab5d8b7048c065,", + "ui.component.input-date-picker.background.read-only": "S:b7644f862a00d61af268bc9f991782427b013e85,", + "ui.component.input-datetime-local.font.placeholder-value": "S:ce8782a9dc7630825125ed9de9569ab6904a1252,", + "ui.component.input-datetime-local.font.label": "S:fc2d9bfed9b1d16238b158d37c02a737d234bfd6,", + "ui.component.input-datetime-local.font.prefix-suffix": "S:36cccb819613cf979937b02fc47de0ef3c7a8175,", + "ui.component.input-datetime-local.icon": "S:f126c8d56d1af46582852cd244055f63122d5161,", + "ui.component.input-datetime-local.background.default": "S:2e440c4a5ad64e5bad7a5e20ff51f2845a8b12b6,", + "ui.component.input-datetime-local.background.prefix-sufix": "S:b0ee891201187b54d7d1019544e8750f85f14080,", + "ui.component.input-datetime-local.background.read-only": "S:a19a72677cb50488c5d72ddcb265badfe703ed5f,", + "ui.component.input-datetime-local.border.default": "S:0ed90da50e87adff7ddc6f5e01946d23bcdc5f9a,", + "ui.component.input-datetime-local.border.invalid": "S:11a0e88b3973b4d3c2184df20b7e38eb51d96e85,", + "ui.component.input-email.font.placeholder-value": "S:e3fc9b5a7ffc7ce1971fce0139fd9921d5c6e4e7,", + "ui.component.input-email.font.label": "S:b3116a55dd221135888b0abf93b76ccd7c81d1f9,", + "ui.component.input-email.font.prefix-suffix": "S:01582692622b629bf88eede25af3141fb3e3f561,", + "ui.component.input-email.icon": "S:118588ada2abd2645a394aeab604ca2f21ef7950,", + "ui.component.input-email.background.default": "S:d4bbe21d085991e5767a8c72c2f329118e607741,", + "ui.component.input-email.background.prefix-sufix": "S:80a2d125b79ff5d13ebd9fe5e8849a7e635b58d9,", + "ui.component.input-email.background.read-only": "S:6f6b564b261a7c0d4628a87feb0ccdeae166976d,", + "ui.component.input-email.border.default": "S:bdfee8db6f44df9f92dd0a55315bb5ca0b2b05d9,", + "ui.component.input-email.border.invalid": "S:e78012d15cc42af0e734e4f8818e0eb8169158da,", + "ui.component.input-file.font.placeholder-value": "S:4a9a3c64ca410ac358503c4e1620d8acbb0f387b,", + "ui.component.input-file.font.label": "S:68373a7fcad4be0a3306b19e020763331d6b681d,", + "ui.component.input-file.font.prefix-suffix": "S:c9c2ffcb204007250137d38c3d6532ad2915a5d7,", + "ui.component.input-file.icon": "S:80a3f20ac1508a8dad138ade50cf2f9ce7992180,", + "ui.component.input-file.background.default": "S:7887d94eb5fccae6a6f79409933aa3097bfb9ded,", + "ui.component.input-file.background.prefix-sufix": "S:c603585b4e42194597f87e384ceec288386a759e,", + "ui.component.input-file.background.read-only": "S:ea91506d236af594cf6d96a1d806572972f3ede8,", + "ui.component.input-file.border.default": "S:98a7e6d71c72d2530f5faafa0c43ae563801eac5,", + "ui.component.input-file.border.invalid": "S:67c9ad8c9fe3630799641e0b4ef5abf6565b9bd3,", + "ui.component.input-month.font.placeholder-value": "S:dda368492a8bce20b756feef8b24866fa660a68a,", + "ui.component.input-month.font.label": "S:ff3f4ed7adc6a1f86747a9ee16679decc480468a,", + "ui.component.input-month.font.prefix-suffix": "S:57ec4be8d03247baef2bf3b9af5bb31433d4e6b3,", + "ui.component.input-month.icon": "S:0f5cad3e09551d55f215427b4eff9c10264d1b6f,", + "ui.component.input-month.background.default": "S:a7e47a92bb512efd324df3a9c286f0e18f1b2f31,", + "ui.component.input-month.background.prefix-sufix": "S:72895773443316e4d68662790beedcd7cceb19ca,", + "ui.component.input-month.background.read-only": "S:0c7556601c83143462bed92c39cea526fd57f537,", + "ui.component.input-month.border.default": "S:4f8007799226d14f44361ce34759ffd75c6272cc,", + "ui.component.input-month.border.invalid": "S:fc235b1af922322a82dee847c3aec440124e5ce4,", + "ui.component.input-number.font.placeholder-value": "S:9ffb809ea0c2ae00f59b3a843195bed7fc3df0e9,", + "ui.component.input-number.font.label": "S:ff31c629df06353e2e6300fb113bb483c6cd4e58,", + "ui.component.input-number.font.prefix-suffix": "S:2775a49dac80de3b19a9ec942a197175f39c31f8,", + "ui.component.input-number.icon": "S:80dfeb264c03bbba3eba5d116865b7456e05a835,", + "ui.component.input-number.background.default": "S:eeffa5b4acd65119b9a21a081976896756a9421d,", + "ui.component.input-number.background.prefix-sufix": "S:0d4fe839a05195bd1dbba7f3cf7b9cc068d4b0e8,", + "ui.component.input-number.background.read-only": "S:77f0bf8f1830181608f4ef3aa25ca65acd4c0201,", + "ui.component.input-number.border.default": "S:b7660378b5c8c0c85ad7aec1790f506b0d8bf194,", + "ui.component.input-number.border.invalid": "S:26acac1417c2806fc22134c1214c6799254d226a,", + "ui.component.input-password.font.placeholder-value": "S:b6e63c8a53076e73c49a0fadc539f0e3cdb366f8,", + "ui.component.input-password.font.label": "S:ac906f136c717c750d4fab53531249b688751dd1,", + "ui.component.input-password.font.prefix-suffix": "S:c8d33619e03b2ed3f2b21b9704c1a38f5f6bf43b,", + "ui.component.input-password.icon": "S:9fc342aa415b6baa73efa30924f9e14487d02a1e,", + "ui.component.input-password.background.default": "S:80c8f1a7639c610ed0a36dc7b89ce8649ba2f475,", + "ui.component.input-password.background.prefix-sufix": "S:199d28b802d060bd39a1c60b4f985250ce52ac5a,", + "ui.component.input-password.background.read-only": "S:3ebeb22ec8efcb667d098b207b908c40f1010a14,", + "ui.component.input-password.border.default": "S:eba649268e5153c753ecb42b3e01c3d5997e11f7,", + "ui.component.input-password.border.invalid": "S:0967e3781c907a8d6b29e41ba86e6976f758e0d1,", + "ui.component.input-search.font.placeholder-value": "S:85747d30bae5de18a89d81f5bf576e6447a45ad2,", + "ui.component.input-search.font.label": "S:3ece70280559b77c1feed6910da2b47e4b840625,", + "ui.component.input-search.font.prefix-suffix": "S:41a1eb23339a1f9901e82b5b60d987b400fa18c1,", + "ui.component.input-search.icon": "S:ff8c480f6f84e08de22cf804c5d578465304e65a,", + "ui.component.input-search.background.default": "S:72ad6f190ee237e95e9e09ec188b2eac32f6dd96,", + "ui.component.input-search.background.prefix-sufix": "S:7df73a90f262522dbb30952e086864c1b7afa5db,", + "ui.component.input-search.background.read-only": "S:2260afba831e454f2e96fc59d708a91fa62106fa,", + "ui.component.input-search.border.default": "S:19c19a2a5b63fe85dedca04ef69640854bbc9897,", + "ui.component.input-search.border.invalid": "S:717f324c35a69847da2b8d9fc34fe35e027224fd,", + "ui.component.input-telephone.font.placeholder-value": "S:bc88110db3922635907d4ce91d83476b68d2c2ae,", + "ui.component.input-telephone.font.label": "S:f2e811467049686d3a6c7f51a9bdae6c414a6c5c,", + "ui.component.input-telephone.font.prefix-suffix": "S:dca611a05c7188b068c4a4ab57046b42bfd4b4ad,", + "ui.component.input-telephone.icon": "S:5fa512f59d563377ad6fb2514cc29506f0e3e42a,", + "ui.component.input-telephone.background.default": "S:41fefa8efe2c734500b0b6b7de1e5e1a71a63d03,", + "ui.component.input-telephone.background.prefix-sufix": "S:79772b4082bec77b4d226437c1e1d3fbe3818e07,", + "ui.component.input-telephone.background.read-only": "S:98e5accafc5ea98ded84468030fce5acf0cdc1da,", + "ui.component.input-telephone.border.default": "S:c6f065ed622e3a79d8efa81aa5b1a5f8134001c2,", + "ui.component.input-telephone.border.invalid": "S:8758fd25347a7071bb02a299b4a2848e940bf80c,", + "ui.component.input-text.font.placeholder-value": "S:5175ee17bdfedd50cfda17a0c0b0b9c18db15d3b,", + "ui.component.input-text.font.label": "S:1cdd55877fce3231fae033575a3b07730ce9a9ec,", + "ui.component.input-text.font.prefix-suffix": "S:d7a7a4d5e27675ed2d97366bec4ddba4921a4d79,", + "ui.component.input-text.icon": "S:a3a5a569ac7b4a13483fba55fc8a3b0c191fe3de,", + "ui.component.input-text.background.default": "S:88e5930de1bd5f18bdecfd93d61158be7db61fa0,", + "ui.component.input-text.background.prefix-sufix": "S:c363215062c0961a4b69079188ab4613758cceb9,", + "ui.component.input-text.background.read-only": "S:fb15ad801ac6faa3a83620d3b437d446aea8e894,", + "ui.component.input-text.border.default": "S:e14b79235794e3bcce25e7eb673375b6c07aa7fa,", + "ui.component.input-text.border.invalid": "S:927421e3f3354d8e77236d9e599f1194f9382d41,", + "ui.component.input-week.font.placeholder-value": "S:f99cf9693f503afaa06cb0a7abd728b5b74789a1,", + "ui.component.input-week.font.label": "S:dc731fb5d8f9fc03a94ad2ebe3399b302ab02261,", + "ui.component.input-week.font.prefix-suffix": "S:262eb943ea2d7acde49e76dbc1547a5603bc33f7,", + "ui.component.input-week.icon": "S:81847703402593413aaeef23843009a8c3f00eb4,", + "ui.component.input-week.background.default": "S:b528a1b7de91e479ae047bfadb3c4ac3acc74d73,", + "ui.component.input-week.background.prefix-sufix": "S:b0a79277e4758da82306156db3e3bf052e3f542c,", + "ui.component.input-week.background.read-only": "S:b063cce289199343e6dba4956375192211ae56a9,", + "ui.component.input-week.border.default": "S:54d1d0940756b771281a0ca60578fe120fb9c01c,", + "ui.component.input-week.border.invalid": "S:db3120303cb563b18c01d9aae41e167035948e9a,", + "ui.component.textarea.font.placeholder-value": "S:c46bded4bb36a85136d2a338aafa7b32453109c9,", + "ui.component.textarea.font.label": "S:ba1113e63069c62029d945d0eabb4d6c3e926f7f,", + "ui.component.textarea.font.chat-limit": "S:dccfed519eff1f9a38ff2f05d958d3fcdd6a9398,", + "ui.component.textarea.icon": "S:e5aae6e686f8f28d8159fe081e3e202d146115e0,", + "ui.component.textarea.background.default": "S:9ae1bdd1136e1f9deb7ed548613492ba1bd13b78,", + "ui.component.textarea.background.read-only": "S:7bfd629b1eb2eab0eb12acafdc457b5e499962fe,", + "ui.component.textarea.border.default": "S:da2e47af3224b7f0b1bb52555f4e585fde30925d,", + "ui.component.tab-title.font.default": "S:cd1eca6b5f005062fc70f1480f537d752e6d5a0b,", + "ui.component.tab-title.font.active": "S:c447650d7c09bcc1f07fe671b9b794d9b73f9f95,", + "ui.component.tab-title.icon.default": "S:a531403c214dfe5cd20c68c6aa531efa5d97b3c5,", + "ui.component.tab-title.icon.active": "S:f155d31a1c6b347418b5f4d69e3416ee3f8455b2,", + "ui.component.tab-title.bordered.border": "S:657b9484fa82ea4aab29b47709c44bd091e54398,", + "ui.component.tab-title.bordered.background.default": "S:780c8a48062f9e85ac203839997102f75b2efe84,", + "ui.component.tab-title.border.active": "S:a3daa06c766350b7d743fe4fc0d5c1952a7235fa,", + "ui.component.tabs.bordered.border": "S:9fae7f8dc260f096a56c3ddcf62a11a8206b0d2b,", + "ui.component.tabs.bordered.background": "S:4a553b23e00c7309657c161d8812a2f012e01057,", + "ui.component.card.font.title": "S:9142dbe782713d11441537de0e20dbb0356611e5,", + "ui.component.card.font.subtitle": "S:d8b13c2045f5bd408f5b5db5fafd26ac9256a3af,", + "ui.component.card.font.description": "S:72ce04d748a1ffdd4797bd931a9bff1d358156c6,", + "ui.component.card.border.default": "S:482ca3982a5a048d88d6649f52241844b2684c52,", + "ui.component.card.border.active": "S:d1c3579831a889cf38f2f73ad4f0c9480d10ae17,", + "ui.component.card.background.default": "S:62550d4fbca0eb33bc41d6babee80bbafa2f8d7d,", + "ui.component.action.indicator": "S:01496a19721bf3ff64288c9fb95806c922b3f789,", + "ui.component.action.font": "S:b2f4d3bc5491b029638ef6cf3d8e9de081e1e2a8,", + "ui.component.action.icon": "S:a9e4839d9d8c736c3974632ce50e0f3dc9af4b18,", + "ui.component.action.background.default": "S:8e448ef4ff5794b82291b57a733d1e814387f8c9,", + "ui.component.action.background.active": "S:7a80957cb3e24fece78b15758629571ebccbfda7,", + "ui.component.action-bar.border": "S:2927cadbca77974b4308e0049e87d6b0e4329a6f,", + "ui.component.action-bar.background": "S:5cf3971e3ae9bd5974d7ab80750a04896bbad9a0,", + "ui.component.action-pad.border": "S:fa450dec266c0a3d71362afc67d3170634e354c6,", + "ui.component.action-pad.background": "S:6beaf3f8c8fa06102ff875ba5e5d92cff76d7b04,", + "ui.component.action-bar-grid.border": "S:d52fbe80ce2ea7e2bf01852bc654c0208ed806b3,", + "ui.component.action-bar-grid.background": "S:9d52606ff8f640a4090f7a2cdbcd29ab76a57524,", + "ui.component.action-pad-grid.border": "S:6dc6b08dbf9804368d1be1c817b64b991a98949a,", + "ui.component.action-pad-grid.background": "S:078a5c5552941e7dc20d38d35bcf4b6c8962a73f,", + "ui.component.block.font.heading": "S:43d3c721a403e15676f7a2055a081f6cf97ba030,", + "ui.component.block.font.description": "S:4e7db3c853655a2e2503080e137b93c97c71a0cb,", + "ui.component.block.font.content": "S:54fe1660fa520e85a7be2e835d45a17b341a513f,", + "ui.component.block.font.active": "S:376714afb7023592d831c1450535972a694ecc5c,", + "ui.component.block.icon.default": "S:a38635dd237ffff0c6fc6a8ea1592914faae3b94,", + "ui.component.block.icon.active": "S:0ef57e377def2c2feaacb63e312531018191c679,", + "ui.component.block.icon.idle": "S:b1ccfef206fa7d339d4b2301fb606007f4d27978,", + "ui.component.block.icon.valid": "S:e96c420bd419a2129cb6ec0cbe9632c4c525091c,", + "ui.component.block.icon.invalid": "S:19a42ef8c066eb599b7f57a7e1c500af01b5ae22,", + "ui.component.block.icon.drag-handle": "S:70fb5266758c5da41d2991ad5361b9cca9c0f54a,", + "ui.component.block.icon.chevron": "S:fd545dae7ead5c57df8cedf39c68c4a71df5a9d7,", + "ui.component.block.loader": "S:f4c119c14c2c2d64c676d4dd1854ddec137a56c9,", + "ui.component.block.border": "S:46bf5f57030396b1db457274e9871dc56d3163c9,", + "ui.component.block.background": "S:1ac8aa4a0c3fda093aede06b71c52a6782206d85,", + "ui.component.block-section.font": "S:6d879340e1218b09e69e5977b5705a56fd3c42e2,", + "ui.component.block-section.icon.valid": "S:387e3bbd26f2f4cc1afddb1b541524190d308717,", + "ui.component.block-section.icon.invalid": "S:e60d7c2500bb6c9b3741081c9169840524e3fbdb,", + "ui.component.block-section.icon.chevron": "S:fc38d0230af4ed3ab80327e7e7db2fdd9f935355,", + "ui.component.block-section.background": "S:ead8cd0161bbef2d317bcd8e507dc3a9a75a3ab5,", + "ui.component.notice.font.title": "S:78a2be5c43e47d28e0722d9daaa5cae53b897fd7,", + "ui.component.notice.font.message": "S:cf862d5e29faf98c794f91bc84db50d4c81ede16,", + "ui.component.notice.background": "S:bb55879473a0c55f53fa15131377b29b21d8a203,", + "ui.component.notice.icon.info": "S:2458fa29d0a2969d521ca8d5d8e0e820bd8e53e4,", + "ui.component.notice.icon.success": "S:35084ae1e6798e8a059643f27edcf8d345201678,", + "ui.component.notice.icon.warning": "S:2d6e627989c4490c45434fa8659a6aa604c7d0ab,", + "ui.component.notice.icon.danger": "S:96201c7fdfe351b56208679b9adb2c3aaf402e92,", + "ui.component.notice.icon.brand": "S:c5c7cfcfec78133f4ef1d76194ac16224e209e33,", + "ui.component.notice.highlight.info": "S:8c1316d5e3b3afbb53bdd0e39ee67caeb704c213,", + "ui.component.notice.highlight.success": "S:b8b198567f132a1c7c67669af9eab04ec2d72bbc,", + "ui.component.notice.highlight.warning": "S:23a1d5844282ef3ffd106667c17c18ad365e605d,", + "ui.component.notice.highlight.danger": "S:bece9753069dce22b00ebbdcf9e01dc788df54a1,", + "ui.component.notice.highlight.brand": "S:23f75d10dc6021bf702176d3387d723ce5b65e93,", + "ui.component.modal.font.header": "S:7a26b1daa3a56d7d974af530d838cd89d72eff64,", + "ui.component.modal.font.content": "S:d0cf485b2361c5721ee556b7342f88e92e477f8c,", + "ui.component.modal.icon": "S:a08828abd4a5926571a6204dc5cb1abdc45d08b0,", + "ui.component.modal.border.default": "S:03eadb9f5ca960cd528eb6941eae6c41161aad77,", + "ui.component.modal.border.top.brand": "S:c8e35a28e49ccc74f13e5bb2d0d61c7cc7097494,", + "ui.component.modal.border.top.info": "S:8acc610b52510efbffa271d70a4e9749f5359910,", + "ui.component.modal.border.top.success": "S:d4d0f458dc17dde4b5a1d8076bb4eaa0c71d4864,", + "ui.component.modal.border.top.danger": "S:1d81ec49290db890c91e10dda7fc45d9b9eac9b0,", + "ui.component.modal.border.top.warning": "S:3f8a6f5a4b96396b4011cb3fc4e0165dfb24b933,", + "ui.component.modal.background": "S:7b0e7e827b16a6618b7c2fef8d56621ddffbefaf,", + "ui.component.panel-header.font": "S:fb22303279856340640025faef4bc8c2c9e3e9ab,", + "ui.component.panel-header.icon": "S:ef8a76e1dfa41a15bc612bf0206e17e1a36bfd36,", + "ui.component.panel-header.border": "S:a81a2f1e45167d03f10d2b2d6039f9019a8615d5,", + "ui.component.panel-header.background": "S:04dc3140d866fb729b8960617381179827aeafdf,", + "ui.component.popover.font": "S:972af04061822abe16a12cac2b8283ba09b62bf6,", + "ui.component.popover.icon": "S:b860cd88e09cca791a961ff49b3e3d02cb9593cf,", + "ui.component.popover.border": "S:e67fc5a52b8bc35ad486f9f23c6b5bb66ce99066,", + "ui.component.popover.background": "S:66088b19b1fb9395bd055e1d1331b59e360d5954,", + "ui.component.slider.font.label": "S:88b6447068524cab9d279f160f3df7fe0f4512b6,", + "ui.component.slider.font.tick-label": "S:98860a23bac33a31db927e7c131e1a606d38e5ab,", + "ui.component.slider.handle.background": "S:3542d2bafc7ba18f1eb660dee469a826efa970cd,", + "ui.component.slider.handle.border": "S:f2e0f1432aaa65fba1c02d7a917ec3e06daee75d,", + "ui.component.slider.border.default": "S:d063549acfeea56fec7e5ded805d513811e864f6,", + "ui.component.slider.border.active": "S:9f550df8dcef0f82030b2248bae159f66044da08,", + "ui.component.slider.tick.default.background": "S:36204d1a4bfc66778ebd59efb4b7248c60c484b1,", + "ui.component.slider.tick.default.border": "S:3b83d63cd835b7f05962285ca88d668632969ab5,", + "ui.component.slider.tick.active.background": "S:433e9146adbc633c9a78a72440091d39ac21759d,", + "ui.component.slider.tick.active.border": "S:270252772f1176f4154086a062a4378faea64507,", + "ui.component.slider-range.font.label": "S:bbb0ab49c1922157a7a66e13c97f433e2f52979d,", + "ui.component.slider-range.font.tick-label": "S:d33b9c8d55f0f10b107c2206f90735a9c646592b,", + "ui.component.slider-range.handle.background": "S:f3c28b54b2b35c7247d061168a584364f9049cbf,", + "ui.component.slider-range.handle.border": "S:b2c0dd275d94fc75b4b289c42c37e58d013ffd68,", + "ui.component.slider-range.border.default": "S:3b43abfe060c03ee9762df02fd96abd948f3884d,", + "ui.component.slider-range.border.active": "S:ce7e734230dce105dfe4b677d75fb05c1b248bba,", + "ui.component.slider-range.tick.default.background": "S:dadcbe067468a83fa4ddfffcce9eeffbff574122,", + "ui.component.slider-range.tick.default.border": "S:686dcde5c7b8715b2ef4e627fd06996c0a8190a7,", + "ui.component.slider-range.tick.active.background": "S:7962e1406283295025122481bf28b37b7ea21e0c,", + "ui.component.slider-range.tick.active.border": "S:fe43c835e74ff7873b18c418ee7103747f8d86cb,", + "ui.component.slider-histogram.font.label": "S:b5af4b7ab6b00fb6bc8a602cbb31a1d8483a707e,", + "ui.component.slider-histogram.font.tick-label": "S:bc29769f3dccc6b0d11dceb6b896d811f20401de,", + "ui.component.slider-histogram.handle.background": "S:1f6958e78d5e4ced9556e348d9cd3cd5f0db4248,", + "ui.component.slider-histogram.handle.border": "S:c7276dd158379379ccbced5f1f40bc50d9366822,", + "ui.component.slider-histogram.border.default": "S:d177419e4f5cdd7ec35db5c9f2e22f11934d53c9,", + "ui.component.slider-histogram.border.active": "S:d24cc946752c516fe22d6f9b4ffe9ff72cf7234b,", + "ui.component.slider-histogram.tick.default.background": "S:9dd8e7bf34099d9f11ee075c26f1ac260dc84ad9,", + "ui.component.slider-histogram.tick.default.border": "S:6c224bd6b6d9bd2be5c04e68ce6c1f716352257f,", + "ui.component.slider-histogram.tick.active.background": "S:cf896e5a88d284003d6f1e23f188ef50e801ce37,", + "ui.component.slider-histogram.tick.active.border": "S:ec8fda48cf04de8b685814c582d468dad378096b,", + "ui.component.slider-histogram.area.active.background": "S:d12c5bd79c232aa8e395c15416973b36b5ce30d3,", + "ui.component.slider-histogram.active-end.background": "S:bf8d41624efbd605596a1b7f9147cc7b00db4a08,", + "ui.component.slider-histogram-range.font.label": "S:5a9a6085114fec6aaa2796bb6297c66c4d20c604,", + "ui.component.slider-histogram-range.font.tick-label": "S:e916e7923d491c6dc316b9094b4926a6ddb11794,", + "ui.component.slider-histogram-range.handle.background": "S:a9ac466c4d99142e11656a0d5c1499d7492c0955,", + "ui.component.slider-histogram-range.handle.border": "S:af60ecae0e4ca7a7031caee4e91396ff74d97bca,", + "ui.component.slider-histogram-range.border.default": "S:60461f20d018ccec1837d4254577d57f189d7083,", + "ui.component.slider-histogram-range.border.active": "S:f8993fa4bb87efb1405eb2d2c6deab0bbf4ff0f4,", + "ui.component.slider-histogram-range.tick.default.background": "S:1f521c88b3aa58bfd8aa71bdc71b954ff2a5d24f,", + "ui.component.slider-histogram-range.tick.default.border": "S:6e53172cc22192c241da77a1ec7274a54b49b2d0,", + "ui.component.slider-histogram-range.tick.active.background": "S:3dfc9bf9b8fb2e92cca4fc3de22be90d669441a1,", + "ui.component.slider-histogram-range.tick.active.border": "S:3be2db911be1d3e237e4cb346b9fa33feaab9f1e,", + "ui.component.slider-histogram-range.area.active.background": "S:32aaeb9df5f6c7606ba0461768f90c3c2664eed0,", + "ui.component.slider-histogram-range.active-end.background": "S:ad91724d1c76280469a66064000e8ad0648ee43c,", + "ui.component.filter.font": "S:dbb9fd039bb514a4880107ee364ce9aa6e315469,", + "ui.component.filter.icon": "S:f7bb6d2632abff871025c15b17f2dbc567a9675a,", + "ui.component.filter.border": "S:2b4030fc7b6155a67897a7f6baad675ab2c8edf0,", + "ui.component.filter.background": "S:2a6639e772599a5b70da37a72743611d80591e4c,", + "ui.component.scrim.background": "S:47219cf841fc9aa6922b4ebbd6f00d37c50abdb6,", + "ui.component.tip-manager.font.heading": "S:f87f63e00eb86f534db2f4d4f1b896602c620f86,", + "ui.component.tip-manager.icon": "S:209a7e2ba22da149a44148bc616e2d34fe91416a,", + "ui.component.tip-manager.background.default.light": "S:d21ffadc78da347a9622c08ad4861e0e71ccdeb4,", + "ui.component.tip-manager.border.default": "S:b0864fe9abd7de54e600262e89b24436c5076a9f,", + "ui.component.button.font.brand.solid": "S:910dd18a6250a2aeeba8ee2ff0e1a2451d2ca696,", + "ui.component.button.font.brand.outline-fill": "S:c097156a98b1222750e004d0d1d7f13e356a252f,", + "ui.component.button.font.brand.outline": "S:900a211d0ab57a402446781d0001861b3388c0ae,", + "ui.component.button.font.brand.transparent": "S:3e1fb19c960119a4f5a68e03b76d5ed283ec63b3,", + "ui.component.button.font.inverse.solid": "S:20af40b9d8028f80e02e98df021d138e3a0225c5,", + "ui.component.button.font.inverse.outline-fill": "S:ca4f584eb1c58510ef7c66f8ef3c89668da8ce53,", + "ui.component.button.font.inverse.outline": "S:e59d68996c320f4393da8786385e7784a1b349ca,", + "ui.component.button.font.inverse.transparent": "S:3ad93fa70bf6532da59172152f2f6d530929fda4,", + "ui.component.button.font.neutral.solid": "S:389d3041d04f8251f6b10ab5e85732486bf4663b,", + "ui.component.button.font.neutral.outline-fill": "S:f897baac60395dc0ce220673baf85c3771d168df,", + "ui.component.button.font.neutral.outline": "S:fcc14228ee183205968ab8601b14ae4956d367dd,", + "ui.component.button.font.neutral.transparent": "S:e27f20501ed81d273c1a105f9370ac797446aa4f,", + "ui.component.button.font.danger.solid": "S:b35994aa98e62c7e6ebad85cf334bc15bc052d27,", + "ui.component.button.font.danger.outline-fill": "S:a4d0f793288bd805c5404edb0739fd505a2e3e30,", + "ui.component.button.font.danger.outline": "S:69291beafe6199e8feb36b9dc926df16ea2f0b51,", + "ui.component.button.font.danger.transparent": "S:7ad92cfbbddec8e854a19e018524ab6a12daf975,", + "ui.component.button.icon.brand.solid": "S:b87a6b51a8196f07fba740ad40b94ea81a6e8078,", + "ui.component.button.icon.brand.outline-fill": "S:3769dc268d79a0d64ac2ec6bb5b931a60922bb31,", + "ui.component.button.icon.brand.outline": "S:7fc22df889d3da25081bc801dcccd986bbdf4ce2,", + "ui.component.button.icon.brand.transparent": "S:9cde663193ab69a0f4bbb69b2f1571eed92cb349,", + "ui.component.button.icon.inverse.solid": "S:277bb4c10bda8a9eb66747e8511c3fd0926b9e64,", + "ui.component.button.icon.inverse.outline-fill": "S:c56ac0b3372328f14e74c6b2672f41c98fe0180f,", + "ui.component.button.icon.inverse.outline": "S:b1eaeeae188ddf08c865e2272f18db56d5cb36be,", + "ui.component.button.icon.inverse.transparent": "S:06d2f301cf100da045192e5aeb60975053c78b5b,", + "ui.component.button.icon.neutral.solid": "S:779c1c9b207b93efa8909a34bb5bb3a18d330d16,", + "ui.component.button.icon.neutral.outline-fill": "S:1f14491452928a686de777bacf0b3b53b4112556,", + "ui.component.button.icon.neutral.outline": "S:e1eb844101d8353aee4fcbef920b334b7cbc5d86,", + "ui.component.button.icon.neutral.transparent": "S:45a5d2681f7ab3108f61a01874dcefbd1e9dd0ec,", + "ui.component.button.icon.danger.solid": "S:89a6842e9c45946804e30cf080b84cea6e2bda5e,", + "ui.component.button.icon.danger.outline-fill": "S:805d84c3997425b16598d9607aa6697a3f4b502a,", + "ui.component.button.icon.danger.outline": "S:ae19c23828dc749af2ac3baf3f2b683152707f26,", + "ui.component.button.icon.danger.transparent": "S:fabba3be1686dd5b84eb827efa6c451c451a44a0,", + "ui.component.button.background.brand.solid": "S:4258193b47813a5378f844dfdce6d26063f8c121,", + "ui.component.button.background.brand.outline-fill": "S:ea6b2e08155658255103eb1f76d477111f46f406,", + "ui.component.button.background.inverse.solid": "S:65d76103638bf7855f0f0144182e49da030fb4cd,", + "ui.component.button.background.inverse.outline-fill": "S:5fcabcb7547f8c1a90d95db3e31061799bf5659c,", + "ui.component.button.background.neutral.solid": "S:bcd6ace96a8e8e605d7f66d9bca87873825e5741,", + "ui.component.button.background.neutral.outline-fill": "S:ed48c3366309b9a82ac8b22aeddd5999cdd67408,", + "ui.component.button.background.danger.solid": "S:eb7d217d90316d64d8551bc1a39bddfc52ba8b0b,", + "ui.component.button.background.danger.outline-fill": "S:0d6fd488d1524f9c892290deb4f5bfd078fb48f5,", + "ui.component.button.border.brand.outline-fill": "S:c182cb4236119165d8927c9dd1cf0113ebbd960d,", + "ui.component.button.border.brand.outline": "S:acff1c12dca6c671c1658991ba4fce26d48adf24,", + "ui.component.button.border.inverse.outline-fill": "S:504dbc8de3d2b3a52bdfdd246bd16d7640db2ebe,", + "ui.component.button.border.inverse.outline": "S:9712643fc67ba078f84a7644b0c590fbb4b9fe3c,", + "ui.component.button.border.neutral.outline-fill": "S:1af4cb11fbad9d8bfa7316bbaab029c3fc435179,", + "ui.component.button.border.neutral.outline": "S:5010c9f57ff17718a4fdf4fef6572b06127f0247,", + "ui.component.button.border.danger.outline-fill": "S:70fa59a05dfe9d67f304b8f226c9c657a73ee9f6,", + "ui.component.button.border.danger.outline": "S:c828d2040d2490152271cb106ffcaaf107f9aac8,", + "ui.component.split-button.font.brand.solid": "S:d55a9a48226d9402f69ee8785394807c4a1f1481,", + "ui.component.split-button.font.brand.outline-fill": "S:b099951943e398c1caa09ec7c4408f081efc278c,", + "ui.component.split-button.font.brand.outline": "S:96b3caada61811602a870d790069194c94ee3077,", + "ui.component.split-button.font.brand.transparent": "S:49ca9dd29cbdf4aa3d703344c14d1051bf009e17,", + "ui.component.split-button.font.inverse.solid": "S:43625666fc9933c339be4857428306bd31a578d1,", + "ui.component.split-button.font.inverse.outline-fill": "S:824aafe95fc10ac17c622e8733db309589031e1f,", + "ui.component.split-button.font.inverse.outline": "S:d2a3f3f3d137df9393bfbb84fc603964f75bb678,", + "ui.component.split-button.font.inverse.transparent": "S:d68fa8edabd6b4a8515c3210fb0689e0297b45ce,", + "ui.component.split-button.font.neutral.solid": "S:68278f5f3bd133e681ab326736f50b5baaba2e98,", + "ui.component.split-button.font.neutral.outline-fill": "S:04c2d085b8f7b8e5bd64a9811d763c2479c1955f,", + "ui.component.split-button.font.neutral.outline": "S:fc96a2f60825b53d194a1660101d2a00c4f2c842,", + "ui.component.split-button.font.neutral.transparent": "S:db21e47db60ca8ccfd5d8dae8f1228fd9bfd4de0,", + "ui.component.split-button.font.danger.solid": "S:9ce31d48d39a8891df3045275472eb03ec99e27e,", + "ui.component.split-button.font.danger.outline-fill": "S:c2c5fa755692d04997959ced5cc30cc68ac6b694,", + "ui.component.split-button.font.danger.outline": "S:faa520e59cb2a516b35e9d4e686d3f00368b9c9f,", + "ui.component.split-button.font.danger.transparent": "S:c49e37ccd9dee4f9ade21b27f88e796aa629d999,", + "ui.component.split-button.icon.brand.solid": "S:5b93129ef464b7fbd0f0e670c2fd667ef659fc5a,", + "ui.component.split-button.icon.brand.outline-fill": "S:2ec34d73404317a0b1babd8c2e8059f3a727d961,", + "ui.component.split-button.icon.brand.outline": "S:6239e45a4d5f40ec232a7bdba185722d6e81e430,", + "ui.component.split-button.icon.brand.transparent": "S:ccec639eaa7dbfef925925633c4ec0e8c02a5f28,", + "ui.component.split-button.icon.inverse.solid": "S:ee9d220dc3f620b38e930acdb2cbd4e4481cad14,", + "ui.component.split-button.icon.inverse.outline-fill": "S:83d3f3e630696334708077d8517adbbd3e07a75b,", + "ui.component.split-button.icon.inverse.outline": "S:33922eee273ed5ccd86a026f225bab67b6cf83aa,", + "ui.component.split-button.icon.inverse.transparent": "S:4f128818acdd26e7c6b8db714dbdc7937b703297,", + "ui.component.split-button.icon.neutral.solid": "S:af153661653c3b41a1cbbf4a1cdf360418b4285e,", + "ui.component.split-button.icon.neutral.outline-fill": "S:f97a508179796a366d6790ef88ddfa7900138592,", + "ui.component.split-button.icon.neutral.outline": "S:036a139d0dab1860447dfc10b9f17ccd66fa746d,", + "ui.component.split-button.icon.neutral.transparent": "S:0331f34573ab70359fcd18761880d626b652c5ee,", + "ui.component.split-button.icon.danger.solid": "S:f05696c03e2bca9b708fdb4f6321f0188a8d39f0,", + "ui.component.split-button.icon.danger.outline-fill": "S:df7b9545a0aeb68bbe0d03f7f27aa05121c58d1c,", + "ui.component.split-button.icon.danger.outline": "S:b4794d7d67a4f6c1b2c31da257796d59737af323,", + "ui.component.split-button.icon.danger.transparent": "S:d63e42c91591bdaa74887b8e6480d5db2bfe03f7,", + "ui.component.split-button.background.brand.solid": "S:05ef609f196a47020895f2eec40238e0107e5f0d,", + "ui.component.split-button.background.brand.outline-fill": "S:33b63390d6a23bea004b7096ed8762a6672017ff,", + "ui.component.split-button.background.inverse.solid": "S:37c89fb1cb81d7c0f4ec324331d3de918d8a15a2,", + "ui.component.split-button.background.inverse.outline-fill": "S:283ec39576cab1b43cdd874cfbfa451e7e4a4195,", + "ui.component.split-button.background.neutral.solid": "S:a891517528c344bf37522893829c1178dddf2879,", + "ui.component.split-button.background.neutral.outline-fill": "S:6cb64c5f5d6709f51512c0e67f286b5b1b09dbc9,", + "ui.component.split-button.background.danger.solid": "S:f707b2ee3d528db1ceae36bb68209b5f7d0777dd,", + "ui.component.split-button.background.danger.outline-fill": "S:7d74b68166592257921862a623767b50def06783,", + "ui.component.split-button.border.brand.outline-fill": "S:b16db00de16af6264ca0138c7de18ef801cdf1a3,", + "ui.component.split-button.border.brand.outline": "S:56c148a1f380a67905e1d9825bd7e8df60e1bbb9,", + "ui.component.split-button.border.inverse.outline-fill": "S:af25e8ed502ad405af4c8dc8da13cc4c4b897334,", + "ui.component.split-button.border.inverse.outline": "S:ede80f8d877566e00c378dae995aa2692c44239e,", + "ui.component.split-button.border.neutral.outline-fill": "S:9a56a4d7ce4282b17759d6e5394c5e092d425056,", + "ui.component.split-button.border.neutral.outline": "S:3c58f7e6307466f50368a3c883799727514c1032,", + "ui.component.split-button.border.danger.outline-fill": "S:e435f87e13e38f65cbeeda9a683c715d3f85a394,", + "ui.component.split-button.border.danger.outline": "S:3e6d6f1c2821c87ed31b81c9b3dbee2ede5a1251,", + "ui.component.split-button.divider.brand.solid": "S:e8e6e48c5e08ff35567ab2c84cde2cd7db29c7dc,", + "ui.component.split-button.divider.brand.outline-fill": "S:42d733464a664037b2acc5e73c157045e033a85e,", + "ui.component.split-button.divider.brand.outline": "S:2ca61b5612ea49768c2f5858febef22561d85552,", + "ui.component.split-button.divider.brand.transparent": "S:020b30d44a37e051f070f9912ab6581b64eacdcc,", + "ui.component.split-button.divider.inverse.solid": "S:2001f5bc031b33b24e6e6b5e887f6abb90e76bb1,", + "ui.component.split-button.divider.inverse.outline-fill": "S:e954834a40b2292bb132c8f9fb0e0a0f12a2619d,", + "ui.component.split-button.divider.inverse.outline": "S:e79f9e8ef40397fa068261252ba423983760029e,", + "ui.component.split-button.divider.inverse.transparent": "S:8ff6221141050b5d73cfa8c7a7aa3f50b8b85b05,", + "ui.component.split-button.divider.neutral.solid": "S:999209433c1dee3e124f81c1585fb885c4e63317,", + "ui.component.split-button.divider.neutral.outline-fill": "S:45a0143bc02605dcc15642df2123593a939e3bc6,", + "ui.component.split-button.divider.neutral.outline": "S:0bd6900a31f44c141a9743d55f4f8e77828f5d0f,", + "ui.component.split-button.divider.neutral.transparent": "S:679d67d3ef5b7a144d74f0cd19c7669e3a1d2588,", + "ui.component.split-button.divider.danger.solid": "S:cab6a0d7044d5657516515058bd6bf1863c0564d,", + "ui.component.split-button.divider.danger.outline-fill": "S:cd14e864c9374d77b38e0c8daa5e2847aebf86d0,", + "ui.component.split-button.divider.danger.outline": "S:3ef221cb5de592ea0d358f01b0a6a122fceff8c9,", + "ui.component.split-button.divider.danger.transparent": "S:31bf0bfec4aeb7af48e034bb0129784458620ae6,", + "ui.component.fab.font.brand.solid": "S:2fce408d6096921a424437d50f7ea5103f80e9bb,", + "ui.component.fab.font.brand.outline-fill": "S:e65b21f5effde280727d8087357b8627ddd79948,", + "ui.component.fab.font.inverse.solid": "S:fbf43a4865a2ba670c6210faf3b8edf1d014b44b,", + "ui.component.fab.font.inverse.outline-fill": "S:1348cabb593cfe0fe56096c187aa48f5c6d87f23,", + "ui.component.fab.font.neutral.solid": "S:eeaf7f7fb22849c0d25733c655566f0a6bc0a7eb,", + "ui.component.fab.font.neutral.outline-fill": "S:68e45544707b6c450396ff007c5234194d8e2a33,", + "ui.component.fab.font.danger.solid": "S:b593307ebd93bfd4f956c25f858ed9f8773e017a,", + "ui.component.fab.font.danger.outline-fill": "S:2d4423b2682563c1277176bbd8f8d8cd4440b8d5,", + "ui.component.fab.icon.brand.solid": "S:9b19b2d7f5d22750e32022aa898980a4cd362ff5,", + "ui.component.fab.icon.brand.outline-fill": "S:44a65eadc9b95e0427f9d3570bad864851065c8e,", + "ui.component.fab.icon.inverse.solid": "S:a3d2857dcd3440eadcd347223bbce79b9bfff6ff,", + "ui.component.fab.icon.inverse.outline-fill": "S:d5d55815860eb33bdfc2fe22e86a0bd876adf44e,", + "ui.component.fab.icon.neutral.solid": "S:9cc9152973779c14c93965af90ba069e0491e0a1,", + "ui.component.fab.icon.neutral.outline-fill": "S:2ae9e604cfd2cce0045c89b463a9522ea11d283c,", + "ui.component.fab.icon.danger.solid": "S:a69005cdd2ffccb5d42c9352c6d9ab23f20530d0,", + "ui.component.fab.icon.danger.outline-fill": "S:be8def95fab05666da3aac7a5162e6f2b0600079,", + "ui.component.fab.background.brand.solid": "S:d41cb91c080d0523b97da1ff044343fcdfb6d0f3,", + "ui.component.fab.background.brand.outline-fill": "S:d31c3f9f30ec2ca5e4917859e1b73341c6688768,", + "ui.component.fab.background.inverse.solid": "S:55018be441a521953fa6a474a3161e23815bd1bf,", + "ui.component.fab.background.inverse.outline-fill": "S:6dd5d3052c4b7c63ebe4d1c78d2db2437bcb5def,", + "ui.component.fab.background.neutral.solid": "S:bfb0b1a4f1ba4663577dadef8f18429ffd099c7b,", + "ui.component.fab.background.neutral.outline-fill": "S:5c7561d28b57ba9082741bf0528321ced4133b74,", + "ui.component.fab.background.danger.solid": "S:fa01b348579313f9adee96618e878fe9622d2675,", + "ui.component.fab.background.danger.outline-fill": "S:afaa11ee0448269a87cf474bcf6ab98d33281c18,", + "ui.component.fab.border.brand.outline-fill": "S:1ba3dc8769abe91a22f18fed7087ebaf641c49a5,", + "ui.component.fab.border.brand.solid": "S:33ad6f5c6f7b359b355ad42782f87829aa5748a7,", + "ui.component.fab.border.inverse.outline-fill": "S:8d57d2098c547a17f5aab47b878954d240a102e8,", + "ui.component.fab.border.inverse.solid": "S:40f7c135d41c71fd31217e0ccf2780eebb3696f0,", + "ui.component.fab.border.neutral.outline-fill": "S:c2590cb29a8dc9e9f58aff88f9ab00a3c30dbe37,", + "ui.component.fab.border.neutral.solid": "S:5320d6a6851ea9eb8873ec1659ab3578d3770177,", + "ui.component.fab.border.danger.outline-fill": "S:3f159acd808ae54c642750ccd1124917ba4fa3f3,", + "ui.component.fab.border.danger.solid": "S:1cee996bb5109b0e201999f8c162352601362a4d,", + "ui.component.combobox.icon.default.light": "S:6f15f0e533e2f1ad4e77e342baf5019ae89cbbbb,", + "ui.component.combobox.icon.dropdown.light": "S:14dd7932b05b25a812932f0498034fe42068d81e,", + "ui.component.combobox.border.light": "S:c6aa0044b4f7f46b14f909292cece21134671005,", + "ui.component.combobox.background.default.light": "S:24de7419809b1e037c994d289ed568b76ce3f68a,", + "ui.component.combobox.background.item-container.light": "S:5c5d061668be17789993e5d1748040e1555db9d6,", + "ui.component.combobox.font": "S:75ffc4d67694b9588da4cf05a51ebef84d709ab8,", + "ui.component.combobox-item.font.default.light": "S:2db500031f77108ff5a6f2a1f482c380818909ea,", + "ui.component.combobox-item.font.selected.light": "S:2322400f3a3368981293f75db07e4aa60cabd608,", + "ui.component.combobox-item.font.group-title.light": "S:ec0caf7e58f09da887eef9e6b09d8eebf01de0fa,", + "ui.component.combobox-item.icon.default.light": "S:b61466d4f9184a39cbbbb951fe6ad7eea7cc4f89,", + "ui.component.combobox-item.icon.default.selected.light": "S:797ea146faf9b2d5f705688b65c4b0038658edb0,", + "ui.component.combobox-item.icon.select.light": "S:0fa24b1aafc9e5db1f8f3d36704d8dac8a4557f7,", + "ui.component.combobox-item.border.light": "S:3ce3da39dda3bba560473ab571ed057c976f0d0e,", + "ui.component.dropdown.background.default.light": "S:e0bfe2cdd9fa48ded50f155c927510b678aa0da8,", + "ui.component.dropdown-item.font.default.light": "S:b434a8a0753442fccf02c2039e94c961f965c82a,", + "ui.component.dropdown-item.font.selected.light": "S:7f7d96a7570499f302f99837cf8ff6ba30180789,", + "ui.component.dropdown-item.font.group-title.light": "S:8f0e99e92f77b07d372cf111f79bf0828e3809da,", + "ui.component.dropdown-item.icon.default.light": "S:d51d24696d64e9db0caadf6fb789bc88287393a0,", + "ui.component.dropdown-item.icon.default.selected.light": "S:b914de24e7c904111f7172586b1de269b90462d3,", + "ui.component.dropdown-item.icon.select.light": "S:8f592764df39a8b25d25203c49eebde16895d6b5,", + "ui.component.dropdown-item.border.light": "S:129e57436a560c6387b333cebd3264a12d9041b6,", + "ui.component.segmented-control.border.light": "S:1e86fc67be1bdd691de0612289afb78ae31f059e,", + "ui.component.segmented-control.background.light": "S:f2329c9cd7e082f3f9e5a7934899d81a9cd367df,", + "ui.component.segmented-control-item-.font.solid.default.light": "S:efbb000d9c41fd445d2cfc788db7d02c4a562c82,", + "ui.component.segmented-control-item-.font.solid.checked.light": "S:cad49c05c41f2811156196ae7c63a3b6e6bc3b00,", + "ui.component.segmented-control-item-.font.outline.default.light": "S:f1dfdfe0bd17df9abab5d3f6a13d2ee7ea1cb653,", + "ui.component.segmented-control-item-.font.outline.checked.light": "S:21b15f1c6148db891df3f7d72ee4a27513bbf4e1,", + "ui.component.segmented-control-item-.icon.solid.default.light": "S:b430abe5f2cbac1c2e3b4cca25783488e93ab2c9,", + "ui.component.segmented-control-item-.icon.solid.checked.light": "S:b8bf26f0b4805e131257656d6bcaa4f93b0bdf1f,", + "ui.component.segmented-control-item-.icon.outline.checked.light": "S:d305a6608df4a2caa2264023fb5728ec91043d13,", + "ui.component.segmented-control-item-.icon.outline.default.light": "S:95176a6994c82961a0d0b07939d9639f245bc929,", + "ui.component.segmented-control-item-.border.outline.checked.light": "S:afe6210b9109ea6c86bab85216b6c565e89f9677,", + "ui.component.segmented-control-item-.background.solid.checked.light": "S:b34c16fbe952dca82c0115612e1fd5787ea0f7a7,", + "ui.component.select.font.light": "S:0d4f11e3bc8efa2d173cbab04d8b4fa582250e03,", + "ui.component.select.icon.light": "S:db9eb89f78f45d32fa70c7d9e231e1c0ecbe9307,", + "ui.component.select.border.light": "S:4355b1d502a348fa65f6a0d5b90eb0230592a84a,", + "ui.component.select.background.light": "S:82304a84344cf023ec00fd0b04b5fa5fb57118f8,", + "ui.component.stepper-item.font.heading.default.light": "S:a52a40b2bfc704259c262a5d7f08e1213fe17495,", + "ui.component.stepper-item.font.heading.active.light": "S:9a258507f010d472af51aefcef51121045ec69d8,", + "ui.component.stepper-item.font.heading.error.light": "S:d4a9ebd5165d6010419a1e89875225ef91e0d163,", + "ui.component.stepper-item.font.heading.complete.light": "S:6bab881b9ab568864667b7173caced991034e978,", + "ui.component.stepper-item.font.description.default.light": "S:79bf167ecaadc32d0ee3587a11ffd518607152fc,", + "ui.component.stepper-item.font.description.active.light": "S:9c48bbb97b5403471250db3e95837d24c54f6b7d,", + "ui.component.stepper-item.font.description.error.light": "S:ba55730e30617424611472868429bf1260fa5b4b,", + "ui.component.stepper-item.font.description.complete.light": "S:355ccb415b05ad4edfaa0b8dfc998c43effad494,", + "ui.component.stepper-item.font.context.default.light": "S:7e475b92b144293dffd9be14765b2b1830dfdac9,", + "ui.component.stepper-item.font.context.active.light": "S:fb9791d0fe48f4adb525f221efe5b058093b1b34,", + "ui.component.stepper-item.font.context.error.light": "S:6e3319a006b622b8fc21cc5609e34cd0e5432732,", + "ui.component.stepper-item.font.context.complete.light": "S:2bc3463b60fdcf1634fed41dfe0b78e89e30f4eb,", + "ui.component.stepper-item.icon.default.light": "S:d054a1380bd8890832ea53846c1a64e6e6966ef8,", + "ui.component.stepper-item.icon.active.light": "S:c72c7f08e940edffcd9652e506c284cda9b46137,", + "ui.component.stepper-item.icon.error.light": "S:7bddd99a933bd32c6b1a2ebc6c3624e820cffc6e,", + "ui.component.stepper-item.icon.complete.light": "S:b2af89ece472f18d875664f7b1650b40b3ed3c76,", + "ui.component.stepper-item.border.default.light": "S:cddfac6136835ea1f1c6f17ca685cdb90fa5923e,", + "ui.component.stepper-item.border.active.light": "S:533dfad188e7a01eeeaa9ec74c1f9f51ef15d8de,", + "ui.component.stepper-item.border.error.light": "S:5db619cbd177f903cb14249d029b51bdf8a8a00a,", + "ui.component.stepper-item.border.complete.light": "S:c3ededf3641cdf5667a0d1f25114b37660a23ab0,", + "ui.component.tip.font.heading": "S:e52076b324786df0a722f0ca96f6de8120a16a5f,", + "ui.component.tip.font.description": "S:e9d24552f98a06d605790196ef31b4670403bd34,", + "ui.component.tip.icon": "S:4ef54d2bbf63f6a3399ae336b48fdc0e50986ba6,", + "ui.component.tip.background.default.light": "S:37bd9e13f695ed79c85fdb19a493a37e34e46805,", + "ui.component.tip.border.default": "S:76ab14967f8d1557dc9abe5f286f497993750ee8,", + "ui.component.segmented-control-item.font.solid.default.light": "S:a6970beb05a5dea650831511c7a47c444ca63653,", + "ui.component.segmented-control-item.font.solid.checked.light": "S:a7639933c02ea3c4ed6bb287fd9ca22066b65239,", + "ui.component.segmented-control-item.font.outline.default.light": "S:878f217820a6c78060fe7b5f0143c118b7342a1a,", + "ui.component.segmented-control-item.font.outline.checked.light": "S:880bd9152a2ca84859a2f15d1029c66d32a0f19f,", + "ui.component.segmented-control-item.icon.solid.default.light": "S:0a83064368f0a55feceb1e117ce01b08cb4937a5,", + "ui.component.segmented-control-item.icon.solid.checked.light": "S:1351e978855b7f938c4d8a1a00e2887bae3462ba,", + "ui.component.segmented-control-item.icon.outline.checked.light": "S:f0051d8213046ba4caf03108554ebe4465b8cd2c,", + "ui.component.segmented-control-item.icon.outline.default.light": "S:cf0578e1611e5f8d752fce4c0c896c4318e92877,", + "ui.component.segmented-control-item.border.outline.checked.light": "S:530fd0dca800c286ae0bc3a8f67325c33bab58fc,", + "ui.component.segmented-control-item.background.solid.checked.light": "S:3048181e5da0e46b738c41c4393a08c7ab482bfd,", + "ui.brand-hover": "S:82191c630852ab911d102c65374c08df2ae4e684,", + "ui.brand-press": "S:438202e410f2b8ec667c3de86b27b00bb0792652,", + "ui.info": "S:13334886bed3ba3b67184e61b5da813db367bf8b,", + "ui.success": "S:b1b3585ac48d79aab9aea1f229229e2d89faf541,", + "ui.warning": "S:ba44469c80cd28b6d470efba7153aedccd096a1e,", + "ui.danger": "S:d66978ed3a80f87eabbd293be212780c1e282f92,", + "ui.danger-press": "S:b3f0a496b1f3e608725c95022bc17d9e0940ecce,", + "ui.inverse": "S:6771ed6ed5d9323f298d5337b1a1a3623c8868a3,", + "ui.inverse-press": "S:16d8bbf20cecc89148cd309f39418002ad2e4ec7,", + "ui.inverse-hover": "S:010cfcaf3d9bb01f9b2439cb32a6e4d1d88de3aa,", + "ui.text-1": "S:f30c9bbfab3cc5d5cb308645865bf5eb860c58c3,", + "ui.text-2": "S:b2eee7d9a332e7946a6aec28479a806a470bbf7f,", + "ui.text-3": "S:dfa857993dcf3a70e9f48ec59f2a3867d397a6eb,", + "ui.text-inverse": "S:30587ba6534d07cc0e1f590672eccd36f939aad1,", + "ui.text-link": "S:8b9977376a2a7810fc561483fabfeca0795513a2,", + "ui.border-1": "S:45a7cd63b3a23a8d437edb6efd908fef49eeed4a,", + "ui.border-2": "S:a3f681a7069d9d1be6e3e388fe435cfc402b2ec6,", + "ui.border-3": "S:9005cd2e541c6c930a49f20c481c43374290eda9,", + "ui.border-input": "S:6e2a62b341dc660a30efed2b04aee3a7a7346afe,", + "ui.danger-hover-dark": "S:65d569b7aaffa07ad9b718caab129f970ad30cce,", + "ui.background-dark": "S:8b70cd7b97ca6651f949b439939378f70a8db5d7,", + "ui.foreground-1-dark": "S:99504e9b5f4f20e9a5833135d0013a5a179e4503,", + "ui.foreground-2-dark": "S:81d27c4365a172aeff0b39d3b5f6fddc69d9c376,", + "ui.foreground-3-dark": "S:9210cbf439e1be6a679c81bc7354668ac582faed,", + "ui.foreground-current-dark": "S:167d070a922eb4d74130043409a40a1a72251aee,", + "ui.text-highlight-dark": "S:aee85161ecc8104999ec5401b10d85fa4a4c39a6,", + "ui.brand-dark": "S:1567727fc712629efe554cf9c8f11f4e3f39351b,", + "ui.brand-hover-dark": "S:db559cade593d627a43a6295c5227a5d56a9c1d8,", + "ui.brand-press-dark": "S:b837b9c1f73bcb26cf8c1f0b0b0131fa3f226dcd,", + "ui.info-dark": "S:60456bc55999000f2bbdb298c29991c62dbc436e,", + "ui.success-dark": "S:13f71893fbb1e3bb3ad7d097c9c062742ca26ba6,", + "ui.warning-dark": "S:aa0ca4e7a79b310a38ec49521c05d3e6ac520f01,", + "ui.danger-dark": "S:3ea173140aa174a83daeb4270ae84e9daaa1230a,", + "ui.danger-press-dark": "S:aaf8417e0b6ae10f2c125e4aa869c0c996d04674,", + "ui.inverse-dark": "S:287b43844cafea91435618cbe09ec71cf95a1bed,", + "ui.inverse-press-dark": "S:14443a4076490ba12d5c840123b965b7b3bcaeb1,", + "ui.inverse-hover-dark": "S:645f4ee65a46b77041c70da25454e033b93f729a,", + "ui.text-1-dark": "S:24f532ed480a3fd3ba8c65586b8030375d0a968c,", + "ui.text-2-dark": "S:1514fd04086648d806b84b70dd756e013ee5e030,", + "ui.text-3-dark": "S:70b00d3d1ae3864df20662da0658ffd51f92ced1,", + "ui.text-inverse-dark": "S:821e664626dcfe7288e2520a31d1bd3ab6f281b6,", + "ui.text-link-dark": "S:e4f4b0799e21f767abf5f55451f62e4f57702e0e,", + "ui.border-1-dark": "S:475199dbcc3c5f656088fe717b5d8713f199c2f6,", + "ui.border-2-dark": "S:739a339dcf8020e669ead99ce3a9a84d609cfb6e,", + "ui.border-3-dark": "S:0565c0196f89faadbd91dcbc8313da2009d180d8,", + "ui.border-input-dark": "S:9620f16b6c2970b282dee45abc01035009cb5ec5,", + "ui.button-transparent-hover-dark": "S:e481950dfbc8c7aea421ef93c408afd4ed132c6b,", + "ui.button-transparent-press-dark": "S:c847d67bc6c7c6629d7c0531b5f2926eb79474fb," } } ] diff --git a/packages/calcite-design-tokens/src/brand/light.json b/packages/calcite-design-tokens/src/brand/light.json index 22b5d0a4a8d..a18c21b04d4 100644 --- a/packages/calcite-design-tokens/src/brand/light.json +++ b/packages/calcite-design-tokens/src/brand/light.json @@ -3,7 +3,7 @@ "font": { "font-size": { "6": { - "value": "26px", + "value": "26", "type": "fontSizes" } } @@ -12,7 +12,7 @@ "breakpoint": { "width": { "lg": { - "value": "$core.breakpoint.width.lg", + "value": "{core.breakpoint.width.lg}", "type": "sizing" } } diff --git a/packages/calcite-design-tokens/src/calcite/dark.json b/packages/calcite-design-tokens/src/calcite/dark.json index 164f96dd0f4..19c47c8d2d1 100644 --- a/packages/calcite-design-tokens/src/calcite/dark.json +++ b/packages/calcite-design-tokens/src/calcite/dark.json @@ -2,217 +2,217 @@ "color": { "brand": { "default": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.brand.hover.dark", + "value": "{semantic.ui.color.brand.hover.dark}", "type": "color" }, "press": { - "value": "$semantic.ui.color.brand.press.dark", + "value": "{semantic.ui.color.brand.press.dark}", "type": "color" } }, "background": { "1": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "foreground": { "1": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" }, "2": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.2.dark}", "type": "color" }, "3": { - "value": "{semantic.ui.color.foreground.3.dark}", + "value": "{semantic.ui.color.foreground.current.dark}", "type": "color" } }, "text": { "1": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "2": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "3": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "inverse": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" }, "link": { - "value": "$semantic.ui.color.text.link.dark", + "value": "{semantic.ui.color.text.link.dark}", "type": "color" } }, "border": { "1": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" }, "2": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" }, "3": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" }, "input": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "info": { "default": { - "value": "$semantic.ui.color.info.default.dark", + "value": "{semantic.ui.color.info.default.dark}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.info.hover.dark", + "value": "{semantic.ui.color.info.hover.dark}", "type": "color" }, "press": { - "value": "$semantic.ui.color.info.press.dark", + "value": "{semantic.ui.color.info.press.dark}", "type": "color" } }, "success": { "default": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.success.hover.dark", + "value": "{semantic.ui.color.success.hover.dark}", "type": "color" }, "press": { - "value": "$semantic.ui.color.success.press.dark", + "value": "{semantic.ui.color.success.press.dark}", "type": "color" } }, "warning": { "default": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.warning.hover.dark", + "value": "{semantic.ui.color.warning.hover.dark}", "type": "color" }, "press": { - "value": "$semantic.ui.color.warning.press.dark", + "value": "{semantic.ui.color.warning.press.dark}", "type": "color" } }, "danger": { "default": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.danger.hover.dark", + "value": "{semantic.ui.color.danger.hover.dark}", "type": "color" }, "press": { - "value": "$semantic.ui.color.danger.press.dark", + "value": "{semantic.ui.color.danger.press.dark}", "type": "color" } }, "inverse": { "default": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "component": { "avatar": { "font": { - "value": "$avatar.font.dark", + "value": "{avatar.font.dark}", "type": "color" }, "icon": { - "value": "$avatar.icon.dark", + "value": "{avatar.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$avatar.background.default.dark", + "value": "{avatar.background.default.dark}", "type": "color" }, "red": { - "value": "$avatar.background.red.dark", + "value": "{avatar.background.red.dark}", "type": "color" }, "teal": { - "value": "$avatar.background.teal.dark", + "value": "{avatar.background.teal.dark}", "type": "color" }, "blue": { - "value": "$avatar.background.blue.dark", + "value": "{avatar.background.blue.dark}", "type": "color" }, "green": { - "value": "$avatar.background.green.dark", + "value": "{avatar.background.green.dark}", "type": "color" }, "yellow": { - "value": "$avatar.background.yellow.dark", + "value": "{avatar.background.yellow.dark}", "type": "color" } } }, "checkbox": { "font": { - "value": "$checkbox.font.dark", + "value": "{checkbox.font.dark}", "type": "color" }, "background": { "default": { - "value": "$checkbox.background.default.dark", + "value": "{checkbox.background.default.dark}", "type": "color" }, "selected": { - "value": "$checkbox.background.selected.dark", + "value": "{checkbox.background.selected.dark}", "type": "color" } }, "icon": { - "value": "$checkbox.icon.dark", + "value": "{checkbox.icon.dark}", "type": "color" }, "border": { - "value": "$checkbox.border.dark", + "value": "{checkbox.border.dark}", "type": "color" } }, "radio": { "font": { - "value": "$radio.font.dark", + "value": "{radio.font.dark}", "type": "color" }, "background": { - "value": "$radio.background.dark", + "value": "{radio.background.dark}", "type": "color" }, "border": { "unchecked": { - "value": "$radio.border.unchecked.dark", + "value": "{radio.border.unchecked.dark}", "type": "color" }, "checked": { - "value": "$radio.border.checked.dark", + "value": "{radio.border.checked.dark}", "type": "color" } } @@ -220,84 +220,84 @@ "chip": { "font": { "clear": { - "value": "$chip.font.clear.dark", + "value": "{chip.font.clear.dark}", "type": "color" }, "solid": { "grey": { - "value": "$chip.font.solid.grey.dark", + "value": "{chip.font.solid.grey.dark}", "type": "color" }, "blue": { - "value": "$chip.font.solid.blue.dark", + "value": "{chip.font.solid.blue.dark}", "type": "color" }, "red": { - "value": "$chip.font.solid.red.dark", + "value": "{chip.font.solid.red.dark}", "type": "color" }, "yellow": { - "value": "$chip.font.solid.yellow.dark", + "value": "{chip.font.solid.yellow.dark}", "type": "color" }, "green": { - "value": "$chip.font.solid.green.dark", + "value": "{chip.font.solid.green.dark}", "type": "color" } } }, "icon": { "clear": { - "value": "$chip.icon.clear.dark", + "value": "{chip.icon.clear.dark}", "type": "color" }, "solid": { "grey": { - "value": "$chip.icon.solid.grey.dark", + "value": "{chip.icon.solid.grey.dark}", "type": "color" }, "blue": { - "value": "$chip.icon.solid.blue.dark", + "value": "{chip.icon.solid.blue.dark}", "type": "color" }, "red": { - "value": "$chip.icon.solid.red.dark", + "value": "{chip.icon.solid.red.dark}", "type": "color" }, "yellow": { - "value": "$chip.icon.solid.yellow.dark", + "value": "{chip.icon.solid.yellow.dark}", "type": "color" }, "green": { - "value": "$chip.icon.solid.green.dark", + "value": "{chip.icon.solid.green.dark}", "type": "color" } } }, "closable-icon": { - "value": "$chip.closable-icon.dark", + "value": "{chip.closable-icon.dark}", "type": "color" }, "background": { "solid": { "grey": { - "value": "$chip.background.solid.grey.dark", + "value": "{chip.background.solid.grey.dark}", "type": "color" }, "blue": { - "value": "$chip.background.solid.blue.dark", + "value": "{chip.background.solid.blue.dark}", "type": "color" }, "red": { - "value": "$chip.background.solid.red.dark", + "value": "{chip.background.solid.red.dark}", "type": "color" }, "yellow": { - "value": "$chip.background.solid.yellow.dark", + "value": "{chip.background.solid.yellow.dark}", "type": "color" }, "green": { - "value": "$chip.background.solid.green.dark", + "value": "{chip.background.solid.green.dark}", "type": "color" } } @@ -305,23 +305,23 @@ "border": { "clear": { "grey": { - "value": "$chip.border.clear.grey.dark", + "value": "{chip.border.clear.grey.dark}", "type": "color" }, "blue": { - "value": "$chip.border.clear.blue.dark", + "value": "{chip.border.clear.blue.dark}", "type": "color" }, "red": { - "value": "$chip.border.clear.red.dark", + "value": "{chip.border.clear.red.dark}", "type": "color" }, "yellow": { - "value": "$chip.border.clear.yellow.dark", + "value": "{chip.border.clear.yellow.dark}", "type": "color" }, "green": { - "value": "$chip.border.clear.green.dark", + "value": "{chip.border.clear.green.dark}", "type": "color" } } @@ -329,29 +329,29 @@ }, "label": { "font": { - "value": "$label.font.dark", + "value": "{label.font.dark}", "type": "color" } }, "loader": { "font": { - "value": "$loader.font.dark", + "value": "{loader.font.dark}", "type": "color" }, "default": { "foreground": { - "value": "$loader.default.foreground.dark", + "value": "{loader.default.foreground.dark}", "type": "color" } }, "inline": { "foreground": { "indeterminate": { - "value": "$loader.inline.foreground.indeterminate.dark", + "value": "{loader.inline.foreground.indeterminate.dark}", "type": "color" }, "determinate": { - "value": "$loader.inline.foreground.determinate.dark", + "value": "{loader.inline.foreground.determinate.dark}", "type": "color" } } @@ -361,15 +361,15 @@ "star": { "background": { "default": { - "value": "$rating.star.background.default.dark", + "value": "{rating.star.background.default.dark}", "type": "color" }, "active": { - "value": "$rating.star.background.active.dark", + "value": "{rating.star.background.active.dark}", "type": "color" }, "average": { - "value": "$rating.star.background.average.dark", + "value": "{rating.star.background.average.dark}", "type": "color" } } @@ -377,76 +377,46 @@ "chip": { "count": { "font": { - "value": "$rating.chip.count.font.dark", + "value": "{rating.chip.count.font.dark}", "type": "color" } }, "foreground": { - "value": "$rating.chip.foreground.dark", + "value": "{rating.chip.foreground.dark}", "type": "color" } } }, "tooltip": { "foreground": { - "value": "$tooltip.foreground.dark", + "value": "{tooltip.foreground.dark}", "type": "color" }, "border": { - "value": "$tooltip.border.dark", + "value": "{tooltip.border.dark}", "type": "color" }, "font": { - "value": "$tooltip.font.dark", - "type": "color" - } - }, - "accordion-item": { - "font": { - "heading": { - "value": "$accordion-item.font.heading.dark", - "type": "color" - }, - "description": { - "value": "$accordion-item.font.description.dark", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$accordion-item.icon.dark", - "type": "color" - }, - "expanded": { - "value": "$accordion-item.icon.expanded.dark", - "type": "color" - } - }, - "background": { - "value": "$accordion-item.background.default.dark", - "type": "color" - }, - "border": { - "value": "$accordion-item.border.dark", + "value": "{tooltip.font.dark}", "type": "color" } }, "input-message": { "font": { - "value": "$input-message.font.dark", + "value": "{input-message.font.dark}", "type": "color" }, "icon": { "idle": { - "value": "$input-message.icon.idle.dark", + "value": "{input-message.icon.idle.dark}", "type": "color" }, "invalid": { - "value": "$input-message.icon.invalid.dark", + "value": "{input-message.icon.invalid.dark}", "type": "color" }, "valid": { - "value": "$input-message.icon.valid.dark", + "value": "{input-message.icon.valid.dark}", "type": "color" } } @@ -454,55 +424,55 @@ "alert": { "font": { "title": { - "value": "$alert.font.title.dark", + "value": "{alert.font.title.dark}", "type": "color" }, "message": { - "value": "$alert.font.message.dark", + "value": "{alert.font.message.dark}", "type": "color" } }, "background": { - "value": "$alert.background.dark", + "value": "{alert.background.dark}", "type": "color" }, "border": { - "value": "$alert.border.dark", + "value": "{alert.border.dark}", "type": "color" }, "icon": { "blue": { - "value": "$alert.icon.blue.dark", + "value": "{alert.icon.blue.dark}", "type": "color" }, "green": { - "value": "$alert.icon.green.dark", + "value": "{alert.icon.green.dark}", "type": "color" }, "yellow": { - "value": "$alert.icon.yellow.dark", + "value": "{alert.icon.yellow.dark}", "type": "color" }, "red": { - "value": "$alert.icon.red.dark", + "value": "{alert.icon.red.dark}", "type": "color" } }, "highlight": { "blue": { - "value": "$alert.icon.blue.dark", + "value": "{alert.icon.blue.dark}", "type": "color" }, "green": { - "value": "$alert.icon.green.dark", + "value": "{alert.icon.green.dark}", "type": "color" }, "yellow": { - "value": "$alert.icon.yellow.dark", + "value": "{alert.icon.yellow.dark}", "type": "color" }, "red": { - "value": "$alert.icon.red.dark", + "value": "{alert.icon.red.dark}", "type": "color" } } @@ -510,21 +480,21 @@ "color-picker": { "font": { "label": { - "value": "$color-picker.font.label.dark", + "value": "{color-picker.font.label.dark}", "type": "color" } }, "icon": { - "value": "$color-picker.icon.dark", + "value": "{color-picker.icon.dark}", "type": "color" }, "border": { - "value": "$color-picker.border.dark", + "value": "{color-picker.border.dark}", "type": "color" }, "background": { "default": { - "value": "$color-picker.background.default.dark", + "value": "{color-picker.background.default.dark}", "type": "color" } } @@ -532,64 +502,64 @@ "date-picker": { "font": { "date": { - "value": "$date-picker.font.date.dark", + "value": "{date-picker.font.date.dark}", "type": "color" }, "day": { - "value": "$date-picker.font.day.dark", + "value": "{date-picker.font.day.dark}", "type": "color" }, "month": { - "value": "$date-picker.font.month.dark", + "value": "{date-picker.font.month.dark}", "type": "color" }, "range": { "date": { - "value": "$date-picker.font.range.date.dark", + "value": "{date-picker.font.range.date.dark}", "type": "color" } }, "selected": { "date": { - "value": "$date-picker.font.selected.date.dark", + "value": "{date-picker.font.selected.date.dark}", "type": "color" } }, "active": { "date": { - "value": "$date-picker.font.active.date.dark", + "value": "{date-picker.font.active.date.dark}", "type": "color" } } }, "icon": { - "value": "$date-picker.icon.dark", + "value": "{date-picker.icon.dark}", "type": "color" }, "border": { - "value": "$date-picker.border.dark", + "value": "{date-picker.border.dark}", "type": "color" }, "date": { "active": { "border": { - "value": "$date-picker.date.active.border.dark", + "value": "{date-picker.date.active.border.dark}", "type": "color" } } }, "background": { "default": { - "value": "$date-picker.background.default.dark", + "value": "{date-picker.background.default.dark}", "type": "color" }, "date": { "range": { - "value": "$date-picker.background.date.range.dark", + "value": "{date-picker.background.date.range.dark}", "type": "color" }, "active": { - "value": "$date-picker.background.date.active.dark", + "value": "{date-picker.background.date.active.dark}", "type": "color" } } @@ -598,33 +568,33 @@ "input-date-picker": { "font": { "placeholder-value": { - "value": "$input-date-picker.font.placeholder-value.dark", + "value": "{input-date-picker.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-date-picker.font.label.dark", + "value": "{input-date-picker.font.label.dark}", "type": "color" } }, "icon": { - "value": "$input-date-picker.icon.dark", + "value": "{input-date-picker.icon.dark}", "type": "color" }, "border": { - "value": "$input-date-picker.border.dark", + "value": "{input-date-picker.border.dark}", "type": "color" }, "background": { "default": { - "value": "$input-date-picker.background.default.dark", + "value": "{input-date-picker.background.default.dark}", "type": "color" }, "arrow": { - "value": "$input-date-picker.background.arrow.dark", + "value": "{input-date-picker.background.arrow.dark}", "type": "color" }, "read-only": { - "value": "$input-date-picker.background.read-only.dark", + "value": "{input-date-picker.background.read-only.dark}", "type": "color" } } @@ -632,43 +602,43 @@ "input-datetime-local": { "font": { "placeholder-value": { - "value": "$input-datetime-local.font.placeholder-value.dark", + "value": "{input-datetime-local.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-datetime-local.font.label.dark", + "value": "{input-datetime-local.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-datetime-local.font.prefix-suffix.dark", + "value": "{input-datetime-local.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-datetime-local.icon.dark", + "value": "{input-datetime-local.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-datetime-local.background.default.dark", + "value": "{input-datetime-local.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-datetime-local.background.prefix-suffix.dark", + "value": "{input-datetime-local.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-datetime-local.background.read-only.dark", + "value": "{input-datetime-local.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-datetime-local.border.default.dark", + "value": "{input-datetime-local.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-datetime-local.border.invalid.dark", + "value": "{input-datetime-local.border.invalid.dark}", "type": "color" } } @@ -676,43 +646,43 @@ "input-email": { "font": { "placeholder-value": { - "value": "$input-email.font.placeholder-value.dark", + "value": "{input-email.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-email.font.label.dark", + "value": "{input-email.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-email.font.prefix-suffix.dark", + "value": "{input-email.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-email.icon.dark", + "value": "{input-email.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-email.background.default.dark", + "value": "{input-email.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-email.background.prefix-suffix.dark", + "value": "{input-email.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-email.background.read-only.dark", + "value": "{input-email.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-email.border.default.dark", + "value": "{input-email.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-email.border.invalid.dark", + "value": "{input-email.border.invalid.dark}", "type": "color" } } @@ -720,43 +690,43 @@ "input-file": { "font": { "placeholder-value": { - "value": "$input-file.font.placeholder-value.dark", + "value": "{input-file.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-file.font.label.dark", + "value": "{input-file.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-file.font.prefix-suffix.dark", + "value": "{input-file.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-file.icon.dark", + "value": "{input-file.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-file.background.default.dark", + "value": "{input-file.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-file.background.prefix-suffix.dark", + "value": "{input-file.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-file.background.read-only.dark", + "value": "{input-file.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-file.border.default.dark", + "value": "{input-file.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-file.border.invalid.dark", + "value": "{input-file.border.invalid.dark}", "type": "color" } } @@ -764,43 +734,43 @@ "input-month": { "font": { "placeholder-value": { - "value": "$input-month.font.placeholder-value.dark", + "value": "{input-month.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-month.font.label.dark", + "value": "{input-month.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-month.font.prefix-suffix.dark", + "value": "{input-month.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-month.icon.dark", + "value": "{input-month.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-month.background.default.dark", + "value": "{input-month.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-month.background.prefix-suffix.dark", + "value": "{input-month.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-month.background.read-only.dark", + "value": "{input-month.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-month.border.default.dark", + "value": "{input-month.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-month.border.invalid.dark", + "value": "{input-month.border.invalid.dark}", "type": "color" } } @@ -808,39 +778,39 @@ "input-number": { "font": { "placeholder-value": { - "value": "$input-number.font.placeholder-value.dark", + "value": "{input-number.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-number.font.label.dark", + "value": "{input-number.font.label.dark}", "type": "color" } }, "icon": { - "value": "$input-number.icon.dark", + "value": "{input-number.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-number.background.default.dark", + "value": "{input-number.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-number.background.prefix-suffix.dark", + "value": "{input-number.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-number.background.read-only.dark", + "value": "{input-number.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-number.border.default.dark", + "value": "{input-number.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-number.border.invalid.dark", + "value": "{input-number.border.invalid.dark}", "type": "color" } } @@ -848,43 +818,43 @@ "input-password": { "font": { "placeholder-value": { - "value": "$input-password.font.placeholder-value.dark", + "value": "{input-password.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-password.font.label.dark", + "value": "{input-password.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-password.font.prefix-suffix.dark", + "value": "{input-password.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-password.icon.dark", + "value": "{input-password.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-password.background.default.dark", + "value": "{input-password.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-password.background.prefix-suffix.dark", + "value": "{input-password.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-password.background.read-only.dark", + "value": "{input-password.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-password.border.default.dark", + "value": "{input-password.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-password.border.invalid.dark", + "value": "{input-password.border.invalid.dark}", "type": "color" } } @@ -892,43 +862,43 @@ "input-search": { "font": { "placeholder-value": { - "value": "$input-search.font.placeholder-value.dark", + "value": "{input-search.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-search.font.label.dark", + "value": "{input-search.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-search.font.prefix-suffix.dark", + "value": "{input-search.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-search.icon.dark", + "value": "{input-search.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-search.background.default.dark", + "value": "{input-search.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-search.background.prefix-suffix.dark", + "value": "{input-search.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-search.background.read-only.dark", + "value": "{input-search.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-search.border.default.dark", + "value": "{input-search.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-search.border.invalid.dark", + "value": "{input-search.border.invalid.dark}", "type": "color" } } @@ -936,43 +906,43 @@ "input-telephone": { "font": { "placeholder-value": { - "value": "$input-telephone.font.placeholder-value.dark", + "value": "{input-telephone.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-telephone.font.label.dark", + "value": "{input-telephone.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-telephone.font.prefix-suffix.dark", + "value": "{input-telephone.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-telephone.icon.dark", + "value": "{input-telephone.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-telephone.background.default.dark", + "value": "{input-telephone.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-telephone.background.prefix-suffix.dark", + "value": "{input-telephone.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-telephone.background.read-only.dark", + "value": "{input-telephone.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-telephone.border.default.dark", + "value": "{input-telephone.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-telephone.border.invalid.dark", + "value": "{input-telephone.border.invalid.dark}", "type": "color" } } @@ -980,43 +950,43 @@ "input-text": { "font": { "placeholder-value": { - "value": "$input-text.font.placeholder-value.dark", + "value": "{input-text.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-text.font.label.dark", + "value": "{input-text.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-text.font.prefix-suffix.dark", + "value": "{input-text.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-text.icon.dark", + "value": "{input-text.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-text.background.default.dark", + "value": "{input-text.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-text.background.prefix-suffix.dark", + "value": "{input-text.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-text.background.read-only.dark", + "value": "{input-text.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-text.border.default.dark", + "value": "{input-text.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-text.border.invalid.dark", + "value": "{input-text.border.invalid.dark}", "type": "color" } } @@ -1024,43 +994,43 @@ "input-week": { "font": { "placeholder-value": { - "value": "$input-week.font.placeholder-value.dark", + "value": "{input-week.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$input-week.font.label.dark", + "value": "{input-week.font.label.dark}", "type": "color" }, "prefix-suffix": { - "value": "$input-week.font.prefix-suffix.dark", + "value": "{input-week.font.prefix-suffix.dark}", "type": "color" } }, "icon": { - "value": "$input-week.icon.dark", + "value": "{input-week.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$input-week.background.default.dark", + "value": "{input-week.background.default.dark}", "type": "color" }, "prefix-sufix": { - "value": "$input-week.background.prefix-suffix.dark", + "value": "{input-week.background.prefix-suffix.dark}", "type": "color" }, "read-only": { - "value": "$input-week.background.read-only.dark", + "value": "{input-week.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$input-week.border.default.dark", + "value": "{input-week.border.default.dark}", "type": "color" }, "invalid": { - "value": "$input-week.border.invalid.dark", + "value": "{input-week.border.invalid.dark}", "type": "color" } } @@ -1068,35 +1038,35 @@ "textarea": { "font": { "placeholder-value": { - "value": "$textarea.font.placeholder-value.dark", + "value": "{textarea.font.placeholder-value.dark}", "type": "color" }, "label": { - "value": "$textarea.font.label.dark", + "value": "{textarea.font.label.dark}", "type": "color" }, "chat-limit": { - "value": "$textarea.font.chat-limit.dark", + "value": "{textarea.font.chat-limit.dark}", "type": "color" } }, "icon": { - "value": "$textarea.icon.dark", + "value": "{textarea.icon.dark}", "type": "color" }, "background": { "default": { - "value": "$textarea.background.default.dark", + "value": "{textarea.background.default.dark}", "type": "color" }, "read-only": { - "value": "$textarea.background.read-only.dark", + "value": "{textarea.background.read-only.dark}", "type": "color" } }, "border": { "default": { - "value": "$textarea.border.dark", + "value": "{textarea.border.dark}", "type": "color" } } @@ -1104,39 +1074,39 @@ "tab-title": { "font": { "default": { - "value": "$tab-title.font.default.dark", + "value": "{tab-title.font.default.dark}", "type": "color" }, "active": { - "value": "$tab-title.font.active.dark", + "value": "{tab-title.font.active.dark}", "type": "color" } }, "icon": { "default": { - "value": "$tab-title.icon.default.dark", + "value": "{tab-title.icon.default.dark}", "type": "color" }, "active": { - "value": "$tab-title.icon.active.dark", + "value": "{tab-title.icon.active.dark}", "type": "color" } }, "bordered": { "border": { - "value": "$tab-title.bordered.border.dark", + "value": "{tab-title.bordered.border.dark}", "type": "color" }, "background": { "default": { - "value": "$tab-title.bordered.background.default.dark", + "value": "{tab-title.bordered.background.default.dark}", "type": "color" } } }, "border": { "active": { - "value": "$tab-title.border.active.dark", + "value": "{tab-title.border.active.dark}", "type": "color" } } @@ -1144,11 +1114,11 @@ "tabs": { "bordered": { "border": { - "value": "$tabs.bordered.border.dark", + "value": "{tabs.bordered.border.dark}", "type": "color" }, "background": { - "value": "$tabs.bordered.background.default.dark", + "value": "{tabs.bordered.background.default.dark}", "type": "color" } } @@ -1156,237 +1126,237 @@ "card": { "font": { "title": { - "value": "$card.font.title.dark", + "value": "{card.font.title.dark}", "type": "color" }, "subtitle": { - "value": "$card.font.subtitle.dark", + "value": "{card.font.subtitle.dark}", "type": "color" }, "description": { - "value": "$card.font.description.dark", + "value": "{card.font.description.dark}", "type": "color" } }, "border": { "default": { - "value": "$card.border.default.dark", + "value": "{card.border.default.dark}", "type": "color" }, "active": { - "value": "$card.border.active.dark", + "value": "{card.border.active.dark}", "type": "color" } }, "background": { "default": { - "value": "$card.background.default.dark", + "value": "{card.background.default.dark}", "type": "color" } } }, "action": { "indicator": { - "value": "$action.indicator.dark", + "value": "{action.indicator.dark}", "type": "color" }, "font": { - "value": "$action.font.default.dark", + "value": "{action.font.default.dark}", "type": "color" }, "icon": { - "value": "$action.icon.dark", + "value": "{action.icon.default.dark}", "type": "color" }, "background": { "default": { - "value": "$action.background.default.dark", + "value": "{action.background.default.dark}", "type": "color" }, "active": { - "value": "$action.background.active.dark", + "value": "{action.background.active.dark}", "type": "color" } } }, "action-bar": { "border": { - "value": "$action-bar.border.dark", + "value": "{action-bar.border.dark}", "type": "color" }, "background": { - "value": "$action-bar.background.dark", + "value": "{action-bar.background.dark}", "type": "color" } }, "action-pad": { "border": { - "value": "$action-pad.border.dark", + "value": "{action-pad.border.dark}", "type": "color" }, "background": { - "value": "$action-pad.background.dark", + "value": "{action-pad.background.dark}", "type": "color" } }, "action-bar-grid": { "border": { - "value": "$action-bar-grid.border.dark", + "value": "{action-bar-grid.border.dark}", "type": "color" }, "background": { - "value": "$action-bar-grid.background.dark", + "value": "{action-bar-grid.background.dark}", "type": "color" } }, "action-pad-grid": { "border": { - "value": "$action-pad-grid.border.dark", + "value": "{action-pad-grid.border.dark}", "type": "color" }, "background": { - "value": "$action-pad-grid.background.dark", + "value": "{action-pad-grid.background.dark}", "type": "color" } }, "block": { "font": { "heading": { - "value": "$block.font.heading.dark", + "value": "{block.font.heading.dark}", "type": "color" }, "description": { - "value": "$block.font.description.dark", + "value": "{block.font.description.dark}", "type": "color" }, "content": { - "value": "$block.font.content.dark", + "value": "{block.font.content.dark}", "type": "color" } }, "icon": { "default": { - "value": "$action.icon.dark", + "value": "{action.icon.default.dark}", "type": "color" }, "active": { - "value": "$action.icon.active.dark", + "value": "{action.icon.active.dark}", "type": "color" }, "idle": { - "value": "$block.icon.idle.dark", + "value": "{block.icon.idle.dark}", "type": "color" }, "valid": { - "value": "$block.icon.valid.dark", + "value": "{block.icon.valid.dark}", "type": "color" }, "invalid": { - "value": "$block.icon.invalid.dark", + "value": "{block.icon.invalid.dark}", "type": "color" }, "drag-handle": { - "value": "$block.icon.drag-handle.dark", + "value": "{block.icon.drag-handle.dark}", "type": "color" }, "chevron": { - "value": "$block.icon.chevron.dark", + "value": "{block.icon.chevron.dark}", "type": "color" } }, "loader": { - "value": "$action.loader-icon.dark", + "value": "{action.loader-icon.dark}", "type": "color" }, "border": { - "value": "$block.border.light", + "value": "{block.border.light}", "type": "color" }, "background": { - "value": "$block.background.dark", + "value": "{block.background.dark}", "type": "color" } }, "block-section": { "font": { - "value": "$block-section.font.dark", + "value": "{block-section.font.dark}", "type": "color" }, "icon": { "valid": { - "value": "$block-section.icon.valid.dark", + "value": "{block-section.icon.valid.dark}", "type": "color" }, "invalid": { - "value": "$block-section.icon.invalid.dark", + "value": "{block-section.icon.invalid.dark}", "type": "color" }, "chevron": { - "value": "$block-section.icon.chevron.dark", + "value": "{block-section.icon.chevron.dark}", "type": "color" } }, "background": { - "value": "$block-section.background.dark", + "value": "{block-section.background.dark}", "type": "color" } }, "notice": { "font": { "title": { - "value": "$notice.font.title.dark", + "value": "{notice.font.title.dark}", "type": "color" }, "message": { - "value": "$notice.font.message.dark", + "value": "{notice.font.message.dark}", "type": "color" } }, "background": { - "value": "$notice.background.dark", + "value": "{notice.background.dark}", "type": "color" }, "icon": { "info": { - "value": "$notice.icon.info.dark", + "value": "{notice.icon.info.dark}", "type": "color" }, "success": { - "value": "$notice.icon.success.dark", + "value": "{notice.icon.success.dark}", "type": "color" }, "warning": { - "value": "$notice.icon.warning.dark", + "value": "{notice.icon.warning.dark}", "type": "color" }, "danger": { - "value": "$notice.icon.danger.dark", + "value": "{notice.icon.danger.dark}", "type": "color" }, "brand": { - "value": "$notice.icon.brand.dark", + "value": "{notice.icon.brand.dark}", "type": "color" } }, "highlight": { "info": { - "value": "$notice.highlight.info.dark", + "value": "{notice.highlight.info.dark}", "type": "color" }, "success": { - "value": "$notice.highlight.success.dark", + "value": "{notice.highlight.success.dark}", "type": "color" }, "warning": { - "value": "$notice.highlight.warning.dark", + "value": "{notice.highlight.warning.dark}", "type": "color" }, "danger": { - "value": "$notice.highlight.danger.dark", + "value": "{notice.highlight.danger.dark}", "type": "color" }, "brand": { - "value": "$notice.highlight.brand.dark", + "value": "{notice.highlight.brand.dark}", "type": "color" } } @@ -1394,136 +1364,136 @@ "modal": { "font": { "header": { - "value": "$modal.font.header.dark", + "value": "{modal.font.header.dark}", "type": "color" }, "content": { - "value": "$modal.font.content.dark", + "value": "{modal.font.content.dark}", "type": "color" } }, "icon": { - "value": "$modal.icon.dark", + "value": "{modal.icon.dark}", "type": "color" }, "border": { "default": { - "value": "$modal.border.default.dark", + "value": "{modal.border.default.dark}", "type": "color" }, "top": { "brand": { - "value": "$modal.border.top.brand.dark", + "value": "{modal.border.top.brand.dark}", "type": "color" }, "info": { - "value": "$modal.border.top.info.dark", + "value": "{modal.border.top.info.dark}", "type": "color" }, "success": { - "value": "$modal.border.top.success.dark", + "value": "{modal.border.top.success.dark}", "type": "color" }, "danger": { - "value": "$modal.border.top.danger.dark", + "value": "{modal.border.top.danger.dark}", "type": "color" }, "warning": { - "value": "$modal.border.top.warning.dark", + "value": "{modal.border.top.warning.dark}", "type": "color" } } }, "background": { - "value": "$modal.background.dark", + "value": "{modal.background.dark}", "type": "color" } }, "panel-header": { "font": { - "value": "$panel-header.font.dark", + "value": "{panel-header.font.dark}", "type": "color" }, "icon": { - "value": "$panel-header.icon.dark", + "value": "{panel-header.icon.dark}", "type": "color" }, "border": { - "value": "$panel-header.border.dark", + "value": "{panel-header.border.dark}", "type": "color" }, "background": { - "value": "$panel-header.background.dark", + "value": "{panel-header.background.dark}", "type": "color" } }, "popover": { "font": { - "value": "$popover.font.dark", + "value": "{popover.font.dark}", "type": "color" }, "icon": { - "value": "$popover.icon.dark", + "value": "{popover.icon.dark}", "type": "color" }, "border": { - "value": "$popover.border.dark", + "value": "{popover.border.dark}", "type": "color" }, "background": { - "value": "$popover.background.dark", + "value": "{popover.background.dark}", "type": "color" } }, "slider": { "font": { "label": { - "value": "$slider.font.label.dark", + "value": "{slider.font.label.dark}", "type": "color" }, "tick-label": { - "value": "$slider.font.tick-label.dark", + "value": "{slider.font.tick-label.dark}", "type": "color" } }, "handle": { "background": { - "value": "$slider.handle.background.dark", + "value": "{slider.handle.background.dark}", "type": "color" }, "border": { - "value": "$slider.handle.border.dark", + "value": "{slider.handle.border.dark}", "type": "color" } }, "border": { "default": { - "value": "$slider.border.default.dark", + "value": "{slider.border.default.dark}", "type": "color" }, "active": { - "value": "$slider.border.active.dark", + "value": "{slider.border.active.dark}", "type": "color" } }, "tick": { "default": { "background": { - "value": "$slider.tick.default.background.dark", + "value": "{slider.tick.default.background.dark}", "type": "color" }, "border": { - "value": "$slider.tick.default.border.dark", + "value": "{slider.tick.default.border.dark}", "type": "color" } }, "active": { "background": { - "value": "$slider.tick.active.background.dark", + "value": "{slider.tick.active.background.dark}", "type": "color" }, "border": { - "value": "$slider.tick.active.border.dark", + "value": "{slider.tick.active.border.dark}", "type": "color" } } @@ -1532,52 +1502,52 @@ "slider-range": { "font": { "label": { - "value": "$slider-range.font.label.dark", + "value": "{slider-range.font.label.dark}", "type": "color" }, "tick-label": { - "value": "$slider-range.font.tick-label.dark", + "value": "{slider-range.font.tick-label.dark}", "type": "color" } }, "handle": { "background": { - "value": "$slider-range.handle.background.dark", + "value": "{slider-range.handle.background.dark}", "type": "color" }, "border": { - "value": "$slider-range.handle.border.dark", + "value": "{slider-range.handle.border.dark}", "type": "color" } }, "border": { "default": { - "value": "$slider-range.border.default.dark", + "value": "{slider-range.border.default.dark}", "type": "color" }, "active": { - "value": "$slider-range.border.active.dark", + "value": "{slider-range.border.active.dark}", "type": "color" } }, "tick": { "default": { "background": { - "value": "$slider-range.tick.default.background.dark", + "value": "{slider-range.tick.default.background.dark}", "type": "color" }, "border": { - "value": "$slider-range.tick.default.border.dark", + "value": "{slider-range.tick.default.border.dark}", "type": "color" } }, "active": { "background": { - "value": "$slider-range.tick.active.background.dark", + "value": "{slider-range.tick.active.background.dark}", "type": "color" }, "border": { - "value": "$slider-range.tick.active.border.dark", + "value": "{slider-range.tick.active.border.dark}", "type": "color" } } @@ -1586,52 +1556,52 @@ "slider-histogram": { "font": { "label": { - "value": "$slider-histogram.font.label.dark", + "value": "{slider-histogram.font.label.dark}", "type": "color" }, "tick-label": { - "value": "$slider-histogram.font.tick-label.dark", + "value": "{slider-histogram.font.tick-label.dark}", "type": "color" } }, "handle": { "background": { - "value": "$slider-histogram.handle.background.dark", + "value": "{slider-histogram.handle.background.dark}", "type": "color" }, "border": { - "value": "$slider-histogram.handle.border.dark", + "value": "{slider-histogram.handle.border.dark}", "type": "color" } }, "border": { "default": { - "value": "$slider-histogram.border.default.dark", + "value": "{slider-histogram.border.default.dark}", "type": "color" }, "active": { - "value": "$slider-histogram.border.active.dark", + "value": "{slider-histogram.border.active.dark}", "type": "color" } }, "tick": { "default": { "background": { - "value": "$slider-histogram.tick.default.background.dark", + "value": "{slider-histogram.tick.default.background.dark}", "type": "color" }, "border": { - "value": "$slider-histogram.tick.default.border.dark", + "value": "{slider-histogram.tick.default.border.dark}", "type": "color" } }, "active": { "background": { - "value": "$slider-histogram.tick.active.background.dark", + "value": "{slider-histogram.tick.active.background.dark}", "type": "color" }, "border": { - "value": "$slider-histogram.tick.active.border.dark", + "value": "{slider-histogram.tick.active.border.dark}", "type": "color" } } @@ -1639,7 +1609,7 @@ "area": { "active": { "background": { - "value": "$slider-histogram.area.active.background.dark", + "value": "{slider-histogram.area.active.background.dark}", "type": "color" } } @@ -1647,7 +1617,7 @@ "active-end": { "background": { "dark": { - "value": "$slider-histogram.active-end.background.dark", + "value": "{slider-histogram.active-end.background.dark}", "type": "color" } } @@ -1656,52 +1626,52 @@ "slider-histogram-range": { "font": { "label": { - "value": "$slider-histogram-range.font.label.dark", + "value": "{slider-histogram-range.font.label.dark}", "type": "color" }, "tick-label": { - "value": "$slider-histogram-range.font.tick-label.dark", + "value": "{slider-histogram-range.font.tick-label.dark}", "type": "color" } }, "handle": { "background": { - "value": "$slider-histogram-range.handle.background.dark", + "value": "{slider-histogram-range.handle.background.dark}", "type": "color" }, "border": { - "value": "$slider-histogram-range.handle.border.dark", + "value": "{slider-histogram-range.handle.border.dark}", "type": "color" } }, "border": { "default": { - "value": "$slider-histogram-range.border.default.dark", + "value": "{slider-histogram-range.border.default.dark}", "type": "color" }, "active": { - "value": "$slider-histogram-range.border.active.dark", + "value": "{slider-histogram-range.border.active.dark}", "type": "color" } }, "tick": { "default": { "background": { - "value": "$slider-histogram-range.tick.default.background.dark", + "value": "{slider-histogram-range.tick.default.background.dark}", "type": "color" }, "border": { - "value": "$slider-histogram-range.tick.default.border.dark", + "value": "{slider-histogram-range.tick.default.border.dark}", "type": "color" } }, "active": { "background": { - "value": "$slider-histogram-range.tick.active.background.dark", + "value": "{slider-histogram-range.tick.active.background.dark}", "type": "color" }, "border": { - "value": "$slider-histogram-range.tick.active.border.dark", + "value": "{slider-histogram-range.tick.active.border.dark}", "type": "color" } } @@ -1709,64 +1679,80 @@ "area": { "active": { "background": { - "value": "$slider-histogram-range.area.active.background.dark", + "value": "{slider-histogram-range.area.active.background.dark}", "type": "color" } } }, "active-end": { "background": { - "value": "$slider-histogram.active-end.background.dark", + "value": "{slider-histogram.active-end.background.dark}", "type": "color" } } }, "filter": { "font": { - "value": "$filter.font.dark", + "value": "{filter.font.dark}", "type": "color" }, "icon": { - "value": "$filter.icon.dark", + "value": "{filter.icon.dark}", "type": "color" }, "border": { - "value": "$filter.border.dark", + "value": "{filter.border.dark}", "type": "color" }, "background": { - "value": "$filter.background.dark", + "value": "{filter.background.dark}", "type": "color" } }, "scrim": { "background": { - "value": "$scrim.background.dark", + "value": "{scrim.background.dark}", "type": "color" } }, "tip-manager": { "font": { "heading": { - "value": "$tip-manager.font.heading.dark", + "value": "{tip-manager.font.heading.dark}", "type": "color" } }, "icon": { - "value": "$tip-manager.icon.dark", + "value": "{tip-manager.icon.dark}", "type": "color" }, "background": { "default": { "light": { - "value": "$tip-manager.background.default.dark", + "value": "{tip-manager.background.default.dark}", "type": "color" } } }, "border": { "default": { - "value": "$tip-manager.border.default.dark", + "value": "{tip-manager.border.default.dark}", + "type": "color" + } + } + }, + "time-picker": { + "font": { + "value": "{time-picker.font.dark}", + "type": "color" + }, + "icon": { + "value": "{time-picker.icon.dark}", + "type": "color" + }, + "background": { + "default": { + "value": "{time-picker.background.default.dark}", "type": "color" } } @@ -1775,73 +1761,73 @@ "font": { "brand": { "solid": { - "value": "$button.font.brand.solid.dark", + "value": "{button.font.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.font.brand.outline-fill.dark", + "value": "{button.font.brand.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.font.brand.outline.dark", + "value": "{button.font.brand.outline.dark}", "type": "color" }, "transparent": { - "value": "$button.font.brand.transparent.dark", + "value": "{button.font.brand.transparent.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$button.font.inverse.solid.dark", + "value": "{button.font.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.font.inverse.outline-fill.dark", + "value": "{button.font.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.font.inverse.outline.dark", + "value": "{button.font.inverse.outline.dark}", "type": "color" }, "transparent": { - "value": "$button.font.inverse.transparent.dark", + "value": "{button.font.inverse.transparent.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$button.font.inverse.solid.dark", + "value": "{button.font.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.font.inverse.outline-fill.dark", + "value": "{button.font.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.font.inverse.outline.dark", + "value": "{button.font.inverse.outline.dark}", "type": "color" }, "transparent": { - "value": "$button.font.inverse.transparent.dark", + "value": "{button.font.inverse.transparent.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$button.font.danger.solid.dark", + "value": "{button.font.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.font.danger.outline-fill.dark", + "value": "{button.font.danger.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.font.danger.outline.dark", + "value": "{button.font.danger.outline.dark}", "type": "color" }, "transparent": { - "value": "$button.font.danger.transparent.dark", + "value": "{button.font.danger.transparent.dark}", "type": "color" } } @@ -1849,73 +1835,73 @@ "icon": { "brand": { "solid": { - "value": "$button.icon.brand.solid.dark", + "value": "{button.icon.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.icon.brand.outline-fill.dark", + "value": "{button.icon.brand.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.icon.brand.outline.dark", + "value": "{button.icon.brand.outline.dark}", "type": "color" }, "transparent": { - "value": "$button.icon.brand.transparent.dark", + "value": "{button.icon.brand.transparent.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$button.icon.inverse.solid.dark", + "value": "{button.icon.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.icon.inverse.outline-fill.dark", + "value": "{button.icon.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.icon.inverse.outline.dark", + "value": "{button.icon.inverse.outline.dark}", "type": "color" }, "transparent": { - "value": "$button.icon.inverse.transparent.dark", + "value": "{button.icon.inverse.transparent.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$button.icon.inverse.solid.dark", + "value": "{button.icon.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.icon.inverse.outline-fill.dark", + "value": "{button.icon.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.icon.inverse.outline.dark", + "value": "{button.icon.inverse.outline.dark}", "type": "color" }, "transparent": { - "value": "$button.icon.inverse.transparent.dark", + "value": "{button.icon.inverse.transparent.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$button.icon.danger.solid.dark", + "value": "{button.icon.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.icon.danger.outline-fill.dark", + "value": "{button.icon.danger.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.icon.danger.outline.dark", + "value": "{button.icon.danger.outline.dark}", "type": "color" }, "transparent": { - "value": "$button.icon.danger.transparent.dark", + "value": "{button.icon.danger.transparent.dark}", "type": "color" } } @@ -1923,41 +1909,41 @@ "background": { "brand": { "solid": { - "value": "$button.background.brand.solid.dark", + "value": "{button.background.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.background.brand.outline-fill.dark", + "value": "{button.background.brand.outline-fill.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$button.background.inverse.solid.dark", + "value": "{button.background.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.background.inverse.outline-fill.dark", + "value": "{button.background.inverse.outline-fill.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$button.background.inverse.solid.dark", + "value": "{button.background.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.background.inverse.outline-fill.dark", + "value": "{button.background.inverse.outline-fill.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$button.background.danger.solid.dark", + "value": "{button.background.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$button.background.danger.outline-fill.dark", + "value": "{button.background.danger.outline-fill.dark}", "type": "color" } } @@ -1965,41 +1951,41 @@ "border": { "brand": { "outline-fill": { - "value": "$button.border.brand.outline-fill.dark", + "value": "{button.border.brand.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.border.brand.outline.dark", + "value": "{button.border.brand.outline.dark}", "type": "color" } }, "inverse": { "outline-fill": { - "value": "$button.border.inverse.outline-fill.dark", + "value": "{button.border.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.border.inverse.outline.dark", + "value": "{button.border.inverse.outline.dark}", "type": "color" } }, "neutral": { "outline-fill": { - "value": "$button.border.inverse.outline-fill.dark", + "value": "{button.border.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.border.inverse.outline.dark", + "value": "{button.border.inverse.outline.dark}", "type": "color" } }, "danger": { "outline-fill": { - "value": "$button.border.danger.outline-fill.dark", + "value": "{button.border.danger.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$button.border.danger.outline.dark", + "value": "{button.border.danger.outline.dark}", "type": "color" } } @@ -2009,73 +1995,73 @@ "font": { "brand": { "solid": { - "value": "$split-button.font.brand.solid.dark", + "value": "{split-button.font.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.font.brand.outline-fill.dark", + "value": "{split-button.font.brand.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.font.brand.outline.dark", + "value": "{split-button.font.brand.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.font.brand.transparent.dark", + "value": "{split-button.font.brand.transparent.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$split-button.font.inverse.solid.dark", + "value": "{split-button.font.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.font.inverse.outline-fill.dark", + "value": "{split-button.font.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.font.inverse.outline.dark", + "value": "{split-button.font.inverse.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.font.inverse.transparent.dark", + "value": "{split-button.font.inverse.transparent.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$split-button.font.inverse.solid.light", + "value": "{split-button.font.neutral.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.font.inverse.outline-fill.dark", + "value": "{split-button.font.neutral.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.font.inverse.outline.dark", + "value": "{split-button.font.neutral.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.font.inverse.transparent.dark", + "value": "{split-button.font.neutral.transparent.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$split-button.font.danger.solid.dark", + "value": "{split-button.font.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.font.danger.outline-fill.dark", + "value": "{split-button.font.danger.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.font.danger.outline.dark", + "value": "{split-button.font.danger.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.font.danger.transparent.dark", + "value": "{split-button.font.danger.transparent.dark}", "type": "color" } } @@ -2083,73 +2069,73 @@ "icon": { "brand": { "solid": { - "value": "$split-button.icon.brand.solid.dark", + "value": "{split-button.icon.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.brand.outline-fill.dark", + "value": "{split-button.icon.brand.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.icon.brand.outline.dark", + "value": "{split-button.icon.brand.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.icon.brand.transparent.dark", + "value": "{split-button.icon.brand.transparent.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$split-button.icon.inverse.solid.dark", + "value": "{split-button.icon.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.inverse.outline-fill.dark", + "value": "{split-button.icon.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.icon.inverse.outline.dark", + "value": "{split-button.icon.inverse.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.icon.inverse.transparent.dark", + "value": "{split-button.icon.inverse.transparent.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$split-button.icon.inverse.solid.dark", + "value": "{split-button.icon.neutral.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.inverse.outline-fill.dark", + "value": "{split-button.icon.neutral.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.icon.inverse.outline.dark", + "value": "{split-button.icon.neutral.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.icon.inverse.transparent.dark", + "value": "{split-button.icon.neutral.transparent.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$split-button.icon.danger.solid.dark", + "value": "{split-button.icon.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.danger.outline-fill.dark", + "value": "{split-button.icon.danger.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.icon.danger.outline.dark", + "value": "{split-button.icon.danger.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.icon.danger.transparent.dark", + "value": "{split-button.icon.danger.transparent.dark}", "type": "color" } } @@ -2157,41 +2143,41 @@ "background": { "brand": { "solid": { - "value": "$split-button.background.brand.solid.dark", + "value": "{split-button.background.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.background.brand.outline-fill.dark", + "value": "{split-button.background.brand.outline-fill.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$split-button.background.inverse.solid.dark", + "value": "{split-button.background.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.background.inverse.outline-fill.dark", + "value": "{split-button.background.inverse.outline-fill.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$split-button.background.inverse.solid.dark", + "value": "{split-button.background.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.background.inverse.outline-fill.dark", + "value": "{split-button.background.inverse.outline-fill.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$split-button.background.danger.solid.dark", + "value": "{split-button.background.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.background.danger.outline-fill.dark", + "value": "{split-button.background.danger.outline-fill.dark}", "type": "color" } } @@ -2199,41 +2185,41 @@ "border": { "brand": { "outline-fill": { - "value": "$split-button.border.brand.outline-fill.dark", + "value": "{split-button.border.brand.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.border.brand.outline.dark", + "value": "{split-button.border.brand.outline.dark}", "type": "color" } }, "inverse": { "outline-fill": { - "value": "$split-button.border.inverse.outline-fill.dark", + "value": "{split-button.border.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.border.inverse.outline.dark", + "value": "{split-button.border.inverse.outline.dark}", "type": "color" } }, "neutral": { "outline-fill": { - "value": "$button.border.inverse.outline-fill.dark", + "value": "{button.border.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.border.inverse.outline.dark", + "value": "{split-button.border.inverse.outline.dark}", "type": "color" } }, "danger": { "outline-fill": { - "value": "$split-button.border.danger.outline-fill.dark", + "value": "{split-button.border.danger.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.border.danger.outline.dark", + "value": "{split-button.border.danger.outline.dark}", "type": "color" } } @@ -2241,73 +2227,73 @@ "divider": { "brand": { "solid": { - "value": "$split-button.divider.brand.solid.dark", + "value": "{split-button.divider.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.divider.brand.outline-fill.dark", + "value": "{split-button.divider.brand.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.divider.brand.outline.dark", + "value": "{split-button.divider.brand.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.divider.brand.transparent.dark", + "value": "{split-button.divider.brand.transparent.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$split-button.divider.inverse.solid.dark", + "value": "{split-button.divider.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.divider.inverse.outline-fill.dark", + "value": "{split-button.divider.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.divider.inverse.outline.dark", + "value": "{split-button.divider.inverse.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.divider.inverse.transparent.dark", + "value": "{split-button.divider.inverse.transparent.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$split-button.divider.inverse.solid.dark", + "value": "{split-button.divider.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.divider.inverse.outline-fill.dark", + "value": "{split-button.divider.inverse.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.divider.inverse.outline.dark", + "value": "{split-button.divider.inverse.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.divider.inverse.transparent.dark", + "value": "{split-button.divider.inverse.transparent.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$split-button.divider.danger.solid.dark", + "value": "{split-button.divider.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$split-button.divider.danger.outline-fill.dark", + "value": "{split-button.divider.danger.outline-fill.dark}", "type": "color" }, "outline": { - "value": "$split-button.divider.danger.outline.dark", + "value": "{split-button.divider.danger.outline.dark}", "type": "color" }, "transparent": { - "value": "$split-button.divider.danger.transparent.dark", + "value": "{split-button.divider.danger.transparent.dark}", "type": "color" } } @@ -2317,41 +2303,41 @@ "font": { "brand": { "solid": { - "value": "$fab.font.brand.solid.dark", + "value": "{fab.font.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.font.brand.outline-fill.dark", + "value": "{fab.font.brand.outline-fill.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$fab.font.inverse.solid.dark", + "value": "{fab.font.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.font.inverse.outline-fill.dark", + "value": "{fab.font.inverse.outline-fill.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$fab.font.inverse.solid.dark", + "value": "{fab.font.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.font.inverse.outline-fill.dark", + "value": "{fab.font.inverse.outline-fill.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$fab.font.danger.solid.dark", + "value": "{fab.font.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.font.danger.outline-fill.dark", + "value": "{fab.font.danger.outline-fill.dark}", "type": "color" } } @@ -2359,41 +2345,41 @@ "icon": { "brand": { "solid": { - "value": "$fab.icon.brand.solid.dark", + "value": "{fab.icon.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.icon.brand.outline-fill.dark", + "value": "{fab.icon.brand.outline-fill.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$fab.icon.inverse.solid.dark", + "value": "{fab.icon.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.icon.inverse.outline-fill.dark", + "value": "{fab.icon.inverse.outline-fill.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$fab.icon.inverse.solid.dark", + "value": "{fab.icon.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.icon.inverse.outline-fill.dark", + "value": "{fab.icon.inverse.outline-fill.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$fab.icon.danger.solid.dark", + "value": "{fab.icon.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.icon.danger.outline-fill.dark", + "value": "{fab.icon.danger.outline-fill.dark}", "type": "color" } } @@ -2401,41 +2387,41 @@ "background": { "brand": { "solid": { - "value": "$fab.background.brand.solid.dark", + "value": "{fab.background.brand.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.background.brand.outline-fill.dark", + "value": "{fab.background.brand.outline-fill.dark}", "type": "color" } }, "inverse": { "solid": { - "value": "$fab.background.inverse.solid.dark", + "value": "{fab.background.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.background.inverse.outline-fill.dark", + "value": "{fab.background.inverse.outline-fill.dark}", "type": "color" } }, "neutral": { "solid": { - "value": "$fab.background.inverse.solid.dark", + "value": "{fab.background.inverse.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.background.inverse.outline-fill.dark", + "value": "{fab.background.inverse.outline-fill.dark}", "type": "color" } }, "danger": { "solid": { - "value": "$fab.background.danger.solid.dark", + "value": "{fab.background.danger.solid.dark}", "type": "color" }, "outline-fill": { - "value": "$fab.background.danger.outline-fill.dark", + "value": "{fab.background.danger.outline-fill.dark}", "type": "color" } } @@ -2443,44 +2429,294 @@ "border": { "brand": { "outline-fill": { - "value": "$fab.border.brand.outline-fill.dark", + "value": "{fab.border.brand.outline-fill.dark}", "type": "color" }, "solid": { - "value": "$fab.border.brand.solid.dark", + "value": "{fab.border.brand.solid.dark}", "type": "color" } }, "inverse": { "outline-fill": { - "value": "$fab.border.inverse.outline-fill.dark", + "value": "{fab.border.inverse.outline-fill.dark}", "type": "color" }, "solid": { - "value": "$fab.border.inverse.solid.dark", + "value": "{fab.border.inverse.solid.dark}", "type": "color" } }, "neutral": { "outline-fill": { - "value": "$fab.border.inverse.outline-fill.dark", + "value": "{fab.border.inverse.outline-fill.dark}", "type": "color" }, "solid": { - "value": "$fab.border.inverse.solid.dark", + "value": "{fab.border.inverse.solid.dark}", "type": "color" } }, "danger": { "outline-fill": { - "value": "$fab.border.danger.outline-fill.dark", + "value": "{fab.border.danger.outline-fill.dark}", "type": "color" }, "solid": { - "value": "$fab.border.danger.solid.dark", + "value": "{fab.border.danger.solid.dark}", + "type": "color" + } + } + } + }, + "combobox": { + "icon": { + "default": { + "light": { + "value": "{combobox.icon.default.dark}", + "type": "color" + } + }, + "dropdown": { + "light": { + "value": "{combobox.icon.dropdown.dark}", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "{combobox.border.dark}", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "{combobox.background.default.dark}", + "type": "color" + } + }, + "item-container": { + "light": { + "value": "{combobox.background.item-container.dark}", + "type": "color" + } + } + }, + "font": { + "placholder": { + "light": { + "value": "{combobox.font.placeholder.dark}", + "type": "color" + } + }, + "value": { + "light": "[object Object]" + }, + "type": "color" + } + }, + "combobox-item": { + "font": { + "default": { + "light": { + "value": "{combobox-item.font.default.dark}", + "type": "color" + } + }, + "selected": { + "light": { + "value": "{combobox-item.font.selected.dark}", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "{combobox-item.font.group-title.dark}", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "{combobox-item.icon.default.dark}", + "type": "color" + }, + "selected": { + "light": { + "value": "{combobox-item.icon.default.selected.light}", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "{combobox-item.icon.select.dark}", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "{combobox-item.border.dark}", + "type": "color" + } + } + }, + "dropdown": { + "background": { + "default": { + "light": { + "value": "{dropdown.background.default.dark}", + "type": "color" + } + } + } + }, + "dropdown-item": { + "font": { + "default": { + "light": { + "value": "{dropdown-item.font.default.dark}", + "type": "color" + } + }, + "selected": { + "light": { + "value": "{dropdown-item.font.selected.dark}", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "{dropdown-item.font.group-title.dark}", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "{dropdown-item.icon.default.dark}", + "type": "color" + }, + "selected": { + "light": { + "value": "{dropdown-item.icon.default.selected.light}", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "{dropdown-item.icon.select.dark}", "type": "color" } } + }, + "border": { + "light": { + "value": "{dropdown-item.border.dark}", + "type": "color" + } + } + }, + "segmented-control": { + "border": { + "light": { + "value": "{segmented-control.border.dark}", + "type": "color" + } + }, + "background": { + "light": { + "value": "{segmented-control.background.dark}", + "type": "color" + } + } + }, + "segmented-control-item-": { + "font": { + "solid": { + "default": { + "light": { + "value": "{segmented-control-item.font.solid.default.dark}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{segmented-control-item.font.solid.checked.dark}", + "type": "color" + } + } + }, + "outline": { + "default": { + "light": { + "value": "{segmented-control-item.font.outline.default.dark}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{segmented-control-item.font.outline.checked.dark}", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "default": { + "light": { + "value": "{segmented-control-item.icon.solid.default.dark}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{segmented-control-item.icon.solid.checked.dark}", + "type": "color" + } + } + }, + "outline": { + "checked": { + "light": { + "value": "{segmented-control-item.icon.outline.checked.dark}", + "type": "color" + } + }, + "default": { + "light": { + "value": "{segmented-control-item.icon.outline.default.dark}", + "type": "color" + } + } + } + }, + "border": { + "outline": { + "checked": { + "light": { + "value": "{segmented-control-item.border.outline.checked.dark}", + "type": "color" + } + } + } + }, + "background": { + "solid": { + "checked": { + "light": { + "value": "{segmented-control-item.background.solid.checked.dark}", + "type": "color" + } + } + } } } } diff --git a/packages/calcite-design-tokens/src/calcite/grayscale.json b/packages/calcite-design-tokens/src/calcite/grayscale.json new file mode 100644 index 00000000000..b9243170c72 --- /dev/null +++ b/packages/calcite-design-tokens/src/calcite/grayscale.json @@ -0,0 +1,112 @@ +{ + "color": { + "blk-000": { + "value": "{core.color.neutral.blk-000}", + "type": "color" + }, + "blk-005": { + "value": "{core.color.neutral.blk-005}", + "type": "color" + }, + "blk-010": { + "value": "{core.color.neutral.blk-010}", + "type": "color" + }, + "blk-020": { + "value": "{core.color.neutral.blk-020}", + "type": "color" + }, + "blk-030": { + "value": "{core.color.neutral.blk-030}", + "type": "color" + }, + "blk-040": { + "value": "{core.color.neutral.blk-040}", + "type": "color" + }, + "blk-050": { + "value": "{core.color.neutral.blk-050}", + "type": "color" + }, + "blk-060": { + "value": "{core.color.neutral.blk-060}", + "type": "color" + }, + "blk-070": { + "value": "{core.color.neutral.blk-070}", + "type": "color" + }, + "blk-080": { + "value": "{core.color.neutral.blk-080}", + "type": "color" + }, + "blk-090": { + "value": "{core.color.neutral.blk-090}", + "type": "color" + }, + "blk-100": { + "value": "{core.color.neutral.blk-100}", + "type": "color" + }, + "blk-110": { + "value": "{core.color.neutral.blk-110}", + "type": "color" + }, + "blk-120": { + "value": "{core.color.neutral.blk-120}", + "type": "color" + }, + "blk-130": { + "value": "{core.color.neutral.blk-130}", + "type": "color" + }, + "blk-140": { + "value": "{core.color.neutral.blk-140}", + "type": "color" + }, + "blk-150": { + "value": "{core.color.neutral.blk-150}", + "type": "color" + }, + "blk-160": { + "value": "{core.color.neutral.blk-160}", + "type": "color" + }, + "blk-170": { + "value": "{core.color.neutral.blk-170}", + "type": "color" + }, + "blk-180": { + "value": "{core.color.neutral.blk-180}", + "type": "color" + }, + "blk-190": { + "value": "{core.color.neutral.blk-190}", + "type": "color" + }, + "blk-200": { + "value": "{core.color.neutral.blk-200}", + "type": "color" + }, + "blk-210": { + "value": "{core.color.neutral.blk-210}", + "type": "color" + }, + "blk-220": { + "value": "{core.color.neutral.blk-220}", + "type": "color" + }, + "blk-230": { + "value": "{core.color.neutral.blk-230}", + "type": "color" + }, + "blk-235": { + "value": "{core.color.neutral.blk-235}", + "type": "color" + }, + "blk-240": { + "value": "{core.color.neutral.blk-240}", + "type": "color" + } + } +} diff --git a/packages/calcite-design-tokens/src/calcite/light.json b/packages/calcite-design-tokens/src/calcite/light.json index 53b7281e71a..abd6c03dc27 100644 --- a/packages/calcite-design-tokens/src/calcite/light.json +++ b/packages/calcite-design-tokens/src/calcite/light.json @@ -2,215 +2,217 @@ "color": { "brand": { "default": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.brand.hover.light", + "value": "{semantic.ui.color.brand.hover.light}", "type": "color" }, "press": { - "value": "$semantic.ui.color.brand.press.light", + "value": "{semantic.ui.color.brand.press.light}", "type": "color" } }, "background": { - "value": "$semantic.ui.color.background.light", - "type": "color" + "1": { + "value": "{semantic.ui.color.background.light}", + "type": "color" + } }, "foreground": { "1": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "2": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.foreground.2.light}", "type": "color" }, "3": { - "value": "{semantic.ui.color.foreground.3.light}", + "value": "{semantic.ui.color.foreground.current.light}", "type": "color" } }, "text": { "1": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "2": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "3": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "inverse": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "link": { - "value": "$semantic.ui.color.text.link.light", + "value": "{semantic.ui.color.text.link.light}", "type": "color" } }, "border": { "1": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "2": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "3": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "input": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" } }, "info": { "default": { - "value": "$semantic.ui.color.info.default.light", + "value": "{semantic.ui.color.info.default.light}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.info.hover.light", + "value": "{semantic.ui.color.info.hover.light}", "type": "color" }, "press": { - "value": "$semantic.ui.color.info.press.light", + "value": "{semantic.ui.color.info.press.light}", "type": "color" } }, "success": { "default": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.success.hover.light", + "value": "{semantic.ui.color.success.hover.light}", "type": "color" }, "press": { - "value": "$semantic.ui.color.success.press.light", + "value": "{semantic.ui.color.success.press.light}", "type": "color" } }, "warning": { "default": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.warning.hover.light", + "value": "{semantic.ui.color.warning.hover.light}", "type": "color" }, "press": { - "value": "$semantic.ui.color.warning.press.light", + "value": "{semantic.ui.color.warning.press.light}", "type": "color" } }, "danger": { "default": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "hover": { - "value": "$semantic.ui.color.danger.hover.light", + "value": "{semantic.ui.color.danger.hover.light}", "type": "color" }, "press": { - "value": "$semantic.ui.color.danger.press.light", + "value": "{semantic.ui.color.danger.press.light}", "type": "color" } }, "inverse": { "default": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" } }, "component": { "avatar": { "font": { - "value": "$avatar.font.light", + "value": "{avatar.font.light}", "type": "color" }, "icon": { - "value": "$avatar.icon.light", + "value": "{avatar.icon.light}", "type": "color" }, "background": { "default": { - "value": "$avatar.background.default.light", + "value": "{avatar.background.default.light}", "type": "color" }, "red": { - "value": "$avatar.background.red.light", + "value": "{avatar.background.red.light}", "type": "color" }, "teal": { - "value": "$avatar.background.teal.light", + "value": "{avatar.background.teal.light}", "type": "color" }, "blue": { - "value": "$avatar.background.blue.light", + "value": "{avatar.background.blue.light}", "type": "color" }, "green": { - "value": "$avatar.background.green.light", + "value": "{avatar.background.green.light}", "type": "color" }, "yellow": { - "value": "$avatar.background.yellow.light", + "value": "{avatar.background.yellow.light}", "type": "color" } } }, "checkbox": { "font": { - "value": "$checkbox.font.light", + "value": "{checkbox.font.light}", "type": "color" }, "background": { "default": { - "value": "$checkbox.background.default.light", + "value": "{checkbox.background.default.light}", "type": "color" }, "selected": { - "value": "$checkbox.background.selected.light", + "value": "{checkbox.background.selected.light}", "type": "color" } }, "icon": { - "value": "$checkbox.icon.light", + "value": "{checkbox.icon.light}", "type": "color" }, "border": { - "value": "$checkbox.border.light", + "value": "{checkbox.border.light}", "type": "color" } }, "radio": { "font": { - "value": "$radio.font.light", + "value": "{radio.font.light}", "type": "color" }, "background": { - "value": "$radio.background.light", + "value": "{radio.background.light}", "type": "color" }, "border": { "unchecked": { - "value": "$radio.border.unchecked.light", + "value": "{radio.border.unchecked.light}", "type": "color" }, "checked": { - "value": "$radio.border.checked.light", + "value": "{radio.border.checked.light}", "type": "color" } } @@ -218,84 +220,84 @@ "chip": { "font": { "clear": { - "value": "$chip.font.clear.light", + "value": "{chip.font.clear.light}", "type": "color" }, "solid": { "grey": { - "value": "$chip.font.solid.grey.light", + "value": "{chip.font.solid.grey.light}", "type": "color" }, "blue": { - "value": "$chip.font.solid.blue.light", + "value": "{chip.font.solid.blue.light}", "type": "color" }, "red": { - "value": "$chip.font.solid.red.light", + "value": "{chip.font.solid.red.light}", "type": "color" }, "yellow": { - "value": "$chip.font.solid.yellow.light", + "value": "{chip.font.solid.yellow.light}", "type": "color" }, "green": { - "value": "$chip.font.solid.green.light", + "value": "{chip.font.solid.green.light}", "type": "color" } } }, "icon": { "clear": { - "value": "$chip.icon.clear.light", + "value": "{chip.icon.clear.light}", "type": "color" }, "solid": { "grey": { - "value": "$chip.icon.solid.grey.light", + "value": "{chip.icon.solid.grey.light}", "type": "color" }, "blue": { - "value": "$chip.icon.solid.blue.light", + "value": "{chip.icon.solid.blue.light}", "type": "color" }, "red": { - "value": "$chip.icon.solid.red.light", + "value": "{chip.icon.solid.red.light}", "type": "color" }, "yellow": { - "value": "$chip.icon.solid.yellow.light", + "value": "{chip.icon.solid.yellow.light}", "type": "color" }, "green": { - "value": "$chip.icon.solid.green.light", + "value": "{chip.icon.solid.green.light}", "type": "color" } } }, "closable-icon": { - "value": "$chip.closable-icon.light", + "value": "{chip.closable-icon.light}", "type": "color" }, "background": { "solid": { "grey": { - "value": "$chip.background.solid.grey.light", + "value": "{chip.background.solid.grey.light}", "type": "color" }, "blue": { - "value": "$chip.background.solid.blue.light", + "value": "{chip.background.solid.blue.light}", "type": "color" }, "red": { - "value": "$chip.background.solid.red.light", + "value": "{chip.background.solid.red.light}", "type": "color" }, "yellow": { - "value": "$chip.background.solid.yellow.light", + "value": "{chip.background.solid.yellow.light}", "type": "color" }, "green": { - "value": "$chip.background.solid.green.light", + "value": "{chip.background.solid.green.light}", "type": "color" } } @@ -303,23 +305,23 @@ "border": { "clear": { "grey": { - "value": "$chip.border.clear.grey.light", + "value": "{chip.border.clear.grey.light}", "type": "color" }, "blue": { - "value": "$chip.border.clear.blue.light", + "value": "{chip.border.clear.blue.light}", "type": "color" }, "red": { - "value": "$chip.border.clear.red.light", + "value": "{chip.border.clear.red.light}", "type": "color" }, "yellow": { - "value": "$chip.border.clear.yellow.light", + "value": "{chip.border.clear.yellow.light}", "type": "color" }, "green": { - "value": "$chip.border.clear.green.light", + "value": "{chip.border.clear.green.light}", "type": "color" } } @@ -327,29 +329,29 @@ }, "label": { "font": { - "value": "$label.font.light", + "value": "{label.font.light}", "type": "color" } }, "loader": { "font": { - "value": "$loader.font.light", + "value": "{loader.font.light}", "type": "color" }, "default": { "foreground": { - "value": "$loader.default.foreground.light", + "value": "{loader.default.foreground.light}", "type": "color" } }, "inline": { "foreground": { "indeterminate": { - "value": "$loader.inline.foreground.indeterminate.light", + "value": "{loader.inline.foreground.indeterminate.light}", "type": "color" }, "determinate": { - "value": "$loader.inline.foreground.determinate.light", + "value": "{loader.inline.foreground.determinate.light}", "type": "color" } } @@ -359,15 +361,15 @@ "star": { "background": { "default": { - "value": "$rating.star.background.default.light", + "value": "{rating.star.background.default.light}", "type": "color" }, "active": { - "value": "$rating.star.background.active.light", + "value": "{rating.star.background.active.light}", "type": "color" }, "average": { - "value": "$rating.star.background.average.light", + "value": "{rating.star.background.average.light}", "type": "color" } } @@ -375,76 +377,46 @@ "chip": { "count": { "font": { - "value": "$rating.chip.count.font.light", + "value": "{rating.chip.count.font.light}", "type": "color" } }, "foreground": { - "value": "$rating.chip.foreground.light", + "value": "{rating.chip.foreground.light}", "type": "color" } } }, "tooltip": { "foreground": { - "value": "$tooltip.foreground.light", + "value": "{tooltip.foreground.light}", "type": "color" }, "border": { - "value": "$tooltip.border.light", + "value": "{tooltip.border.light}", "type": "color" }, "font": { - "value": "$tooltip.font.light", - "type": "color" - } - }, - "accordion-item": { - "font": { - "heading": { - "value": "$accordion-item.font.heading.light", - "type": "color" - }, - "description": { - "value": "$accordion-item.font.description.light", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$accordion-item.icon.light", - "type": "color" - }, - "expanded": { - "value": "$accordion-item.icon.expanded.light", - "type": "color" - } - }, - "background": { - "value": "$accordion-item.background.default.light", - "type": "color" - }, - "border": { - "value": "$accordion-item.border.light", + "value": "{tooltip.font.light}", "type": "color" } }, "input-message": { "font": { - "value": "$input-message.font.light", + "value": "{input-message.font.light}", "type": "color" }, "icon": { "idle": { - "value": "$input-message.icon.idle.light", + "value": "{input-message.icon.idle.light}", "type": "color" }, "invalid": { - "value": "$input-message.icon.invalid.light", + "value": "{input-message.icon.invalid.light}", "type": "color" }, "valid": { - "value": "$input-message.icon.valid.light", + "value": "{input-message.icon.valid.light}", "type": "color" } } @@ -452,55 +424,55 @@ "alert": { "font": { "title": { - "value": "$alert.font.title.light", + "value": "{alert.font.title.light}", "type": "color" }, "message": { - "value": "$alert.font.message.light", + "value": "{alert.font.message.light}", "type": "color" } }, "background": { - "value": "$alert.background.light", + "value": "{alert.background.light}", "type": "color" }, "border": { - "value": "$alert.border.light", + "value": "{alert.border.light}", "type": "color" }, "icon": { "blue": { - "value": "$alert.icon.blue.light", + "value": "{alert.icon.blue.light}", "type": "color" }, "green": { - "value": "$alert.icon.green.light", + "value": "{alert.icon.green.light}", "type": "color" }, "yellow": { - "value": "$alert.icon.yellow.light", + "value": "{alert.icon.yellow.light}", "type": "color" }, "red": { - "value": "$alert.icon.red.light", + "value": "{alert.icon.red.light}", "type": "color" } }, "highlight": { "blue": { - "value": "$alert.highlight.blue.light", + "value": "{alert.highlight.blue.light}", "type": "color" }, "green": { - "value": "$alert.highlight.green.light", + "value": "{alert.highlight.green.light}", "type": "color" }, "yellow": { - "value": "$alert.highlight.yellow.light", + "value": "{alert.highlight.yellow.light}", "type": "color" }, "red": { - "value": "$alert.highlight.red.light", + "value": "{alert.highlight.red.light}", "type": "color" } } @@ -508,29 +480,29 @@ "tip": { "font": { "heading": { - "value": "$tip.font.heading.light", + "value": "{tip.font.heading.light}", "type": "color" }, "description": { - "value": "$tip.font.description.light", + "value": "{tip.font.description.light}", "type": "color" } }, "icon": { - "value": "$tip.icon.light", + "value": "{tip.icon.light}", "type": "color" }, "background": { "default": { "light": { - "value": "$tip.background.default.light", + "value": "{tip.background.default.light}", "type": "color" } } }, "border": { "default": { - "value": "$tip.border.default.light", + "value": "{tip.border.default.light}", "type": "color" } } @@ -538,21 +510,21 @@ "color-picker": { "font": { "label": { - "value": "$color-picker.font.label.light", + "value": "{color-picker.font.label.light}", "type": "color" } }, "icon": { - "value": "$color-picker.icon.light", + "value": "{color-picker.icon.light}", "type": "color" }, "border": { - "value": "$color-picker.border.light", + "value": "{color-picker.border.light}", "type": "color" }, "background": { "default": { - "value": "$color-picker.background.default.light", + "value": "{color-picker.background.default.light}", "type": "color" } } @@ -560,12 +532,12 @@ "date-picker": { "font": { "date": { - "value": "$date-picker.font.date.light", + "value": "{date-picker.font.date.light}", "type": "color" }, "range": { "date": { - "value": "$date-picker.font.range.date.light", + "value": "{date-picker.font.range.date.light}", "type": "color" } }, @@ -574,51 +546,51 @@ "type": "color" }, "month": { - "value": "$date-picker.font.month.light", + "value": "{date-picker.font.month.light}", "type": "color" }, "selected": { "date": { - "value": "$date-picker.font.selected.date.light", + "value": "{date-picker.font.selected.date.light}", "type": "color" } }, "active": { "date": { - "value": "$date-picker.font.active.date.light", + "value": "{date-picker.font.active.date.light}", "type": "color" } } }, "icon": { - "value": "$date-picker.icon.light", + "value": "{date-picker.icon.light}", "type": "color" }, "border": { - "value": "$date-picker.border.light", + "value": "{date-picker.border.light}", "type": "color" }, "date": { "active": { "border": { - "value": "$date-picker.date.active.border.light", + "value": "{date-picker.date.active.border.light}", "type": "color" } } }, "background": { "default": { - "value": "$date-picker.background.default.light", + "value": "{date-picker.background.default.light}", "type": "color" }, "date": { "range": { - "value": "$date-picker.background.date.range.light", + "value": "{date-picker.background.date.range.light}", "type": "color" }, "active": { "light": { - "value": "$date-picker.background.date.active.light", + "value": "{date-picker.background.date.active.light}", "type": "color" } } @@ -628,33 +600,33 @@ "input-date-picker": { "font": { "placeholder-value": { - "value": "$input-date-picker.font.placeholder-value.light", + "value": "{input-date-picker.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-date-picker.font.label.light", + "value": "{input-date-picker.font.label.light}", "type": "color" } }, "icon": { - "value": "$input-date-picker.icon.light", + "value": "{input-date-picker.icon.light}", "type": "color" }, "border": { - "value": "$input-date-picker.border.light", + "value": "{input-date-picker.border.light}", "type": "color" }, "background": { "default": { - "value": "$input-date-picker.background.default.light", + "value": "{input-date-picker.background.default.light}", "type": "color" }, "arrow": { - "value": "$input-date-picker.background.arrow.light", + "value": "{input-date-picker.background.arrow.light}", "type": "color" }, "read-only": { - "value": "$input-date-picker.background.read-only.light", + "value": "{input-date-picker.background.read-only.light}", "type": "color" } } @@ -662,43 +634,43 @@ "input-datetime-local": { "font": { "placeholder-value": { - "value": "$input-datetime-local.font.placeholder-value.light", + "value": "{input-datetime-local.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-datetime-local.font.label.light", + "value": "{input-datetime-local.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-datetime-local.font.prefix-suffix.light", + "value": "{input-datetime-local.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-datetime-local.icon.light", + "value": "{input-datetime-local.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-datetime-local.background.default.light", + "value": "{input-datetime-local.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-datetime-local.background.prefix-suffix.light", + "value": "{input-datetime-local.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-datetime-local.background.read-only.light", + "value": "{input-datetime-local.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-datetime-local.border.default.light", + "value": "{input-datetime-local.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-datetime-local.border.invalid.light", + "value": "{input-datetime-local.border.invalid.light}", "type": "color" } } @@ -706,43 +678,43 @@ "input-email": { "font": { "placeholder-value": { - "value": "$input-email.font.placeholder-value.light", + "value": "{input-email.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-email.font.label.light", + "value": "{input-email.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-email.font.prefix-suffix.light", + "value": "{input-email.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-email.icon.light", + "value": "{input-email.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-email.background.default.light", + "value": "{input-email.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-email.background.prefix-suffix.light", + "value": "{input-email.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-email.background.read-only.light", + "value": "{input-email.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-email.border.default.light", + "value": "{input-email.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-email.border.invalid.light", + "value": "{input-email.border.invalid.light}", "type": "color" } } @@ -750,43 +722,43 @@ "input-file": { "font": { "placeholder-value": { - "value": "$input-file.font.placeholder-value.light", + "value": "{input-file.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-file.font.label.light", + "value": "{input-file.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-file.font.prefix-suffix.light", + "value": "{input-file.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-file.icon.light", + "value": "{input-file.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-file.background.default.light", + "value": "{input-file.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-file.background.prefix-suffix.light", + "value": "{input-file.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-file.background.read-only.light", + "value": "{input-file.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-file.border.default.light", + "value": "{input-file.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-file.border.invalid.light", + "value": "{input-file.border.invalid.light}", "type": "color" } } @@ -794,43 +766,43 @@ "input-month": { "font": { "placeholder-value": { - "value": "$input-month.font.placeholder-value.light", + "value": "{input-month.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-month.font.label.light", + "value": "{input-month.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-month.font.prefix-suffix.light", + "value": "{input-month.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-month.icon.light", + "value": "{input-month.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-month.background.default.light", + "value": "{input-month.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-month.background.prefix-suffix.light", + "value": "{input-month.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-month.background.read-only.light", + "value": "{input-month.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-month.border.default.light", + "value": "{input-month.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-month.border.invalid.light", + "value": "{input-month.border.invalid.light}", "type": "color" } } @@ -838,43 +810,43 @@ "input-number": { "font": { "placeholder-value": { - "value": "$input-number.font.placeholder-value.light", + "value": "{input-number.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-number.font.label.light", + "value": "{input-number.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-number.font.prefix-suffix.light", + "value": "{input-number.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-number.icon.light", + "value": "{input-number.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-number.background.default.light", + "value": "{input-number.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-number.background.prefix-suffix.light", + "value": "{input-number.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-number.background.read-only.light", + "value": "{input-number.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-number.border.default.light", + "value": "{input-number.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-number.border.invalid.light", + "value": "{input-number.border.invalid.light}", "type": "color" } } @@ -882,43 +854,43 @@ "input-password": { "font": { "placeholder-value": { - "value": "$input-password.font.placeholder-value.light", + "value": "{input-password.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-password.font.label.light", + "value": "{input-password.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-password.font.prefix-suffix.light", + "value": "{input-password.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-password.icon.light", + "value": "{input-password.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-password.background.default.light", + "value": "{input-password.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-password.background.prefix-suffix.light", + "value": "{input-password.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-password.background.read-only.light", + "value": "{input-password.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-password.border.default.light", + "value": "{input-password.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-password.border.invalid.light", + "value": "{input-password.border.invalid.light}", "type": "color" } } @@ -926,43 +898,43 @@ "input-search": { "font": { "placeholder-value": { - "value": "$input-search.font.placeholder-value.light", + "value": "{input-search.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-search.font.label.light", + "value": "{input-search.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-search.font.prefix-suffix.light", + "value": "{input-search.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-search.icon.light", + "value": "{input-search.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-search.background.default.light", + "value": "{input-search.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-search.background.prefix-suffix.light", + "value": "{input-search.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-search.background.read-only.light", + "value": "{input-search.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-search.border.default.light", + "value": "{input-search.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-search.border.invalid.light", + "value": "{input-search.border.invalid.light}", "type": "color" } } @@ -970,43 +942,43 @@ "input-telephone": { "font": { "placeholder-value": { - "value": "$input-telephone.font.placeholder-value.light", + "value": "{input-telephone.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-telephone.font.label.light", + "value": "{input-telephone.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-telephone.font.prefix-suffix.light", + "value": "{input-telephone.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-telephone.icon.light", + "value": "{input-telephone.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-telephone.background.default.light", + "value": "{input-telephone.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-telephone.background.prefix-suffix.light", + "value": "{input-telephone.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-telephone.background.read-only.light", + "value": "{input-telephone.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-telephone.border.default.light", + "value": "{input-telephone.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-telephone.border.invalid.light", + "value": "{input-telephone.border.invalid.light}", "type": "color" } } @@ -1014,43 +986,43 @@ "input-text": { "font": { "placeholder-value": { - "value": "$input-text.font.placeholder-value.light", + "value": "{input-text.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-text.font.label.light", + "value": "{input-text.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-text.font.prefix-suffix.light", + "value": "{input-text.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-text.icon.light", + "value": "{input-text.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-text.background.default.light", + "value": "{input-text.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-text.background.prefix-suffix.light", + "value": "{input-text.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-text.background.read-only.light", + "value": "{input-text.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-text.border.default.light", + "value": "{input-text.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-text.border.invalid.light", + "value": "{input-text.border.invalid.light}", "type": "color" } } @@ -1058,43 +1030,43 @@ "input-week": { "font": { "placeholder-value": { - "value": "$input-week.font.placeholder-value.light", + "value": "{input-week.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$input-week.font.label.light", + "value": "{input-week.font.label.light}", "type": "color" }, "prefix-suffix": { - "value": "$input-week.font.prefix-suffix.light", + "value": "{input-week.font.prefix-suffix.light}", "type": "color" } }, "icon": { - "value": "$input-week.icon.light", + "value": "{input-week.icon.light}", "type": "color" }, "background": { "default": { - "value": "$input-week.background.default.light", + "value": "{input-week.background.default.light}", "type": "color" }, "prefix-sufix": { - "value": "$input-week.background.prefix-suffix.light", + "value": "{input-week.background.prefix-suffix.light}", "type": "color" }, "read-only": { - "value": "$input-week.background.read-only.light", + "value": "{input-week.background.read-only.light}", "type": "color" } }, "border": { "default": { - "value": "$input-week.border.default.light", + "value": "{input-week.border.default.light}", "type": "color" }, "invalid": { - "value": "$input-week.border.invalid.light", + "value": "{input-week.border.invalid.light}", "type": "color" } } @@ -1102,29 +1074,29 @@ "textarea": { "font": { "placeholder-value": { - "value": "$textarea.font.placeholder-value.light", + "value": "{textarea.font.placeholder-value.light}", "type": "color" }, "label": { - "value": "$textarea.font.label.light", + "value": "{textarea.font.label.light}", "type": "color" }, "chat-limit": { - "value": "$textarea.font.chat-limit.light", + "value": "{textarea.font.chat-limit.light}", "type": "color" } }, "icon": { - "value": "$textarea.icon.light", + "value": "{textarea.icon.light}", "type": "color" }, "background": { "default": { - "value": "$textarea.background.default.light", + "value": "{textarea.background.default.light}", "type": "color" }, "read-only": { - "value": "$textarea.background.read-only.light", + "value": "{textarea.background.read-only.light}", "type": "color" } }, @@ -1138,39 +1110,39 @@ "tab-title": { "font": { "default": { - "value": "$tab-title.font.default.light", + "value": "{tab-title.font.default.light}", "type": "color" }, "active": { - "value": "$tab-title.font.active.light", + "value": "{tab-title.font.active.light}", "type": "color" } }, "icon": { "default": { - "value": "$tab-title.icon.default.light", + "value": "{tab-title.icon.default.light}", "type": "color" }, "active": { - "value": "$tab-title.icon.active.light", + "value": "{tab-title.icon.active.light}", "type": "color" } }, "bordered": { "border": { - "value": "$tab-title.bordered.border.light", + "value": "{tab-title.bordered.border.light}", "type": "color" }, "background": { "default": { - "value": "$tab-title.bordered.background.default.light", + "value": "{tab-title.bordered.background.default.light}", "type": "color" } } }, "border": { "active": { - "value": "$tab-title.border.active.light", + "value": "{tab-title.border.active.light}", "type": "color" } } @@ -1178,11 +1150,11 @@ "tabs": { "bordered": { "border": { - "value": "$tabs.bordered.border.light", + "value": "{tabs.bordered.border.light}", "type": "color" }, "background": { - "value": "$tabs.bordered.background.default.light", + "value": "{tabs.bordered.background.default.light}", "type": "color" } } @@ -1190,225 +1162,225 @@ "card": { "font": { "title": { - "value": "$card.font.title.light", + "value": "{card.font.title.light}", "type": "color" }, "subtitle": { - "value": "$card.font.subtitle.light", + "value": "{card.font.subtitle.light}", "type": "color" }, "description": { - "value": "$card.font.description.light", + "value": "{card.font.description.light}", "type": "color" } }, "border": { "default": { - "value": "$card.border.default.light", + "value": "{card.border.default.light}", "type": "color" }, "active": { - "value": "$card.border.active.light", + "value": "{card.border.active.light}", "type": "color" } }, "background": { "default": { - "value": "$card.background.default.light", + "value": "{card.background.default.light}", "type": "color" } } }, "action": { "font": { - "value": "$action.font.default.light", + "value": "{action.font.default.light}", "type": "color" }, "icon": { - "value": "$action.icon.light", + "value": "{action.icon.default.light}", "type": "color" }, "background": { "default": { - "value": "$action.background.default.light", + "value": "{action.background.default.light}", "type": "color" }, "active": { - "value": "$action.background.active.light", + "value": "{action.background.active.light}", "type": "color" } } }, "action-bar": { "border": { - "value": "$action-bar.border.light", + "value": "{action-bar.border.light}", "type": "color" }, "background": { - "value": "$action-bar.background.light", + "value": "{action-bar.background.light}", "type": "color" } }, "action-pad": { "border": { - "value": "$action-pad.border.light", + "value": "{action-pad.border.light}", "type": "color" }, "background": { - "value": "$action-pad.background.light", + "value": "{action-pad.background.light}", "type": "color" } }, "action-bar-grid": { "border": { - "value": "$action-bar-grid.border.light", + "value": "{action-bar-grid.border.light}", "type": "color" }, "background": { - "value": "$action-bar-grid.background.light", + "value": "{action-bar-grid.background.light}", "type": "color" } }, "action-pad-grid": { "border": { - "value": "$action-pad-grid.border.light", + "value": "{action-pad-grid.border.light}", "type": "color" }, "background": { - "value": "$action-pad-grid.background.light", + "value": "{action-pad-grid.background.light}", "type": "color" } }, "block": { "font": { "heading": { - "value": "$block.font.heading.light", + "value": "{block.font.heading.light}", "type": "color" }, "active": { - "value": "$action.font.active.light", + "value": "{action.font.active.light}", "type": "color" }, "description": { - "value": "$block.font.description.light", + "value": "{block.font.description.light}", "type": "color" }, "content": { - "value": "$block.font.content.light", + "value": "{block.font.content.light}", "type": "color" } }, "icon": { "idle": { - "value": "$block.icon.idle.light", + "value": "{block.icon.idle.light}", "type": "color" }, "valid": { - "value": "$block.icon.valid.light", + "value": "{block.icon.valid.light}", "type": "color" }, "invalid": { - "value": "$block.icon.invalid.light", + "value": "{block.icon.invalid.light}", "type": "color" }, "drag-handle": { - "value": "$block.icon.drag-handle.light", + "value": "{block.icon.drag-handle.light}", "type": "color" }, "chevron": { - "value": "$block.icon.chevron.light", + "value": "{block.icon.chevron.light}", "type": "color" } }, "border": { - "value": "$block.border.light", + "value": "{block.border.light}", "type": "color" }, "background": { - "value": "$block.background.light", + "value": "{block.background.light}", "type": "color" } }, "block-section": { "font": { - "value": "$block-section.font.light", + "value": "{block-section.font.light}", "type": "color" }, "icon": { "valid": { - "value": "$block-section.icon.valid.light", + "value": "{block-section.icon.valid.light}", "type": "color" }, "invalid": { - "value": "$block-section.icon.invalid.light", + "value": "{block-section.icon.invalid.light}", "type": "color" }, "chevron": { - "value": "$block-section.icon.chevron.light", + "value": "{block-section.icon.chevron.light}", "type": "color" } }, "background": { - "value": "$block-section.background.light", + "value": "{block-section.background.light}", "type": "color" } }, "notice": { "font": { "title": { - "value": "$notice.font.title.light", + "value": "{notice.font.title.light}", "type": "color" }, "message": { - "value": "$notice.font.message.light", + "value": "{notice.font.message.light}", "type": "color" } }, "background": { - "value": "$notice.background.light", + "value": "{notice.background.light}", "type": "color" }, "icon": { "info": { - "value": "$notice.icon.info.light", + "value": "{notice.icon.info.light}", "type": "color" }, "success": { - "value": "$notice.icon.success.light", + "value": "{notice.icon.success.light}", "type": "color" }, "warning": { - "value": "$notice.icon.warning.light", + "value": "{notice.icon.warning.light}", "type": "color" }, "danger": { - "value": "$notice.icon.danger.light", + "value": "{notice.icon.danger.light}", "type": "color" }, "brand": { - "value": "$notice.icon.brand.light", + "value": "{notice.icon.brand.light}", "type": "color" } }, "highlight": { "info": { - "value": "$notice.highlight.info.light", + "value": "{notice.highlight.info.light}", "type": "color" }, "success": { - "value": "$notice.highlight.success.light", + "value": "{notice.highlight.success.light}", "type": "color" }, "warning": { - "value": "$notice.highlight.warning.light", + "value": "{notice.highlight.warning.light}", "type": "color" }, "danger": { - "value": "$notice.highlight.danger.light", + "value": "{notice.highlight.danger.light}", "type": "color" }, "brand": { - "value": "$notice.highlight.brand.light", + "value": "{notice.highlight.brand.light}", "type": "color" } } @@ -1416,136 +1388,136 @@ "modal": { "font": { "header": { - "value": "$modal.font.header.light", + "value": "{modal.font.header.light}", "type": "color" }, "content": { - "value": "$modal.font.content.light", + "value": "{modal.font.content.light}", "type": "color" } }, "icon": { - "value": "$modal.icon.light", + "value": "{modal.icon.light}", "type": "color" }, "border": { "default": { - "value": "$modal.border.default.light", + "value": "{modal.border.default.light}", "type": "color" }, "top": { "brand": { - "value": "$modal.border.top.brand.light", + "value": "{modal.border.top.brand.light}", "type": "color" }, "info": { - "value": "$modal.border.top.info.light", + "value": "{modal.border.top.info.light}", "type": "color" }, "success": { - "value": "$modal.border.top.success.light", + "value": "{modal.border.top.success.light}", "type": "color" }, "danger": { - "value": "$modal.border.top.danger.light", + "value": "{modal.border.top.danger.light}", "type": "color" }, "warning": { - "value": "$modal.border.top.warning.light", + "value": "{modal.border.top.warning.light}", "type": "color" } } }, "background": { - "value": "$modal.background.light", + "value": "{modal.background.light}", "type": "color" } }, "panel-header": { "font": { - "value": "$panel-header.font.light", + "value": "{panel-header.font.light}", "type": "color" }, "icon": { - "value": "$panel-header.icon.light", + "value": "{panel-header.icon.light}", "type": "color" }, "border": { - "value": "$panel-header.border.light", + "value": "{panel-header.border.light}", "type": "color" }, "background": { - "value": "$panel-header.background.light", + "value": "{panel-header.background.light}", "type": "color" } }, "popover": { "font": { - "value": "$popover.font.light", + "value": "{popover.font.light}", "type": "color" }, "icon": { - "value": "$popover.icon.light", + "value": "{popover.icon.light}", "type": "color" }, "border": { - "value": "$popover.border.light", + "value": "{popover.border.light}", "type": "color" }, "background": { - "value": "$popover.background.light", + "value": "{popover.background.light}", "type": "color" } }, "slider": { "font": { "label": { - "value": "$slider.font.label.light", + "value": "{slider.font.label.light}", "type": "color" }, "tick-label": { - "value": "$slider.font.tick-label.light", + "value": "{slider.font.tick-label.light}", "type": "color" } }, "handle": { "background": { - "value": "$slider.handle.background.light", + "value": "{slider.handle.background.light}", "type": "color" }, "border": { - "value": "$slider.handle.border.light", + "value": "{slider.handle.border.light}", "type": "color" } }, "border": { "default": { - "value": "$slider.border.default.light", + "value": "{slider.border.default.light}", "type": "color" }, "active": { - "value": "$slider.border.active.light", + "value": "{slider.border.active.light}", "type": "color" } }, "tick": { "default": { "background": { - "value": "$slider.tick.default.background.light", + "value": "{slider.tick.default.background.light}", "type": "color" }, "border": { - "value": "$slider.tick.default.border.light", + "value": "{slider.tick.default.border.light}", "type": "color" } }, "active": { "background": { - "value": "$slider.tick.active.background.light", + "value": "{slider.tick.active.background.light}", "type": "color" }, "border": { - "value": "$slider.tick.active.border.light", + "value": "{slider.tick.active.border.light}", "type": "color" } } @@ -1554,52 +1526,52 @@ "slider-range": { "font": { "label": { - "value": "$slider-range.font.label.light", + "value": "{slider-range.font.label.light}", "type": "color" }, "tick-label": { - "value": "$slider-range.font.tick-label.light", + "value": "{slider-range.font.tick-label.light}", "type": "color" } }, "handle": { "background": { - "value": "$slider-range.handle.background.light", + "value": "{slider-range.handle.background.light}", "type": "color" }, "border": { - "value": "$slider-range.handle.border.light", + "value": "{slider-range.handle.border.light}", "type": "color" } }, "border": { "default": { - "value": "$slider-range.border.default.light", + "value": "{slider-range.border.default.light}", "type": "color" }, "active": { - "value": "$slider-range.border.active.light", + "value": "{slider-range.border.active.light}", "type": "color" } }, "tick": { "default": { "background": { - "value": "$slider-range.tick.default.background.light", + "value": "{slider-range.tick.default.background.light}", "type": "color" }, "border": { - "value": "$slider-range.tick.default.border.light", + "value": "{slider-range.tick.default.border.light}", "type": "color" } }, "active": { "background": { - "value": "$slider-range.tick.active.background.light", + "value": "{slider-range.tick.active.background.light}", "type": "color" }, "border": { - "value": "$slider-range.tick.active.border.light", + "value": "{slider-range.tick.active.border.light}", "type": "color" } } @@ -1608,52 +1580,52 @@ "slider-histogram": { "font": { "label": { - "value": "$slider-histogram.font.label.light", + "value": "{slider-histogram.font.label.light}", "type": "color" }, "tick-label": { - "value": "$slider-histogram.font.tick-label.light", + "value": "{slider-histogram.font.tick-label.light}", "type": "color" } }, "handle": { "background": { - "value": "$slider-histogram.handle.background.light", + "value": "{slider-histogram.handle.background.light}", "type": "color" }, "border": { - "value": "$slider-histogram.handle.border.light", + "value": "{slider-histogram.handle.border.light}", "type": "color" } }, "border": { "default": { - "value": "$slider-histogram.border.default.light", + "value": "{slider-histogram.border.default.light}", "type": "color" }, "active": { - "value": "$slider-histogram.border.active.light", + "value": "{slider-histogram.border.active.light}", "type": "color" } }, "tick": { "default": { "background": { - "value": "$slider-histogram.tick.default.background.light", + "value": "{slider-histogram.tick.default.background.light}", "type": "color" }, "border": { - "value": "$slider-histogram.tick.default.border.light", + "value": "{slider-histogram.tick.default.border.light}", "type": "color" } }, "active": { "background": { - "value": "$slider-histogram.tick.active.background.light", + "value": "{slider-histogram.tick.active.background.light}", "type": "color" }, "border": { - "value": "$slider-histogram.tick.active.border.light", + "value": "{slider-histogram.tick.active.border.light}", "type": "color" } } @@ -1661,14 +1633,14 @@ "area": { "active": { "background": { - "value": "$slider-histogram.area.active.background.light", + "value": "{slider-histogram.area.active.background.light}", "type": "color" } } }, "active-end": { "background": { - "value": "$slider-histogram.active-end.background.light", + "value": "{slider-histogram.active-end.background.light}", "type": "color" } } @@ -1676,52 +1648,52 @@ "slider-histogram-range": { "font": { "label": { - "value": "$slider-histogram-range.font.label.light", + "value": "{slider-histogram-range.font.label.light}", "type": "color" }, "tick-label": { - "value": "$slider-histogram-range.font.tick-label.light", + "value": "{slider-histogram-range.font.tick-label.light}", "type": "color" } }, "handle": { "background": { - "value": "$slider-histogram-range.handle.background.light", + "value": "{slider-histogram-range.handle.background.light}", "type": "color" }, "border": { - "value": "$slider-histogram-range.handle.border.light", + "value": "{slider-histogram-range.handle.border.light}", "type": "color" } }, "border": { "default": { - "value": "$slider-histogram-range.border.default.light", + "value": "{slider-histogram-range.border.default.light}", "type": "color" }, "active": { - "value": "$slider-histogram-range.border.active.light", + "value": "{slider-histogram-range.border.active.light}", "type": "color" } }, "tick": { "default": { "background": { - "value": "$slider-histogram-range.tick.default.background.light", + "value": "{slider-histogram-range.tick.default.background.light}", "type": "color" }, "border": { - "value": "$slider-histogram-range.tick.default.border.light", + "value": "{slider-histogram-range.tick.default.border.light}", "type": "color" } }, "active": { "background": { - "value": "$slider-histogram-range.tick.active.background.light", + "value": "{slider-histogram-range.tick.active.background.light}", "type": "color" }, "border": { - "value": "$slider-histogram-range.tick.active.border.light", + "value": "{slider-histogram-range.tick.active.border.light}", "type": "color" } } @@ -1729,64 +1701,80 @@ "area": { "active": { "background": { - "value": "$slider-histogram-range.area.active.background.light", + "value": "{slider-histogram-range.area.active.background.light}", "type": "color" } } }, "active-end": { "background": { - "value": "$slider-histogram.active-end.background.light", + "value": "{slider-histogram.active-end.background.light}", "type": "color" } } }, "filter": { "font": { - "value": "$filter.font.light", + "value": "{filter.font.light}", "type": "color" }, "icon": { - "value": "$filter.icon.light", + "value": "{filter.icon.light}", "type": "color" }, "border": { - "value": "$filter.border.light", + "value": "{filter.border.light}", "type": "color" }, "background": { - "value": "$filter.background.light", + "value": "{filter.background.light}", "type": "color" } }, "scrim": { "background": { - "value": "$scrim.background.light", + "value": "{scrim.background.light}", "type": "color" } }, "tip-manager": { "font": { "heading": { - "value": "$tip-manager.font.heading.light", + "value": "{tip-manager.font.heading.light}", "type": "color" } }, "icon": { - "value": "$tip-manager.icon.light", + "value": "{tip-manager.icon.light}", "type": "color" }, "background": { "default": { "light": { - "value": "$tip-manager.background.default.light", + "value": "{tip-manager.background.default.light}", "type": "color" } } }, "border": { "default": { - "value": "$tip-manager.border.default.light", + "value": "{tip-manager.border.default.light}", + "type": "color" + } + } + }, + "time-picker": { + "font": { + "value": "{time-picker.font.light}", + "type": "color" + }, + "icon": { + "value": "{time-picker.icon.light}", + "type": "color" + }, + "background": { + "default": { + "value": "{time-picker.background.default.light}", "type": "color" } } @@ -1795,73 +1783,73 @@ "font": { "brand": { "solid": { - "value": "$button.font.brand.solid.light", + "value": "{button.font.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.font.brand.outline-fill.light", + "value": "{button.font.brand.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.font.brand.outline.light", + "value": "{button.font.brand.outline.light}", "type": "color" }, "transparent": { - "value": "$button.font.brand.transparent.light", + "value": "{button.font.brand.transparent.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$button.font.inverse.solid.light", + "value": "{button.font.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.font.inverse.outline-fill.light", + "value": "{button.font.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.font.inverse.outline.light", + "value": "{button.font.inverse.outline.light}", "type": "color" }, "transparent": { - "value": "$button.font.inverse.transparent.light", + "value": "{button.font.inverse.transparent.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$button.font.inverse.solid.light", + "value": "{button.font.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.font.inverse.outline-fill.light", + "value": "{button.font.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.font.inverse.outline.light", + "value": "{button.font.inverse.outline.light}", "type": "color" }, "transparent": { - "value": "$button.font.inverse.transparent.light", + "value": "{button.font.inverse.transparent.light}", "type": "color" } }, "danger": { "solid": { - "value": "$button.font.danger.solid.light", + "value": "{button.font.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.font.danger.outline-fill.light", + "value": "{button.font.danger.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.font.danger.outline.light", + "value": "{button.font.danger.outline.light}", "type": "color" }, "transparent": { - "value": "$button.font.danger.transparent.light", + "value": "{button.font.danger.transparent.light}", "type": "color" } } @@ -1869,73 +1857,73 @@ "icon": { "brand": { "solid": { - "value": "$button.icon.brand.solid.light", + "value": "{button.icon.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.icon.brand.outline-fill.light", + "value": "{button.icon.brand.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.icon.brand.outline.light", + "value": "{button.icon.brand.outline.light}", "type": "color" }, "transparent": { - "value": "$button.icon.brand.transparent.light", + "value": "{button.icon.brand.transparent.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$button.icon.inverse.solid.light", + "value": "{button.icon.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.icon.inverse.outline-fill.light", + "value": "{button.icon.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.icon.inverse.outline.light", + "value": "{button.icon.inverse.outline.light}", "type": "color" }, "transparent": { - "value": "$button.icon.inverse.transparent.light", + "value": "{button.icon.inverse.transparent.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$button.icon.inverse.solid.light", + "value": "{button.icon.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.icon.inverse.outline-fill.light", + "value": "{button.icon.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.icon.inverse.outline.light", + "value": "{button.icon.inverse.outline.light}", "type": "color" }, "transparent": { - "value": "$button.icon.inverse.transparent.light", + "value": "{button.icon.inverse.transparent.light}", "type": "color" } }, "danger": { "solid": { - "value": "$button.icon.danger.solid.light", + "value": "{button.icon.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.icon.danger.outline-fill.light", + "value": "{button.icon.danger.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.icon.danger.outline.light", + "value": "{button.icon.danger.outline.light}", "type": "color" }, "transparent": { - "value": "$button.icon.danger.transparent.light", + "value": "{button.icon.danger.transparent.light}", "type": "color" } } @@ -1943,41 +1931,41 @@ "background": { "brand": { "solid": { - "value": "$button.background.brand.solid.light", + "value": "{button.background.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.background.brand.outline-fill.light", + "value": "{button.background.brand.outline-fill.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$button.background.inverse.solid.light", + "value": "{button.background.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.background.inverse.outline-fill.light", + "value": "{button.background.inverse.outline-fill.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$button.background.inverse.solid.light", + "value": "{button.background.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.background.inverse.outline-fill.light", + "value": "{button.background.inverse.outline-fill.light}", "type": "color" } }, "danger": { "solid": { - "value": "$button.background.danger.solid.light", + "value": "{button.background.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$button.background.danger.outline-fill.light", + "value": "{button.background.danger.outline-fill.light}", "type": "color" } } @@ -1985,41 +1973,41 @@ "border": { "brand": { "outline-fill": { - "value": "$button.border.brand.outline-fill.light", + "value": "{button.border.brand.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.border.brand.outline.light", + "value": "{button.border.brand.outline.light}", "type": "color" } }, "inverse": { "outline-fill": { - "value": "$button.border.inverse.outline-fill.light", + "value": "{button.border.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.border.inverse.outline.light", + "value": "{button.border.inverse.outline.light}", "type": "color" } }, "neutral": { "outline-fill": { - "value": "$button.border.inverse.outline-fill.light", + "value": "{button.border.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.border.inverse.outline.light", + "value": "{button.border.inverse.outline.light}", "type": "color" } }, "danger": { "outline-fill": { - "value": "$button.border.danger.outline-fill.light", + "value": "{button.border.danger.outline-fill.light}", "type": "color" }, "outline": { - "value": "$button.border.danger.outline.light", + "value": "{button.border.danger.outline.light}", "type": "color" } } @@ -2029,73 +2017,73 @@ "font": { "brand": { "solid": { - "value": "$split-button.font.brand.solid.light", + "value": "{split-button.font.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.font.brand.outline-fill.light", + "value": "{split-button.font.brand.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.font.brand.outline.light", + "value": "{split-button.font.brand.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.font.brand.transparent.light", + "value": "{split-button.font.brand.transparent.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$split-button.font.inverse.solid.light", + "value": "{split-button.font.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.font.inverse.outline-fill.light", + "value": "{split-button.font.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.font.inverse.outline.light", + "value": "{split-button.font.inverse.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.font.inverse.transparent.light", + "value": "{split-button.font.inverse.transparent.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$split-button.font.inverse.solid.light", + "value": "{split-button.font.neutral.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.font.inverse.outline-fill.light", + "value": "{split-button.font.neutral.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.font.inverse.outline.light", + "value": "{split-button.font.neutral.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.font.inverse.transparent.light", + "value": "{split-button.font.neutral.transparent.light}", "type": "color" } }, "danger": { "solid": { - "value": "$split-button.font.danger.solid.light", + "value": "{split-button.font.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.font.danger.outline-fill.light", + "value": "{split-button.font.danger.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.font.danger.outline.light", + "value": "{split-button.font.danger.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.font.danger.transparent.light", + "value": "{split-button.font.danger.transparent.light}", "type": "color" } } @@ -2103,73 +2091,73 @@ "icon": { "brand": { "solid": { - "value": "$split-button.icon.brand.solid.light", + "value": "{split-button.icon.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.brand.outline-fill.light", + "value": "{split-button.icon.brand.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.icon.brand.outline.light", + "value": "{split-button.icon.brand.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.icon.brand.transparent.light", + "value": "{split-button.icon.brand.transparent.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$split-button.icon.inverse.solid.light", + "value": "{split-button.icon.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.inverse.outline-fill.light", + "value": "{split-button.icon.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.icon.inverse.outline.light", + "value": "{split-button.icon.inverse.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.icon.inverse.transparent.light", + "value": "{split-button.icon.inverse.transparent.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$split-button.icon.inverse.solid.light", + "value": "{split-button.icon.neutral.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.inverse.outline-fill.light", + "value": "{split-button.icon.neutral.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.icon.inverse.outline.light", + "value": "{split-button.icon.neutral.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.icon.inverse.transparent.light", + "value": "{split-button.icon.neutral.transparent.light}", "type": "color" } }, "danger": { "solid": { - "value": "$split-button.icon.danger.solid.light", + "value": "{split-button.icon.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.danger.outline-fill.light", + "value": "{split-button.icon.danger.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.icon.danger.outline.light", + "value": "{split-button.icon.danger.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.icon.danger.transparent.light", + "value": "{split-button.icon.danger.transparent.light}", "type": "color" } } @@ -2177,41 +2165,41 @@ "background": { "brand": { "solid": { - "value": "$split-button.background.brand.solid.light", + "value": "{split-button.background.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.background.brand.outline-fill.light", + "value": "{split-button.background.brand.outline-fill.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$split-button.background.inverse.solid.light", + "value": "{split-button.background.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.background.inverse.outline-fill.light", + "value": "{split-button.background.inverse.outline-fill.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$split-button.background.inverse.solid.light", + "value": "{split-button.background.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.background.inverse.outline-fill.light", + "value": "{split-button.background.inverse.outline-fill.light}", "type": "color" } }, "danger": { "solid": { - "value": "$split-button.background.danger.solid.light", + "value": "{split-button.background.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.background.danger.outline-fill.light", + "value": "{split-button.background.danger.outline-fill.light}", "type": "color" } } @@ -2219,41 +2207,41 @@ "border": { "brand": { "outline-fill": { - "value": "$split-button.border.brand.outline-fill.light", + "value": "{split-button.border.brand.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.border.brand.outline.light", + "value": "{split-button.border.brand.outline.light}", "type": "color" } }, "inverse": { "outline-fill": { - "value": "$split-button.border.inverse.outline-fill.light", + "value": "{split-button.border.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.border.inverse.outline.light", + "value": "{split-button.border.inverse.outline.light}", "type": "color" } }, "neutral": { "outline-fill": { - "value": "$button.border.inverse.outline-fill.light", + "value": "{button.border.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.border.inverse.outline.light", + "value": "{split-button.border.inverse.outline.light}", "type": "color" } }, "danger": { "outline-fill": { - "value": "$split-button.border.danger.outline-fill.light", + "value": "{split-button.border.danger.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.border.danger.outline.light", + "value": "{split-button.border.danger.outline.light}", "type": "color" } } @@ -2261,73 +2249,73 @@ "divider": { "brand": { "solid": { - "value": "$split-button.divider.brand.solid.light", + "value": "{split-button.divider.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.divider.brand.outline-fill.light", + "value": "{split-button.divider.brand.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.divider.brand.outline.light", + "value": "{split-button.divider.brand.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.divider.brand.transparent.light", + "value": "{split-button.divider.brand.transparent.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$split-button.divider.inverse.solid.light", + "value": "{split-button.divider.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.divider.inverse.outline-fill.light", + "value": "{split-button.divider.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.divider.inverse.outline.light", + "value": "{split-button.divider.inverse.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.divider.inverse.transparent.light", + "value": "{split-button.divider.inverse.transparent.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$split-button.divider.inverse.solid.light", + "value": "{split-button.divider.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.divider.inverse.outline-fill.light", + "value": "{split-button.divider.inverse.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.divider.inverse.outline.light", + "value": "{split-button.divider.inverse.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.divider.inverse.transparent.light", + "value": "{split-button.divider.inverse.transparent.light}", "type": "color" } }, "danger": { "solid": { - "value": "$split-button.divider.danger.solid.light", + "value": "{split-button.divider.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$split-button.divider.danger.outline-fill.light", + "value": "{split-button.divider.danger.outline-fill.light}", "type": "color" }, "outline": { - "value": "$split-button.divider.danger.outline.light", + "value": "{split-button.divider.danger.outline.light}", "type": "color" }, "transparent": { - "value": "$split-button.divider.danger.transparent.light", + "value": "{split-button.divider.danger.transparent.light}", "type": "color" } } @@ -2337,41 +2325,41 @@ "font": { "brand": { "solid": { - "value": "$fab.font.brand.solid.light", + "value": "{fab.font.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.font.brand.outline-fill.light", + "value": "{fab.font.brand.outline-fill.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$fab.font.inverse.solid.light", + "value": "{fab.font.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.font.inverse.outline-fill.light", + "value": "{fab.font.inverse.outline-fill.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$fab.font.inverse.solid.light", + "value": "{fab.font.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.font.inverse.outline-fill.light", + "value": "{fab.font.inverse.outline-fill.light}", "type": "color" } }, "danger": { "solid": { - "value": "$fab.font.danger.solid.light", + "value": "{fab.font.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.font.danger.outline-fill.light", + "value": "{fab.font.danger.outline-fill.light}", "type": "color" } } @@ -2379,41 +2367,41 @@ "icon": { "brand": { "solid": { - "value": "$fab.icon.brand.solid.light", + "value": "{fab.icon.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.icon.brand.outline-fill.light", + "value": "{fab.icon.brand.outline-fill.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$fab.icon.inverse.solid.light", + "value": "{fab.icon.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.icon.inverse.outline-fill.light", + "value": "{fab.icon.inverse.outline-fill.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$fab.icon.inverse.solid.light", + "value": "{fab.icon.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.icon.inverse.outline-fill.light", + "value": "{fab.icon.inverse.outline-fill.light}", "type": "color" } }, "danger": { "solid": { - "value": "$fab.icon.danger.solid.light", + "value": "{fab.icon.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.icon.danger.outline-fill.light", + "value": "{fab.icon.danger.outline-fill.light}", "type": "color" } } @@ -2421,41 +2409,41 @@ "background": { "brand": { "solid": { - "value": "$fab.background.brand.solid.light", + "value": "{fab.background.brand.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.background.brand.outline-fill.light", + "value": "{fab.background.brand.outline-fill.light}", "type": "color" } }, "inverse": { "solid": { - "value": "$fab.background.inverse.solid.light", + "value": "{fab.background.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.background.inverse.outline-fill.light", + "value": "{fab.background.inverse.outline-fill.light}", "type": "color" } }, "neutral": { "solid": { - "value": "$fab.background.inverse.solid.light", + "value": "{fab.background.inverse.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.background.inverse.outline-fill.light", + "value": "{fab.background.inverse.outline-fill.light}", "type": "color" } }, "danger": { "solid": { - "value": "$fab.background.danger.solid.light", + "value": "{fab.background.danger.solid.light}", "type": "color" }, "outline-fill": { - "value": "$fab.background.danger.outline-fill.light", + "value": "{fab.background.danger.outline-fill.light}", "type": "color" } } @@ -2463,44 +2451,294 @@ "border": { "brand": { "outline-fill": { - "value": "$fab.border.brand.outline-fill.light", + "value": "{fab.border.brand.outline-fill.light}", "type": "color" }, "solid": { - "value": "$fab.border.brand.solid.light", + "value": "{fab.border.brand.solid.light}", "type": "color" } }, "inverse": { "outline-fill": { - "value": "$fab.border.inverse.outline-fill.light", + "value": "{fab.border.inverse.outline-fill.light}", "type": "color" }, "solid": { - "value": "$fab.border.inverse.solid.light", + "value": "{fab.border.inverse.solid.light}", "type": "color" } }, "neutral": { "outline-fill": { - "value": "$fab.border.inverse.outline-fill.light", + "value": "{fab.border.inverse.outline-fill.light}", "type": "color" }, "solid": { - "value": "$fab.border.inverse.solid.light", + "value": "{fab.border.inverse.solid.light}", "type": "color" } }, "danger": { "outline-fill": { - "value": "$fab.border.danger.outline-fill.light", + "value": "{fab.border.danger.outline-fill.light}", "type": "color" }, "solid": { - "value": "$fab.border.danger.solid.light", + "value": "{fab.border.danger.solid.light}", + "type": "color" + } + } + } + }, + "combobox": { + "icon": { + "default": { + "light": { + "value": "{combobox.icon.default.light}", + "type": "color" + } + }, + "dropdown": { + "light": { + "value": "{combobox.icon.dropdown.light}", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "{combobox.border.light}", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "{combobox.background.default.light}", + "type": "color" + } + }, + "item-container": { + "light": { + "value": "{combobox.background.item-container.light}", + "type": "color" + } + } + }, + "font": { + "placeholder": { + "light": { + "value": "{combobox.font.placeholder.light}", + "type": "color" + } + }, + "value": { + "light": "[object Object]" + }, + "type": "color" + } + }, + "combobox-item": { + "font": { + "default": { + "light": { + "value": "{combobox-item.font.default.light}", + "type": "color" + } + }, + "selected": { + "light": { + "value": "{combobox-item.font.selected.light}", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "{combobox-item.font.group-title.light}", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "{combobox-item.icon.default.light}", + "type": "color" + }, + "selected": { + "light": { + "value": "{combobox-item.icon.default.selected.light}", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "{combobox-item.icon.select.light}", "type": "color" } } + }, + "border": { + "light": { + "value": "{combobox-item.border.light}", + "type": "color" + } + } + }, + "dropdown": { + "background": { + "default": { + "light": { + "value": "{dropdown.background.default.light}", + "type": "color" + } + } + } + }, + "dropdown-item": { + "font": { + "default": { + "light": { + "value": "{dropdown-item.font.default.light}", + "type": "color" + } + }, + "selected": { + "light": { + "value": "{dropdown-item.font.selected.light}", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "{dropdown-item.font.group-title.light}", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "{dropdown-item.icon.default.light}", + "type": "color" + }, + "selected": { + "light": { + "value": "{dropdown-item.icon.default.selected.light}", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "{dropdown-item.icon.select.light}", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "{dropdown-item.border.light}", + "type": "color" + } + } + }, + "segmented-control": { + "border": { + "light": { + "value": "{segmented-control.border.light}", + "type": "color" + } + }, + "background": { + "light": { + "value": "{segmented-control.background.light}", + "type": "color" + } + } + }, + "segmented-control-item": { + "font": { + "solid": { + "default": { + "light": { + "value": "{segmented-control-item.font.solid.default.light}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{segmented-control-item.font.solid.checked.light}", + "type": "color" + } + } + }, + "outline": { + "default": { + "light": { + "value": "{segmented-control-item.font.outline.default.light}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{segmented-control-item.font.outline.checked.light}", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "default": { + "light": { + "value": "{segmented-control-item.icon.solid.default.light}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{segmented-control-item.icon.solid.checked.light}", + "type": "color" + } + } + }, + "outline": { + "checked": { + "light": { + "value": "{segmented-control-item.icon.outline.checked.light}", + "type": "color" + } + }, + "default": { + "light": { + "value": "{segmented-control-item.icon.outline.default.light}", + "type": "color" + } + } + } + }, + "border": { + "outline": { + "checked": { + "light": { + "value": "{segmented-control-item.border.outline.checked.light}", + "type": "color" + } + } + } + }, + "background": { + "solid": { + "checked": { + "light": { + "value": "{segmented-control-item.background.solid.checked.light}", + "type": "color" + } + } + } } } } diff --git a/packages/calcite-design-tokens/src/component/accordion-item.json b/packages/calcite-design-tokens/src/component/accordion-item/base.json similarity index 67% rename from packages/calcite-design-tokens/src/component/accordion-item.json rename to packages/calcite-design-tokens/src/component/accordion-item/base.json index 85934a35821..42faf085739 100644 --- a/packages/calcite-design-tokens/src/component/accordion-item.json +++ b/packages/calcite-design-tokens/src/component/accordion-item/base.json @@ -3,65 +3,69 @@ "font": { "heading": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } }, "description": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" - }, + } + }, + "descrition": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } }, "expanded": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -69,26 +73,26 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, @@ -124,7 +128,7 @@ } }, "space-around": { - "top-bottom": { + "block": { "sm": { "value": "{core.spacing.1}", "type": "spacing" @@ -138,7 +142,7 @@ "type": "spacing" } }, - "left-right": { + "inline": { "sm": { "value": "{core.spacing.3}", "type": "spacing" @@ -155,16 +159,16 @@ } }, "border-width": { - "value": "{core.border.border-width.0}", + "value": "{core.border.width.0}", "type": "borderWidth" }, "border": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/accordion-item/dark.json b/packages/calcite-design-tokens/src/component/accordion-item/dark.json new file mode 100644 index 00000000000..4f716aa6fe7 --- /dev/null +++ b/packages/calcite-design-tokens/src/component/accordion-item/dark.json @@ -0,0 +1,36 @@ +{ + "ui": { + "component": { + "accordion-item": { + "font": { + "heading": { + "value": "{accordion-item.font.heading.dark}", + "type": "color" + }, + "description": { + "value": "{accordion-item.font.description.dark}", + "type": "color" + } + }, + "icon": { + "default": { + "value": "{accordion-item.icon.default.dark}", + "type": "color" + }, + "expanded": { + "value": "{accordion-item.icon.expanded.dark}", + "type": "color" + } + }, + "background": { + "value": "{accordion-item.background.default.dark}", + "type": "color" + }, + "border": { + "value": "{accordion-item.border.dark}", + "type": "color" + } + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/accordion-item/light.json b/packages/calcite-design-tokens/src/component/accordion-item/light.json new file mode 100644 index 00000000000..0b4b0ff7674 --- /dev/null +++ b/packages/calcite-design-tokens/src/component/accordion-item/light.json @@ -0,0 +1,36 @@ +{ + "ui": { + "component": { + "accordion-item": { + "font": { + "heading": { + "value": "{accordion-item.font.heading.light}", + "type": "color" + }, + "description": { + "value": "{accordion-item.font.description.light}", + "type": "color" + } + }, + "icon": { + "default": { + "value": "{accordion-item.icon.default.light}", + "type": "color" + }, + "expanded": { + "value": "{accordion-item.icon.expanded.light}", + "type": "color" + } + }, + "background": { + "value": "{accordion-item.background.default.light}", + "type": "color" + }, + "border": { + "value": "{accordion-item.border.light}", + "type": "color" + } + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/accordion.json b/packages/calcite-design-tokens/src/component/accordion.json index 29370b6401f..49d5b507d01 100644 --- a/packages/calcite-design-tokens/src/component/accordion.json +++ b/packages/calcite-design-tokens/src/component/accordion.json @@ -2,42 +2,42 @@ "accordion": { "heading": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "description": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "icon": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "expanded": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -45,11 +45,11 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -86,7 +86,7 @@ } }, "space-around": { - "top-bottom": { + "block": { "sm": { "value": "{core.spacing.1}", "type": "spacing" @@ -100,7 +100,7 @@ "type": "spacing" } }, - "left-right": { + "inline": { "sm": { "value": "{core.spacing.3}", "type": "spacing" @@ -148,7 +148,7 @@ } }, "space-around": { - "top-bottom": { + "block": { "sm": { "value": "{core.spacing.1}", "type": "spacing" @@ -162,7 +162,7 @@ "type": "spacing" } }, - "left-right": { + "inline": { "sm": { "value": "{core.spacing.none}", "type": "spacing" @@ -180,11 +180,11 @@ }, "border": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/action-bar-grid.json b/packages/calcite-design-tokens/src/component/action-bar-grid.json index 5322ee46fa7..01280eecb8d 100644 --- a/packages/calcite-design-tokens/src/component/action-bar-grid.json +++ b/packages/calcite-design-tokens/src/component/action-bar-grid.json @@ -2,63 +2,63 @@ "action-bar-grid": { "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/action-bar.json b/packages/calcite-design-tokens/src/component/action-bar.json index c8ee0cda60a..caef45510ef 100644 --- a/packages/calcite-design-tokens/src/component/action-bar.json +++ b/packages/calcite-design-tokens/src/component/action-bar.json @@ -2,63 +2,63 @@ "action-bar": { "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/action-pad-grid.json b/packages/calcite-design-tokens/src/component/action-pad-grid.json index 6c25daf4a56..0f9bb43afbd 100644 --- a/packages/calcite-design-tokens/src/component/action-pad-grid.json +++ b/packages/calcite-design-tokens/src/component/action-pad-grid.json @@ -2,63 +2,63 @@ "action-pad-grid": { "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" } }, "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, diff --git a/packages/calcite-design-tokens/src/component/action-pad.json b/packages/calcite-design-tokens/src/component/action-pad.json index 738d3f29afd..da45d783937 100644 --- a/packages/calcite-design-tokens/src/component/action-pad.json +++ b/packages/calcite-design-tokens/src/component/action-pad.json @@ -2,63 +2,63 @@ "action-pad": { "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" } }, "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, diff --git a/packages/calcite-design-tokens/src/component/action.json b/packages/calcite-design-tokens/src/component/action.json index 431ce958e1d..957af27224e 100644 --- a/packages/calcite-design-tokens/src/component/action.json +++ b/packages/calcite-design-tokens/src/component/action.json @@ -2,54 +2,56 @@ "action": { "font": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } }, "active": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -57,98 +59,98 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "lg": { - "value": "$core.spacing.8", + "value": "{core.spacing.8}", "type": "spacing" } }, "indicator-size": { "sm": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "sizing" }, "md": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "sizing" }, "lg": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "sizing" } }, "indicator": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "loader-icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/alert.json b/packages/calcite-design-tokens/src/component/alert.json index 6389f65c23c..4cb9f96ad93 100644 --- a/packages/calcite-design-tokens/src/component/alert.json +++ b/packages/calcite-design-tokens/src/component/alert.json @@ -3,135 +3,135 @@ "font": { "title": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.1h", + "value": "{semantic.font.default.medium.1h}", "type": "typography" } }, "message": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "icon": { "blue": { "light": { - "value": "$semantic.ui.color.info.default.light", + "value": "{semantic.ui.color.info.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.info.default.dark", + "value": "{semantic.ui.color.info.default.dark}", "type": "color" } }, "green": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "yellow": { "light": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" } }, "red": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -139,41 +139,41 @@ "highlight": { "blue": { "light": { - "value": "$semantic.ui.color.info.default.light", + "value": "{semantic.ui.color.info.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.info.default.dark", + "value": "{semantic.ui.color.info.default.dark}", "type": "color" } }, "green": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "yellow": { "light": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" } }, "red": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/avatar.json b/packages/calcite-design-tokens/src/component/avatar.json index 7fb35dbf070..2237e1e7b97 100644 --- a/packages/calcite-design-tokens/src/component/avatar.json +++ b/packages/calcite-design-tokens/src/component/avatar.json @@ -2,137 +2,137 @@ "avatar": { "font": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "{semantic.font.default.bold.-3h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "{semantic.font.default.bold.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "{semantic.font.default.bold.0h}", "type": "typography" } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.foreground.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.2.dark}", "type": "color" } }, "red": { "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-010", + "value": "{core.color.palette.high-saturation.red.h-rr-010}", "type": "color" }, "dark": { - "value": "$core.color.palette.high-saturation.red.h-rr-090", + "value": "{core.color.palette.high-saturation.red.h-rr-090}", "type": "color" } }, "teal": { "light": { - "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", + "value": "{core.color.palette.high-saturation.green-blue.h-gb-010}", "type": "color" }, "dark": { - "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", + "value": "{core.color.palette.high-saturation.green-blue.h-gb-090}", "type": "color" } }, "blue": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "value": "{core.color.palette.high-saturation.blue.h-bb-010}", "type": "color" }, "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "value": "{core.color.palette.high-saturation.blue.h-bb-090}", "type": "color" } }, "green": { "light": { - "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", + "value": "{core.color.palette.high-saturation.yellow-green.h-yg-010}", "type": "color" }, "dark": { - "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", + "value": "{core.color.palette.high-saturation.yellow-green.h-yg-090}", "type": "color" } }, "yellow": { "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-010", + "value": "{core.color.palette.high-saturation.yellow.h-yy-010}", "type": "color" }, "dark": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-100", + "value": "{core.color.palette.high-saturation.yellow.h-yy-100}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "{core.border.radius.4}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "{core.border.radius.5}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "{core.border.radius.6}", "type": "borderRadius" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" } } diff --git a/packages/calcite-design-tokens/src/component/block-section.json b/packages/calcite-design-tokens/src/component/block-section.json index 9f25113987e..087f2f9d61f 100644 --- a/packages/calcite-design-tokens/src/component/block-section.json +++ b/packages/calcite-design-tokens/src/component/block-section.json @@ -2,42 +2,42 @@ "block-section": { "font": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "md": { - "value": "$semantic.font.wrap.medium.-1", + "value": "{semantic.font.wrap.medium.-1}", "type": "typography" } }, "icon": { "valid": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "chevron": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { @@ -48,29 +48,29 @@ }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "border-radius": { "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "icon-size": { "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, @@ -78,21 +78,21 @@ "block-text": { "right-left": { "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } }, "block-content": { "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "block-section": { - "top-bottom": { + "block": { "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } @@ -100,7 +100,7 @@ "icon": { "left": { "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } } @@ -108,7 +108,7 @@ "switch": { "left": { "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } } @@ -116,7 +116,7 @@ }, "chevron-size": { "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } } diff --git a/packages/calcite-design-tokens/src/component/block.json b/packages/calcite-design-tokens/src/component/block.json index 3276f9e7a70..576803f8b67 100644 --- a/packages/calcite-design-tokens/src/component/block.json +++ b/packages/calcite-design-tokens/src/component/block.json @@ -3,43 +3,43 @@ "font": { "heading": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" } }, "description": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "md": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" } }, "content": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" } } @@ -47,47 +47,47 @@ "icon": { "idle": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "valid": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "drag-handle": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "chevron": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { @@ -98,45 +98,45 @@ }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "border-radius": { "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, @@ -144,13 +144,13 @@ "block": { "top-down-left": { "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, "right": { "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } } @@ -158,13 +158,13 @@ "block-content": { "right-left": { "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, "top-down": { "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } } @@ -172,13 +172,13 @@ }, "chevron-size": { "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "drag-size": { "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, @@ -187,7 +187,7 @@ "drag": { "right-left": { "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/button.json b/packages/calcite-design-tokens/src/component/button.json index b5ea778ffd0..82fc2fcd059 100644 --- a/packages/calcite-design-tokens/src/component/button.json +++ b/packages/calcite-design-tokens/src/component/button.json @@ -4,95 +4,95 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "{semantic.font.default.bold.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "{semantic.font.default.bold.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "{semantic.font.default.bold.0h}", "type": "typography" }, "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } } @@ -100,41 +100,41 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -142,41 +142,41 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -186,41 +186,41 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -228,41 +228,41 @@ "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } } @@ -270,41 +270,41 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -312,41 +312,41 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -356,21 +356,21 @@ "brand": { "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -378,21 +378,21 @@ "inverse": { "outline-fill": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } } @@ -400,21 +400,21 @@ "neutral": { "outline-fill": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } } @@ -422,21 +422,21 @@ "danger": { "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -446,21 +446,21 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -468,21 +468,21 @@ "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } } @@ -490,21 +490,21 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -512,21 +512,21 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -534,117 +534,131 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.4}", "type": "spacing" } }, "icon-only": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } + }, + "rounded": { + "sm": { + "value": "{core.border.radius.full}", + "type": "borderRadius" + }, + "md": { + "value": "{core.border.radius.full}", + "type": "borderRadius" + }, + "lg": { + "value": "{core.border.radius.full}", + "type": "borderRadius" + } } } } diff --git a/packages/calcite-design-tokens/src/component/card.json b/packages/calcite-design-tokens/src/component/card.json index 876fe993bbb..acc26ed84fd 100644 --- a/packages/calcite-design-tokens/src/component/card.json +++ b/packages/calcite-design-tokens/src/component/card.json @@ -3,45 +3,45 @@ "font": { "title": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" } }, "subtile": { "md": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" } }, "description": { "md": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "subtitle": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } } @@ -49,21 +49,21 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -71,44 +71,44 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, "space-around": { "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, "space-between": { "card": { "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "title": { "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } } }, "border-radius": { "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } } diff --git a/packages/calcite-design-tokens/src/component/checkbox.json b/packages/calcite-design-tokens/src/component/checkbox.json index 983b205c5b8..5759362c5b3 100644 --- a/packages/calcite-design-tokens/src/component/checkbox.json +++ b/packages/calcite-design-tokens/src/component/checkbox.json @@ -2,107 +2,107 @@ "checkbox": { "comp-size": { "sm": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "sizing" }, "md": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "spacing" }, "md": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" }, "lg": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "selected": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "border-radius": { - "value": "$semantic.border.border-radius.sharp", + "value": "{semantic.border.radius.sharp}", "type": "borderRadius" }, "border-width": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "border": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "font": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "space-around": { "standard": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/chip.json b/packages/calcite-design-tokens/src/component/chip.json index 5ca4f2fee22..339f367bbab 100644 --- a/packages/calcite-design-tokens/src/component/chip.json +++ b/packages/calcite-design-tokens/src/component/chip.json @@ -3,74 +3,74 @@ "font": { "clear": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "solid": { "grey": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "blue": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "red": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "yellow": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "green": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } } @@ -80,91 +80,91 @@ "solid": { "grey": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "blue": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "red": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "yellow": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "green": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } } }, "clear": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "space-around": { "right": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } }, "left": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } @@ -174,51 +174,51 @@ "solid": { "grey": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.foreground.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.2.dark}", "type": "color" } }, "red": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "blue": { "light": { - "value": "$semantic.ui.color.info.default.light", + "value": "{semantic.ui.color.info.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.info.default.dark", + "value": "{semantic.ui.color.info.default.dark}", "type": "color" } }, "green": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "yellow": { "light": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" } } @@ -226,52 +226,52 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "{core.border.radius.4}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "{core.border.radius.5}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "{core.border.radius.6}", "type": "borderRadius" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "closable-icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "space-around": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } } @@ -280,51 +280,51 @@ "clear": { "grey": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "red": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "blue": { "light": { - "value": "$semantic.ui.color.info.default.light", + "value": "{semantic.ui.color.info.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.info.default.dark", + "value": "{semantic.ui.color.info.default.dark}", "type": "color" } }, "green": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "yellow": { "light": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" } } @@ -332,48 +332,48 @@ }, "space-around": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "border-width": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "text": { "space-around": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/color-picker.json b/packages/calcite-design-tokens/src/component/color-picker.json index eb85ed9490b..2909f11d4c9 100644 --- a/packages/calcite-design-tokens/src/component/color-picker.json +++ b/packages/calcite-design-tokens/src/component/color-picker.json @@ -3,107 +3,107 @@ "font": { "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "saved-size": { "sm": { - "value": "$core.sizing.8", + "value": "{core.sizing.8}", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" } }, "swatch-size": { "sm": { - "value": "$core.sizing.8", + "value": "{core.sizing.8}", "type": "sizing" }, "md": { - "value": "$core.sizing.8", + "value": "{core.sizing.8}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "channels": { "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { @@ -118,29 +118,29 @@ }, "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/combobox-item.json b/packages/calcite-design-tokens/src/component/combobox-item.json new file mode 100644 index 00000000000..72c162b72bd --- /dev/null +++ b/packages/calcite-design-tokens/src/component/combobox-item.json @@ -0,0 +1,356 @@ +{ + "combobox-item": { + "font": { + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + }, + "sm": { + "value": "{semantic.font.default.regular.-2h}", + "type": "typography" + }, + "md": { + "value": "{semantic.font.default.regular.-1h}", + "type": "typography" + }, + "lg": { + "value": "{semantic.font.default.regular.0h}", + "type": "typography" + } + }, + "selected": { + "sm": { + "value": "{semantic.font.default.medium.-2h}", + "type": "typography" + }, + "md": { + "value": "{semantic.font.default.medium.-1h}", + "type": "typography" + }, + "lg": { + "value": "{semantic.font.default.medium.0h}", + "type": "typography" + }, + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + } + }, + "group-label": { + "sm": { + "value": "{semantic.font.default.bold.-2h}", + "type": "typography" + }, + "md": { + "value": "{semantic.font.default.bold.-1h}", + "type": "typography" + }, + "lg": { + "value": "{semantic.font.default.bold.0h}", + "type": "typography" + } + } + }, + "icon": { + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + }, + "selected": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "{semantic.ui.color.border.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.border.3.dark}", + "type": "color" + } + }, + "border-width": { + "sm": { + "value": "{core.border.width.0}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.width.0}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.width.0}", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "md": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "lg": { + "value": "{core.sizing.9}", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + }, + "space-around": { + "container": { + "level-1": { + "left": { + "default": { + "sm": { + "value": "{core.spacing.11}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.13}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.16}", + "type": "spacing" + } + }, + "selected": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + }, + "right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + }, + "level-2": { + "left": { + "default": { + "sm": { + "value": "{core.spacing.13}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3} * 6.5", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.18}", + "type": "spacing" + } + }, + "selected": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + }, + "right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + }, + "level-3": { + "left": { + "default": { + "sm": { + "value": "{core.spacing.15}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.17}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.3} * 11", + "type": "spacing" + } + }, + "selected": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + }, + "right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + } + }, + "group-label": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/combobox.json b/packages/calcite-design-tokens/src/component/combobox.json index 0e85c49cc86..080115e079a 100644 --- a/packages/calcite-design-tokens/src/component/combobox.json +++ b/packages/calcite-design-tokens/src/component/combobox.json @@ -1,151 +1,159 @@ { "combobox": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + } + }, + "dropdown": { + "light": { + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } + }, + "size": { + "sm": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "md": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "lg": { + "value": "{core.sizing.9}", + "type": "sizing" + } } }, - "foreground": { + "border": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "{core.border.width.0}", "type": "borderWidth" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" + "background": { + "default": { + "light": { + "value": "{semantic.ui.color.background.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.background.dark}", + "type": "color" + } }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" + "item-container": { + "light": { + "value": "{semantic.ui.color.foreground.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.foreground.1.dark}", + "type": "color" + } } }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" + "space": { + "between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" + "around": { + "inline": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.2}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.4}", + "type": "spacing" + } + } } }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" + "font": { + "placeholder": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + }, + "sm": { + "value": "{core.font.font-size.1}", + "type": "typography" + }, + "md": { + "value": "{core.font.font-size.2}", + "type": "typography" + }, + "lg": { + "value": "{core.font.font-size.3}", + "type": "typography" + } } }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "item-container": { + "shadow": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" } } } diff --git a/packages/calcite-design-tokens/src/component/date-picker.json b/packages/calcite-design-tokens/src/component/date-picker.json index dfec9a09543..0aeefb124e1 100644 --- a/packages/calcite-design-tokens/src/component/date-picker.json +++ b/packages/calcite-design-tokens/src/component/date-picker.json @@ -3,78 +3,78 @@ "font": { "date": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "day": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "{semantic.font.default.bold.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-2h", + "value": "{semantic.font.default.bold.-2h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.-1h", + "value": "{semantic.font.default.bold.-1h}", "type": "typography" } }, "month": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.1h", + "value": "{semantic.font.default.medium.1h}", "type": "typography" } }, "range": { "date": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -82,11 +82,11 @@ "selected": { "date": { "light": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" } } @@ -94,11 +94,11 @@ "active": { "date": { "light": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -106,53 +106,53 @@ }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "date": { "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "range": { "light": { - "value": "$semantic.ui.color.foreground.current.light", + "value": "{semantic.ui.color.foreground.current.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.current.dark", + "value": "{semantic.ui.color.foreground.current.dark}", "type": "color" } } @@ -160,87 +160,87 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "date-row": { "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" }, "md": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" }, "lg": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.0", + "value": "{core.spacing.0}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } } @@ -250,41 +250,41 @@ "active": { "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.0", + "value": "{core.spacing.0}", "type": "spacing" }, "md": { - "value": "$core.spacing.0", + "value": "{core.spacing.0}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } } @@ -293,29 +293,29 @@ "day": { "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } } @@ -323,29 +323,29 @@ "month": { "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/dropdown-item.json b/packages/calcite-design-tokens/src/component/dropdown-item.json index 15637853b05..e84570a51f9 100644 --- a/packages/calcite-design-tokens/src/component/dropdown-item.json +++ b/packages/calcite-design-tokens/src/component/dropdown-item.json @@ -3,67 +3,67 @@ "font": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "selected": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "group-title": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "{semantic.font.default.bold.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "{semantic.font.default.bold.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "{semantic.font.default.bold.0h}", "type": "typography" } } @@ -71,85 +71,85 @@ "icon": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "selected": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "select": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "container": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } } @@ -158,29 +158,29 @@ "content": { "left": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.0", + "value": "{core.spacing.0}", "type": "spacing" }, "lg": { - "value": "$core.spacing.0", + "value": "{core.spacing.none}", "type": "spacing" } } @@ -189,131 +189,163 @@ "default": { "left": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, "right": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } } }, "single": { "left": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" + "default": { + "sm": { + "value": "{core.spacing.9}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.11}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.13}", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.13", - "type": "spacing" + "selected": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } } }, "right": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } } }, "multi": { "left": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" + "default": { + "sm": { + "value": "{core.spacing.9}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.11}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.13}", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.13", - "type": "spacing" + "selected": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } } }, "right": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } } @@ -321,44 +353,44 @@ }, "group-title": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "icon-start": { "left": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } }, "right": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } } @@ -366,15 +398,15 @@ "icon-end": { "left": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/dropdown.json b/packages/calcite-design-tokens/src/component/dropdown.json index 69073b41b28..3b8463c6e60 100644 --- a/packages/calcite-design-tokens/src/component/dropdown.json +++ b/packages/calcite-design-tokens/src/component/dropdown.json @@ -3,54 +3,54 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "box-shadow": { "sm": { - "value": "$core.box-shadow.2", + "value": "{core.box-shadow.2}", "type": "boxShadow" }, "md": { - "value": "$core.box-shadow.2", + "value": "{core.box-shadow.2}", "type": "boxShadow" }, "lg": { - "value": "$core.box-shadow.2", + "value": "{core.box-shadow.2}", "type": "boxShadow" } } diff --git a/packages/calcite-design-tokens/src/component/fab.json b/packages/calcite-design-tokens/src/component/fab.json index 0f9b2137e56..c64f6a230cf 100644 --- a/packages/calcite-design-tokens/src/component/fab.json +++ b/packages/calcite-design-tokens/src/component/fab.json @@ -4,55 +4,55 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -60,21 +60,21 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -82,21 +82,21 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -106,21 +106,21 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -128,21 +128,21 @@ "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -150,21 +150,21 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -172,21 +172,21 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -196,21 +196,21 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -218,21 +218,21 @@ "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } } @@ -240,21 +240,21 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } } @@ -262,21 +262,21 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -286,21 +286,21 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -308,21 +308,21 @@ "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -330,21 +330,21 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -352,21 +352,21 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -374,117 +374,131 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.full", + "value": "{core.border.radius.full}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.full", + "value": "{core.border.radius.full}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.full", + "value": "{core.border.radius.full}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, "icon-only": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } } + }, + "shadow": { + "sm": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + }, + "md": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + }, + "lg": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + } } } } diff --git a/packages/calcite-design-tokens/src/component/filter.json b/packages/calcite-design-tokens/src/component/filter.json index 972424d84fe..814c0576b43 100644 --- a/packages/calcite-design-tokens/src/component/filter.json +++ b/packages/calcite-design-tokens/src/component/filter.json @@ -2,170 +2,170 @@ "filter": { "font": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "input": { "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/flow-header.json b/packages/calcite-design-tokens/src/component/flow-header.json new file mode 100644 index 00000000000..8b2f9263787 --- /dev/null +++ b/packages/calcite-design-tokens/src/component/flow-header.json @@ -0,0 +1,88 @@ +{ + "flow-header": { + "font": { + "light": { + "value": "{semantic.ui.color.text.2.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.2.dark}", + "type": "color" + }, + "heading": { + "md": { + "value": "{semantic.font.default.medium.0h}", + "type": "typography" + } + }, + "description": { + "md": { + "value": "{semantic.font.default.regular.-1h}", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + }, + "border": { + "light": { + "value": "{semantic.ui.color.border.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.border.3.dark}", + "type": "color" + } + }, + "background": { + "light": { + "value": "{semantic.ui.color.foreground.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.foreground.1.dark}", + "type": "color" + } + }, + "border-width": { + "md": { + "value": "{core.border.width.0}", + "type": "borderWidth" + } + }, + "icon-size": { + "md": { + "value": "{core.sizing.7}", + "type": "sizing" + } + }, + "space-between": { + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + } + }, + "space-around": { + "inline": { + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "block": { + "md": { + "value": "{core.spacing.6}", + "type": "spacing" + } + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/input-date-picker.json b/packages/calcite-design-tokens/src/component/input-date-picker.json index cd09c9aa1b7..c813df6f982 100644 --- a/packages/calcite-design-tokens/src/component/input-date-picker.json +++ b/packages/calcite-design-tokens/src/component/input-date-picker.json @@ -3,212 +3,212 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "arrow": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } }, "arrow-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, diff --git a/packages/calcite-design-tokens/src/component/input-datetime-local.json b/packages/calcite-design-tokens/src/component/input-datetime-local.json index 551b2c784ed..e7280000019 100644 --- a/packages/calcite-design-tokens/src/component/input-datetime-local.json +++ b/packages/calcite-design-tokens/src/component/input-datetime-local.json @@ -3,99 +3,99 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -103,117 +103,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-email.json b/packages/calcite-design-tokens/src/component/input-email.json index 7db385cf697..d94a82e63b9 100644 --- a/packages/calcite-design-tokens/src/component/input-email.json +++ b/packages/calcite-design-tokens/src/component/input-email.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-file.json b/packages/calcite-design-tokens/src/component/input-file.json index 45e66bb131b..a3c39259e17 100644 --- a/packages/calcite-design-tokens/src/component/input-file.json +++ b/packages/calcite-design-tokens/src/component/input-file.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-message.json b/packages/calcite-design-tokens/src/component/input-message.json index 3af48dc9ebf..43e7dfe1351 100644 --- a/packages/calcite-design-tokens/src/component/input-message.json +++ b/packages/calcite-design-tokens/src/component/input-message.json @@ -2,69 +2,69 @@ "input-message": { "font": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-3h", + "value": "{semantic.font.default.medium.-3h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" } }, "icon": { "idle": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "valid": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } } diff --git a/packages/calcite-design-tokens/src/component/input-month.json b/packages/calcite-design-tokens/src/component/input-month.json index d7ac4c10250..5ca3417c41b 100644 --- a/packages/calcite-design-tokens/src/component/input-month.json +++ b/packages/calcite-design-tokens/src/component/input-month.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-number.json b/packages/calcite-design-tokens/src/component/input-number.json index 5e9a74390fe..061505cacca 100644 --- a/packages/calcite-design-tokens/src/component/input-number.json +++ b/packages/calcite-design-tokens/src/component/input-number.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-password.json b/packages/calcite-design-tokens/src/component/input-password.json index 4cebb82f487..bee66ba57df 100644 --- a/packages/calcite-design-tokens/src/component/input-password.json +++ b/packages/calcite-design-tokens/src/component/input-password.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-search.json b/packages/calcite-design-tokens/src/component/input-search.json index aa97e315a20..f53f4029e8b 100644 --- a/packages/calcite-design-tokens/src/component/input-search.json +++ b/packages/calcite-design-tokens/src/component/input-search.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-telephone.json b/packages/calcite-design-tokens/src/component/input-telephone.json index 674543b561e..f5c531c15ac 100644 --- a/packages/calcite-design-tokens/src/component/input-telephone.json +++ b/packages/calcite-design-tokens/src/component/input-telephone.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-text.json b/packages/calcite-design-tokens/src/component/input-text.json index 3dc7bee8df8..889b76b785a 100644 --- a/packages/calcite-design-tokens/src/component/input-text.json +++ b/packages/calcite-design-tokens/src/component/input-text.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/input-week.json b/packages/calcite-design-tokens/src/component/input-week.json index a963ddc9872..66345873f85 100644 --- a/packages/calcite-design-tokens/src/component/input-week.json +++ b/packages/calcite-design-tokens/src/component/input-week.json @@ -3,113 +3,113 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "invalid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -117,117 +117,117 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "prefix-suffix": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/label.json b/packages/calcite-design-tokens/src/component/label.json index d92f1356961..f1df0f6abcd 100644 --- a/packages/calcite-design-tokens/src/component/label.json +++ b/packages/calcite-design-tokens/src/component/label.json @@ -2,23 +2,23 @@ "label": { "font": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/link.json b/packages/calcite-design-tokens/src/component/link.json index 91504e568a8..bbc2a87d1e7 100644 --- a/packages/calcite-design-tokens/src/component/link.json +++ b/packages/calcite-design-tokens/src/component/link.json @@ -2,43 +2,49 @@ "link": { "font": { "light": { - "value": "$semantic.ui.color.text.link.light", + "value": "{semantic.ui.color.text.link.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.link.dark", + "value": "{semantic.ui.color.text.link.dark}", "type": "color" }, "regular": { - "value": "$semantic.font.wrap.regular.0", + "value": "{semantic.font.wrap.regular.0}", "type": "typography" } }, "icon": { "light": { - "value": "$semantic.ui.color.text.link.light", + "value": "{semantic.ui.color.text.link.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.link.dark", + "value": "{semantic.ui.color.text.link.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.text.link.light", + "value": "{semantic.ui.color.text.link.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.link.dark", + "value": "{semantic.ui.color.text.link.dark}", "type": "color" } }, "bottom": { "border-width": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } + }, + "opacity": { + "underline": { + "value": "{core.opacity.40}", + "type": "opacity" + } } } } diff --git a/packages/calcite-design-tokens/src/component/list-item.json b/packages/calcite-design-tokens/src/component/list-item.json new file mode 100644 index 00000000000..ffb08122dd0 --- /dev/null +++ b/packages/calcite-design-tokens/src/component/list-item.json @@ -0,0 +1,214 @@ +{ + "list-item": { + "font": { + "label": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + }, + "default": { + "value": "{semantic.font.default.regular.-2h}", + "type": "typography" + } + }, + "description": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + }, + "default": { + "value": "{semantic.font.default.regular.-2h}", + "type": "typography" + } + }, + "group-heading": { + "light": { + "value": "{semantic.ui.color.text.2.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.2.dark}", + "type": "color" + }, + "default": { + "value": "{semantic.font.default.bold.-1h}", + "type": "typography" + } + } + }, + "icon": { + "dropdown": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + } + }, + "select": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + }, + "content-end-icon": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + } + }, + "border-width": { + "default": { + "value": "{core.border.width.2}", + "type": "borderWidth" + } + }, + "icon-size": { + "default": { + "value": "{core.sizing.7}", + "type": "sizing" + } + }, + "space-between": { + "content": { + "default": { + "value": "{core.spacing.0}", + "type": "spacing" + } + } + }, + "space-around": { + "group-label": { + "default": { + "value": "{core.spacing.3}", + "type": "spacing" + } + }, + "dropdown-icon": { + "level-1": { + "left": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "right": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "block": { + "value": "{core.spacing.none}", + "type": "spacing" + } + }, + "level-2": { + "left": { + "value": "{core.spacing.7}", + "type": "spacing" + }, + "right": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "block": { + "value": "{core.spacing.none}", + "type": "spacing" + } + }, + "level-3": { + "left": { + "value": "{core.spacing.11}", + "type": "spacing" + }, + "right": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "block": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + }, + "content": { + "left": { + "value": "{core.spacing.6}", + "type": "spacing" + }, + "right": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "block": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "content-end": { + "icon": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + }, + "selection-icon": { + "single": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "multi": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + }, + "background": { + "light": { + "value": "{semantic.ui.color.foreground.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.foreground.1.dark}", + "type": "color" + }, + "group-heading": { + "light": { + "value": "{semantic.ui.color.foreground.2.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.foreground.2.dark}", + "type": "color" + } + } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/loader.json b/packages/calcite-design-tokens/src/component/loader.json index 8cc68b37918..49457318c2c 100644 --- a/packages/calcite-design-tokens/src/component/loader.json +++ b/packages/calcite-design-tokens/src/component/loader.json @@ -2,28 +2,28 @@ "loader": { "font": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "text": { - "value": "$semantic.font.wrap.regular.-2", + "value": "{semantic.font.wrap.regular.-2}", "type": "typography" }, "value-text": { "sm": { - "value": "$semantic.font.wrap.regular.-2", + "value": "{semantic.font.wrap.regular.-2}", "type": "typography" }, "md": { - "value": "$semantic.font.wrap.regular.0", + "value": "{semantic.font.wrap.regular.0}", "type": "typography" }, "lg": { - "value": "$semantic.font.wrap.regular.2", + "value": "{semantic.font.wrap.regular.2}", "type": "typography" } } @@ -31,31 +31,31 @@ "default": { "comp-size": { "sm": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "md": { - "value": "$core.sizing.17", + "value": "{core.sizing.17}", "type": "sizing" }, "lg": { - "value": "$core.sizing.20", + "value": "{core.sizing.20}", "type": "sizing" } }, "space-between": { "standard": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } }, "foreground": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -63,64 +63,64 @@ "inline": { "comp-size": { "sm": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, "foreground": { "indeterminate": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "determinate": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/modal.json b/packages/calcite-design-tokens/src/component/modal.json index 245b209e5f0..2d1fada3cf9 100644 --- a/packages/calcite-design-tokens/src/component/modal.json +++ b/packages/calcite-design-tokens/src/component/modal.json @@ -3,118 +3,118 @@ "font": { "header": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.wrap.regular.1", + "value": "{semantic.font.wrap.regular.1}", "type": "typography" }, "md": { - "value": "$semantic.font.wrap.regular.2", + "value": "{semantic.font.wrap.regular.2}", "type": "typography" }, "lg": { - "value": "$semantic.font.wrap.regular.3", + "value": "{semantic.font.wrap.regular.3}", "type": "typography" } }, "content": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.1h", + "value": "{semantic.font.default.regular.1h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "default": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "top": { "brand": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "info": { "light": { - "value": "$semantic.ui.color.info.default.light", + "value": "{semantic.ui.color.info.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.info.default.dark", + "value": "{semantic.ui.color.info.default.dark}", "type": "color" } }, "success": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "danger": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "warning": { "light": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" } } @@ -122,96 +122,96 @@ }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "md": { - "value": "$core.spacing.8", + "value": "{core.spacing.8}", "type": "spacing" }, "lg": { - "value": "$core.spacing.9", + "value": "{core.spacing.9}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "lg": { - "value": "$core.spacing.8", + "value": "{core.spacing.8}", "type": "spacing" } }, "content": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "lg": { - "value": "$core.spacing.8", + "value": "{core.spacing.8}", "type": "spacing" } }, "cancel-button": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } } @@ -219,44 +219,44 @@ "border-width": { "default": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "top": { "sm": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.2}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.2}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.2}", "type": "borderWidth" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" } }, @@ -266,11 +266,11 @@ "type": "sizing" }, "medium-width": { - "value": "768px", + "value": "768", "type": "sizing" }, "full-width": { - "value": "1504px", + "value": "1504", "type": "sizing" } } diff --git a/packages/calcite-design-tokens/src/component/notice.json b/packages/calcite-design-tokens/src/component/notice.json index b281901e9ac..56eaf638555 100644 --- a/packages/calcite-design-tokens/src/component/notice.json +++ b/packages/calcite-design-tokens/src/component/notice.json @@ -3,135 +3,135 @@ "font": { "title": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.wrap.medium.-1", + "value": "{semantic.font.wrap.medium.-1}", "type": "typography" }, "md": { - "value": "$semantic.font.wrap.medium.0", + "value": "{semantic.font.wrap.medium.0}", "type": "typography" }, "lg": { - "value": "$semantic.font.wrap.medium.1", + "value": "{semantic.font.wrap.medium.1}", "type": "typography" } }, "message": { "sm": { - "value": "$semantic.font.wrap.regular.-2", + "value": "{semantic.font.wrap.regular.-2}", "type": "typography" }, "md": { - "value": "$semantic.font.wrap.regular.-1", + "value": "{semantic.font.wrap.regular.-1}", "type": "typography" }, "lg": { - "value": "$semantic.font.wrap.regular.0", + "value": "{semantic.font.wrap.regular.0}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "icon": { "info": { "light": { - "value": "$semantic.ui.color.info.default.light", + "value": "{semantic.ui.color.info.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.info.default.dark", + "value": "{semantic.ui.color.info.default.dark}", "type": "color" } }, "success": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "warning": { "light": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" } }, "danger": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "brand": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -139,65 +139,65 @@ "highlight": { "info": { "light": { - "value": "$semantic.ui.color.info.default.light", + "value": "{semantic.ui.color.info.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.info.default.dark", + "value": "{semantic.ui.color.info.default.dark}", "type": "color" } }, "success": { "light": { - "value": "$semantic.ui.color.success.default.light", + "value": "{semantic.ui.color.success.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.success.default.dark", + "value": "{semantic.ui.color.success.default.dark}", "type": "color" } }, "warning": { "light": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" } }, "danger": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "brand": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "border": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" } } @@ -205,59 +205,59 @@ "content": { "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } } }, "space-around": { - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" }, "md": { - "value": "$core.spacing.6", + "value": "{core.spacing.6}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "left": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "lg": { - "value": "$core.spacing.8", + "value": "{core.spacing.8}", "type": "spacing" } }, "right": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/pagination-item.json b/packages/calcite-design-tokens/src/component/pagination-item.json new file mode 100644 index 00000000000..1a1f24fc0e6 --- /dev/null +++ b/packages/calcite-design-tokens/src/component/pagination-item.json @@ -0,0 +1,266 @@ +{ + "pagination-item": { + "font": { + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + }, + "sm": { + "value": "{semantic.font.default.regular.-2h}", + "type": "typography" + }, + "md": { + "value": "{semantic.font.default.regular.-1h}", + "type": "typography" + }, + "lg": { + "value": "{semantic.font.default.regular.0h}", + "type": "typography" + } + }, + "active": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + }, + "sm": { + "value": "{semantic.font.default.medium.-2h}", + "type": "typography" + }, + "md": { + "value": "{semantic.font.default.medium.-1h}", + "type": "typography" + }, + "lg": { + "value": "{semantic.font.default.medium.0h}", + "type": "typography" + } + } + }, + "icon": { + "inactive": { + "value": "{core.opacity.50}", + "type": "opacity" + }, + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + }, + "active": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + } + } + }, + "bordered": { + "border": { + "light": { + "value": "{semantic.ui.color.border.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.border.3.dark}", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "{semantic.ui.color.foreground.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.background.dark}", + "type": "color" + } + } + } + }, + "number": { + "space-around": { + "inline": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + } + }, + "next-previous": { + "space-around": { + "inline": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.6}", + "type": "spacing" + } + } + } + }, + "border-radius": { + "sm": { + "value": "{core.border.radius.none}", + "type": "borderRadius" + }, + "md": { + "value": "{core.border.radius.none}", + "type": "borderRadius" + }, + "lg": { + "value": "{core.border.radius.none}", + "type": "borderRadius" + } + }, + "border-width": { + "active": { + "sm": { + "value": "{core.border.width.1}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.width.1}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.width.1}", + "type": "borderWidth" + } + } + }, + "icon-size": { + "sm": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "md": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "lg": { + "value": "{core.sizing.9}", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.3}", + "type": "spacing" + } + }, + "default": { + "space-around": { + "inline": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.4}", + "type": "spacing" + } + } + } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/pagination.json b/packages/calcite-design-tokens/src/component/pagination.json index 84453f3bb27..88f89be6d27 100644 --- a/packages/calcite-design-tokens/src/component/pagination.json +++ b/packages/calcite-design-tokens/src/component/pagination.json @@ -2,149 +2,149 @@ "pagination": { "font": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "{semantic.font.default.bold.-3h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "{semantic.font.default.bold.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "{semantic.font.default.bold.0h}", "type": "typography" } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "foreground": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.foreground.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.2.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "{core.border.radius.4}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "{core.border.radius.5}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "{core.border.radius.6}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.2}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "{core.border.width.4}", "type": "borderWidth" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "{core.spacing.9}", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "{core.spacing.11}", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "{core.spacing.14}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "md": { - "value": "$core.spacing.9", + "value": "{core.spacing.9}", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "{core.spacing.11}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/panel-header.json b/packages/calcite-design-tokens/src/component/panel-header.json index ecf5ed905ff..4357452c3b9 100644 --- a/packages/calcite-design-tokens/src/component/panel-header.json +++ b/packages/calcite-design-tokens/src/component/panel-header.json @@ -2,84 +2,84 @@ "panel-header": { "font": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "heading": { "md": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } }, "description": { "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-width": { "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } }, - "top-bottom": { + "block": { "md": { - "value": "$core.spacing.6", + "value": "{core.spacing.6}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/popover.json b/packages/calcite-design-tokens/src/component/popover.json index 4ff8999971f..821f6fe5942 100644 --- a/packages/calcite-design-tokens/src/component/popover.json +++ b/packages/calcite-design-tokens/src/component/popover.json @@ -2,152 +2,152 @@ "popover": { "font": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.wrap.medium.-1", + "value": "{semantic.font.wrap.medium.-1}", "type": "typography" }, "md": { - "value": "$semantic.font.wrap.medium.0", + "value": "{semantic.font.wrap.medium.0}", "type": "typography" }, "lg": { - "value": "$semantic.font.wrap.medium.1", + "value": "{semantic.font.wrap.medium.1}", "type": "typography" } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "pointer-size": { "sm": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "md": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "lg": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "lg": { - "value": "$core.spacing.8", + "value": "{core.spacing.8}", "type": "spacing" } }, "left-top-bottom": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/progress.json b/packages/calcite-design-tokens/src/component/progress.json new file mode 100644 index 00000000000..191f6adfb0a --- /dev/null +++ b/packages/calcite-design-tokens/src/component/progress.json @@ -0,0 +1,50 @@ +{ + "progress": { + "font": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + }, + "text": { + "value": "{semantic.font.default.medium.-2h}", + "type": "typography" + } + }, + "track": { + "idle": { + "light": { + "value": "{semantic.ui.color.background.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.background.dark}", + "type": "color" + } + }, + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + }, + "space-between": { + "value": "{core.spacing.6}", + "type": "spacing" + }, + "comp-size": { + "track": { + "value": "{core.sizing.0}", + "type": "sizing" + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/radio.json b/packages/calcite-design-tokens/src/component/radio.json index ac338783b8b..8f22056c13e 100644 --- a/packages/calcite-design-tokens/src/component/radio.json +++ b/packages/calcite-design-tokens/src/component/radio.json @@ -2,62 +2,62 @@ "radio": { "comp-size": { "sm": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "sizing" }, "md": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" }, "md": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" }, "lg": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border-radius": { - "value": "$semantic.border.border-radius.pill", + "value": "{semantic.border.radius.pill}", "type": "borderRadius" }, "border-width": { "unchecked": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "checked": { "sm": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.2}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.2}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.3", + "value": "{core.border.width.3}", "type": "borderWidth" } } @@ -65,58 +65,58 @@ "border": { "unchecked": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "checked": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "font": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "space-around": { "sm": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" }, "md": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "spacing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/rating.json b/packages/calcite-design-tokens/src/component/rating.json index f0f5e3674ea..73aa4b4dec6 100644 --- a/packages/calcite-design-tokens/src/component/rating.json +++ b/packages/calcite-design-tokens/src/component/rating.json @@ -2,43 +2,43 @@ "rating": { "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "chip": { "border-radius": { - "value": "$semantic.border.border-radius.pill", + "value": "{semantic.border.radius.pill}", "type": "borderRadius" }, - "value_text": { + "text": { "font": { "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" + "value": "{core.font.font-size.1}", + "type": "fontSizes" }, "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" + "value": "{core.font.font-size.2}", + "type": "fontSizes" }, "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" + "value": "{core.font.font-size.3}", + "type": "fontSizes" }, "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } } @@ -46,43 +46,42 @@ "count": { "font": { "sm": { - "value": { - "typography": "$core.font.font-size.1", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" + "value": "{core.font.font-size.1}", + "type": "fontSizes" }, "md": { - "value": { - "typography": "$core.font.font-size.2", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" + "value": "{core.font.font-size.2}", + "type": "fontSizes" }, "lg": { - "value": { - "typography": "$core.font.font-size.3", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" + "value": "{core.font.font-size.3}", + "type": "fontSizes" + }, + "font-weight": { + "value": "{core.font.font-weight.medium}", + "type": "fontWeights" + }, + "font-style": { + "value": "{core.font.font-style.emphasis}", + "type": "fontStyles" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } } }, "foreground": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.foreground.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.2.dark}", "type": "color" } } @@ -90,46 +89,46 @@ "star": { "comp-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "average": { "light": { - "value": "$semantic.ui.color.warning.default.light", + "value": "{semantic.ui.color.warning.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.warning.default.dark", + "value": "{semantic.ui.color.warning.default.dark}", "type": "color" } } @@ -138,29 +137,29 @@ "star-container": { "space-between": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "spacing" }, "md": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" }, "lg": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "spacing" }, "md": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "spacing" }, "lg": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "spacing" } } @@ -168,44 +167,44 @@ "average": { "space-between": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "spacing" }, "md": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" }, "lg": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "spacing" } }, "chip": { "space-between": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "spacing" }, "md": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" }, "lg": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "spacing" } }, "space-arround": { "sm": { - "value": "$core.sizing.3", + "value": "{core.sizing.3}", "type": "spacing" }, "md": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "spacing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "spacing" } } @@ -213,29 +212,29 @@ }, "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/scrim.json b/packages/calcite-design-tokens/src/component/scrim.json index 3390ff5ad7c..da7a57f2f8c 100644 --- a/packages/calcite-design-tokens/src/component/scrim.json +++ b/packages/calcite-design-tokens/src/component/scrim.json @@ -2,16 +2,16 @@ "scrim": { "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "opacity": { - "value": "$core.opacity.85", + "value": "{core.opacity.85}", "type": "opacity" } } diff --git a/packages/calcite-design-tokens/src/component/segmented-control-item.json b/packages/calcite-design-tokens/src/component/segmented-control-item.json new file mode 100644 index 00000000000..d9dfa321cda --- /dev/null +++ b/packages/calcite-design-tokens/src/component/segmented-control-item.json @@ -0,0 +1,222 @@ +{ + "segmented-control-item": { + "font": { + "solid": { + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{semantic.ui.color.background.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.background.dark}", + "type": "color" + } + } + }, + "outline": { + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + }, + "sm": { + "value": "{semantic.font.default.bold.-2h}", + "type": "typography" + }, + "md": { + "value": "{semantic.font.default.bold.-1h}", + "type": "typography" + }, + "lg": { + "value": "{semantic.font.default.bold.0h}", + "type": "typography" + } + }, + "icon": { + "solid": { + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + }, + "checked": { + "light": { + "value": "{semantic.ui.color.foreground.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.foreground.1.dark}", + "type": "color" + } + } + }, + "outline": { + "checked": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + }, + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + } + } + }, + "border": { + "outline": { + "checked": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + } + }, + "background": { + "solid": { + "checked": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + } + }, + "border-width": { + "sm": { + "value": "{core.border.width.0}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.width.0}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.width.0}", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "{core.sizing.10}", + "type": "sizing" + }, + "md": { + "value": "{core.sizing.10}", + "type": "sizing" + }, + "lg": { + "value": "{core.sizing.13}", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "md": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "lg": { + "value": "{core.sizing.9}", + "type": "sizing" + } + }, + "space-around": { + "inline": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.2}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.2}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.3}", + "type": "spacing" + } + } + }, + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/segmented-control.json b/packages/calcite-design-tokens/src/component/segmented-control.json index 95f4854a9fc..3569137618b 100644 --- a/packages/calcite-design-tokens/src/component/segmented-control.json +++ b/packages/calcite-design-tokens/src/component/segmented-control.json @@ -1,152 +1,78 @@ { "segmented-control": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "checked": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "{core.sizing.14}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "{core.spacing.0}", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "{core.spacing.0}", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "{core.spacing.0}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.7", + "value": "{core.spacing.0}", "type": "spacing" }, "md": { - "value": "$core.spacing.9", + "value": "{core.spacing.0}", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "{core.spacing.0}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/select.json b/packages/calcite-design-tokens/src/component/select.json new file mode 100644 index 00000000000..9f036b11fb6 --- /dev/null +++ b/packages/calcite-design-tokens/src/component/select.json @@ -0,0 +1,126 @@ +{ + "select": { + "font": { + "sm": { + "value": "{semantic.font.default.regular.-2h}", + "type": "typography" + }, + "md": { + "value": "{semantic.font.default.regular.-1h}", + "type": "typography" + }, + "lg": { + "value": "{semantic.font.default.regular.0h}", + "type": "typography" + }, + "light": { + "value": "{semantic.ui.color.text.2.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.2.dark}", + "type": "color" + } + }, + "icon": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + }, + "border": { + "light": { + "value": "{semantic.ui.color.border.input.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.border.input.dark}", + "type": "color" + }, + "sm": { + "value": "{core.border.width.0}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.width.0}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.width.0}", + "type": "borderWidth" + } + }, + "background": { + "light": { + "value": "{semantic.ui.color.foreground.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.foreground.1.dark}", + "type": "color" + } + }, + "icon-size": { + "sm": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "md": { + "value": "{core.sizing.7}", + "type": "sizing" + }, + "lg": { + "value": "{core.sizing.9}", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "space-around": { + "inline": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + } + } +} diff --git a/packages/calcite-design-tokens/src/component/slider-histogram-range.json b/packages/calcite-design-tokens/src/component/slider-histogram-range.json index db2abf55292..1c0737fe380 100644 --- a/packages/calcite-design-tokens/src/component/slider-histogram-range.json +++ b/packages/calcite-design-tokens/src/component/slider-histogram-range.json @@ -3,45 +3,45 @@ "font": { "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "tick-label": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-3h", + "value": "{semantic.font.default.medium.-3h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" } } @@ -49,35 +49,35 @@ "handle": { "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" } } @@ -85,21 +85,21 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -107,72 +107,72 @@ "tick-size": { "width": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" }, "md": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" }, "lg": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" } }, "height": { "sm": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" }, "md": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" }, "lg": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" } } }, "handle-size": { "sm": { - "value": "$core.sizing.4", + "value": "{core.sizing.4}", "type": "sizing" }, "md": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, @@ -180,21 +180,21 @@ "default": { "background": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -202,36 +202,36 @@ "active": { "background": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } } @@ -253,29 +253,29 @@ "active-start-end": { "width": { "sm": { - "value": "$core.sizing.0", + "value": "{core.sizing.0}", "type": "sizing" }, "md": { - "value": "$core.sizing.0", + "value": "{core.sizing.0}", "type": "sizing" }, "lg": { - "value": "$core.sizing.0", + "value": "{core.sizing.0}", "type": "sizing" } }, "height": { "sm": { - "value": "$core.sizing.15", + "value": "{core.sizing.15}", "type": "sizing" }, "md": { - "value": "$core.sizing.15", + "value": "{core.sizing.15}", "type": "sizing" }, "lg": { - "value": "$core.sizing.15", + "value": "{core.sizing.15}", "type": "sizing" } } diff --git a/packages/calcite-design-tokens/src/component/slider-histogram.json b/packages/calcite-design-tokens/src/component/slider-histogram.json index 925f7e77f2d..c989f8aa173 100644 --- a/packages/calcite-design-tokens/src/component/slider-histogram.json +++ b/packages/calcite-design-tokens/src/component/slider-histogram.json @@ -3,45 +3,45 @@ "font": { "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "tick-label": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-3h", + "value": "{semantic.font.default.medium.-3h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" } } @@ -49,21 +49,21 @@ "handle": { "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -71,108 +71,108 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" } }, "tick-size": { "width": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" }, "md": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" }, "lg": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" } }, "height": { "sm": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" }, "md": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" }, "lg": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" } } }, "handle-size": { "sm": { - "value": "$core.sizing.4", + "value": "{core.sizing.4}", "type": "sizing" }, "md": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, @@ -180,21 +180,21 @@ "default": { "background": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -202,21 +202,21 @@ "active": { "background": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -239,39 +239,39 @@ "active-end": { "width": { "sm": { - "value": "$core.sizing.0", + "value": "{core.sizing.0}", "type": "sizing" }, "md": { - "value": "$core.sizing.0", + "value": "{core.sizing.0}", "type": "sizing" }, "lg": { - "value": "$core.sizing.0", + "value": "{core.sizing.0}", "type": "sizing" } }, "height": { "sm": { - "value": "$core.sizing.15", + "value": "{core.sizing.15}", "type": "sizing" }, "md": { - "value": "$core.sizing.15", + "value": "{core.sizing.15}", "type": "sizing" }, "lg": { - "value": "$core.sizing.15", + "value": "{core.sizing.15}", "type": "sizing" } }, "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/slider-range.json b/packages/calcite-design-tokens/src/component/slider-range.json index 86159ecd864..faa89166d54 100644 --- a/packages/calcite-design-tokens/src/component/slider-range.json +++ b/packages/calcite-design-tokens/src/component/slider-range.json @@ -3,45 +3,45 @@ "font": { "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "tick-label": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-3h", + "value": "{semantic.font.default.medium.-3h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" } } @@ -49,21 +49,21 @@ "handle": { "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -71,108 +71,108 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" } }, "tick-size": { "width": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" }, "md": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" }, "lg": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" } }, "height": { "sm": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" }, "md": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" }, "lg": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" } } }, "handle-size": { "sm": { - "value": "$core.sizing.4", + "value": "{core.sizing.4}", "type": "sizing" }, "md": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, @@ -180,21 +180,21 @@ "default": { "background": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -202,21 +202,21 @@ "active": { "background": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/slider.json b/packages/calcite-design-tokens/src/component/slider.json index bee96cfa2b7..6d6c5cc28c9 100644 --- a/packages/calcite-design-tokens/src/component/slider.json +++ b/packages/calcite-design-tokens/src/component/slider.json @@ -3,45 +3,45 @@ "font": { "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "tick-label": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-3h", + "value": "{semantic.font.default.medium.-3h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" } } @@ -49,21 +49,21 @@ "handle": { "background": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } } @@ -71,108 +71,108 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" } }, "tick-size": { "width": { "sm": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" }, "md": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" }, "lg": { - "value": "$core.sizing.1", + "value": "{core.sizing.1}", "type": "sizing" } }, "height": { "sm": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" }, "md": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" }, "lg": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" } } }, "handle-size": { "sm": { - "value": "$core.sizing.4", + "value": "{core.sizing.4}", "type": "sizing" }, "md": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.2", + "value": "{core.spacing.2}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, @@ -180,21 +180,21 @@ "default": { "background": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -202,21 +202,21 @@ "active": { "background": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/split-button.json b/packages/calcite-design-tokens/src/component/split-button.json index e9140c4af48..9ab82160770 100644 --- a/packages/calcite-design-tokens/src/component/split-button.json +++ b/packages/calcite-design-tokens/src/component/split-button.json @@ -4,95 +4,95 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } } @@ -100,41 +100,41 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -142,41 +142,41 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -186,41 +186,41 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -228,41 +228,41 @@ "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } } @@ -270,41 +270,41 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -312,41 +312,41 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -356,21 +356,21 @@ "brand": { "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -378,21 +378,21 @@ "inverse": { "outline-fill": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } } @@ -400,21 +400,21 @@ "neutral": { "outline-fill": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } } @@ -422,21 +422,21 @@ "danger": { "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } @@ -446,21 +446,21 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -468,21 +468,21 @@ "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -490,21 +490,21 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -512,21 +512,21 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -534,123 +534,129 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, "space-around": { "content": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } } }, "dropdown": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } }, "divider": { "solid": { - "top-bottom": { - "value": "$core.spacing.1", + "block": { + "value": "{core.spacing.1}", + "type": "spacing" + } + }, + "transparent": { + "block": { + "value": "{core.spacing.1}", "type": "spacing" } } @@ -660,41 +666,41 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -702,41 +708,41 @@ "inverse": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.inverse.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "{semantic.ui.color.text.inverse.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "{semantic.ui.color.text.inverse.dark}", "type": "color" } } @@ -744,41 +750,41 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.inverse.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } } @@ -786,41 +792,41 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } } diff --git a/packages/calcite-design-tokens/src/component/stepper-item.json b/packages/calcite-design-tokens/src/component/stepper-item.json index 00c53b46670..49716aacb09 100644 --- a/packages/calcite-design-tokens/src/component/stepper-item.json +++ b/packages/calcite-design-tokens/src/component/stepper-item.json @@ -4,162 +4,162 @@ "heading": { "default": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "error": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "complete": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "sm": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.1h", + "value": "{semantic.font.default.medium.1h}", "type": "typography" } }, "description": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "error": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "complete": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "context": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "error": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } }, "complete": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } } @@ -167,31 +167,41 @@ "icon": { "default": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "error": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", + "type": "color" + } + }, + "complete": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -199,167 +209,155 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } }, "error": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "{semantic.ui.color.danger.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "{semantic.ui.color.danger.default.dark}", "type": "color" } - } - }, - "background": { - "default": { + }, + "complete": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "{core.border.radius.4}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "{core.border.radius.5}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "{core.border.radius.6}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "{core.spacing.14}", "type": "spacing" } }, "space-around": { "left": { "sm": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "{core.spacing.none}", "type": "spacing" } }, "right": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "lg": { - "value": "$core.spacing.8", + "value": "{core.spacing.8}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "md": { - "value": "$core.spacing.8", + "value": "{core.spacing.8}", "type": "spacing" }, "lg": { - "value": "$core.spacing.9", + "value": "{core.spacing.9}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/stepper.json b/packages/calcite-design-tokens/src/component/stepper.json index f1d30b3cc93..269b7341d7d 100644 --- a/packages/calcite-design-tokens/src/component/stepper.json +++ b/packages/calcite-design-tokens/src/component/stepper.json @@ -1,150 +1,16 @@ { "stepper": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, "space-between": { "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.9", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/switch.json b/packages/calcite-design-tokens/src/component/switch.json index b541b35275b..ce26a509547 100644 --- a/packages/calcite-design-tokens/src/component/switch.json +++ b/packages/calcite-design-tokens/src/component/switch.json @@ -3,85 +3,85 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.foreground.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.2.dark}", "type": "color" } }, "checked": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.full", + "value": "{core.border.radius.full}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.full", + "value": "{core.border.radius.full}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.full", + "value": "{core.border.radius.full}", "type": "borderRadius" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.15", + "value": "{core.sizing.15}", "type": "sizing" } }, "handle-size": { "sm": { - "value": "$core.sizing.5", + "value": "{core.sizing.5}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "border": { "default": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "checked": { "light": { - "value": "$semantic.ui.color.brand.hover.light", + "value": "{semantic.ui.color.brand.hover.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.hover.dark", + "value": "{semantic.ui.color.brand.hover.dark}", "type": "color" } } @@ -90,21 +90,21 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "checked": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } @@ -112,65 +112,65 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "checked": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.half", + "value": "{core.border.radius.half}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.half", + "value": "{core.border.radius.half}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.half", + "value": "{core.border.radius.half}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "{core.border.border-width.1}", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "{core.border.border-width.1}", + "value": "{core.border.width.1}", "type": "borderWidth" }, "lg": { - "value": "{core.border.border-width.1}", + "value": "{core.border.width.1}", "type": "borderWidth" } } }, "border-width": { "sm": { - "value": "{core.border.border-width.0}", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "{core.border.border-width.0}", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "{core.border.border-width.0}", + "value": "{core.border.width.0}", "type": "borderWidth" } } diff --git a/packages/calcite-design-tokens/src/component/tab-title.json b/packages/calcite-design-tokens/src/component/tab-title.json index 372276c6a2f..3bf31167225 100644 --- a/packages/calcite-design-tokens/src/component/tab-title.json +++ b/packages/calcite-design-tokens/src/component/tab-title.json @@ -3,33 +3,33 @@ "font": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "active": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -37,21 +37,21 @@ "icon": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" } } @@ -59,52 +59,52 @@ "bordered": { "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } } @@ -112,101 +112,101 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "active": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" } } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" } }, "default": { "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "{core.spacing.4}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/tabs.json b/packages/calcite-design-tokens/src/component/tabs.json index 3c97c1795b6..e57042910cf 100644 --- a/packages/calcite-design-tokens/src/component/tabs.json +++ b/packages/calcite-design-tokens/src/component/tabs.json @@ -1,241 +1,245 @@ { "tabs": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, "bordered": { "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" + }, + "radius": { + "sm": { + "value": "{core.border.radius.none}", + "type": "borderRadius" + }, + "md": { + "value": "{core.border.radius.none}", + "type": "borderRadius" + }, + "lg": { + "value": "{core.border.radius.none}", + "type": "borderRadius" + } } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, - "space-around": { - "left-right": { + "space": { + "around": { + "inline": { + "sm": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.7}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.10}", + "type": "spacing" + } + } + }, + "between": { "sm": { - "value": "$core.spacing.5", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.none}", "type": "spacing" } - }, - "top-bottom": { + } + } + }, + "default": { + "border": { + "width": { "sm": { - "value": "$core.spacing.7", - "type": "spacing" + "value": "{core.border.width.0}", + "type": "borderWidth" }, "md": { - "value": "$core.spacing.7", - "type": "spacing" + "value": "{core.border.width.0}", + "type": "borderWidth" }, "lg": { - "value": "$core.spacing.10", - "type": "spacing" + "value": "{core.border.width.0}", + "type": "borderWidth" + }, + "active": { + "sm": { + "value": "{core.border.width.1}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.width.1}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.width.1}", + "type": "borderWidth" + } } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } } }, - "space-between": { + "font": { + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + }, "sm": { - "value": "$core.spacing.none", - "type": "spacing" + "value": "{semantic.font.default.regular.-2h}", + "type": "typography" }, "md": { - "value": "$core.spacing.none", - "type": "spacing" + "value": "{semantic.font.default.regular.-1h}", + "type": "typography" }, "lg": { - "value": "$core.spacing.none", - "type": "spacing" + "value": "{semantic.font.default.regular.0h}", + "type": "typography" + }, + "active": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + } } - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "active": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" + "icon": { + "default": { + "light": { + "value": "{semantic.ui.color.text.3.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } }, - "md": { - "value": "$core.border.border-width.1", - "type": "borderWidth" + "active": { + "light": { + "value": "{semantic.ui.color.text.1.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.1.dark}", + "type": "color" + } }, - "lg": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - } - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "default": { - "space-around": { - "left-right": { + "size": { "sm": { - "value": "$core.spacing.none", - "type": "spacing" + "value": "{core.sizing.7}", + "type": "sizing" }, "md": { - "value": "$core.spacing.none", - "type": "spacing" + "value": "{core.sizing.7}", + "type": "sizing" }, "lg": { - "value": "$core.spacing.none", - "type": "spacing" + "value": "{core.sizing.9}", + "type": "sizing" + } + } + }, + "space": { + "around": { + "inline": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + }, + "block": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } } }, - "top-bottom": { + "between": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.7}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.8}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.9}", "type": "spacing" } } - }, - "space-between": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.8", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.9", - "type": "spacing" - } - } - }, - "border": { - "active": { - "light": { - "value": "{semantic.ui.color.brand.default.light}", - "type": "color" - }, - "dark": { - "value": "{semantic.ui.color.brand.default.dark}", - "type": "color" - } } } } diff --git a/packages/calcite-design-tokens/src/component/textarea.json b/packages/calcite-design-tokens/src/component/textarea.json index 720944bf5fd..e5b3de8b05b 100644 --- a/packages/calcite-design-tokens/src/component/textarea.json +++ b/packages/calcite-design-tokens/src/component/textarea.json @@ -3,195 +3,195 @@ "font": { "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "label": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "read-only": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } }, "chat-limit": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" }, "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "{semantic.ui.color.border.input.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "{semantic.ui.color.border.input.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "read-only": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "{core.border.width.0}", "type": "borderWidth" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" } }, "space-around": { - "left-right": { + "inline": { "sm": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" } }, - "top-bottom": { + "block": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/time-picker.json b/packages/calcite-design-tokens/src/component/time-picker.json index 1a3a20711ee..f0d6fe167a1 100644 --- a/packages/calcite-design-tokens/src/component/time-picker.json +++ b/packages/calcite-design-tokens/src/component/time-picker.json @@ -2,135 +2,135 @@ "time-picker": { "font": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "{semantic.font.default.bold.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "{semantic.font.default.bold.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "{semantic.font.default.bold.0h}", "type": "typography" } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" + }, + "radius": { + "sm": { + "value": "{core.border.radius.4}", + "type": "borderRadius" + }, + "md": { + "value": "{core.border.radius.5}", + "type": "borderRadius" + }, + "lg": { + "value": "{core.border.radius.6}", + "type": "borderRadius" + } + }, + "width": { + "sm": { + "value": "{core.border.width.1}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.width.2}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.width.4}", + "type": "borderWidth" + } } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "{semantic.ui.color.background.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "{semantic.ui.color.background.dark}", "type": "color" } } }, "foreground": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "{semantic.ui.color.foreground.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "{semantic.ui.color.foreground.2.dark}", "type": "color" } }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "{core.spacing.9}", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "{core.spacing.11}", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "{core.spacing.14}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "md": { - "value": "$core.spacing.9", + "value": "{core.spacing.9}", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "{core.spacing.11}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/component/tip-manager.json b/packages/calcite-design-tokens/src/component/tip-manager.json index b384e02b073..0324481d0f1 100644 --- a/packages/calcite-design-tokens/src/component/tip-manager.json +++ b/packages/calcite-design-tokens/src/component/tip-manager.json @@ -3,61 +3,61 @@ "font": { "heading": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "md": { - "value": "$semantic.font.default.bold.1h", + "value": "{semantic.font.default.bold.1h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, "border-radius": { "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "icon-size": { "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "border": { "default": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } } @@ -96,7 +96,7 @@ }, "border-width": { "md": { - "value": "{core.border.border-width.0}", + "value": "{core.border.width.0}", "type": "borderWidth" } }, @@ -107,7 +107,7 @@ } }, "space-around": { - "top-bottom": { + "block": { "md": { "value": "{core.spacing.5}", "type": "spacing" diff --git a/packages/calcite-design-tokens/src/component/tip.json b/packages/calcite-design-tokens/src/component/tip.json index fd3f1dd8476..bfb733bba8a 100644 --- a/packages/calcite-design-tokens/src/component/tip.json +++ b/packages/calcite-design-tokens/src/component/tip.json @@ -3,75 +3,75 @@ "font": { "heading": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "md": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } }, "description": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "{semantic.ui.color.text.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "{semantic.ui.color.text.2.dark}", "type": "color" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } } }, "border-radius": { "md": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" } }, "icon-size": { "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" } }, "border": { "default": { "light": { - "value": "$semantic.ui.color.border.2.light", + "value": "{semantic.ui.color.border.2.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.2.dark", + "value": "{semantic.ui.color.border.2.dark}", "type": "color" } } @@ -106,7 +106,7 @@ }, "border-width": { "md": { - "value": "{core.border.border-width.0}", + "value": "{core.border.width.0}", "type": "borderWidth" } } diff --git a/packages/calcite-design-tokens/src/component/tooltip.json b/packages/calcite-design-tokens/src/component/tooltip.json index e35d8e63159..02bb9ce75af 100644 --- a/packages/calcite-design-tokens/src/component/tooltip.json +++ b/packages/calcite-design-tokens/src/component/tooltip.json @@ -1,64 +1,94 @@ { "tooltip": { - "space-arround": { - "top-bottom": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "left-right": { - "value": "$core.spacing.7", - "type": "spacing" + "space": { + "around": { + "block": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "inline": { + "value": "{core.spacing.7}", + "type": "spacing" + } } }, "foreground": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "{semantic.ui.color.foreground.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "{semantic.ui.color.foreground.1.dark}", "type": "color" } }, "font": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, - "standard": { - "value": "$semantic.font.wrap.medium.-2", - "type": "typography" + "font-family": { + "type": "", + "value": "{core.font.font-family.primary}" + }, + "font-weight": { + "type": "fontWeight", + "value": "{core.font.font-weight.medium}" + }, + "line-hight": { + "type": "lineHeight", + "value": "{core.font.line-height.relative.snug}" + }, + "font-size": { + "type": "fontSize", + "value": "{core.font.font-size.3}" + }, + "letter-spacing": { + "type": "letterSpacing", + "value": "{core.font.letter-spacing.normal}" + }, + "paragraph-spacing": { + "type": "paragraphSpacing", + "value": "{core.font.paragraph-spacing.normal}" + }, + "text-decoration": { + "type": "textDecoration", + "value": "{core.font.text-decoration.none}" + }, + "text-case": { + "type": "textCase", + "value": "{core.font.text-case.none}" } }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "{semantic.ui.color.border.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "{semantic.ui.color.border.3.dark}", "type": "color" + }, + "radius": { + "value": "{core.border.radius.1}", + "type": "borderRadius" + }, + "width": { + "value": "{core.border.width.0}", + "type": "borderWidth" } }, - "border-radius": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, "arrow": { "width": { - "value": "$core.sizing.6", + "value": "{core.sizing.6}", "type": "sizing" }, "height": { - "value": "$core.sizing.2", + "value": "{core.sizing.2}", "type": "sizing" } } diff --git a/packages/calcite-design-tokens/src/component/tree-item.json b/packages/calcite-design-tokens/src/component/tree-item.json index 45708302807..3e53c38c8a5 100644 --- a/packages/calcite-design-tokens/src/component/tree-item.json +++ b/packages/calcite-design-tokens/src/component/tree-item.json @@ -3,55 +3,55 @@ "font": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "{semantic.font.default.regular.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "{semantic.font.default.regular.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "{semantic.font.default.regular.0h}", "type": "typography" } }, "selected": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "{semantic.ui.color.text.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "{semantic.ui.color.text.1.dark}", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "{semantic.font.default.medium.-2h}", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "{semantic.font.default.medium.-1h}", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "{semantic.font.default.medium.0h}", "type": "typography" } }, "children-selected": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } @@ -59,116 +59,116 @@ "icon": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "{semantic.ui.color.text.3.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "{semantic.ui.color.text.3.dark}", "type": "color" } }, "selected": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "{semantic.ui.color.brand.default.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "{semantic.ui.color.brand.default.dark}", "type": "color" } } }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "{semantic.ui.color.border.1.light}", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "{semantic.ui.color.border.1.dark}", "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "{core.border.radius.4}", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "{core.border.radius.5}", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "{core.border.radius.6}", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "{core.border.width.1}", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "{core.border.width.2}", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "{core.border.width.4}", "type": "borderWidth" } }, "comp-size": { "sm": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "md": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" }, "lg": { - "value": "$core.sizing.14", + "value": "{core.sizing.14}", "type": "sizing" } }, "icon-size": { "sm": { - "value": "$core.sizing.7", + "value": "{core.sizing.7}", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "{core.sizing.9}", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "{core.sizing.11}", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "{core.spacing.9}", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "{core.spacing.11}", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "{core.spacing.14}", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.1", + "value": "{core.spacing.1}", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "{core.spacing.3}", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "{core.spacing.5}", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/src/core.json b/packages/calcite-design-tokens/src/core.json index 256203018a8..756b043d812 100644 --- a/packages/calcite-design-tokens/src/core.json +++ b/packages/calcite-design-tokens/src/core.json @@ -15,6 +15,13 @@ "type": "fontFamilies" } }, + "font-style": { + "emphasis": { + "value": "italic", + "type": "fontStyle", + "description": "used in ratings" + } + }, "font-weight": { "ultralight": { "value": "UltraLight", @@ -38,12 +45,8 @@ "value": "Medium", "type": "fontWeights" }, - "medium-italic": { - "value": "Medium Italic", - "type": "fontWeights" - }, "demi": { - "value": "Demi", + "value": 600, "type": "fontWeights" }, "bold": { @@ -269,7 +272,7 @@ } }, "border": { - "border-radius": { + "radius": { "0": { "value": "2px", "type": "borderRadius" @@ -311,7 +314,7 @@ "type": "borderRadius" } }, - "border-width": { + "width": { "0": { "value": "1px", "type": "borderWidth" @@ -1550,11 +1553,11 @@ } }, "margin": { - "value": "$core.spacing.9", + "value": "{core.spacing.9}", "type": "spacing" }, "gutter": { - "value": "$core.spacing.7", + "value": "{core.spacing.7}", "type": "spacing" }, "content": { @@ -1641,7 +1644,7 @@ "y": "0", "blur": "0", "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "color": "rgba({core.color.neutral.blk-240}, {core.opacity.0})", "type": "dropShadow" }, "type": "boxShadow" @@ -1653,7 +1656,7 @@ "y": "2", "blur": "8", "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + "color": "rgba({core.color.neutral.blk-240}, {core.opacity.4})", "type": "dropShadow" }, { @@ -1661,7 +1664,7 @@ "y": "4", "blur": "16", "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "color": "rgba({core.color.neutral.blk-240}, {core.opacity.8})", "type": "dropShadow" } ], @@ -1674,7 +1677,7 @@ "y": "4", "blur": "20", "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "color": "rgba({core.color.neutral.blk-240}, {core.opacity.8})", "type": "dropShadow" }, { @@ -1682,7 +1685,7 @@ "y": "12", "blur": "32", "spread": "-2", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", + "color": "rgba({core.color.neutral.blk-240}, {core.opacity.10})", "type": "dropShadow" } ], @@ -1694,7 +1697,7 @@ "y": "0", "blur": "0", "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "color": "rgba({core.color.neutral.blk-240}, {core.opacity.0})", "type": "dropShadow" }, "type": "boxShadow" diff --git a/packages/calcite-design-tokens/src/semantic.json b/packages/calcite-design-tokens/src/semantic.json index 374ec1f9f50..a66e9ff07f3 100644 --- a/packages/calcite-design-tokens/src/semantic.json +++ b/packages/calcite-design-tokens/src/semantic.json @@ -5,157 +5,157 @@ "light": { "-3h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.0}", + "fontSize": "{core.font.font-size.0}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-2h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-1h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.2}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "0h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.2}", + "fontSize": "{core.font.font-size.3}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "1h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.3}", + "fontSize": "{core.font.font-size.4}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "2h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.3}", + "fontSize": "{core.font.font-size.5}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "3h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.5}", + "fontSize": "{core.font.font-size.6}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "4h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.7}", + "fontSize": "{core.font.font-size.7}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "5h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.8}", + "fontSize": "{core.font.font-size.8}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "6h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.10}", + "fontSize": "{core.font.font-size.9}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "7h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.10}", + "fontSize": "{core.font.font-size.10}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "8h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.fixed.12}", + "fontSize": "{core.font.font-size.11}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" } @@ -163,157 +163,157 @@ "regular": { "-3h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.0}", + "fontSize": "{core.font.font-size.0}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-2h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-1h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.2}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "0h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.2}", + "fontSize": "{core.font.font-size.3}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "1h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.3}", + "fontSize": "{core.font.font-size.4}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "2h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.3}", + "fontSize": "{core.font.font-size.5}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "3h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.5}", + "fontSize": "{core.font.font-size.6}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "4h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.7}", + "fontSize": "{core.font.font-size.7}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "5h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.8}", + "fontSize": "{core.font.font-size.8}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "6h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.10}", + "fontSize": "{core.font.font-size.9}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "7h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.10}", + "fontSize": "{core.font.font-size.10}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "8h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.fixed.12}", + "fontSize": "{core.font.font-size.11}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" } @@ -321,157 +321,157 @@ "medium": { "-3h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.0}", + "fontSize": "{core.font.font-size.0}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-2h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-1h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.2}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "0h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.2}", + "fontSize": "{core.font.font-size.3}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "1h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.3}", + "fontSize": "{core.font.font-size.4}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "2h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.3}", + "fontSize": "{core.font.font-size.5}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "3h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.5}", + "fontSize": "{core.font.font-size.6}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "4h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.7}", + "fontSize": "{core.font.font-size.7}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "5h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.8}", + "fontSize": "{core.font.font-size.8}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "6h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.10}", + "fontSize": "{core.font.font-size.9}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "7h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.10}", + "fontSize": "{core.font.font-size.10}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "8h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.fixed.12}", + "fontSize": "{core.font.font-size.11}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" } @@ -479,157 +479,157 @@ "bold": { "-3h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.0}", + "fontSize": "{core.font.font-size.0}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-2h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-1h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.2}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "0h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.2}", + "fontSize": "{core.font.font-size.3}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "1h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.3}", + "fontSize": "{core.font.font-size.4}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "2h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.3}", + "fontSize": "{core.font.font-size.5}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "3h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.5}", + "fontSize": "{core.font.font-size.6}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "4h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.7}", + "fontSize": "{core.font.font-size.7}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "5h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.8}", + "fontSize": "{core.font.font-size.8}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "6h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.10}", + "fontSize": "{core.font.font-size.9}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "7h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.10}", + "fontSize": "{core.font.font-size.10}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "8h": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.fixed.12}", + "fontSize": "{core.font.font-size.11}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" } @@ -639,157 +639,157 @@ "light": { "0": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.3}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "1": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.4}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "2": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.5}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "3": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.6}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "4": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.7}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "5": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.8}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "6": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.9}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "7": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.10}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "8": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.11}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-3": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.0}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-2": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-1": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.light}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.2}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" } @@ -797,157 +797,157 @@ "regular": { "0": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.3}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "1": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.4}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "2": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.5}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "3": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.6}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "4": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.7}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "5": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.8}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "6": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.9}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "7": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.10}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "8": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.11}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-3": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.0}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-2": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-1": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.regular}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.2}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" } @@ -955,157 +955,157 @@ "medium": { "0": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.3}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "1": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.4}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "2": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.5}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "3": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.6}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "4": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.7}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "5": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.8}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "6": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.9}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "7": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.10}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "8": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.11}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-3": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.0}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-2": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-1": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.medium}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.2}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" } @@ -1113,157 +1113,157 @@ "bold": { "0": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.3}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "1": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.4}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "2": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.5}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "3": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.6}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "4": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.7}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "5": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.8}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "6": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.9}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "7": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.10}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "8": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.tight}", + "fontSize": "{core.font.font-size.11}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-3": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.0}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-2": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" }, "-1": { "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.demi}", + "lineHeight": "{core.font.line-height.relative.snug}", + "fontSize": "{core.font.font-size.2}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textDecoration": "{core.font.text-decoration.none}", + "textCase": "{core.font.text-case.none}" }, "type": "typography" } @@ -1271,172 +1271,166 @@ }, "hierarchy": { "display-1": { - "value": "$semantic.font.wrap.regular.8", + "value": "{semantic.font.wrap.regular.8}", "type": "typography" }, "display-2": { - "value": "$semantic.font.wrap.regular.7", + "value": "{semantic.font.wrap.regular.7}", "type": "typography" }, "heading-1": { - "value": "$semantic.font.wrap.regular.6", + "value": "{semantic.font.wrap.regular.6}", "type": "typography" }, "heading-2": { - "value": "$semantic.font.wrap.regular.5", + "value": "{semantic.font.wrap.regular.5}", "type": "typography" }, "heading-3": { - "value": "$semantic.font.wrap.regular.4", + "value": "{semantic.font.wrap.regular.4}", "type": "typography" }, "heading-4": { - "value": "$semantic.font.wrap.regular.3", + "value": "{semantic.font.wrap.regular.3}", "type": "typography" }, "heading-5": { - "value": "$semantic.font.wrap.regular.2", + "value": "{semantic.font.wrap.regular.2}", "type": "typography" }, "heading-6": { - "value": "$semantic.font.wrap.regular.1", + "value": "{semantic.font.wrap.regular.1}", "type": "typography" }, "body-1": { - "value": "$semantic.font.wrap.regular.0", + "value": "{semantic.font.wrap.regular.0}", "type": "typography" }, "body-2": { - "value": "$semantic.font.wrap.regular.-1", + "value": "{semantic.font.wrap.regular.-1}", "type": "typography" }, "overline": { "value": { - "fontFamilies": "$core.font.font-family.primary", - "fontWeights": "$core.font.font-weight.bold", - "fontSizes": "$core.font.font-size.2", - "lineHeights": "$core.font.line-height.fixed.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textCase": "$core.font.text-case.uppercase", - "textDecoration": "$core.font.text-decoration.none", - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.bold", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2" + "fontFamilies": "{core.font.font-family.primary}", + "fontWeights": "{core.font.font-weight.bold}", + "fontSizes": "{core.font.font-size.2}", + "lineHeights": "{core.font.line-height.fixed.1}", + "letterSpacing": "{core.font.letter-spacing.normal}", + "paragraphSpacing": "{core.font.paragraph-spacing.normal}", + "textCase": "{core.font.text-case.uppercase}", + "textDecoration": "{core.font.text-decoration.none}", + "fontFamily": "{core.font.font-family.primary}", + "fontWeight": "{core.font.font-weight.bold}", + "lineHeight": "{core.font.line-height.fixed.1}", + "fontSize": "{core.font.font-size.2}" }, "type": "typography" }, "caption": { - "value": "$semantic.font.wrap.regular.-2", + "value": "{semantic.font.wrap.regular.-2}", "type": "typography" } } }, "border": { - "border-radius": { + "radius": { "sharp": { - "value": "$core.border.border-radius.none", + "value": "{core.border.radius.none}", "type": "borderRadius" }, "round": { - "value": "$core.border.border-radius.1", + "value": "{core.border.radius.1}", "type": "borderRadius" }, "circular": { - "value": "$core.border.border-radius.half", + "value": "{core.border.radius.half}", "type": "borderRadius" }, "pill": { - "value": "$core.border.border-radius.full", + "value": "{core.border.radius.full}", "type": "borderRadius" } } }, "ui": { - "border": { - "border-radius": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - } - }, "color": { "brand": { "default": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "value": "{core.color.palette.high-saturation.blue.h-bb-060}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-160", + "value": "{core.color.palette.vibrant.blue.v-bb-160}", "type": "color" } }, "hover": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "value": "{core.color.palette.high-saturation.blue.h-bb-070}", "type": "color" }, "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "value": "{core.color.palette.high-saturation.blue.h-bb-060}", "type": "color" } }, "press": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "value": "{core.color.palette.high-saturation.blue.h-bb-080}", "type": "color" }, "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "value": "{core.color.palette.high-saturation.blue.h-bb-070}", "type": "color" } } }, "background": { "light": { - "value": "$core.color.neutral.blk-005", + "value": "{core.color.neutral.blk-005}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-190", + "value": "{core.color.neutral.blk-190}", "type": "color" } }, "foreground": { "1": { "light": { - "value": "$core.color.neutral.blk-000", + "value": "{core.color.neutral.blk-000}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-200", + "value": "{core.color.neutral.blk-200}", "type": "color" } }, "2": { "light": { - "value": "$core.color.neutral.blk-010", + "value": "{core.color.neutral.blk-010}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-210", + "value": "{core.color.neutral.blk-210}", "type": "color" } }, "3": { "light": { - "value": "$core.color.neutral.blk-020", + "value": "{core.color.neutral.blk-020}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-220", + "value": "{core.color.neutral.blk-220}", "type": "color" } }, "current": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "value": "{core.color.palette.high-saturation.blue.h-bb-010}", "type": "color" }, "dark": { @@ -1448,51 +1442,61 @@ "text": { "1": { "light": { - "value": "$core.color.neutral.blk-220", + "value": "{core.color.neutral.blk-220}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-000", + "value": "{core.color.neutral.blk-000}", "type": "color" } }, "2": { "light": { - "value": "$core.color.neutral.blk-170", + "value": "{core.color.neutral.blk-170}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-060", + "value": "{core.color.neutral.blk-060}", "type": "color" } }, "3": { "light": { - "value": "$core.color.neutral.blk-140", + "value": "{core.color.neutral.blk-140}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-090", + "value": "{core.color.neutral.blk-090}", "type": "color" } }, "inverse": { "light": { - "value": "$core.color.neutral.blk-000", + "value": "{core.color.neutral.blk-000}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-220", + "value": "{core.color.neutral.blk-220}", "type": "color" } }, "link": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "value": "{core.color.palette.high-saturation.blue.h-bb-070}", + "type": "color" + }, + "dark": { + "value": "{core.color.palette.dark.blue.d-bb-420}", + "type": "color" + } + }, + "highlight": { + "light": { + "value": "#BBD5FA", "type": "color" }, "dark": { - "value": "$core.color.palette.dark.blue.d-bb-420", + "value": "#375F95", "type": "color" } } @@ -1500,41 +1504,41 @@ "border": { "1": { "light": { - "value": "$core.color.neutral.blk-050", + "value": "{core.color.neutral.blk-050}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-160", + "value": "{core.color.neutral.blk-160}", "type": "color" } }, "2": { "light": { - "value": "$core.color.neutral.blk-040", + "value": "{core.color.neutral.blk-040}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-170", + "value": "{core.color.neutral.blk-170}", "type": "color" } }, "3": { "light": { - "value": "$core.color.neutral.blk-030", + "value": "{core.color.neutral.blk-030}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-180", + "value": "{core.color.neutral.blk-180}", "type": "color" } }, "input": { "light": { - "value": "$core.color.neutral.blk-100", + "value": "{core.color.neutral.blk-100}", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-130", + "value": "{core.color.neutral.blk-130}", "type": "color" } } @@ -1542,31 +1546,31 @@ "info": { "default": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "value": "{core.color.palette.high-saturation.blue.h-bb-070}", "type": "color" }, "dark": { - "value": "$core.color.palette.dark.blue.d-bb-420", + "value": "{core.color.palette.dark.blue.d-bb-420}", "type": "color" } }, "hover": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "value": "{core.color.palette.high-saturation.blue.h-bb-080}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-140", + "value": "{core.color.palette.vibrant.blue.v-bb-140}", "type": "color" } }, "press": { "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "value": "{core.color.palette.high-saturation.blue.h-bb-090}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-160", + "value": "{core.color.palette.vibrant.blue.v-bb-160}", "type": "color" } } @@ -1574,31 +1578,31 @@ "success": { "default": { "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-060", + "value": "{core.color.palette.high-saturation.green.h-gg-060}", "type": "color" }, "dark": { - "value": "$core.color.palette.dark.green.d-gg-420", + "value": "{core.color.palette.dark.green.d-gg-420}", "type": "color" } }, "hover": { "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-070", + "value": "{core.color.palette.high-saturation.green.h-gg-070}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.green.v-gg-140", + "value": "{core.color.palette.vibrant.green.v-gg-140}", "type": "color" } }, "press": { "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-080", + "value": "{core.color.palette.high-saturation.green.h-gg-080}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.green.v-gg-160", + "value": "{core.color.palette.vibrant.green.v-gg-160}", "type": "color" } } @@ -1606,31 +1610,31 @@ "warning": { "default": { "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-060", + "value": "{core.color.palette.high-saturation.yellow.h-yy-060}", "type": "color" }, "dark": { - "value": "$core.color.palette.dark.yellow.d-yy-420", + "value": "{core.color.palette.dark.yellow.d-yy-420}", "type": "color" } }, "hover": { "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-070", + "value": "{core.color.palette.high-saturation.yellow.h-yy-070}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.yellow.v-yy-140", + "value": "{core.color.palette.vibrant.yellow.v-yy-140}", "type": "color" } }, "press": { "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-080", + "value": "{core.color.palette.high-saturation.yellow.h-yy-080}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.yellow.v-yy-160", + "value": "{core.color.palette.vibrant.yellow.v-yy-160}", "type": "color" } } @@ -1638,70 +1642,114 @@ "danger": { "default": { "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-060", + "value": "{core.color.palette.high-saturation.red.h-rr-060}", "type": "color" }, "dark": { - "value": "$core.color.palette.dark.red.d-rr-420", + "value": "{core.color.palette.dark.red.d-rr-420}", "type": "color" } }, "hover": { "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-070", + "value": "{core.color.palette.high-saturation.red.h-rr-070}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.red.v-rr-140", + "value": "{core.color.palette.vibrant.red.v-rr-140}", "type": "color" } }, "press": { "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-080", + "value": "{core.color.palette.high-saturation.red.h-rr-080}", "type": "color" }, "dark": { - "value": "$core.color.palette.vibrant.red.v-rr-160", + "value": "{core.color.palette.vibrant.red.v-rr-160}", "type": "color" } } }, "inverse": { - "light": { - "value": "$core.color.neutral.blk-190", - "type": "color" + "default": { + "light": { + "value": "{core.color.neutral.blk-190}", + "type": "color" + }, + "dark": { + "value": "{core.color.neutral.blk-005}", + "type": "color" + } }, - "dark": { - "value": "$core.color.neutral.blk-005", - "type": "color" + "hover": { + "light": { + "value": "{core.color.neutral.blk-200}", + "type": "color" + }, + "dark": { + "value": "{core.color.neutral.blk-000}", + "type": "color" + } + }, + "press": { + "light": { + "value": "{core.color.neutral.blk-210}", + "type": "color" + }, + "dark": { + "value": "{core.color.neutral.blk-010}", + "type": "color" + } + } + }, + "transparent": { + "hover": { + "light": { + "value": "rgba(0, 0, 0, 0.4)", + "type": "color" + }, + "dark": { + "value": "rgba(255, 255, 255, 0.4)", + "type": "color" + } + }, + "press": { + "light": { + "value": "rgba(0, 0, 0, 0.8)", + "type": "color" + }, + "dark": { + "value": "rgba(255, 255, 255, 0.8)", + "type": "color" + } } } } }, "spacing": { "base": { - "value": "$core.spacing.0", + "value": "{core.spacing.0}", "type": "spacing" }, "xs": { - "value": "$semantic.spacing.base * 2", + "value": "{semantic.spacing.base} * 2", "type": "spacing" }, "sm": { - "value": "$semantic.spacing.base * 4", + "value": "{semantic.spacing.base} * 4", "type": "spacing" }, "md": { - "value": "$semantic.spacing.base *6", + "value": "{semantic.spacing.base} *6", "type": "spacing" }, "lg": { - "value": "$semantic.spacing.base * 8", + "value": "{semantic.spacing.base} * 8", "type": "spacing" }, "xl": { - "value": "$semantic.spacing.base *10", + "value": "{semantic.spacing.base} *10", "type": "spacing" } } diff --git a/packages/calcite-design-tokens/support/run.ts b/packages/calcite-design-tokens/support/run.ts index 1854a79f78e..acbb9bc5e7d 100644 --- a/packages/calcite-design-tokens/support/run.ts +++ b/packages/calcite-design-tokens/support/run.ts @@ -1,16 +1,36 @@ -import { readFileSync } from "fs"; -import { resolve, dirname } from "path"; -import { fileURLToPath } from "url"; -import { getThemes } from "./token-transformer/getThemes.js"; -import { run } from "./token-transformer/sd-run.js"; +import { styleDictionaryRunner } from "./token-transformer/styleDictionaryRunner.js"; +// TODO; make CLI to load config +import { config } from "../src/$config.js"; -const __filename = fileURLToPath(import.meta.url); -const __dirname = dirname(__filename); +export type File = { + name: string; + source: string[]; + references: string[]; +}; +export type Config = { + files: File[]; + options: Record; + output: { + dir: string; + platforms: string[]; + }; +}; +const runConfig: Config = config; /** - * Get all themes defined int the tokens/$themes.json and generate a Style Dictionary output for each theme + * Get all themes defined int the src/$themes.json and generate a Style Dictionary output for each theme */ -const rawData = readFileSync(resolve(__dirname, "../src/$themes.json"), { encoding: "utf-8" }); -const data = JSON.parse(rawData); - -getThemes(data).then((themes) => Promise.all(themes.map((theme) => run("src", "dist", theme)))); +// const rawData = readFileSync(join(tokensDir, "$themes.json"), { encoding: "utf-8" }); +// const data = JSON.parse(rawData); +// const files = await getThemes(data); +Promise.all( + runConfig.files.map((fileConfig) => + styleDictionaryRunner({ + name: fileConfig.name, + source: fileConfig.source, + include: fileConfig.references, + options: config.options, + output: config.output, + }) + ) +); diff --git a/packages/calcite-design-tokens/support/token-transformer/filter/filterSource.ts b/packages/calcite-design-tokens/support/token-transformer/filter/filterSource.ts new file mode 100644 index 00000000000..8b8ec5e32b6 --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/filter/filterSource.ts @@ -0,0 +1,14 @@ +import { TransformedToken, Core as StyleDictionary } from "style-dictionary"; + +export function filterSourceMatcher(token: TransformedToken): boolean { + return token.isSource; +} + +export function registerFilterSource(sd: StyleDictionary): void { + sd.registerFilter({ + name: filterSource, + matcher: filterSourceMatcher, + }); +} + +export const filterSource = "filter/source"; diff --git a/packages/calcite-design-tokens/support/token-transformer/format/css.ts b/packages/calcite-design-tokens/support/token-transformer/format/css.ts new file mode 100644 index 00000000000..090e830a924 --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/format/css.ts @@ -0,0 +1,42 @@ +import sd, { Core as StyleDictionary, Dictionary, File, Platform, Options } from "style-dictionary"; + +const { formatHelpers } = sd; + +/** + * Exports CSS style formats + * + * @param {object} fileInfo the file object + * @param {Dictionary} fileInfo.dictionary the Style Dictionary object + * @param {File} fileInfo.file information about the file to be generated + * @param {Platform} [fileInfo.platform] the platform to generate the asset for + * @param {Options} fileInfo.options the Style Dictionary format options passed from the config + * @returns {string} a string that is passed to fs.writeFileSync + */ +export function formatCSSFunction(fileInfo: { + dictionary: Dictionary; + file: File; + platform?: Platform; + options: Options & { themeable?: boolean }; +}): string { + const { dictionary, file, options } = fileInfo; + const { outputReferences } = options; + return ( + formatHelpers.fileHeader({ file }) + + `:root {\n` + + formatHelpers + .formattedVariables({ format: "css", dictionary, outputReferences }) + .split("\n") + .filter((variable) => !variable.includes("[object Object]")) + .join("\n") + + `\n}\n` + ); +} + +export function registerCSSFormat(sd: StyleDictionary): void { + sd.registerFormat({ + name: formatCSS, + formatter: formatCSSFunction, + }); +} + +export const formatCSS = "calcite/css"; diff --git a/packages/calcite-design-tokens/support/token-transformer/format/scss.ts b/packages/calcite-design-tokens/support/token-transformer/format/scss.ts index 279a35a81b0..50c4fa7040e 100644 --- a/packages/calcite-design-tokens/support/token-transformer/format/scss.ts +++ b/packages/calcite-design-tokens/support/token-transformer/format/scss.ts @@ -1,9 +1,9 @@ -import { pascalCase, sentenceCase } from "change-case"; -import StyleDictionary, { Dictionary, File, Platform, Options } from "style-dictionary"; -import { sortAllTokens } from "../utils/sortAllTokens.js"; - -const regexThemeGroup = /calcite|brand/gi; -const regexFileNameWithoutExtension = /\w+(?=\.\w+$)/gi; +import { paramCase } from "change-case"; +import styleDictionary, { Dictionary, File, Platform, Options, Core as SD } from "style-dictionary"; +import { importedReferenceList } from "./utils/importedReferenceList.js"; +import { addToIndex } from "./update/indexFile.js"; +import { addToMixins } from "./update/mixinsFile.js"; +import { relative, resolve } from "path"; /** * Exports SCSS style formats @@ -15,67 +15,53 @@ const regexFileNameWithoutExtension = /\w+(?=\.\w+$)/gi; * @param {Options} fileInfo.options the Style Dictionary format options passed from the config * @returns {string} a string that is passed to fs.writeFileSync */ -export function formatSCSS(fileInfo: { +export function formatSCSSFunction(fileInfo: { dictionary: Dictionary; file: File; platform?: Platform; - options: Options & { themeable?: boolean }; + options: Options & { themeable?: boolean; reference?: string[] }; }): string { const { dictionary, file, options } = fileInfo; const { outputReferences } = options; - const themeName = pascalCase( - sentenceCase(file.destination.match(regexFileNameWithoutExtension)[0]) - .split(" ") - .filter((n) => !regexThemeGroup.test(n)) - .join(" ") - ).toLowerCase(); - const sassProps = StyleDictionary.formatHelpers.createPropertyFormatter({ - outputReferences, - dictionary, - format: "sass", - }); - const cssProps = StyleDictionary.formatHelpers.createPropertyFormatter({ - outputReferences, - dictionary, - format: "css", - }); - const sortedTokens = sortAllTokens(dictionary, outputReferences); - const coreTokens = [...sortedTokens].reduce( - (acc, token) => { - token.value = token.value.includes(" ") ? `"${token.value}"` : token.value === "Demi" ? 600 : token.value; - acc[1].push(cssProps(token)); + const fileHeader = styleDictionary.formatHelpers.fileHeader({ file }); + const outputFileDir = options.output.filePath.slice(0, options.output.filePath.lastIndexOf("/")); + const regexNamePartial = new RegExp(`(${fileInfo.platform.prefix}|semantic|app)-`, "g"); + const mode = options.output.filePath.slice( + options.output.filePath.lastIndexOf("/") + 1, + options.output.filePath.lastIndexOf(".") + ); + const name = `calcite-${paramCase( + relative(resolve(options.output.dir, options.output.platform), options.output.filePath).replaceAll( + /(.scss)|(base)/g, + "" + ) + )}`; + const referenceList = importedReferenceList(options.reference, outputFileDir); - if (token.filePath.includes("core")) { - const sassToken = { ...token }; - const path = sassToken.path.filter((p) => !/(core|default|font$)/.test(p)); - sassToken.name = sassToken.type === "color" ? path.slice(-1).join("-") : path.join("-"); - sassToken.original.value = sassToken.original.value[0] === "{" ? sassToken.value : sassToken.original.value; - acc[0].push(sassProps(sassToken)); - } + // Index File Updates + addToIndex(name, file.options.prefix, mode, outputFileDir, options.output.filePath, fileHeader); - if (/dark|light/.test(token.filePath) && !token.path.includes("component")) { - const sassToken = { ...token }; - const path = sassToken.path.reduce((acc, p) => { - if (p === "default") { - return acc; - } - acc.push(p === "color" ? "ui" : p); - return acc; - }, []); - path.push(token.filePath.includes("dark") ? "dark" : "light"); - sassToken.name = path.join("-"); - acc[0].push(sassProps(sassToken)); - } + // Mixin File Updates + addToMixins(name, outputFileDir, dictionary, outputReferences, fileHeader); - return acc; - }, - [[], []] + return ( + fileHeader + + (referenceList.length > 0 ? referenceList.join("\n") + "\n\n" : "") + + styleDictionary.formatHelpers + .formattedVariables({ format: "sass", dictionary, outputReferences }) + .replaceAll(regexNamePartial, "") + .split("\n") + .filter((variable) => !variable.includes("[object Object]")) + .join("\n") + + "\n" ); +} - return `${StyleDictionary.formatHelpers.fileHeader({ file })} -${coreTokens[0].join("\n")} - -@mixin calcite-theme-${themeName}() { -${coreTokens[1].join("\n")} -}`; +export function registerSCSSFormat(sd: SD): void { + sd.registerFormat({ + name: formatSCSS, + formatter: formatSCSSFunction, + }); } + +export const formatSCSS = "calcite/scss"; diff --git a/packages/calcite-design-tokens/support/token-transformer/format/update/indexFile.ts b/packages/calcite-design-tokens/support/token-transformer/format/update/indexFile.ts new file mode 100644 index 00000000000..1790de7ff55 --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/format/update/indexFile.ts @@ -0,0 +1,86 @@ +import { readFileSync, writeFileSync } from "fs"; +import { resolve } from "path"; + +const regex = { + references: /(@\w+ "[\w\d.\/]+";)/g, + media: /(@media\s\([\w-]+:\s\w+\)\s*\{(\s*@include [\w.-]+\(\);)+\s*})/g, + root: /(:\w+(\(\[[\w-]+="\w+"\]\)){0,1} *\{ *@include [\w.-]+\(\); *\})/g, + classes: /(\.[\w\d-]+ \{(\s*@include [\w.-]+\(\); *)+\n*\})/g, +}; + +export function addToIndex( + name: string, + prefix: string, + mode: string, + outputFileDir: string, + outputFilePath: string, + fileHeader: string +): void { + const indexFilePath = resolve(outputFileDir, "index.scss"); + const indexFileRaw = readFileSync(indexFilePath, { encoding: "utf-8", flag: "a+" }); + const matchExistingReferences = Array.from(indexFileRaw.match(regex.references) || []); + const matchExistingAtMediaColorSchemes = Array.from(indexFileRaw.match(regex.media) || []); + const matchExistingClassAndHostRules = Array.from( + indexFileRaw.match(outputFileDir.includes("mode") ? regex.classes : regex.root) || [] + ); + const includeReferences = [] + .concat(["mixins"], outputFilePath.includes("mode") ? [] : [name.includes("global") ? "global" : "base"]) + .reduce((acc, relFile) => { + const reference = `@forward "${relFile}";`; + if (!acc.includes(reference)) { + acc.push(reference); + } + return acc; + }, matchExistingReferences) + .sort(); + const includeMedia = [ + ["global", "base"].includes(mode) + ? undefined + : `@media (prefers-color-scheme: ${mode}) { @include mixins.${name}(); }`, + ].reduce((acc, prefersColorScheme) => { + if (prefersColorScheme) { + const mediaSelectorToUpdate = acc.findIndex((colorScheme) => + colorScheme.includes(`prefers-color-scheme: ${mode}`) + ); + + if (mediaSelectorToUpdate === -1) { + acc.push(prefersColorScheme); + } else { + acc[mediaSelectorToUpdate] = prefersColorScheme; + } + } + + return acc; + }, matchExistingAtMediaColorSchemes); + const includeClassAndHostRules = ( + name.includes("global") + ? [`:root { @include mixins.${name}(); }`] + : outputFileDir.includes("mode") + ? [`.${prefix}-theme-${mode} { @include mixins.${name}(); }`] + : mode === "base" + ? [`:host { @include mixins.${name}(); }`] + : [`:host([${prefix}-theme="${mode}"]) { @include mixins.${name}(); }`] + ).reduce((acc, rule) => { + const ruleToUpdate = acc.findIndex((s) => s.includes(rule)); + + if (ruleToUpdate === -1) { + acc.push(rule); + } else { + acc[ruleToUpdate] = rule; + } + + return acc; + }, matchExistingClassAndHostRules); + + writeFileSync( + indexFilePath, + fileHeader + + [ + includeReferences.filter((r) => r).join("\n"), + includeMedia.length > 0 ? includeMedia.join("\n") : undefined, + includeClassAndHostRules.join("\n"), + ] + .filter((i) => i) + .join("\n\n") + ); +} diff --git a/packages/calcite-design-tokens/support/token-transformer/format/update/mixinsFile.ts b/packages/calcite-design-tokens/support/token-transformer/format/update/mixinsFile.ts new file mode 100644 index 00000000000..126dcc9f348 --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/format/update/mixinsFile.ts @@ -0,0 +1,45 @@ +import { readFileSync, writeFileSync } from "fs"; +import { resolve } from "path"; +import { default as StyleDictionary } from "style-dictionary"; +import { Dictionary } from "style-dictionary/types/Dictionary"; + +export function addToMixins( + name: string, + outputFileDir: string, + dictionary: Dictionary, + outputReferences: boolean, + fileHeader: string +): void { + const mixinFilePath = resolve(outputFileDir, "mixins.scss"); + const mixinFileRaw = readFileSync(mixinFilePath, { encoding: "utf-8", flag: "a+" }); + const mixinMatches = Array.from( + mixinFileRaw.match(/(@mixin [\w\d-]+\(\) *{\n*([ \w\d-.\(\):,#\%\*]*;(\s\/\*[ \w\d-.\(\)]+\*\/*)*\n*)* *\})/g) || [] + ); + const newMixinStr = + `@mixin ${name}() {` + + "\n" + + StyleDictionary.formatHelpers + .formattedVariables({ format: "css", dictionary, outputReferences }) + .split("\n") + .filter((variable) => !variable.includes("[object Object]")) + .join("\n") + + "\n" + + "}"; + const mixinFileArray = []; + let mixinReplaced = false; + + mixinMatches.forEach((mixin) => { + if (mixin.includes(`@mixin ${name}()`)) { + mixinFileArray.push(newMixinStr); + mixinReplaced = true; + } else { + mixinFileArray.push(mixin); + } + }); + + if (!mixinReplaced) { + mixinFileArray.push(newMixinStr); + } + + writeFileSync(mixinFilePath, fileHeader + mixinFileArray.join("\n\n")); +} diff --git a/packages/calcite-design-tokens/support/token-transformer/format/utils/importedReferenceList.ts b/packages/calcite-design-tokens/support/token-transformer/format/utils/importedReferenceList.ts new file mode 100644 index 00000000000..51cfd0c77e5 --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/format/utils/importedReferenceList.ts @@ -0,0 +1,20 @@ +import { relative } from "path"; + +export function importedReferenceList(references: string[], outputFileDir: string): string[] { + return references + ? references.reduce((acc, ref) => { + const refLink = ref + .replace(/(semantic|core)./, "global.") + .replace("/src/", "/dist/scss/") + .replace("component/", ""); + const relativeLink = relative(outputFileDir, refLink); + const useLink = `@use "${relativeLink.slice(0, relativeLink.lastIndexOf("."))}";`; + + if (!acc.includes(useLink)) { + acc.push(useLink); + } + + return acc; + }, []) + : []; +} diff --git a/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.test.ts b/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.test.ts deleted file mode 100644 index 00bd4785c38..00000000000 --- a/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.test.ts +++ /dev/null @@ -1,144 +0,0 @@ -const mockCorrectTypeCompoundToken = { - core: { - 1: { - type: "sizing", - value: "10", - }, - }, - compound: { - value: { - fontFamily: "$core.font.font-family.primary", - fontWeight: "$core.font.font-weight.light", - lineHeight: "$core.font.line-height.fixed.0", - fontSize: "$core.font.font-size.0", - letterSpacing: "$core.font.letter-spacing.normal", - paragraphSpacing: "$core.font.paragraph-spacing.normal", - textDecoration: "$core.font.text-decoration.none", - textCase: "$core.font.text-case.none", - }, - type: "typography", - }, -}; -const mockTransformedCompoundTokens = { - core: { - 1: { - type: "sizing", - value: "10", - }, - }, - compound: { - "font-family": { - value: "$core.font.font-family.primary", - type: "font-family", - }, - "font-weight": { - value: "$core.font.font-weight.light", - type: "font-weights", - }, - "line-height": { - value: "$core.font.line-height.fixed.0", - type: "line-heights", - }, - "font-size": { - value: "$core.font.font-size.0", - type: "font-size", - }, - "letter-spacing": { - value: "$core.font.letter-spacing.normal", - type: "letter-spacing", - }, - "paragraph-spacing": { - value: "$core.font.paragraph-spacing.normal", - type: "paragraph-spacing", - }, - "text-decoration": { - value: "$core.font.text-decoration.none", - type: "font-style", - }, - "text-case": { - value: "$core.font.text-case.none", - type: "text-case", - }, - }, -}; - -const handleTokenStudioVariables = jest.fn((token) => (token.includes("$") ? `{${token.replace(/\$/g, "")}}` : token)); -const convertTokenToStyleDictionaryFormat = jest.fn(() => handleTokenStudioVariables); -const shouldExpand = jest.fn().mockReturnValue(true); -const expandToken = jest.fn().mockReturnValue(mockTransformedCompoundTokens); - -jest.mock("../utils/compositeTokens.js", () => { - const originalModule = jest.requireActual("../utils/compositeTokens.js"); - return { - __esModule: false, - ...originalModule, - shouldExpand, - expandToken, - }; -}); - -jest.mock("../utils/convertTokenToStyleDictionaryFormat.js", () => { - const originalModule = jest.requireActual("../utils/convertTokenToStyleDictionaryFormat.js"); - return { - __esModule: false, - ...originalModule, - convertTokenToStyleDictionaryFormat, - }; -}); - -import * as expandComposites from "./expandComposites"; - -describe("expand token dictionary", () => { - beforeEach(() => { - jest.clearAllMocks(); - }); - - it("should not add placeholder elements", () => { - const placeolderToken = { - "[placeholder-component]": { - type: "other", - value: "#333", - }, - }; - const placeholderValue = { - compoonent: { - type: "other", - value: "[placholder-value]", - }, - }; - - // @ts-expect-error - it's fine. - const testExpandPlaceholderKey = expandComposites.expandComposites(placeolderToken, "./fakePath"); - // @ts-expect-error - it's fine. - const testExpandPlaceholderValue = expandComposites.expandComposites(placeholderValue, "./fakePath"); - - expect(testExpandPlaceholderKey).toMatchObject({}); - expect(testExpandPlaceholderValue).toMatchObject({}); - }); - - it('should loop through a dictionary and run "shouldExpand" and "expandToken" on each composite token', () => { - // @ts-expect-error - it's fine. - const testExpandComposite = expandComposites.expandComposites(mockCorrectTypeCompoundToken, "./fakePath"); - expect(handleTokenStudioVariables).toHaveBeenCalledTimes(1); - expect(shouldExpand).toHaveBeenCalledTimes(1); - expect(expandToken).toHaveBeenCalledTimes(1); - expect(testExpandComposite).toMatchObject(mockTransformedCompoundTokens); - }); - - it("should not run expand token on unrecognized types", () => { - const mockDictionary = { - core: { - type: "customType", - value: { - fontFamily: "Avanir", - fontSize: "12px", - }, - }, - }; - // @ts-expect-error - it's fine this is a test - const testExpandComposite = expandComposites.expandComposites(mockDictionary, "./fakePath"); - expect(shouldExpand).not.toHaveBeenCalled(); - expect(expandToken).not.toHaveBeenCalled(); - expect(testExpandComposite).toMatchObject(mockDictionary); - }); -}); diff --git a/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts b/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts deleted file mode 100644 index 8807bc4bf78..00000000000 --- a/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts +++ /dev/null @@ -1,72 +0,0 @@ -import { DeepKeyTokenMap } from "@tokens-studio/types"; -import { DesignToken } from "style-dictionary/types/DesignToken.js"; -import { - TransformOptions, - ExpandablesAsStrings, - Expandables, - expandablesAsStringsArr, -} from "../utils/transformOptions.js"; -import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from "../utils/regex.js"; -import { shouldExpand, expandToken } from "../utils/compositeTokens.js"; -import { convertTokenToStyleDictionaryFormat } from "../utils/convertTokenToStyleDictionaryFormat.js"; - -/** - * Figma Token Studio creates an odd type of composite token where the "value" may contain an object of "key: value" pairs rather than a sting. - * Here we will lift these composite tokens up to match the Style Dictionary format. - * - * @param {DeepKeyTokenMap} dictionary the raw JSON object in the token files. We will assume this is a token object generated by Figma Token Studio and may require composite tokens to be expanded. - * @param {string} filePath the absolute file path to the JSON token file. - * @param {TransformOptions} transformOpts the options passed in from the Style Dictionary config and runner - * @returns {DeepKeyTokenMap} a token object where any Figma Token Studio composite tokens now match the Style Dictionary token format - */ -export function expandComposites( - dictionary: DeepKeyTokenMap, - filePath: string, - transformOpts: TransformOptions = {} -): DeepKeyTokenMap { - const opts = { - ...transformOpts, - expand: { - composition: true, - typography: false, - border: false, - shadow: false, - ...transformOpts.expand, - }, - }; - const returnSlice: DeepKeyTokenMap = {}; - const handleTokenStudioVariables = convertTokenToStyleDictionaryFormat(tokenStudioCustomVariableIndicator); - const newDictionary = Object.entries(dictionary).reduce((acc, [key, token]) => { - const { type } = token; - - if ( - matchPlaceholderElement.test(`${key}`) || - (typeof token.value === "string" && matchPlaceholderElement.test(`${token.value}`)) - ) { - return acc; - } - - if (token.value && type) { - const includesType = expandablesAsStringsArr.includes(`${type}`); - - if (includesType) { - const expandType = (type as ExpandablesAsStrings) === "boxShadow" ? "shadow" : type; - const expand = shouldExpand(token as Expandables, opts.expand[`${expandType}`], filePath); - if (expand) { - const expandedToken = expandToken(token as DesignToken, expandType === "shadow", handleTokenStudioVariables); - return expandedToken; - } - } else if (typeof token.value === "string") { - token.value = handleTokenStudioVariables(token.value); - acc[key] = token; - } else { - acc[key] = token; - } - } else if (typeof token === "object") { - acc[key] = expandComposites(token as DeepKeyTokenMap, filePath, transformOpts); - } - return acc; - }, returnSlice); - - return newDictionary || {}; -} diff --git a/packages/calcite-design-tokens/support/token-transformer/registerCalciteTransformers.ts b/packages/calcite-design-tokens/support/token-transformer/registerCalciteTransformers.ts new file mode 100644 index 00000000000..799284f4a70 --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/registerCalciteTransformers.ts @@ -0,0 +1,31 @@ +import { Core as StyleDictionary } from "style-dictionary"; +import { registerNameCamelCase } from "./transform/nameCamelCase.js"; +import { registerNameKebabCase } from "./transform/nameKebabCase.js"; +import { registerValueStringWrapper } from "./transform/valueStringWrapper.js"; +import { registerSCSSFormat } from "./format/scss.js"; +import { registerCSSFormat } from "./format/css.js"; +import { registerTransforms } from "@tokens-studio/sd-transforms"; +import { registerFilterSource } from "./filter/filterSource.js"; + +export async function registerCalciteTransformers(sd: StyleDictionary): Promise { + // Here we are registering the Transforms provided by Token Studio however, + // we need to pass "expand: false" so that we can use our own custom JSON file parser. + // any references to "ts/..." below are references to these Token Studio transformers + // https://github.com/tokens-studio/sd-transforms + // @ts-expect-error - @token-studio does not keep their types up to date. + await registerTransforms(sd, { + expand: { + composition: true, + typography: false, + border: false, + shadow: false, + }, + }); + + registerNameCamelCase(sd); + registerNameKebabCase(sd); + registerValueStringWrapper(sd); + registerSCSSFormat(sd); + registerCSSFormat(sd); + registerFilterSource(sd); +} diff --git a/packages/calcite-design-tokens/support/token-transformer/sd-run.ts b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts index f2e152513fd..e49ebf97a86 100644 --- a/packages/calcite-design-tokens/support/token-transformer/sd-run.ts +++ b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts @@ -1,10 +1,6 @@ import { registerTransforms } from "@tokens-studio/sd-transforms"; -import StyleDictionary from "style-dictionary"; -import { expandComposites } from "./parse/expandComposites.js"; +import { default as StyleDictionary } from "style-dictionary"; import { formatSCSS } from "./format/scss.js"; -import { matchExclusions } from "./utils/regex.js"; -import { matchList } from "./utils/matchList.js"; -import { nameCamelCase } from "./transform/nameCamelCase.js"; import { nameKebabCase } from "./transform/nameKebabCase.js"; import { parseName } from "./utils/parseName.js"; import { Theme } from "./getThemes.js"; @@ -16,9 +12,6 @@ import { Theme } from "./getThemes.js"; * @param {string} buildPath the directory to write generated assets to * @param {Theme} theme the theme configuration to use to generate the platform asset files * @param {string} theme.name the name of the theme. This will be used as the basis for the generated asset file names. - * @param {string[]} theme.enabled an array of partial file names matching the token files which should be included in the output - * @param {string[]} theme.disabled an array of partial file names matching the token files which should explicitly not be included in the output - * @param {string[]} theme.source an array of partial file names matching the token files which should not always be included in the output but who's values should be used for variables references in the "enabled" files */ export const run = async ( tokenDir = "tokens", @@ -29,18 +22,19 @@ export const run = async ( const include = theme.source.map((tokenFile) => `${tokenDir}/${tokenFile}.json`); const source = theme.enabled.map((tokenFile) => `${tokenDir}/${tokenFile}.json`); const options = { - enabled: theme.enabled, - source: theme.source, - disabled: theme.disabled, - outputReferences: false, - sourceReferencesOnly: false, + outputReferences: true, }; // Here we are registering the Transforms provided by Token Studio // https://github.com/tokens-studio/sd-transforms // @ts-expect-error - @token-studio does not keep their types up to date. await registerTransforms(StyleDictionary, { - expand: false, + expand: { + composition: true, + typography: false, + border: false, + shadow: false, + }, }); // Register custom formatter https://amzn.github.io/style-dictionary/#/formats?id=custom-formats @@ -50,12 +44,6 @@ export const run = async ( }); // Registering Style Dictionary transformers https://amzn.github.io/style-dictionary/#/transforms?id=defining-custom-transforms - StyleDictionary.registerTransform({ - name: "name/calcite/camel", - type: "name", - transformer: nameCamelCase, - }); - StyleDictionary.registerTransform({ name: "name/calcite/kebab", type: "name", @@ -92,8 +80,8 @@ export const run = async ( { destination: `${fileName}.css`, format: "css/variables", - filter: /headless/gi.test(fileName) ? null : "filterSource", - options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options, + filter: "filterSource", + options, }, ], }, @@ -116,26 +104,12 @@ export const run = async ( { destination: `${fileName}.scss`, format: "calcite/scss", - filter: /headless/gi.test(fileName) ? null : "filterSource", - options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options, + filter: "filterSource", + options, }, ], }, }, - parsers: [ - { - pattern: /\.json$/, - parse: (file) => { - if (matchList(file.filePath, [...include, ...theme.source, ...theme.enabled], matchExclusions)) { - const obj = JSON.parse(file.contents); - const expanded = expandComposites(obj, file.filePath); - return expanded; - } - - return {}; - }, - }, - ], }); try { diff --git a/packages/calcite-design-tokens/support/token-transformer/styleDictionaryRunner.ts b/packages/calcite-design-tokens/support/token-transformer/styleDictionaryRunner.ts new file mode 100644 index 00000000000..75c8e073efa --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/styleDictionaryRunner.ts @@ -0,0 +1,57 @@ +import { dirname } from "path"; +import { Options, default as StyleDictionary } from "style-dictionary"; +import { Platform } from "style-dictionary/types/Platform.js"; +import { registerCalciteTransformers } from "./registerCalciteTransformers.js"; +import { setPlatform } from "./utils/setPlatform.js"; + +type StyleDictionaryRunnerArguments = { + name: string; + source: string[]; + include: string[]; + options: Options; + output: { + dir: string; + platforms: string[]; + }; +}; + +await registerCalciteTransformers(StyleDictionary); + +export function styleDictionaryRunner({ + name, + source, + include, + options, + output, +}: StyleDictionaryRunnerArguments): void { + const styleDictionaryConfig = { + source, + include, + platforms: output.platforms.reduce((acc, platform) => { + try { + acc = setPlatform(acc, { + platform, + name, + options: { + ...options, + reference: include, + sourceDir: dirname(source[0]), + }, + output: output.dir, + }); + return acc; + } catch (error) { + console.warn(`Calcite Token Transformer Error: Platform failed to build.\n ${platform}`); + return acc; + } + }, {} as Record), + }; + const sdRunner = StyleDictionary.extend(styleDictionaryConfig); + + try { + sdRunner.cleanAllPlatforms(); + sdRunner.buildAllPlatforms(); + } catch (error) { + console.error(error); + } +} diff --git a/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts b/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts index 5e4c7817a32..c4b7c4a6b10 100644 --- a/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts +++ b/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts @@ -1,6 +1,5 @@ import { camelCase } from "change-case"; -import { TransformedToken } from "style-dictionary/types/TransformedToken.js"; -import { Options } from "style-dictionary/types/Options.js"; +import { Core as StyleDictionary, Options, TransformedToken } from "style-dictionary"; import { parseTokenPath } from "../utils/parseTokenPath.js"; /** @@ -10,6 +9,16 @@ import { parseTokenPath } from "../utils/parseTokenPath.js"; * @param {Options} options Style Dictionary format options * @returns {string} an updated name for the token which will be used for the final output */ -export function nameCamelCase(token: TransformedToken, options: Options): string { +export function nameCamelCaseFunction(token: TransformedToken, options: Options): string { return camelCase([options.prefix].concat(parseTokenPath(token.path)).join(" ")); } + +export const registerNameCamelCase = (sd: StyleDictionary): void => { + sd.registerTransform({ + name: nameCamelCase, + type: "name", + transformer: nameCamelCaseFunction, + }); +}; + +export const nameCamelCase = "name/calcite/camel-case"; diff --git a/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts b/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts index a0e9d6169c9..a01122a6e83 100644 --- a/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts +++ b/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts @@ -1,6 +1,5 @@ +import { Core as StyleDictionary, TransformedToken, Options } from "style-dictionary"; import { paramCase } from "change-case"; -import { TransformedToken } from "style-dictionary/types/TransformedToken.js"; -import { Options } from "style-dictionary/types/Options.js"; import { parseTokenPath } from "../utils/parseTokenPath.js"; /** @@ -10,17 +9,16 @@ import { parseTokenPath } from "../utils/parseTokenPath.js"; * @param {Options} options Style Dictionary format options * @returns {string} an updated name for the token which will be used for the final output */ -export function nameKebabCase(token: TransformedToken, options: Options): string { - const paths = token.path.reduce((acc, p, idx) => { - if (p === "core") { - acc.push("app"); - } else if (typeof token.path[idx + 1] === "string" && !new RegExp(`${p}`).test(token.path[idx + 1])) { - acc.push(p); - } else if (idx === token.path.length - 1) { - acc.push(p); - } - return acc; - }, []); - - return paramCase([options.prefix].concat(parseTokenPath(paths)).join(" ")); +export function nameKebabCaseFunction(token: TransformedToken, options: Options): string { + return paramCase([options.prefix].concat(parseTokenPath(token.path)).join(" ")); } + +export const registerNameKebabCase = (sd: StyleDictionary): void => { + sd.registerTransform({ + name: nameKebabCase, + type: "name", + transformer: nameKebabCaseFunction, + }); +}; + +export const nameKebabCase = "name/calcite/kebab-case"; diff --git a/packages/calcite-design-tokens/support/token-transformer/transform/valueStringWrapper.ts b/packages/calcite-design-tokens/support/token-transformer/transform/valueStringWrapper.ts new file mode 100644 index 00000000000..f1d8bfd37a8 --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/transform/valueStringWrapper.ts @@ -0,0 +1,15 @@ +import { Core as StyleDictionary, TransformedToken } from "style-dictionary"; + +export function valueStringWrapperFunction(token: TransformedToken): string { + return typeof token.value === "string" && token.value.includes(" ") ? `"${token.value}"` : token.value; +} + +export const registerValueStringWrapper = (sd: StyleDictionary): void => { + sd.registerTransform({ + name: valueStringWrapper, + type: "value", + transformer: valueStringWrapperFunction, + }); +}; + +export const valueStringWrapper = "value/calcite/value-string-wrapper"; diff --git a/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts b/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts index 2735715bd04..79ff2fe0b4c 100644 --- a/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts +++ b/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts @@ -8,11 +8,21 @@ export const parseTokenPath = (path: string[]): string[] => path.reduce((acc, p, idx) => { if (idx === 0 && p === "color") { + // change "color" to "ui" acc.push("ui"); + } else if (p === "core") { + // change "core" to "app" + acc.push("app"); } else if (p === "default") { + // remove "default" from final name return acc; } else { - acc.push(p); + if (p.includes(acc[acc.length - 1])) { + // Remove changes tokens like font-font-size to font-size + acc[acc.length - 1] = p; + } else { + acc.push(p); + } } return acc; diff --git a/packages/calcite-design-tokens/support/token-transformer/utils/setPlatform.ts b/packages/calcite-design-tokens/support/token-transformer/utils/setPlatform.ts new file mode 100644 index 00000000000..68f35e4f4e7 --- /dev/null +++ b/packages/calcite-design-tokens/support/token-transformer/utils/setPlatform.ts @@ -0,0 +1,68 @@ +import { Options } from "style-dictionary/types/Options"; +import { Platform } from "style-dictionary/types/Platform"; +import { nameKebabCase } from "../transform/nameKebabCase.js"; +import { valueStringWrapper } from "../transform/valueStringWrapper.js"; +import { filterSource } from "../filter/filterSource.js"; +import { formatCSS } from "../format/css.js"; +import { formatSCSS } from "../format/scss.js"; + +const styleTransformDefaults = [ + "ts/descriptionToComment", + "ts/size/px", + "ts/opacity", + "ts/size/lineheight", + "ts/type/fontWeight", + "ts/resolveMath", + "ts/size/css/letterspacing", + "ts/color/css/hexrgba", + "ts/color/modifiers", + valueStringWrapper, + nameKebabCase, +]; + +const lookupFormatter = { + css: formatCSS, + scss: formatSCSS, +}; + +export function setPlatform( + obj: Record, + platformArguments: { + platform: string | Record; + name: string; + options: Options & { + themeable?: boolean; + reference?: string[]; + sourceDir?: string; + }; + output: string; + } +): Record { + const { platform, name, options, output } = platformArguments; + + if (typeof platform === "string") { + obj[platform] = { + prefix: options.prefix, + transforms: styleTransformDefaults, + buildPath: `${output}/${platform}/`, + files: [ + { + destination: `${name}.${platform}`, + format: lookupFormatter[platform], + filter: filterSource, + options: { + ...options, + output: { + dir: output, + platform, + filePath: `${output}/${platform}/${name}.${platform}`, + }, + }, + }, + ], + }; + return obj; + } else { + return { ...obj, ...platform }; + } +}