From e85142f1db01a877949e7f0f8acda73c408c5cd7 Mon Sep 17 00:00:00 2001 From: Tomas Francisco <4301103+tomasfrancisco@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:21:33 +0200 Subject: [PATCH 01/15] draft of figma converter --- apps/dashboard/package.json | 1 + .../_actions/fetch-release-tokens.action.ts | 1 + .../app/(dashboard)/tokens/converter/page.tsx | 26 + .../src/app/api/figma/variables/route.ts | 29 + packages/figma-plugin/package.json | 1 + .../extract-variables/extract-variables.ts | 7 + .../extract-variables/extractors/index.ts | 1 + .../extractors/local-variable-collections.ts | 7 + .../extractors/variable-collection.ts | 27 + .../extract-variables/extractors/variable.ts | 27 + .../extract-variables/utils/non-nullable.ts | 3 + packages/figma-plugin/src/plugin/plugin.ts | 7 +- packages/figma-plugin/src/ui/app.tsx | 7 +- packages/figma-plugin/src/ui/config.ts | 5 + .../figma-plugin/style-dictionary/config.json | 15 - .../style-dictionary/tokens/color.json | 20 - packages/figma-to-design-tokens/package.json | 29 +- .../figma-to-design-tokens/src/converter.ts | 40 + .../src/extractors/boolean.ts | 19 + .../src/extractors/color.ts | 42 + .../src/extractors/extract-variable.ts | 22 + .../src/extractors/float.ts | 88 + .../src/extractors/string.ts | 0 .../src/figma-variables.json | 197 + .../src/filters/not-implemented.ts | 13 + packages/figma-to-design-tokens/src/index.ts | 1 + packages/figma-to-design-tokens/src/test.ts | 201 + .../src/theme-figma-variables.json | 19679 ++++++++++++++++ .../figma-to-design-tokens/src/types/figma.ts | 25 + .../figma-to-design-tokens/src/types/index.ts | 1 + packages/figma-to-design-tokens/tsconfig.json | 24 + pnpm-lock.yaml | 15 + 32 files changed, 20526 insertions(+), 54 deletions(-) create mode 100644 apps/dashboard/src/app/(dashboard)/tokens/converter/page.tsx create mode 100644 apps/dashboard/src/app/api/figma/variables/route.ts create mode 100644 packages/figma-plugin/src/plugin/extract-variables/extract-variables.ts create mode 100644 packages/figma-plugin/src/plugin/extract-variables/extractors/index.ts create mode 100644 packages/figma-plugin/src/plugin/extract-variables/extractors/local-variable-collections.ts create mode 100644 packages/figma-plugin/src/plugin/extract-variables/extractors/variable-collection.ts create mode 100644 packages/figma-plugin/src/plugin/extract-variables/extractors/variable.ts create mode 100644 packages/figma-plugin/src/plugin/extract-variables/utils/non-nullable.ts delete mode 100644 packages/figma-plugin/style-dictionary/config.json delete mode 100644 packages/figma-plugin/style-dictionary/tokens/color.json create mode 100644 packages/figma-to-design-tokens/src/converter.ts create mode 100644 packages/figma-to-design-tokens/src/extractors/boolean.ts create mode 100644 packages/figma-to-design-tokens/src/extractors/color.ts create mode 100644 packages/figma-to-design-tokens/src/extractors/extract-variable.ts create mode 100644 packages/figma-to-design-tokens/src/extractors/float.ts create mode 100644 packages/figma-to-design-tokens/src/extractors/string.ts create mode 100644 packages/figma-to-design-tokens/src/figma-variables.json create mode 100644 packages/figma-to-design-tokens/src/filters/not-implemented.ts create mode 100644 packages/figma-to-design-tokens/src/index.ts create mode 100644 packages/figma-to-design-tokens/src/test.ts create mode 100644 packages/figma-to-design-tokens/src/theme-figma-variables.json create mode 100644 packages/figma-to-design-tokens/src/types/figma.ts create mode 100644 packages/figma-to-design-tokens/src/types/index.ts create mode 100644 packages/figma-to-design-tokens/tsconfig.json diff --git a/apps/dashboard/package.json b/apps/dashboard/package.json index 5c8194a..12e3611 100644 --- a/apps/dashboard/package.json +++ b/apps/dashboard/package.json @@ -15,6 +15,7 @@ "dependencies": { "@ds-project/api": "workspace:*", "@ds-project/auth": "workspace:*", + "@ds-project/types": "workspace:*", "@ds-project/components": "workspace:*", "@ds-project/database": "workspace:*", "@hookform/resolvers": "^3.9.0", diff --git a/apps/dashboard/src/app/(dashboard)/tokens/_actions/fetch-release-tokens.action.ts b/apps/dashboard/src/app/(dashboard)/tokens/_actions/fetch-release-tokens.action.ts index 779b768..20b642c 100644 --- a/apps/dashboard/src/app/(dashboard)/tokens/_actions/fetch-release-tokens.action.ts +++ b/apps/dashboard/src/app/(dashboard)/tokens/_actions/fetch-release-tokens.action.ts @@ -21,6 +21,7 @@ async function searchFileSha({ path: string[]; index?: number; }) { + // TODO: Explore recursive approach instead https://arc.net/l/quote/wmwrxkfr const { data: treeData } = await octokit.request( 'GET /repos/{owner}/{repo}/git/trees/{tree_sha}', { diff --git a/apps/dashboard/src/app/(dashboard)/tokens/converter/page.tsx b/apps/dashboard/src/app/(dashboard)/tokens/converter/page.tsx new file mode 100644 index 0000000..cafcb72 --- /dev/null +++ b/apps/dashboard/src/app/(dashboard)/tokens/converter/page.tsx @@ -0,0 +1,26 @@ +import { Text } from '@ds-project/components'; +import { JsonBlock, MainContent } from '@/components'; +import { fetchTokens } from '../_actions'; + +export default async function Tokens() { + const figmaVariables = await fetchTokens(); + + if (!figmaVariables) { + return ( + +

Error fetching variables

+
+ ); + } + + return ( + +
+ +
+
+ ); +} diff --git a/apps/dashboard/src/app/api/figma/variables/route.ts b/apps/dashboard/src/app/api/figma/variables/route.ts new file mode 100644 index 0000000..a5c42f3 --- /dev/null +++ b/apps/dashboard/src/app/api/figma/variables/route.ts @@ -0,0 +1,29 @@ +import type { NextRequest } from 'next/server'; +import { eq } from 'drizzle-orm'; +import { database } from '@/lib/drizzle'; +import { insertResourcesSchema, resourcesTable } from '@/lib/drizzle/schema'; +import { isAuthenticated } from '@/lib/supabase/server/utils/is-authenticated'; + +export async function POST(request: NextRequest) { + if (!(await isAuthenticated(request))) { + return new Response('Not authenticated', { status: 401 }); + } + + try { + const validatedData = insertResourcesSchema + .pick({ designTokens: true, projectId: true }) + .parse(await request.json()); + + // Update database + await database + .update(resourcesTable) + .set({ + designTokens: validatedData.designTokens, + }) + .where(eq(resourcesTable.projectId, validatedData.projectId)); + } catch (error) { + return new Response(JSON.stringify(error), { status: 400 }); + } + + return new Response('OK', { status: 200 }); +} diff --git a/packages/figma-plugin/package.json b/packages/figma-plugin/package.json index f426e3f..ca51d4d 100644 --- a/packages/figma-plugin/package.json +++ b/packages/figma-plugin/package.json @@ -14,6 +14,7 @@ "type-check": "tsc --noEmit --emitDeclarationOnly false" }, "dependencies": { + "@ds-project/types": "workspace:*", "@apollo/client": "^3.7.11", "@ds-project/api": "workspace:*", "@ds-project/components": "workspace:*", diff --git a/packages/figma-plugin/src/plugin/extract-variables/extract-variables.ts b/packages/figma-plugin/src/plugin/extract-variables/extract-variables.ts new file mode 100644 index 0000000..e4cb7dc --- /dev/null +++ b/packages/figma-plugin/src/plugin/extract-variables/extract-variables.ts @@ -0,0 +1,7 @@ +import { extractLocalVariableCollections } from './extractors'; + +export async function extractVariables(figma: PluginAPI) { + const variableCollections = await extractLocalVariableCollections(figma); + + return variableCollections; +} diff --git a/packages/figma-plugin/src/plugin/extract-variables/extractors/index.ts b/packages/figma-plugin/src/plugin/extract-variables/extractors/index.ts new file mode 100644 index 0000000..018f835 --- /dev/null +++ b/packages/figma-plugin/src/plugin/extract-variables/extractors/index.ts @@ -0,0 +1 @@ +export * from './local-variable-collections'; diff --git a/packages/figma-plugin/src/plugin/extract-variables/extractors/local-variable-collections.ts b/packages/figma-plugin/src/plugin/extract-variables/extractors/local-variable-collections.ts new file mode 100644 index 0000000..1912b71 --- /dev/null +++ b/packages/figma-plugin/src/plugin/extract-variables/extractors/local-variable-collections.ts @@ -0,0 +1,7 @@ +import { extractVariableCollection } from './variable-collection'; + +export async function extractLocalVariableCollections(figma: PluginAPI) { + const collections = await figma.variables.getLocalVariableCollectionsAsync(); + + return await Promise.all(collections.map(extractVariableCollection(figma))); +} diff --git a/packages/figma-plugin/src/plugin/extract-variables/extractors/variable-collection.ts b/packages/figma-plugin/src/plugin/extract-variables/extractors/variable-collection.ts new file mode 100644 index 0000000..b2adc74 --- /dev/null +++ b/packages/figma-plugin/src/plugin/extract-variables/extractors/variable-collection.ts @@ -0,0 +1,27 @@ +import { FigmaExtractedVariableCollection } from '@ds-project/types/src/types/figma'; +import { nonNullable } from '../utils/non-nullable'; +import { extractVariable } from './variable'; + +export const extractVariableCollection = + (figma: PluginAPI) => + async ( + variableCollection: VariableCollection + ): Promise => { + const variables = ( + await Promise.all( + variableCollection.variableIds.map(extractVariable(figma)) + ) + ).filter(nonNullable); + + return { + defaultModeId: variableCollection.defaultModeId, + hiddenFromPublishing: variableCollection.hiddenFromPublishing, + id: variableCollection.id, + key: variableCollection.key, + modes: variableCollection.modes, + name: variableCollection.name, + remote: variableCollection.remote, + variableIds: variableCollection.variableIds, + variables, + }; + }; diff --git a/packages/figma-plugin/src/plugin/extract-variables/extractors/variable.ts b/packages/figma-plugin/src/plugin/extract-variables/extractors/variable.ts new file mode 100644 index 0000000..bfb26c0 --- /dev/null +++ b/packages/figma-plugin/src/plugin/extract-variables/extractors/variable.ts @@ -0,0 +1,27 @@ +import { FigmaExtractedVariable } from '@ds-project/types/src/types/figma'; + +export const extractVariable = + (figma: PluginAPI) => + async (variableId: string): Promise => { + const variable = await figma.variables.getVariableByIdAsync(variableId); + + if (!variable) { + return undefined; + } + + const publishStatus = await variable?.getPublishStatusAsync(); + + return { + publishStatus: publishStatus, + description: variable.description, + hiddenFromPublishing: variable.hiddenFromPublishing, + name: variable.name, + resolvedType: variable.resolvedType, + valuesByMode: variable.valuesByMode, + id: variable.id, + key: variable.key, + remote: variable.remote, + scopes: variable.scopes, + variableCollectionId: variable.variableCollectionId, + }; + }; diff --git a/packages/figma-plugin/src/plugin/extract-variables/utils/non-nullable.ts b/packages/figma-plugin/src/plugin/extract-variables/utils/non-nullable.ts new file mode 100644 index 0000000..3e06bb1 --- /dev/null +++ b/packages/figma-plugin/src/plugin/extract-variables/utils/non-nullable.ts @@ -0,0 +1,3 @@ +export function nonNullable(value: T): value is NonNullable { + return value !== null && value !== undefined; +} diff --git a/packages/figma-plugin/src/plugin/plugin.ts b/packages/figma-plugin/src/plugin/plugin.ts index 5c227b1..e86b49e 100644 --- a/packages/figma-plugin/src/plugin/plugin.ts +++ b/packages/figma-plugin/src/plugin/plugin.ts @@ -1,9 +1,10 @@ +import { convertFigmaVariablesToDesignTokens } from '@ds-project/types'; import { AsyncMessage } from '../message'; import { AsyncMessageTypes } from '../message.types'; import type { Credentials } from '../types/credentials'; import { config } from '../ui/config'; +import { extractVariables } from './extract-variables/extract-variables'; import { storage } from './storage'; -import { getFigmaVariables } from './variables/utils/get-figma-variables'; figma.showUI(__html__, { themeColors: true, @@ -50,10 +51,10 @@ AsyncMessage.plugin.handle(AsyncMessageTypes.DeleteCredentials, async () => { }); AsyncMessage.plugin.handle(AsyncMessageTypes.GetDesignTokens, async () => { - const styleDictionary = await getFigmaVariables(); + const variables = await extractVariables(figma); return { - designTokens: styleDictionary, + designTokens: convertFigmaVariablesToDesignTokens(variables), }; }); diff --git a/packages/figma-plugin/src/ui/app.tsx b/packages/figma-plugin/src/ui/app.tsx index 380d132..116c162 100644 --- a/packages/figma-plugin/src/ui/app.tsx +++ b/packages/figma-plugin/src/ui/app.tsx @@ -6,8 +6,7 @@ import { AsyncMessageTypes } from '../message.types'; import { AsyncMessage } from '../message'; import { LinkDesignSystem } from './modules/link-design-system'; import { useAuth } from './modules/providers/auth-provider'; -import { api } from './lib/api'; -import { useConfig } from './modules/providers/config-provider'; +import { config } from './config'; function App() { const { login, logout, state } = useAuth(); @@ -24,8 +23,8 @@ function App() { type: AsyncMessageTypes.GetDesignTokens, }) .then(({ designTokens }) => { - if (fileName) { - void updateDesignTokens({ designTokens, name: fileName }); + if (config.features.shouldUpdateTokens) { + void updateDesignTokens(designTokens); } }) .catch((error) => { diff --git a/packages/figma-plugin/src/ui/config.ts b/packages/figma-plugin/src/ui/config.ts index d8675ed..ea6a9da 100644 --- a/packages/figma-plugin/src/ui/config.ts +++ b/packages/figma-plugin/src/ui/config.ts @@ -1,6 +1,11 @@ +const featureFlags = { + shouldUpdateTokens: true, +} as Record; + export const config = { AUTH_API_HOST: 'https://localhost:3000', READ_INTERVAL: 5 * 1000, // 5 seconds CREDENTIALS_KEY: 'ds-project-credentials', PROJECT_ID_KEY: 'ds-project-id', + features: featureFlags, } as const; diff --git a/packages/figma-plugin/style-dictionary/config.json b/packages/figma-plugin/style-dictionary/config.json deleted file mode 100644 index 76b69b5..0000000 --- a/packages/figma-plugin/style-dictionary/config.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "source": ["./tokens/**/*.json"], - "platforms": { - "css": { - "transformGroup": "css", - "buildPath": "dist/css/", - "files": [ - { - "destination": "_variables.css", - "format": "css/variables" - } - ] - } - } -} diff --git a/packages/figma-plugin/style-dictionary/tokens/color.json b/packages/figma-plugin/style-dictionary/tokens/color.json deleted file mode 100644 index 2540040..0000000 --- a/packages/figma-plugin/style-dictionary/tokens/color.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "$type": "color", - "color": { - "background": { - "primary": { - "$value": "#000000" - }, - "secondary": { - "$value": "#9a4040" - } - } - }, - "button": { - "active": { - "background": { - "$value": "" - } - } - } -} diff --git a/packages/figma-to-design-tokens/package.json b/packages/figma-to-design-tokens/package.json index 5909a30..1c29484 100644 --- a/packages/figma-to-design-tokens/package.json +++ b/packages/figma-to-design-tokens/package.json @@ -1,18 +1,23 @@ { - "name": "figma-to-design-tokens", - "version": "1.0.0", - "description": "", - "main": "index.js", - "dependencies": { - "color2k": "^2.0.3", - "style-dictionary": "^4.0.1", - "tsup": "^8.2.4", - "tsx": "^4.17.0" - }, + "name": "@ds-project/types", + "type": "module", + "main": "./src/index.ts", + "types": "./src/index.ts", + "private": true, "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "build": "tsup src/index.ts", + "test": "tsx src/test.ts" }, "keywords": [], "author": "", - "license": "ISC" + "license": "ISC", + "devDependencies": { + "@figma/plugin-typings": "^1.98.0", + "style-dictionary": "^4.0.1", + "tsup": "^8.2.4", + "tsx": "^4.17.0" + }, + "dependencies": { + "color2k": "^2.0.3" + } } diff --git a/packages/figma-to-design-tokens/src/converter.ts b/packages/figma-to-design-tokens/src/converter.ts new file mode 100644 index 0000000..93f4aac --- /dev/null +++ b/packages/figma-to-design-tokens/src/converter.ts @@ -0,0 +1,40 @@ +import { DesignToken, DesignTokens } from 'style-dictionary/types'; +import { FigmaExtractedVariableCollection } from './types/figma'; +import { extractVariable } from './extractors/extract-variable'; +import { notImplemented } from './filters/not-implemented'; + +export function convertFigmaVariablesToDesignTokens( + variableCollections: Array +): DesignTokens { + return { + $type: 'figma-design-tokens', + collections: variableCollections.flatMap((collection) => ({ + $type: 'collection', + $description: 'Figma Variable Collections', + attributes: { + figma: { + id: collection.id, + key: collection.key, + name: collection.name, + hiddenFromPublishing: collection.hiddenFromPublishing, + modes: collection.modes, + }, + }, + ...collection.modes.reduce( + (collectionModeVariables, mode) => ({ + ...collectionModeVariables, + [mode.name]: { + ...collection.variables.filter(notImplemented).reduce( + (variables, variable) => ({ + ...variables, + [variable.name]: extractVariable(variable, mode.modeId), + }), + {} + ), + }, + }), + {} + ), + })), + }; +} diff --git a/packages/figma-to-design-tokens/src/extractors/boolean.ts b/packages/figma-to-design-tokens/src/extractors/boolean.ts new file mode 100644 index 0000000..f8cd8b6 --- /dev/null +++ b/packages/figma-to-design-tokens/src/extractors/boolean.ts @@ -0,0 +1,19 @@ +import { DesignToken } from 'style-dictionary/types'; +import { toHex } from 'color2k'; +import { FigmaExtractedVariable } from '../types'; + +export function extractBoolean( + value: FigmaExtractedVariable['valuesByMode'][string] +): DesignToken['$value'] { + if ( + typeof value === 'string' || + typeof value === 'number' || + (typeof value === 'object' && ('b' in value || 'id' in value)) + ) { + // string | number | RGB | RGBA | VariableAlias + // We should not receive these types under boolean. If that happens, something went wrong during the extraction from Figma. + throw new Error('Unexpected boolean type'); + } + + throw new Error('Boolean extraction is not yet implemented'); +} diff --git a/packages/figma-to-design-tokens/src/extractors/color.ts b/packages/figma-to-design-tokens/src/extractors/color.ts new file mode 100644 index 0000000..b967aba --- /dev/null +++ b/packages/figma-to-design-tokens/src/extractors/color.ts @@ -0,0 +1,42 @@ +import { DesignToken } from 'style-dictionary/types'; +import { toHex } from 'color2k'; +import { FigmaExtractedVariable } from '../types'; + +export function extractColor( + variable: FigmaExtractedVariable, + modeId: string +): DesignToken { + const value = variable.valuesByMode[modeId]; + + if ( + typeof value === 'string' || + typeof value === 'number' || + typeof value === 'boolean' + ) { + // We should not receive these types under color. If that happens, something went wrong during the extraction from Figma. + throw new Error('Unexpected color type'); + } + + const extractedValue = (() => { + // RGB | RGBA | VariableAlias + if ('a' in value) { + // RGBA + return toHex(`rgba(${value.r},${value.g},${value.b},${value.a})`); + } + + if ('b' in value) { + // RGB + return toHex(`rgb(${value.r},${value.g},${value.b})`); + } + + if ('id' in value && value.type === 'VARIABLE_ALIAS') { + return value.id; + } + })(); + + return { + $type: 'color', + $description: variable.description, + $value: extractedValue, + }; +} diff --git a/packages/figma-to-design-tokens/src/extractors/extract-variable.ts b/packages/figma-to-design-tokens/src/extractors/extract-variable.ts new file mode 100644 index 0000000..9d8deed --- /dev/null +++ b/packages/figma-to-design-tokens/src/extractors/extract-variable.ts @@ -0,0 +1,22 @@ +import { DesignToken } from 'style-dictionary/types'; +import { extractColor } from './color'; +import { extractBoolean } from './boolean'; +import { FigmaExtractedVariable } from '../types'; +import { extractFloat } from './float'; + +export function extractVariable( + variable: FigmaExtractedVariable, + modeId: string +): DesignToken { + switch (variable.resolvedType) { + case 'COLOR': + return extractColor(variable, modeId); + case 'BOOLEAN': + return extractBoolean(variable.valuesByMode[modeId]); + case 'FLOAT': + return extractFloat(variable, modeId); + case 'STRING': + default: + return {}; + } +} diff --git a/packages/figma-to-design-tokens/src/extractors/float.ts b/packages/figma-to-design-tokens/src/extractors/float.ts new file mode 100644 index 0000000..09c5650 --- /dev/null +++ b/packages/figma-to-design-tokens/src/extractors/float.ts @@ -0,0 +1,88 @@ +import { DesignToken } from 'style-dictionary/types'; +import { FigmaExtractedVariable } from '../types'; + +const scopes = (_filterScopes: VariableScope[]) => (scope: VariableScope) => { + return _filterScopes.includes(scope); +}; + +export function extractFloat( + variable: FigmaExtractedVariable, + modeId: string +): DesignToken['$value'] { + const value = variable.valuesByMode[modeId]; + + if ( + typeof value === 'string' || + typeof value === 'boolean' || + (typeof value === 'object' && ('b' in value || 'id' in value)) + ) { + // string | boolean | RGB | RGBA | VariableAlias + // We should not receive these types under float. If that happens, something went wrong during the extraction from Figma. + throw new Error('Unexpected float type'); + } + + const extensions = { + 'pro.designsystemproject': { + scopes: variable.scopes, + }, + }; + + if ( + variable.scopes.some( + scopes([ + 'CORNER_RADIUS', + 'GAP', + 'PARAGRAPH_INDENT', + 'PARAGRAPH_SPACING', + 'STROKE_FLOAT', + 'WIDTH_HEIGHT', + ]) + ) + ) { + return { + $type: 'dimension', + $value: `${value}px`, + extensions, + }; + } + + if (variable.scopes.every(scopes(['FONT_WEIGHT']))) { + return { + $type: 'fontWeight', + $value: value, + extensions, + }; + } + + if (variable.scopes.every(scopes(['LETTER_SPACING']))) { + return { + $type: 'letterSpacing', + $value: `${value}px`, + extensions, + }; + } + + if (variable.scopes.every(scopes(['LINE_HEIGHT']))) { + return { + $type: 'lineHeight', + $value: `${value}px`, + extensions, + }; + } + + if (variable.scopes.every(scopes(['FONT_SIZE']))) { + return { + $type: 'fontSize', + $value: `${value}px`, + extensions, + }; + } + + // All scopes + + return { + $type: 'number', + $value: value, + extensions, + }; +} diff --git a/packages/figma-to-design-tokens/src/extractors/string.ts b/packages/figma-to-design-tokens/src/extractors/string.ts new file mode 100644 index 0000000..e69de29 diff --git a/packages/figma-to-design-tokens/src/figma-variables.json b/packages/figma-to-design-tokens/src/figma-variables.json new file mode 100644 index 0000000..440b860 --- /dev/null +++ b/packages/figma-to-design-tokens/src/figma-variables.json @@ -0,0 +1,197 @@ +[ + { + "id": "VariableCollectionId:0:3", + "defaultModeId": "0:0", + "hiddenFromPublishing": false, + "key": "3f006b7a91efbc3c1e9d79f5401ebdd09757b762", + "modes": [ + { + "name": "Mode 1", + "modeId": "0:0" + } + ], + "name": "Primitives", + "remote": false, + "variableIds": [ + "VariableID:76:27", + "VariableID:351:2", + "VariableID:351:3", + "VariableID:351:4", + "VariableID:433:2" + ], + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "color/background/primary", + "resolvedType": "COLOR", + "valuesByMode": { + "0:0": { + "r": 1, + "g": 0, + "b": 0, + "a": 1 + } + }, + "id": "VariableID:76:27", + "key": "365bbe2de64765da1f475cc61fccda4049ea9f66", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:0:3" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Radius", + "resolvedType": "FLOAT", + "valuesByMode": { + "0:0": 8 + }, + "id": "VariableID:351:2", + "key": "c781f1e74882b64abf921fd1c0dc9db56dace70a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:0:3" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Label", + "resolvedType": "STRING", + "valuesByMode": { + "0:0": "Brand" + }, + "id": "VariableID:351:3", + "key": "c6832af95aafb2ddc52f1daf72a5ce87f92efdd8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:0:3" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Clicked", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "0:0": true + }, + "id": "VariableID:351:4", + "key": "debee2668b2391ac212e59d38f956ff32295556a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:0:3" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "color/background/secondary", + "resolvedType": "COLOR", + "valuesByMode": { + "0:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:433:2", + "key": "45ae7151aa2ae85ba00a35335f27b4903b8c8e75", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:0:3" + } + ] + }, + { + "id": "VariableCollectionId:367:2", + "defaultModeId": "367:0", + "hiddenFromPublishing": false, + "key": "da800af164d583defb046c7bf6b786e59bca4682", + "modes": [ + { + "name": "Mode 1", + "modeId": "367:0" + } + ], + "name": "Semantic", + "remote": false, + "variableIds": ["VariableID:367:4", "VariableID:1459:2"], + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "button/active/background", + "resolvedType": "COLOR", + "valuesByMode": { + "367:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:433:2" + } + }, + "id": "VariableID:367:4", + "key": "168249b4f64609dfa520b9bb67fb6cd32f6c679d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:367:2" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Color", + "resolvedType": "COLOR", + "valuesByMode": { + "367:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:1459:2", + "key": "026ed9aeb58f5cb86616ef4fd7f64a90e303adc4", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:367:2" + } + ] + }, + { + "id": "VariableCollectionId:1476:2", + "defaultModeId": "1476:0", + "hiddenFromPublishing": true, + "key": "97a9ba6fa48acdfd2c2b6f24f47818771fef268f", + "modes": [ + { + "name": "Mode 1", + "modeId": "1476:0" + } + ], + "name": "__config__", + "remote": false, + "variableIds": ["VariableID:1476:3"], + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "fileId", + "resolvedType": "STRING", + "valuesByMode": { + "1476:0": "c4258621-7ca8-42fb-9523-d0464bca95fa" + }, + "id": "VariableID:1476:3", + "key": "b915d19bef1d77054376fc4bd6e74ad66aa945d0", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:1476:2" + } + ] + } +] diff --git a/packages/figma-to-design-tokens/src/filters/not-implemented.ts b/packages/figma-to-design-tokens/src/filters/not-implemented.ts new file mode 100644 index 0000000..52dd480 --- /dev/null +++ b/packages/figma-to-design-tokens/src/filters/not-implemented.ts @@ -0,0 +1,13 @@ +import { FigmaExtractedVariable } from '../types'; + +export function notImplemented(variable: FigmaExtractedVariable) { + switch (variable.resolvedType) { + case 'COLOR': + case 'FLOAT': + return true; + case 'BOOLEAN': + case 'STRING': + default: + return false; + } +} diff --git a/packages/figma-to-design-tokens/src/index.ts b/packages/figma-to-design-tokens/src/index.ts new file mode 100644 index 0000000..f4940e3 --- /dev/null +++ b/packages/figma-to-design-tokens/src/index.ts @@ -0,0 +1 @@ +export * from './converter'; diff --git a/packages/figma-to-design-tokens/src/test.ts b/packages/figma-to-design-tokens/src/test.ts new file mode 100644 index 0000000..ef6e2f5 --- /dev/null +++ b/packages/figma-to-design-tokens/src/test.ts @@ -0,0 +1,201 @@ +import { convertFigmaVariablesToDesignTokens } from './converter'; + +const designTokens = convertFigmaVariablesToDesignTokens([ + { + id: 'VariableCollectionId:0:3', + defaultModeId: '0:0', + hiddenFromPublishing: false, + key: '3f006b7a91efbc3c1e9d79f5401ebdd09757b762', + modes: [ + { + name: 'Mode 1', + modeId: '0:0', + }, + ], + name: 'Primitives', + remote: false, + variableIds: [ + 'VariableID:76:27', + 'VariableID:351:2', + 'VariableID:351:3', + 'VariableID:351:4', + 'VariableID:433:2', + ], + variables: [ + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: false, + name: 'color/background/primary', + resolvedType: 'COLOR', + valuesByMode: { + '0:0': { + r: 1, + g: 0, + b: 0, + a: 1, + }, + }, + id: 'VariableID:76:27', + key: '365bbe2de64765da1f475cc61fccda4049ea9f66', + remote: false, + scopes: ['ALL_SCOPES'], + variableCollectionId: 'VariableCollectionId:0:3', + }, + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: false, + name: 'Radius', + resolvedType: 'FLOAT', + valuesByMode: { + '0:0': 8, + }, + id: 'VariableID:351:2', + key: 'c781f1e74882b64abf921fd1c0dc9db56dace70a', + remote: false, + scopes: ['ALL_SCOPES'], + variableCollectionId: 'VariableCollectionId:0:3', + }, + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: false, + name: 'Label', + resolvedType: 'STRING', + valuesByMode: { + '0:0': 'Brand', + }, + id: 'VariableID:351:3', + key: 'c6832af95aafb2ddc52f1daf72a5ce87f92efdd8', + remote: false, + scopes: ['ALL_SCOPES'], + variableCollectionId: 'VariableCollectionId:0:3', + }, + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: false, + name: 'Clicked', + resolvedType: 'BOOLEAN', + valuesByMode: { + '0:0': true, + }, + id: 'VariableID:351:4', + key: 'debee2668b2391ac212e59d38f956ff32295556a', + remote: false, + scopes: ['ALL_SCOPES'], + variableCollectionId: 'VariableCollectionId:0:3', + }, + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: false, + name: 'color/background/secondary', + resolvedType: 'COLOR', + valuesByMode: { + '0:0': { + r: 1, + g: 1, + b: 1, + a: 1, + }, + }, + id: 'VariableID:433:2', + key: '45ae7151aa2ae85ba00a35335f27b4903b8c8e75', + remote: false, + scopes: ['ALL_SCOPES'], + variableCollectionId: 'VariableCollectionId:0:3', + }, + ], + }, + { + id: 'VariableCollectionId:367:2', + defaultModeId: '367:0', + hiddenFromPublishing: false, + key: 'da800af164d583defb046c7bf6b786e59bca4682', + modes: [ + { + name: 'Mode 1', + modeId: '367:0', + }, + ], + name: 'Semantic', + remote: false, + variableIds: ['VariableID:367:4', 'VariableID:1459:2'], + variables: [ + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: false, + name: 'button/active/background', + resolvedType: 'COLOR', + valuesByMode: { + '367:0': { + type: 'VARIABLE_ALIAS', + id: 'VariableID:433:2', + }, + }, + id: 'VariableID:367:4', + key: '168249b4f64609dfa520b9bb67fb6cd32f6c679d', + remote: false, + scopes: ['ALL_SCOPES'], + variableCollectionId: 'VariableCollectionId:367:2', + }, + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: false, + name: 'Color', + resolvedType: 'COLOR', + valuesByMode: { + '367:0': { + r: 1, + g: 1, + b: 1, + a: 1, + }, + }, + id: 'VariableID:1459:2', + key: '026ed9aeb58f5cb86616ef4fd7f64a90e303adc4', + remote: false, + scopes: ['ALL_SCOPES'], + variableCollectionId: 'VariableCollectionId:367:2', + }, + ], + }, + { + id: 'VariableCollectionId:1476:2', + defaultModeId: '1476:0', + hiddenFromPublishing: true, + key: '97a9ba6fa48acdfd2c2b6f24f47818771fef268f', + modes: [ + { + name: 'Mode 1', + modeId: '1476:0', + }, + ], + name: '__config__', + remote: false, + variableIds: ['VariableID:1476:3'], + variables: [ + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: true, + name: 'fileId', + resolvedType: 'STRING', + valuesByMode: { + '1476:0': 'c4258621-7ca8-42fb-9523-d0464bca95fa', + }, + id: 'VariableID:1476:3', + key: 'b915d19bef1d77054376fc4bd6e74ad66aa945d0', + remote: false, + scopes: [], + variableCollectionId: 'VariableCollectionId:1476:2', + }, + ], + }, +]); + +console.log('🧩 TOKENS', JSON.stringify(designTokens, null, 2)); diff --git a/packages/figma-to-design-tokens/src/theme-figma-variables.json b/packages/figma-to-design-tokens/src/theme-figma-variables.json new file mode 100644 index 0000000..2fcb063 --- /dev/null +++ b/packages/figma-to-design-tokens/src/theme-figma-variables.json @@ -0,0 +1,19679 @@ +[ + { + "id": "VariableCollectionId:25984:295101", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "v10: $ui-background", + "hiddenFromPublishing": false, + "name": "Background/background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:25984:295102", + "key": "2ee6da6c2361d7b9dcddb5d111e5edc9c4d44c8f", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Background/background-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.11999999731779099 + }, + "25984:1": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.11999999731779099 + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.1599999964237213 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.1599999964237213 + } + }, + "id": "VariableID:25984:295104", + "key": "269ca423efce0577a73a5fbbe4110a2110f36ba2", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Background/background-active", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:1": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.4000000059604645 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.4000000059604645 + } + }, + "id": "VariableID:25984:295103", + "key": "6288b15a28d41edaae81ca5b96f919583983f757", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Background/background-selected", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.20000000298023224 + }, + "25984:1": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.20000000298023224 + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.23999999463558197 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.23999999463558197 + } + }, + "id": "VariableID:25984:295105", + "key": "5c0d184d93526bdb3bee597da0f79964d23baf11", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Background/background-selected-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.3199999928474426 + }, + "25984:1": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.3199999928474426 + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.3199999928474426 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.3199999928474426 + } + }, + "id": "VariableID:25984:295106", + "key": "5cf2d4c6d7907583b537699beb81e9a231681a1d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Background/background-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:25984:295108", + "key": "03ff31ee7663813b7228819d1aaac471213dd21f", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Background/background-inverse-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + } + }, + "id": "VariableID:25984:295109", + "key": "4ae7a6ce8ad4cf577230336fdf6309a3173ef6f8", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Background/background-brand", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + } + }, + "id": "VariableID:25984:295107", + "key": "c47595272388e520afc6b843ad3fd7962c481cc0", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:26003:295112", + "key": "66a3ce3f6d1e7eef04d62469d2a07651799675ab", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:26003:295113", + "key": "77645642f09d76e32fcab52783884975777afba5", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26003:295114", + "key": "00c1aa4b693e6d129d4e8ac0793a533a88081d1d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-hover-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b43315ac7bc8daa1a2794476897e3d38fd3f4532/4168:2293" + } + }, + "id": "VariableID:26003:295115", + "key": "476085c8f972d5b9faf30dcf9f14b282150ec6d9", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-hover-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + } + }, + "id": "VariableID:26003:295116", + "key": "f37bb692f97b1c8c314c925b3420a1743dd1ff32", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-hover-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + } + }, + "id": "VariableID:26003:295117", + "key": "9dadb3494e0a4d0ffe1ac0ac1982e2acbd51a016", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-active-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26003:295118", + "key": "2035a341168b8016be4cf3fe7dff9631cd949d52", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-active-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26003:295119", + "key": "05dd0a0aa672cf622ebf92ea264d52da578b036a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-active-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:26003:295120", + "key": "a88b1d4691e1b6ba5ac8c0ac1e713febd6a76253", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-selected-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:26003:295121", + "key": "58c0f614ade76c6edf821c82ceffca0cc372e221", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-selected-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26003:295122", + "key": "4eaeb831fc3742ac73fed626db55f7208b6d3603", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-selected-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26003:295123", + "key": "54d8309aa2d0e60643ca4ef2b3dc69af9a070961", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-selected-hover-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + } + }, + "id": "VariableID:26003:295124", + "key": "2cfd2aa2088b00e6cb0455abe783cc060b0c2718", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-selected-hover-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + } + }, + "id": "VariableID:26003:295125", + "key": "b0ad3fa36919d3ff2a04254dbcebc4aaded9de23", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-selected-hover-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + } + }, + "id": "VariableID:26003:295126", + "key": "e37596489de90ccdb29932f9c5f7b3918d86a657", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-selected-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:26003:295128", + "key": "d5a2a288141a5ad95a63f4a9bb2811d68efca51c", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer/layer-selected-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26003:295127", + "key": "6964d406a5f1f8f2bde99aa867fa583d06f79a27", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:26071:295115", + "key": "4aeee594a01bc45a3e7838aede841e48bba2b93d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26071:295116", + "key": "5668d11ed292ed018bdd7f5a7abb7947ed3e4bc4", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26071:295117", + "key": "903c6ab6de58a17fa311926840a4d99599d3e2d7", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-hover-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + } + }, + "id": "VariableID:26071:295118", + "key": "7d2114300f84abcc682a363b9f65af1de71ebc0e", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-hover-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + } + }, + "id": "VariableID:26071:295119", + "key": "396a887d8b6479ec055467af50d5fa9dc2701d7e", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-hover-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c1d434d7ec2e78628b4245dcb2ae5a8144b06208/4168:2289" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + } + }, + "id": "VariableID:26071:295120", + "key": "2a755187c5cab2d2369642bae36a22f963d3195a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-active-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26071:295121", + "key": "b60a0388e7d3da3aca33cb468d491a1a98217e1d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-active-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:26071:295122", + "key": "e0179f3e892e372e6a9ec592250bc17689caf705", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Layer accent/layer-accent-active-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:26071:295123", + "key": "5b000e4764bb40806a1c865e4253df768ec79d55", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Field/field-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:26071:295125", + "key": "6296e49dedec7395c9b96ec7e27c487f5fbeedf3", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Field/field-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:26071:295126", + "key": "18c5a4c8aa58f60e4c53f49c8aeb9053c8964197", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Field/field-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26071:295127", + "key": "2f31ccbfe6419eed3bebf8f9ee8c733655797b63", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Field/field-hover-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b43315ac7bc8daa1a2794476897e3d38fd3f4532/4168:2293" + } + }, + "id": "VariableID:26071:295128", + "key": "eb999b0ed94f714569b4d6e8b504bd427c7d7688", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Field/field-hover-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + } + }, + "id": "VariableID:26071:295129", + "key": "b500c106db0141c738f625e8a55e20364ef47b7a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Field/field-hover-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + } + }, + "id": "VariableID:26071:295130", + "key": "90371b9c6fb4a6aebb986326365e5d6c578a1219", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-subtle-00", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:26071:295132", + "key": "5b17b69d0213be2931394bd4ccc75876f4ecb5af", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-subtle-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:26071:295133", + "key": "742601bbe34cb7097fcbdb4fed52ef78d9c2e76d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-subtle-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26071:295134", + "key": "df12701b37eb6a6adaae490fb82fa4834cb52ca7", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-subtle-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26071:295135", + "key": "6b64d0a2cfa4079dadcf27148a88225745b6adfe", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-subtle-selected-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26071:295136", + "key": "abf3da829dd971dddbc33b026884f80de5924e3d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-subtle-selected-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26071:295137", + "key": "6baaf5c501f47c2adf94cca3b268a61f972a22f8", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-subtle-selected-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:26071:295138", + "key": "b3326d829195263461d0d7c80c1541854327b5c2", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-strong-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26071:295139", + "key": "36ed7b50ebb5a32ffc509bdcaaf6e722e699e7ca", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-strong-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:26071:295140", + "key": "fd1bf306cbe4a0c24018573f2abbca0d12a525c9", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-strong-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + } + }, + "id": "VariableID:26071:295141", + "key": "ee01fed8a9b207461e5f9bc31637843f68605066", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-tile-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26071:295142", + "key": "a4afba5ed9e8f63d17fcc17258854cafd53da6e6", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-tile-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26071:295143", + "key": "f6e8efd3c9c342d3059a8f1aec56746a66d5b824", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-tile-03", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:26071:295144", + "key": "b7caecd06080347fdf7d41d622b134f80b8c5c81", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:26071:295145", + "key": "d4efc7d7b7401839e4f60f7a06f05786db4cc0fc", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:26071:295146", + "key": "6f1df42b290909435adee5e1d2796d98d2eda1d3", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Border/border-interactive", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:26071:295147", + "key": "60a7d62fb1ad8becb105e29ad9d7db4bec8b1499", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text-primary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:26071:295222", + "key": "5aa9893cba5166ceeb1047312047514eebfa8ae2", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text-secondary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + } + }, + "id": "VariableID:26071:295223", + "key": "808fe8ac16dd20d4a996d86a3b5ce58398d23f08", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text-placeholder", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26071:295225", + "key": "b0bc421f7a8d933fdecb9b91a70b3da0553e14c4", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text-on-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:26071:295226", + "key": "d218ee9cbce378ed21821b96947c5cfb1e3f9e24", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text--on-color-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.25 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.25 + } + }, + "id": "VariableID:26071:295227", + "key": "208ccef1645bbcea265157aeb7454c2c7b819d97", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text-helper", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:26071:295228", + "key": "5e3df1f9597c85b3155e04643bd1bafbde738393", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text-error", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:dae5826b0ad9160ec8b3178c704cca48997a1c1a/4168:2057" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b02e036c3023cbaa2a4d3606d835b381c7965551/4168:2055" + } + }, + "id": "VariableID:26071:295229", + "key": "458130eec25d8efd48d997fae48004934e4d2314", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:26071:295230", + "key": "63a028d57fd4fca2edc003944faf3c84bced6aab", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Text/text-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.08627451211214066, + "g": 0.08627451211214066, + "b": 0.08627451211214066, + "a": 0.25 + }, + "25984:1": { + "r": 0.08627451211214066, + "g": 0.08627451211214066, + "b": 0.08627451211214066, + "a": 0.25 + }, + "25984:2": { + "r": 0.95686274766922, + "g": 0.95686274766922, + "b": 0.95686274766922, + "a": 0.25 + }, + "25984:3": { + "r": 0.95686274766922, + "g": 0.95686274766922, + "b": 0.95686274766922, + "a": 0.25 + } + }, + "id": "VariableID:26071:295231", + "key": "3b094e64d449d4c07be114413372d0e975874041", + "remote": false, + "scopes": ["ALL_FILLS", "STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Link/link-primary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + } + }, + "id": "VariableID:26071:295207", + "key": "fc62dab9a116681516b07892ea5c4c3350a4f50b", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Link/link-primary-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:2e94e75cb682951016022f0a5c30d312af57b391/4168:2258" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:2e94e75cb682951016022f0a5c30d312af57b391/4168:2258" + } + }, + "id": "VariableID:26071:295208", + "key": "c15feca761023c7a5192e392069a116d7dcb1ec6", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Link/link-secondary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:2e94e75cb682951016022f0a5c30d312af57b391/4168:2258" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:2e94e75cb682951016022f0a5c30d312af57b391/4168:2258" + } + }, + "id": "VariableID:26071:295209", + "key": "a1642e9fd95150611ece35db7f2a8246658cb6b1", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Link/link-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + } + }, + "id": "VariableID:26071:295210", + "key": "feccbdd1276e1b2da135788c08481401108d6c21", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Link/link-visited", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:17cd40fea7c5cf8929aa5ccdb3e6938f8791b45c/4168:2063" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:17cd40fea7c5cf8929aa5ccdb3e6938f8791b45c/4168:2063" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf8b9b7feb1e2f26c02e696ba2e34ac0fa20c281/4168:2067" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf8b9b7feb1e2f26c02e696ba2e34ac0fa20c281/4168:2067" + } + }, + "id": "VariableID:26071:295211", + "key": "48cf467b127c8aded6dd10317cfcea943e7c3606", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Icon/icon-primary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:26071:295215", + "key": "ef95d613404e6e6972d34cb58fc7acb8d1a8fda7", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Icon/icon-secondary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + } + }, + "id": "VariableID:26071:295216", + "key": "40f5becc3ce473029c8d08d8fbec82a26ca3d886", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Icon/icon-on-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:26071:295217", + "key": "c524630709a50a0941dd69faabf53dda94f633bd", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Icon/icon-on-color-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.25 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.25 + } + }, + "id": "VariableID:26071:295218", + "key": "9815de74e18476f97a53b1745b95d9b6db6b0303", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Icon/icon-interactive", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:26071:295219", + "key": "441ef5f4bf9eae33923f04acfab575fc0f386927", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Icon/icon-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:26071:295220", + "key": "cf67ee2ce2cf6d3d255ba71670ba36a181a1356c", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Icon/icon-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.08627451211214066, + "g": 0.08627451211214066, + "b": 0.08627451211214066, + "a": 0.25 + }, + "25984:1": { + "r": 0.08627451211214066, + "g": 0.08627451211214066, + "b": 0.08627451211214066, + "a": 0.25 + }, + "25984:2": { + "r": 0.95686274766922, + "g": 0.95686274766922, + "b": 0.95686274766922, + "a": 0.25 + }, + "25984:3": { + "r": 0.95686274766922, + "g": 0.95686274766922, + "b": 0.95686274766922, + "a": 0.25 + } + }, + "id": "VariableID:26071:295221", + "key": "45b9fdcf7d1148552e68a3170154292631f79786", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-primary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + } + }, + "id": "VariableID:26071:295233", + "key": "93441dc1e1bef46a3b03b931cfad4ba9c8aeac05", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-primary-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1114478d2c2737758ecea2525cf8234dab7799f6/4168:2279" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1114478d2c2737758ecea2525cf8234dab7799f6/4168:2279" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1114478d2c2737758ecea2525cf8234dab7799f6/4168:2279" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1114478d2c2737758ecea2525cf8234dab7799f6/4168:2279" + } + }, + "id": "VariableID:26071:295234", + "key": "47dd6f4ec60b26fb3b93a5b81eb9025eb6793c04", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-primary-active", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + } + }, + "id": "VariableID:26071:295235", + "key": "dd386fa463c06e5fb1ccf3498c25f0cb6d7cab5b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-secondary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26071:295236", + "key": "5d5dee0da16ed6cca12c3abde616c7e9e5ecda85", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-secondary-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + } + }, + "id": "VariableID:26071:295237", + "key": "41ee841768313e2dfe741a79380d5708da4f847f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-secondary-active", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:26071:295238", + "key": "34ffab8e6268ca2638361ae032854921edf0a64e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-tertiary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:26071:295239", + "key": "cbc19cdcdce5f6c814f37207616a1b096fd31eaa", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-tertiary-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1114478d2c2737758ecea2525cf8234dab7799f6/4168:2279" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1114478d2c2737758ecea2525cf8234dab7799f6/4168:2279" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:26071:295240", + "key": "4feb4bc75d6542b60662dc4c62f143a881c5713a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-tertiary-active", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + } + }, + "id": "VariableID:26071:295241", + "key": "ef0f766147c95e9447163a81ae8be5c749ab0518", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-danger-primary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + } + }, + "id": "VariableID:26071:295243", + "key": "a7cc19406ee7dc6d141e1713cad8a47dd4baa7aa", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-danger-secondary", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b02e036c3023cbaa2a4d3606d835b381c7965551/4168:2055" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + } + }, + "id": "VariableID:26071:295244", + "key": "bba64debff4a6fc6cd3bf0c562902b97c9dd4403", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-danger-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:60f3147f3bb33e125c737a6ed578ce8b3ee71f61/4168:2354" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:60f3147f3bb33e125c737a6ed578ce8b3ee71f61/4168:2354" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:60f3147f3bb33e125c737a6ed578ce8b3ee71f61/4168:2354" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:60f3147f3bb33e125c737a6ed578ce8b3ee71f61/4168:2354" + } + }, + "id": "VariableID:26071:295245", + "key": "f3317d6c7a24e01ba27690577beb4e47e6d2ec36", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-danger-active", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e9422b7bf491b177705091a0288ccdcfe64b464f/4168:2049" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e9422b7bf491b177705091a0288ccdcfe64b464f/4168:2049" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e9422b7bf491b177705091a0288ccdcfe64b464f/4168:2049" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e9422b7bf491b177705091a0288ccdcfe64b464f/4168:2049" + } + }, + "id": "VariableID:26071:295246", + "key": "3f52dc4982a9f12b18853ab9d53dcd30af5a5b53", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-separator", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:26071:295247", + "key": "175b0e954ab5deabb68057585226efb1600f25ee", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Button/button-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26071:295248", + "key": "4d5c4ef274278e364b1f03cb2ccf3c342abaaa33", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-error", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b02e036c3023cbaa2a4d3606d835b381c7965551/4168:2055" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + } + }, + "id": "VariableID:26071:295192", + "key": "c94479b28bebab66a92d6318ad6114165f528259", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-success", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:03636e6f3cab50cead2dc76ce7ded48e07287f45/4168:2160" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:03636e6f3cab50cead2dc76ce7ded48e07287f45/4168:2160" + } + }, + "id": "VariableID:26071:295193", + "key": "59339e1146764bb71cec12fbdfb9e78aad602d1e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-warning", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + } + }, + "id": "VariableID:26071:295194", + "key": "586b47a57a744beab026baa1e0d051de8bcd557f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-info", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:26071:295195", + "key": "aa503141a1f1e50e10eb733d70fa60b9b2d754b4", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-error-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + } + }, + "id": "VariableID:26071:295196", + "key": "e5757b5ac1f87bb11f1dfde571da6aa9a0ce5272", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-success-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:03636e6f3cab50cead2dc76ce7ded48e07287f45/4168:2160" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:03636e6f3cab50cead2dc76ce7ded48e07287f45/4168:2160" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + } + }, + "id": "VariableID:26071:295197", + "key": "7d18b2ac777eefac9dff45d8e734a417b382d6b8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-warning-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + } + }, + "id": "VariableID:26071:295198", + "key": "534c8c834ce90d4d952c23c37771a972771f183d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-info-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + } + }, + "id": "VariableID:26071:295199", + "key": "2ba734d9f7bc45e5dd0d10c1bc20fa01f0183951", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-caution-major", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5e6f78042b4f8db6c7aa460e510206cdaeb07ac3/4168:2023" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5e6f78042b4f8db6c7aa460e510206cdaeb07ac3/4168:2023" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5e6f78042b4f8db6c7aa460e510206cdaeb07ac3/4168:2023" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5e6f78042b4f8db6c7aa460e510206cdaeb07ac3/4168:2023" + } + }, + "id": "VariableID:30971:253", + "key": "4fc85bfc6e19cfe4f22dc96a4b61c0e8304bd88c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-caution-minor", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + } + }, + "id": "VariableID:30971:254", + "key": "a94132fe38475832fe3c7201922b4ac65c52c628", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Support/support-undefined", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:17cd40fea7c5cf8929aa5ccdb3e6938f8791b45c/4168:2063" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:17cd40fea7c5cf8929aa5ccdb3e6938f8791b45c/4168:2063" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c888e1e34b38f266409bbf874d32e4b096b65604/4168:2074" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c888e1e34b38f266409bbf874d32e4b096b65604/4168:2074" + } + }, + "id": "VariableID:30971:255", + "key": "fd4bfda90b4afd55a042988153d4b9eb9c1bfc22", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Focus/focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:26071:295178", + "key": "f6498f45572320da2e4c08cc64a05dae06d3b6dc", + "remote": false, + "scopes": ["STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Focus/focus-inset", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:26071:295179", + "key": "1a2ab7320bd37e9fff046d727792c404b39c8bd7", + "remote": false, + "scopes": ["STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Focus/focus-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + } + }, + "id": "VariableID:26071:295181", + "key": "5a31b4c39396588632190cf92dec9d9c23f416e5", + "remote": false, + "scopes": ["STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Miscellaneous/interactive", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:26071:295182", + "key": "73947bd7eb3ec2092f3fce45642a4f695c0c2ca0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Miscellaneous/highlight", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:11874e2e3c45c739402709e711d9bd198ca8462f/4168:2249" + } + }, + "id": "VariableID:26071:295184", + "key": "a544af3c89d9f1c3135277106c09373d97093fe3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Miscellaneous/toggle-off", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:26071:295188", + "key": "98201232f0508f046eb07263832e4ec876807397", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Miscellaneous/overlay", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.08627451211214066, + "g": 0.08627451211214066, + "b": 0.08627451211214066, + "a": 0.5 + }, + "25984:1": { + "r": 0.08627451211214066, + "g": 0.08627451211214066, + "b": 0.08627451211214066, + "a": 0.5 + }, + "25984:2": { + "r": 0.08627451211214066, + "g": 0.08627451211214066, + "b": 0.08627451211214066, + "a": 0.699999988079071 + }, + "25984:3": { + "r": 0.08627451211214066, + "g": 0.08627451211214066, + "b": 0.08627451211214066, + "a": 0.699999988079071 + } + }, + "id": "VariableID:26071:295189", + "key": "a666cdc08c6c0020795dd0b56e66463319f21e22", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Miscellaneous/skeleton-element", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26071:295190", + "key": "e2947284f8f0ef048e45b8e4c0de8f28c858c4f1", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Miscellaneous/skeleton-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a49b7c97a330141ee74af2e938facec6eeb32458/4168:2285" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + } + }, + "id": "VariableID:26071:295191", + "key": "5093ad9ab3898e43e7cbc37c4e0b62f9506d2a5f", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-info-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0a8f86036302507e2f3b9b6b0d424693fe4dd090/4168:2262" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0a8f86036302507e2f3b9b6b0d424693fe4dd090/4168:2262" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:29178:116", + "key": "6291bb19ec1739cb5d1b811d6ee204b652c22ce6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-info-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0, + "g": 0.26274511218070984, + "b": 0.8078431487083435, + "a": 0.30000001192092896 + }, + "25984:1": { + "r": 0, + "g": 0.26274511218070984, + "b": 0.8078431487083435, + "a": 0.30000001192092896 + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.5 + } + }, + "id": "VariableID:29178:117", + "key": "73f5a978f9b99cd619f525a04159361f244bcf3e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-success-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:07779ee24a0cce9ce5931f5c46f70a1de89371a3/4168:2165" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:07779ee24a0cce9ce5931f5c46f70a1de89371a3/4168:2165" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "r": 0.14901961386203766, + "g": 0.14901961386203766, + "b": 0.14901961386203766, + "a": 1 + } + }, + "id": "VariableID:29178:118", + "key": "de4b95a43682987103b8692bc5d0ff4d05595c97", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-success-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.1411764770746231, + "g": 0.6313725709915161, + "b": 0.2823529541492462, + "a": 0.30000001192092896 + }, + "25984:1": { + "r": 0.1411764770746231, + "g": 0.6313725709915161, + "b": 0.2823529541492462, + "a": 0.30000001192092896 + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "r": 0.25882354378700256, + "g": 0.7450980544090271, + "b": 0.3960784375667572, + "a": 0.5 + } + }, + "id": "VariableID:29178:119", + "key": "6d0ee4f7a0cc94a608f710482c33ea6db1d4dd8f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-error-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4e1ef511396716bbc917784dbe2c2ae215ec8012/4168:2062" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4e1ef511396716bbc917784dbe2c2ae215ec8012/4168:2062" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:29178:120", + "key": "155f98d32aaf9f52dd83580053ec4e409c431a2f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-error-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.8549019694328308, + "g": 0.11764705926179886, + "b": 0.1568627506494522, + "a": 0.30000001192092896 + }, + "25984:1": { + "r": 0.8549019694328308, + "g": 0.11764705926179886, + "b": 0.1568627506494522, + "a": 0.30000001192092896 + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "r": 1, + "g": 0.5137255191802979, + "b": 0.5372549295425415, + "a": 0.5 + } + }, + "id": "VariableID:29178:121", + "key": "38334801e85f7e1321b985f61b6eb9795f1ed568", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-warning-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:daef08ba2e3619bec08d79f6f0a968a5b57e6840/4168:2036" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:daef08ba2e3619bec08d79f6f0a968a5b57e6840/4168:2036" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:29178:122", + "key": "0be589a942557a07a081d70ef297b64ec61948ea", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-warning-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.9450980424880981, + "g": 0.7607843279838562, + "b": 0.10588235408067703, + "a": 0.30000001192092896 + }, + "25984:1": { + "r": 0.9450980424880981, + "g": 0.7607843279838562, + "b": 0.10588235408067703, + "a": 0.30000001192092896 + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:3": { + "r": 0.9450980424880981, + "g": 0.7607843279838562, + "b": 0.10588235408067703, + "a": 0.5 + } + }, + "id": "VariableID:29178:123", + "key": "b049e87ddef1cff399f0d4a59728a9fa3640fde3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-action-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a9f6511915767de0967e54f68e135352a0875501/4168:2303" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b43315ac7bc8daa1a2794476897e3d38fd3f4532/4168:2293" + } + }, + "id": "VariableID:29284:197652", + "key": "3c183025dbb120a4cf86a75ca85af307b3406168", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-action-tertiary-inverse", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + } + }, + "id": "VariableID:29284:197653", + "key": "8d61f9d97f250cc18a656291b8aad7a24e3c29d8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-action-tertiary-inverse-text", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cc6a21081cecbc9d8d6138dc4cf7802af2f83619/4168:2208" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:29284:197654", + "key": "71d0d85b14ce820c60cf83714d883fe4c7c7bb52", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Notification/notification-action-tertiary-inverse-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295115" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295115" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + } + }, + "id": "VariableID:29284:197655", + "key": "fa0ea8c327d83d845fd8b3fe02e04ab5927f2f35", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + } + }, + "id": "VariableID:26423:321172", + "key": "da0d0effa755c12f4acae889e05fe2cc92f18125", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + } + }, + "id": "VariableID:26423:321173", + "key": "7526b654fe1f5988579e55b3fe16e26f633464fd", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5a40ab377e6a06ef3c3c6c0db3f4a4b0bce4b53b/4168:2275" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5a40ab377e6a06ef3c3c6c0db3f4a4b0bce4b53b/4168:2275" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:dd4bede44b8875f7ae65f739f0f9dfc64e723ff4/4168:2280" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:dd4bede44b8875f7ae65f739f0f9dfc64e723ff4/4168:2280" + } + }, + "id": "VariableID:26423:321174", + "key": "b9589d9deaa3fa30a3afccef54899c232ffce9f5", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + } + }, + "id": "VariableID:41080:382090", + "key": "e8fb03b6d710c2b6592e98422b6ac8222f7a3f93", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382089", + "key": "55c1ea9cfd2fbdb281dfe500daac230b9cca7071", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382118", + "key": "ab7d14519ecb302cf293587ea5a4ea0205164bee", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382131", + "key": "541292a4277fe3812f12d313bd5af0a4b0b2f2e3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382157", + "key": "9ac6d5a312e4a4f50f4dc8f765ce67dfbf7a67a0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:42928:9303", + "key": "50de0a6366867a0e85ed55a31160c176d8a6466e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Blue/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9366", + "key": "fdd316d5cedd7d4c74f89e41772a0b96f2641012", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:19f67ec6f10c247c15c5115bac17b6540864088f/4168:2184" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:19f67ec6f10c247c15c5115bac17b6540864088f/4168:2184" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:56ffed17a0689bfdf6de4c3e06a99257ea05b5b9/4168:2173" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:56ffed17a0689bfdf6de4c3e06a99257ea05b5b9/4168:2173" + } + }, + "id": "VariableID:26423:321203", + "key": "a0777f5fa36dc5979a92c3cd9e4e8503e7568b61", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:56ffed17a0689bfdf6de4c3e06a99257ea05b5b9/4168:2173" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:56ffed17a0689bfdf6de4c3e06a99257ea05b5b9/4168:2173" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:19f67ec6f10c247c15c5115bac17b6540864088f/4168:2184" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:19f67ec6f10c247c15c5115bac17b6540864088f/4168:2184" + } + }, + "id": "VariableID:26423:321204", + "key": "f500c489a91d6086bfd68c397937e6ffd4cf6440", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:94f1814af371275000b3a775c75ee60b694733f9/4168:2314" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:94f1814af371275000b3a775c75ee60b694733f9/4168:2314" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:026087b168e40dcc1e0b56863f58d3a558986814/4168:2319" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:026087b168e40dcc1e0b56863f58d3a558986814/4168:2319" + } + }, + "id": "VariableID:26423:321205", + "key": "0029c4cb9f6ad83518e9f49ebd5207be73e5fd4a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:56ffed17a0689bfdf6de4c3e06a99257ea05b5b9/4168:2173" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:56ffed17a0689bfdf6de4c3e06a99257ea05b5b9/4168:2173" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:19f67ec6f10c247c15c5115bac17b6540864088f/4168:2184" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:19f67ec6f10c247c15c5115bac17b6540864088f/4168:2184" + } + }, + "id": "VariableID:41080:382091", + "key": "7bc51d4c5690c6d02c8ef968492157ef4f6bd838", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382092", + "key": "e81d97add23651946e958451c09a00998ab5e4ca", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382119", + "key": "d87e6b66d7ae03506b7c95cc78b184459ef63d42", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382132", + "key": "c9ea4f7235927cce4b9a3fcad41919bcd0db7e1d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382156", + "key": "5518b5a9b103f1d05b0bbc7c6f020e6aee555d49", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:076811bc2009c677e2c6fa4442ce0be5e937a978/4168:2180" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:076811bc2009c677e2c6fa4442ce0be5e937a978/4168:2180" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1e9e3957c423a881c3e9de6c75b4e657c1189867/4168:2177" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1e9e3957c423a881c3e9de6c75b4e657c1189867/4168:2177" + } + }, + "id": "VariableID:42928:9304", + "key": "5d285477d63225859910b172e8072a40c548847c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cyan/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9368", + "key": "5c1d3e3d17b4ca06f0ed1e45fb32f14ae01d15e8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e52dbeeb24eb4d568c791dd0c09547742d2a2deb/4168:2045" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e52dbeeb24eb4d568c791dd0c09547742d2a2deb/4168:2045" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36b3d850294c8a238804a7e5f73c4498a475a3d4/4168:2040" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36b3d850294c8a238804a7e5f73c4498a475a3d4/4168:2040" + } + }, + "id": "VariableID:26423:321226", + "key": "b738c5681ab26d87b2f7a5c21d3f527893a9e7bf", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36b3d850294c8a238804a7e5f73c4498a475a3d4/4168:2040" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36b3d850294c8a238804a7e5f73c4498a475a3d4/4168:2040" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e52dbeeb24eb4d568c791dd0c09547742d2a2deb/4168:2045" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e52dbeeb24eb4d568c791dd0c09547742d2a2deb/4168:2045" + } + }, + "id": "VariableID:26423:321227", + "key": "e8f8f15112d7c8968586721ce74af3de1042be0e", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3bec084094e4ad3280d6736b6bc7b7a2899a9e43/4168:2359" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3bec084094e4ad3280d6736b6bc7b7a2899a9e43/4168:2359" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36ccacd865e153f67b6fb6fe99d1ed97c4a2451f/4168:2364" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36ccacd865e153f67b6fb6fe99d1ed97c4a2451f/4168:2364" + } + }, + "id": "VariableID:26423:321228", + "key": "1377e76793ad277799706a64554297f333b41c7c", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36b3d850294c8a238804a7e5f73c4498a475a3d4/4168:2040" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36b3d850294c8a238804a7e5f73c4498a475a3d4/4168:2040" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e52dbeeb24eb4d568c791dd0c09547742d2a2deb/4168:2045" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e52dbeeb24eb4d568c791dd0c09547742d2a2deb/4168:2045" + } + }, + "id": "VariableID:41080:382093", + "key": "ff935ebb4079144791f0ada6a5ff0f6fd5d4cb05", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382094", + "key": "2c102f72bca9d8a838db73ecae53552ef3126584", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382120", + "key": "e9f25444e01f7dce50943bb1ccfb01fe9e913814", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382133", + "key": "68892fd7c53c83a1a3c82866342ed3dfbb5a740b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382155", + "key": "2836a4980701a350f0d7cde9dcf013367a47b237", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a6bcbaa4d2c417cc9e66e7e4b754dd3428cfb190/4168:2043" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a6bcbaa4d2c417cc9e66e7e4b754dd3428cfb190/4168:2043" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1301e23d6c46041abf0ce630f5c4b95463c55ebb/4168:2042" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1301e23d6c46041abf0ce630f5c4b95463c55ebb/4168:2042" + } + }, + "id": "VariableID:42928:9305", + "key": "b9d8fc2f1a7821b7522f888f4ba3ad23052e7638", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Teal/tag-border-disabled-operational-variant", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9369", + "key": "e8488dfb7a07d0d417236a14f5fd893fb0634da5", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0928511d305646cc5957a084680a77e265e5f8b9/4168:2164" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0928511d305646cc5957a084680a77e265e5f8b9/4168:2164" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1a815e4f4d360085382f71639fc32e1cd28009f5/4168:2153" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1a815e4f4d360085382f71639fc32e1cd28009f5/4168:2153" + } + }, + "id": "VariableID:26423:321210", + "key": "0a6737ae1844ea2ff4e3a34e909522f9744462c2", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1a815e4f4d360085382f71639fc32e1cd28009f5/4168:2153" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1a815e4f4d360085382f71639fc32e1cd28009f5/4168:2153" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0928511d305646cc5957a084680a77e265e5f8b9/4168:2164" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0928511d305646cc5957a084680a77e265e5f8b9/4168:2164" + } + }, + "id": "VariableID:26423:321211", + "key": "25015c4fd92231bd498525a24e7255cce03a4f58", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:695c4d0397f642c17bc7c5add042eb5075ca1f1a/4168:2323" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:695c4d0397f642c17bc7c5add042eb5075ca1f1a/4168:2323" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:aece5019b84fc8dc6cbcc39d300bf4d317bbf46a/4168:2328" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:aece5019b84fc8dc6cbcc39d300bf4d317bbf46a/4168:2328" + } + }, + "id": "VariableID:26423:321212", + "key": "2bdf74e1c1e8e9ab834ca21f6a0c4eefb5b1314b", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1a815e4f4d360085382f71639fc32e1cd28009f5/4168:2153" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1a815e4f4d360085382f71639fc32e1cd28009f5/4168:2153" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0928511d305646cc5957a084680a77e265e5f8b9/4168:2164" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0928511d305646cc5957a084680a77e265e5f8b9/4168:2164" + } + }, + "id": "VariableID:41080:382095", + "key": "6aebf21b5c2282f21ab594b585b9e46aec1382bd", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382096", + "key": "b8592fc58d8d74f5cb0697ccf8acefbde58d447e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382121", + "key": "a580be0f2515d21a917e3f5473bd9c60c9d4b74b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382134", + "key": "8961ed40592c371a9c9e8dd828ad5f815a0a83b6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382154", + "key": "2d1dd20f82d897e283adb2c39a4eb5adc92ca629", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:03636e6f3cab50cead2dc76ce7ded48e07287f45/4168:2160" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:03636e6f3cab50cead2dc76ce7ded48e07287f45/4168:2160" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + } + }, + "id": "VariableID:42928:9307", + "key": "ed5dcd363a6504aa69bb45e9466dad4cac50923f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Green/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9370", + "key": "6c7e112c560a8c8fc0f885cda6e9f7723e644296", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bd50fc264ff2ec2722e51dcc113310f1c4b2fef4/4168:2071" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bd50fc264ff2ec2722e51dcc113310f1c4b2fef4/4168:2071" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:98fafadce28e6b12597c9be5a25ee764cfded018/4168:2070" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:98fafadce28e6b12597c9be5a25ee764cfded018/4168:2070" + } + }, + "id": "VariableID:26423:321223", + "key": "73fef3ed5cdc94d7de713c614f8de21b079f00b0", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:98fafadce28e6b12597c9be5a25ee764cfded018/4168:2070" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:98fafadce28e6b12597c9be5a25ee764cfded018/4168:2070" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bd50fc264ff2ec2722e51dcc113310f1c4b2fef4/4168:2071" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bd50fc264ff2ec2722e51dcc113310f1c4b2fef4/4168:2071" + } + }, + "id": "VariableID:26423:321224", + "key": "9c2f505f25d4f4d01f2715741e522c4dd9033643", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bcd60b5b1b72d1a0d6b49bcacfba7847e2aa6cf7/4168:2341" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bcd60b5b1b72d1a0d6b49bcacfba7847e2aa6cf7/4168:2341" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:57e79e84a684052daf94261a0faa20334ff2e0d1/4168:2346" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:57e79e84a684052daf94261a0faa20334ff2e0d1/4168:2346" + } + }, + "id": "VariableID:26423:321225", + "key": "edae2a0556f35cd60f64e4fbe81672c882a8b10c", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:98fafadce28e6b12597c9be5a25ee764cfded018/4168:2070" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:98fafadce28e6b12597c9be5a25ee764cfded018/4168:2070" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bd50fc264ff2ec2722e51dcc113310f1c4b2fef4/4168:2071" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bd50fc264ff2ec2722e51dcc113310f1c4b2fef4/4168:2071" + } + }, + "id": "VariableID:41080:382097", + "key": "3337565e8efe0dde0c0c78aff3d2f10947725728", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382098", + "key": "ae8d042671f91c68fe54656ed55ae46b3d1db534", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382122", + "key": "94b3bc406888ed30ec8a0c776fcfcf6995a09263", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382135", + "key": "25355207c62a6732e7aa2e7e695d417a3083e907", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382153", + "key": "b838f61c43d8aea92ac9b7de59e2494e11e8b9b1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf8b9b7feb1e2f26c02e696ba2e34ac0fa20c281/4168:2067" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf8b9b7feb1e2f26c02e696ba2e34ac0fa20c281/4168:2067" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c888e1e34b38f266409bbf874d32e4b096b65604/4168:2074" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c888e1e34b38f266409bbf874d32e4b096b65604/4168:2074" + } + }, + "id": "VariableID:42928:9308", + "key": "de8a44841da1530cc2e7be8e38c3d7a1844b9e63", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Purple/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9371", + "key": "f3c082acb26d2a6b3ce77d3ad7726ed0beacf8c7", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:560de491d1efb8accdc1fad12f2e7f8c9b63796c/4168:2093" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:560de491d1efb8accdc1fad12f2e7f8c9b63796c/4168:2093" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:91358c585dfaef6d9b0e69f0d72e43e9a6b86834/4168:2092" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:91358c585dfaef6d9b0e69f0d72e43e9a6b86834/4168:2092" + } + }, + "id": "VariableID:26423:321217", + "key": "9cc149d685451b8ad5cd3eaf7e6433f51483a29e", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:91358c585dfaef6d9b0e69f0d72e43e9a6b86834/4168:2092" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:91358c585dfaef6d9b0e69f0d72e43e9a6b86834/4168:2092" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:560de491d1efb8accdc1fad12f2e7f8c9b63796c/4168:2093" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:560de491d1efb8accdc1fad12f2e7f8c9b63796c/4168:2093" + } + }, + "id": "VariableID:26423:321218", + "key": "d8adc843bec54afa8680d443180d4a044827405b", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4241479ab6c4ba0db7f33e26dee85fdb1aeaddd9/4168:2332" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4241479ab6c4ba0db7f33e26dee85fdb1aeaddd9/4168:2332" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f6cbb048594a66b230acad0dfdea94964c6245da/4168:2337" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f6cbb048594a66b230acad0dfdea94964c6245da/4168:2337" + } + }, + "id": "VariableID:26423:321219", + "key": "a605f3ccc0ae8e3dae13e867c3c03d873cdc4bfa", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:91358c585dfaef6d9b0e69f0d72e43e9a6b86834/4168:2092" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:91358c585dfaef6d9b0e69f0d72e43e9a6b86834/4168:2092" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:560de491d1efb8accdc1fad12f2e7f8c9b63796c/4168:2093" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:560de491d1efb8accdc1fad12f2e7f8c9b63796c/4168:2093" + } + }, + "id": "VariableID:41080:382099", + "key": "8128641257b6f0fa2c4ec5fa175e5dd8e0a0ce48", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382100", + "key": "66b99a1cd51e32d02a7dedb656ce667618fab131", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382123", + "key": "99bc84acb8d35bc65e9461c520e9e46f0ba7551e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382136", + "key": "daef343facabcd5dc2c885b54475bb0f886c2557", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382152", + "key": "419a7d682eafd85ac125c56695481dcd9a4efbff", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3567547e3bc820dc15605a756f25d057ffcb65ff/4168:2089" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3567547e3bc820dc15605a756f25d057ffcb65ff/4168:2089" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8befd6eb4964e599fe74f383892e5fb61dd14325/4168:2096" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8befd6eb4964e599fe74f383892e5fb61dd14325/4168:2096" + } + }, + "id": "VariableID:42928:9309", + "key": "d91ff7ce32964d79b568c49eea39233857b7f00b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Magenta/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9372", + "key": "04a9fb1db7799886e26b5bd1e7ea821de41213d4", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:db2dfb48b4084d59d0b1ff9ee1c9edf2edc35a9f/4168:2060" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:db2dfb48b4084d59d0b1ff9ee1c9edf2edc35a9f/4168:2060" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:72387ab456405c3b41daba46ca2ee1f36b4410a2/4168:2050" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:72387ab456405c3b41daba46ca2ee1f36b4410a2/4168:2050" + } + }, + "id": "VariableID:26423:321220", + "key": "185f94fefae1b9153ef35a417305f51eb2502df2", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:72387ab456405c3b41daba46ca2ee1f36b4410a2/4168:2050" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:72387ab456405c3b41daba46ca2ee1f36b4410a2/4168:2050" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:db2dfb48b4084d59d0b1ff9ee1c9edf2edc35a9f/4168:2060" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:db2dfb48b4084d59d0b1ff9ee1c9edf2edc35a9f/4168:2060" + } + }, + "id": "VariableID:26423:321221", + "key": "cb3307734e3d250613950d714db7b93fac960574", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8ed1011cdfa913627e1e8d6c29c6ed6c10a9349f/4168:2350" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8ed1011cdfa913627e1e8d6c29c6ed6c10a9349f/4168:2350" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:18d3b4a83251069465299f9f1c28010715b107f7/4168:2355" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:18d3b4a83251069465299f9f1c28010715b107f7/4168:2355" + } + }, + "id": "VariableID:26423:321222", + "key": "8c68ce1ac0bb5e2e490127429d5ae02bacb4f6b5", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:72387ab456405c3b41daba46ca2ee1f36b4410a2/4168:2050" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:72387ab456405c3b41daba46ca2ee1f36b4410a2/4168:2050" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:db2dfb48b4084d59d0b1ff9ee1c9edf2edc35a9f/4168:2060" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:db2dfb48b4084d59d0b1ff9ee1c9edf2edc35a9f/4168:2060" + } + }, + "id": "VariableID:41080:382101", + "key": "a3735b3c63b73f7a1ec7fde5c98d214b4957266c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382102", + "key": "a9fdf1c0f94c7ddbd5be9a554c1f5761dffc3576", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382124", + "key": "d7a3c607eff57f2a29736c867d82843615e5fdcc", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382137", + "key": "32f8af3fb4dc64fea9f481df9ce76ff96cb60181", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382151", + "key": "3a9323b674f51a715d7a7cd974f11af3c560ed00", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b02e036c3023cbaa2a4d3606d835b381c7965551/4168:2055" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b02e036c3023cbaa2a4d3606d835b381c7965551/4168:2055" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + } + }, + "id": "VariableID:42928:9311", + "key": "e0b882fea6bc91f832d6d9c6b4dc7fef2573494a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Red/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9373", + "key": "bef80e4e36e216c31fa9e470ab0c4535e08d1be5", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:09dc695bc16a4699c0adb084b17106d808ce0b73/4168:2025" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:09dc695bc16a4699c0adb084b17106d808ce0b73/4168:2025" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:82169ae64a779848248a35380f49b61f190de2aa/4168:2020" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:82169ae64a779848248a35380f49b61f190de2aa/4168:2020" + } + }, + "id": "VariableID:38928:280", + "key": "d9c9d4c017d23e9ee45844085f3acf0c4abb1b3f", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:82169ae64a779848248a35380f49b61f190de2aa/4168:2020" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:82169ae64a779848248a35380f49b61f190de2aa/4168:2020" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:09dc695bc16a4699c0adb084b17106d808ce0b73/4168:2025" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:09dc695bc16a4699c0adb084b17106d808ce0b73/4168:2025" + } + }, + "id": "VariableID:38928:281", + "key": "232749a968a8472e6b070213f1fbc4d5b83abe15", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ec71cef9e82880b59ecb56cdccd1f64ae9d0031e/4168:2378" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ec71cef9e82880b59ecb56cdccd1f64ae9d0031e/4168:2378" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e789055e8bfba554ea8881efa4d463e2129b56db/4168:2383" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e789055e8bfba554ea8881efa4d463e2129b56db/4168:2383" + } + }, + "id": "VariableID:38928:282", + "key": "f0619554b3f7fb81d80c9f3ad78d773a50a5e364", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:82169ae64a779848248a35380f49b61f190de2aa/4168:2020" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:82169ae64a779848248a35380f49b61f190de2aa/4168:2020" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:09dc695bc16a4699c0adb084b17106d808ce0b73/4168:2025" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:09dc695bc16a4699c0adb084b17106d808ce0b73/4168:2025" + } + }, + "id": "VariableID:41080:382103", + "key": "c6275ad7e2c2a7ad6164eaaeb0842f08a0081cc6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382104", + "key": "d0649d5dc79a1e517d4200da7cad6389be663a4c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-border- transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382125", + "key": "7a70f2101734fea91d75a2f563df2e293750d3bb", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382138", + "key": "8b9fadb539ba3dab9f1b699cd5e5d789c9f2c696", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382150", + "key": "f1ba577169cf6efab197c32d6763ef63640bda87", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5e6f78042b4f8db6c7aa460e510206cdaeb07ac3/4168:2023" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5e6f78042b4f8db6c7aa460e510206cdaeb07ac3/4168:2023" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a8a96b08a8810a487326f6e09ff1f3d95c671c9b/4168:2022" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a8a96b08a8810a487326f6e09ff1f3d95c671c9b/4168:2022" + } + }, + "id": "VariableID:42928:9312", + "key": "2d8643f8114a65b2400687ee61d4f50eab488e54", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Orange/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9374", + "key": "dbbc518bff4645883c6be4cb474abaaece167300", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7832f5b5ffc6b4aa3a0be208821cddbbd8058ab4/4168:2035" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7832f5b5ffc6b4aa3a0be208821cddbbd8058ab4/4168:2035" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8f2beae6689920d0637137bb16a7b00c58c3907f/4168:2030" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8f2beae6689920d0637137bb16a7b00c58c3907f/4168:2030" + } + }, + "id": "VariableID:38928:274", + "key": "fcb657bc82a6cdc04f4933e857dfa7903370a6c8", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8f2beae6689920d0637137bb16a7b00c58c3907f/4168:2030" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8f2beae6689920d0637137bb16a7b00c58c3907f/4168:2030" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7832f5b5ffc6b4aa3a0be208821cddbbd8058ab4/4168:2035" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7832f5b5ffc6b4aa3a0be208821cddbbd8058ab4/4168:2035" + } + }, + "id": "VariableID:38928:275", + "key": "95e326599a7029ff6416806712d20de937e2d574", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a82e4453c9baf4a659d0a1b81089e2ef75af85a3/4168:2369" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a82e4453c9baf4a659d0a1b81089e2ef75af85a3/4168:2369" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3e3861226b6e8aadda4300097e4ec947462e97a2/4168:2374" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3e3861226b6e8aadda4300097e4ec947462e97a2/4168:2374" + } + }, + "id": "VariableID:38928:276", + "key": "c97e1a1711ae58762077cc2fddfc17a189ed5b94", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8f2beae6689920d0637137bb16a7b00c58c3907f/4168:2030" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8f2beae6689920d0637137bb16a7b00c58c3907f/4168:2030" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7832f5b5ffc6b4aa3a0be208821cddbbd8058ab4/4168:2035" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7832f5b5ffc6b4aa3a0be208821cddbbd8058ab4/4168:2035" + } + }, + "id": "VariableID:41080:382105", + "key": "f56e020ea93810d16a36def7f6059d07483e54e6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382106", + "key": "39b6f583244891b319f2bea66b9d69c5a36154c1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382126", + "key": "c6178f213a31d145e4af2e46b9dd010427a7e99d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382139", + "key": "e572348d3c963e1d723c714703abb9e0ed192140", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382149", + "key": "e8a5ceea12b01dd86007cc02cd147925ba2fedb0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:671676d5b12d1e2925891ec533fb9cc53076edc8/4168:2033" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:671676d5b12d1e2925891ec533fb9cc53076edc8/4168:2033" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e522f593c5eac06a7d5414c8465952757defed1c/4168:2032" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e522f593c5eac06a7d5414c8465952757defed1c/4168:2032" + } + }, + "id": "VariableID:42928:9314", + "key": "622bac0e99d36eeadeb82f8c7cd70778e67dd8fc", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Yellow/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9375", + "key": "f37e794e1bf9189dfb1896be51ccfc2a34d3b3af", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:26423:321183", + "key": "0d31f648563f0bcb9fc7189de9a58161d5d9e13a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + } + }, + "id": "VariableID:26423:321184", + "key": "2bfc48f2d92716aa36cc97b7abe1144f925e0275", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a3fd5f9eba9422f44e319d4917c85b2244178655/4168:2291" + } + }, + "id": "VariableID:26423:321185", + "key": "06c7e50fea80155d2b1090ad3712bef8008b6265", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + } + }, + "id": "VariableID:41080:382107", + "key": "21abcbc7678d3f274cef4ab60a346631876f0dd3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382108", + "key": "1f5d1f334cf3d3a2936aa8315bdd7bb74cbf3b5f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382127", + "key": "0faf9ab0851b811a1332ff8768f998392fd60c62", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382140", + "key": "4a709151c39d14619bb5354c16fe02af9b474a75", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382148", + "key": "e75071038bab5cf8d4a9a04cc4aa1776e02ac6d6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:42928:9317", + "key": "0e83b74771aa6ae2d0108ec17a3632d188f4bdf0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Gray/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9376", + "key": "b80c73f3757f707aba7986f2132d7057961b70f6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0ab42f51bcc4012803714bcce61b4a65060431f9/4168:2224" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0ab42f51bcc4012803714bcce61b4a65060431f9/4168:2224" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25b29ba2e726ec26070c286c1b127c0990efa14a/4168:2213" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25b29ba2e726ec26070c286c1b127c0990efa14a/4168:2213" + } + }, + "id": "VariableID:26423:321186", + "key": "0dc685ac58c2c58f0c201eb9501c1be22c0f7edc", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cc6a21081cecbc9d8d6138dc4cf7802af2f83619/4168:2208" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cc6a21081cecbc9d8d6138dc4cf7802af2f83619/4168:2208" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0ab42f51bcc4012803714bcce61b4a65060431f9/4168:2224" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0ab42f51bcc4012803714bcce61b4a65060431f9/4168:2224" + } + }, + "id": "VariableID:26423:321187", + "key": "fc77934c8a0f43b3f3bf429e717775216e7ccd04", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6eec98f6cfa3786485c59177989be7a32aef4b0a/4168:2296" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6eec98f6cfa3786485c59177989be7a32aef4b0a/4168:2296" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:fecef0d75b48ed436e85eb672d234bd241fa1151/4168:2301" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:fecef0d75b48ed436e85eb672d234bd241fa1151/4168:2301" + } + }, + "id": "VariableID:26423:321188", + "key": "5dc3db11a5b1de3a891169a28e2e38cd6e50af8e", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cc6a21081cecbc9d8d6138dc4cf7802af2f83619/4168:2208" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cc6a21081cecbc9d8d6138dc4cf7802af2f83619/4168:2208" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0ab42f51bcc4012803714bcce61b4a65060431f9/4168:2224" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0ab42f51bcc4012803714bcce61b4a65060431f9/4168:2224" + } + }, + "id": "VariableID:41080:382109", + "key": "41f98907f511819259d8e81d0d3b3a7154416d0d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382110", + "key": "5b03d298032cbff7039991e9541a6a5851c8a885", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382128", + "key": "e6e9f62e40d9ad15270f80931024ee054f77183c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382141", + "key": "14ad5ddeab0c47bed441c6e0ebce96abf9a6e2db", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382147", + "key": "89053bfd825f4e7743768539d53a0008d9150e03", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:88f42f4737bbec31d25e760027c3a7e64ccb136c/4168:2220" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:88f42f4737bbec31d25e760027c3a7e64ccb136c/4168:2220" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:29cc064c6244d58a3ce033eabc4630858b5f2179/4168:2217" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:29cc064c6244d58a3ce033eabc4630858b5f2179/4168:2217" + } + }, + "id": "VariableID:42928:9318", + "key": "f0459fe7fad418ce0307404cb8ce9015228727a1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Cool gray/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9377", + "key": "6e3a5eac345de00a1d985e96c019e89ac2613eaf", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e2a70c8df891f1533b33200cc33b3adfa9ac84a8/4168:2204" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e2a70c8df891f1533b33200cc33b3adfa9ac84a8/4168:2204" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:75e792e8c96c8c4dcc52874ef4b0a8e6328bf34f/4168:2191" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:75e792e8c96c8c4dcc52874ef4b0a8e6328bf34f/4168:2191" + } + }, + "id": "VariableID:26423:321189", + "key": "ebc059b5526fbe0bbd8111e83cd0bc0ba8d8041e", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:787ce0ce5925106e551f8e78b36124c87608b194/4168:2188" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:787ce0ce5925106e551f8e78b36124c87608b194/4168:2188" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e2a70c8df891f1533b33200cc33b3adfa9ac84a8/4168:2204" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e2a70c8df891f1533b33200cc33b3adfa9ac84a8/4168:2204" + } + }, + "id": "VariableID:26423:321190", + "key": "dabab1228f734506587474a64deec2d3332d2644", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ed640b3ab12d0101e4961e6f3997a80d0210791a/4168:2305" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ed640b3ab12d0101e4961e6f3997a80d0210791a/4168:2305" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e89fcace44f91a5feeac0c9dfb59075cf4bd42a7/4168:2310" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e89fcace44f91a5feeac0c9dfb59075cf4bd42a7/4168:2310" + } + }, + "id": "VariableID:26423:321191", + "key": "0787e50b6f7e3e4bb933711cf79c15538026e703", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:787ce0ce5925106e551f8e78b36124c87608b194/4168:2188" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:787ce0ce5925106e551f8e78b36124c87608b194/4168:2188" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e2a70c8df891f1533b33200cc33b3adfa9ac84a8/4168:2204" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e2a70c8df891f1533b33200cc33b3adfa9ac84a8/4168:2204" + } + }, + "id": "VariableID:41080:382111", + "key": "43a6b526623c2439adc72c87f3a427f7ed989df0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382112", + "key": "7011f9c9cb65d71680739261affa30f900876016", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-border-transparent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382129", + "key": "abd2b03ec558e93e19ea9e97dc123ddd940dcf72", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382142", + "key": "91666650dcf8663f40d78b697efb84199268f2d4", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382146", + "key": "fa75ef2ce6505326751fbf54a65d795de4274d4d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b0618fbc1509ae9cf7b147069e2b24afa5fff554/4168:2198" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b0618fbc1509ae9cf7b147069e2b24afa5fff554/4168:2198" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bbc31e6efbd7d9051d9ac902883828b22afa25ea/4168:2195" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:bbc31e6efbd7d9051d9ac902883828b22afa25ea/4168:2195" + } + }, + "id": "VariableID:42928:9321", + "key": "93eeaa3580b852eebb5026964bfeaa4ff8530d19", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Warm gray/tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:2": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + }, + "25984:3": { + "r": 0.5529412031173706, + "g": 0.5529412031173706, + "b": 0.5529412031173706, + "a": 0.5 + } + }, + "id": "VariableID:42928:9378", + "key": "b97cf617aceff06f7d4ad27417599902497ee257", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/High contrast/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295108" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295108" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295108" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295108" + } + }, + "id": "VariableID:41007:675", + "key": "30cfd4effe734cfc721886ec455b216d2df0276b", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/High contrast/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295230" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295230" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295230" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295230" + } + }, + "id": "VariableID:41007:676", + "key": "33da29a68b3edc7b4e540f42a770e275148ae067", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/High contrast/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295109" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295109" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295109" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295109" + } + }, + "id": "VariableID:41007:677", + "key": "5b244b8a03ed15db8c58a41c6d6b078bc279eb3d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/High contrast/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295220" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295220" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295220" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295220" + } + }, + "id": "VariableID:41007:678", + "key": "f479ccc757adeca716e6261192604ad11bef341a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/High contrast/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:41080:382114", + "key": "112d0c01bc68f807aed9f01d377a3696e6c4de09", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/High contrast/tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382130", + "key": "9584058561bf718419b7bdc2a9786a6b8312712e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/High contrast/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295181" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295181" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295181" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295181" + } + }, + "id": "VariableID:41080:382143", + "key": "946b783e510dfd9db37229192925c326ba797412", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/High contrast/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + } + }, + "id": "VariableID:41080:382145", + "key": "af0b412f9a3879c20f8912c500c0857a4a6ca05e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI slug/AI slug gradient background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50403:430496" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50403:430496" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430512" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430512" + } + }, + "id": "VariableID:50413:430539", + "key": "921eca5e497930f1b47f2d61c08f1c23614c64b6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-shell-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52901:444687" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52901:444687" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52901:444689" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52901:444689" + } + }, + "id": "VariableID:52901:444693", + "key": "d25d16d04e1c568b851a10f32b2d40ffae496d5a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-header-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52901:444688" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52901:444688" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52901:444690" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52901:444690" + } + }, + "id": "VariableID:52901:444694", + "key": "73453804ae3db676a0fb94b7d8acce9833ae5fd4", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI slug/AI slug gradient background hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430504" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430504" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430516" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430516" + } + }, + "id": "VariableID:50413:430540", + "key": "0040e882d370b01c1adab055879e512d4a758524", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI slug/AI slug gradient stop 1", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50403:430497" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50403:430497" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430513" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430513" + } + }, + "id": "VariableID:50413:430542", + "key": "49fff56b17cf284ff7ac4e5e5b5d73b07718c9bc", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI slug/AI slug gradient stop 2", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50403:430498" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50403:430498" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430514" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430514" + } + }, + "id": "VariableID:50413:430543", + "key": "b994bf3709e5a2eac3e6513806fde121c54857f0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI slug/AI slug gradient stop 1 hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430505" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430505" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430517" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430517" + } + }, + "id": "VariableID:50413:430544", + "key": "4b23ddc8dbafcb4abb9b712021614e16eeebe4e6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI slug/AI slug gradient stop 2 hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430506" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430506" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430518" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50409:430518" + } + }, + "id": "VariableID:50413:430545", + "key": "48332b9672ea0801ce1d43847506ca2de3e1cc20", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI slug/AI slug solid background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50410:430523" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50410:430523" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50410:430526" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50410:430526" + } + }, + "id": "VariableID:50413:430546", + "key": "1023b1f792455c70f873a88863fe1ad9d9cfb16c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI slug/AI slug solid background hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50410:430524" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50410:430524" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50410:430527" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50410:430527" + } + }, + "id": "VariableID:50413:430547", + "key": "10fc5c8fe8f895c8272c47d7b149b1968b3b92fc", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-inner-shadow", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.10000000149011612 + }, + "25984:1": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.10000000149011612 + }, + "25984:2": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.1599999964237213 + }, + "25984:3": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.1599999964237213 + } + }, + "id": "VariableID:51278:237", + "key": "96541f5492ffb369837fce621262099d2f7d2f4e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-aura-start", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.10000000149011612 + }, + "25984:1": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.10000000149011612 + }, + "25984:2": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.10000000149011612 + }, + "25984:3": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.10000000149011612 + } + }, + "id": "VariableID:51278:239", + "key": "0d29fe936ac79362b42c7549dbf819cd11c4d361", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-aura-start-sm", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.1599999964237213 + }, + "25984:1": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.1599999964237213 + }, + "25984:2": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.1599999964237213 + }, + "25984:3": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.1599999964237213 + } + }, + "id": "VariableID:51278:238", + "key": "db04c7534e051f7f0fb6a97b9c4b885932eee085", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-aura-end", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "25984:3": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "id": "VariableID:51278:240", + "key": "f6ab1b1f959209e16c0ae2987c4347edf7883894", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-border-strong", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + } + }, + "id": "VariableID:51278:241", + "key": "142bdf34c373b9ae6bd13f5f126378844849f8dc", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.6509804129600525, + "g": 0.7843137383460999, + "b": 1, + "a": 0.6399999856948853 + }, + "25984:1": { + "r": 0.6509804129600525, + "g": 0.7843137383460999, + "b": 1, + "a": 0.6399999856948853 + }, + "25984:2": { + "r": 0.6509804129600525, + "g": 0.7843137383460999, + "b": 1, + "a": 0.36000001430511475 + }, + "25984:3": { + "r": 0.6509804129600525, + "g": 0.7843137383460999, + "b": 1, + "a": 0.36000001430511475 + } + }, + "id": "VariableID:51278:242", + "key": "c894967f8e285e673e1bad83b26e522db834a620", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f1f0876634c0b3dca43afb1cdc12f18a82c7305a/4168:2263" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:51278:243", + "key": "4357515707bc690cd11909aa2459921652959279", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-drop-shadow", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.05882352963089943, + "g": 0.3843137323856354, + "b": 0.9960784316062927, + "a": 0.10000000149011612 + }, + "25984:1": { + "r": 0.05882352963089943, + "g": 0.3843137323856354, + "b": 0.9960784316062927, + "a": 0.10000000149011612 + }, + "25984:2": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.2800000011920929 + }, + "25984:3": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.2800000011920929 + } + }, + "id": "VariableID:51278:244", + "key": "7d417b86b3c2ff7b16dbf07db2296eb455656043", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-aura-hover-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0a8f86036302507e2f3b9b6b0d424693fe4dd090/4168:2262" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0a8f86036302507e2f3b9b6b0d424693fe4dd090/4168:2262" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295115" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295115" + } + }, + "id": "VariableID:51278:245", + "key": "2eb556dd2297598c67e67e94a742dd55edc7439c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-aura-hover-start", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.3199999928474426 + }, + "25984:1": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.3199999928474426 + }, + "25984:2": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.4000000059604645 + }, + "25984:3": { + "r": 0.2705882489681244, + "g": 0.5372549295425415, + "b": 1, + "a": 0.4000000059604645 + } + }, + "id": "VariableID:51278:246", + "key": "7a2ec36eba8ad9b9d5d2085bc6a1c9f9fd6a7501", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI layer/AI-aura-hover-end", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 0 + }, + "25984:2": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "25984:3": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + } + }, + "id": "VariableID:51278:247", + "key": "dd85a166f44cc96c403a568d92dbcc43cb3e2a7f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI skeleton/AI-skeleton-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52277:1198" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52277:1198" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52277:1200" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52277:1200" + } + }, + "id": "VariableID:52277:1202", + "key": "306b7f5830c9b2cc80561daded4be1ce4cbdc992", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI skeleton/AI-skeleton-element", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52277:1199" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52277:1199" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52277:1201" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:52277:1201" + } + }, + "id": "VariableID:52277:1204", + "key": "99aaa4214298a9997db1da24b0c4ce0da262bb95", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI callout/slug-callout-shadow-outer-01", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0, + "g": 0.26274511218070984, + "b": 0.8078431487083435, + "a": 0.25 + }, + "25984:1": { + "r": 0, + "g": 0.26274511218070984, + "b": 0.8078431487083435, + "a": 0.25 + }, + "25984:2": { + "r": 0, + "g": 0.1764705926179886, + "b": 0.6117647290229797, + "a": 0.25 + }, + "25984:3": { + "r": 0, + "g": 0.1764705926179886, + "b": 0.6117647290229797, + "a": 0.25 + } + }, + "id": "VariableID:51494:159", + "key": "4e4422b601eaeb1028b37a5e99fc16b5a0070709", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI callout/slug-callout-shadow-outer-02", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.10000000149011612 + }, + "25984:1": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.10000000149011612 + }, + "25984:2": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.6499999761581421 + }, + "25984:3": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.6499999761581421 + } + }, + "id": "VariableID:51494:160", + "key": "a18bde3b9ddaa41819136a41f62c9bad176a6d22", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/AI callout/slug-callout-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:52479:159", + "key": "225dbab4bb777b4be779d8f1cdb8842e632f2674", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-prompt-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48117:657", + "key": "c6f41dc15f75431b3eb94ad4e01eb91fd5b56207", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-prompt-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48117:658", + "key": "04d56bbd391fce76f73da01befb4d6d215a63530", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-prompt-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:48117:681", + "key": "fb21d2bb21b4542de4a233793cc860f1ac640231", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-prompt-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:48117:680", + "key": "d3142100effa4d487e232828ab019a1f869f904d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-bubble", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68168" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68168" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68174" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68174" + } + }, + "id": "VariableID:48117:659", + "key": "28f140cc4c9f989674d967f14490e5c2a6e0edb7", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-bubble-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:159" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:159" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:161" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:161" + } + }, + "id": "VariableID:50035:172", + "key": "da99f37ddd9c2bcb1320098c18572b7cc1f615ee", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/chat-bubble-agent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:48117:665", + "key": "f74606e74f0b64f72187ce1bfefa2ef93aa29825", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-bubble-active", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:160" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:160" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:162" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:162" + } + }, + "id": "VariableID:50035:173", + "key": "e27139eb22823422efbf070e7fcba5f265c93213", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-bubble-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68169" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68169" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68175" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68175" + } + }, + "id": "VariableID:48117:666", + "key": "8ce7513e124c7d14e42844cd8abc2cbe957420f3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-avatar-bot", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:48117:667", + "key": "d8f161b528f6077192d1a12daa1f35141a6cbf59", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-avatar-agent", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48117:668", + "key": "d3bb7a2f9b1086fd717f3b738dece9af542f1cac", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-avatar-user", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48121:682", + "key": "9dfe1a793a4d677ef2e567d329a8f081b10629f5", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Inverse White + Black/White in light themes", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1b9f9591aad809f2472a87d987a44dc8e9cbaa9c/4168:2268" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1b9f9591aad809f2472a87d987a44dc8e9cbaa9c/4168:2268" + } + }, + "id": "VariableID:27022:295672", + "key": "545d8ae5126b6ad5bd503ef799d8dd463bc17bd5", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Inverse White + Black/Black in light themes", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1b9f9591aad809f2472a87d987a44dc8e9cbaa9c/4168:2268" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1b9f9591aad809f2472a87d987a44dc8e9cbaa9c/4168:2268" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:27022:295671", + "key": "84a07998e79b2d2db9f124aa7f0fe2d9965c637a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/Light/C4IP-light-blue", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:48123:370245", + "key": "8229ad8184c41d0156b25403347192236f3886ff", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Carbon for IBM Products", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:34529:160", + "key": "aee73be3c45902b450f4d66f26589d6c91048133", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/Light/C4IP-light-red", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + } + }, + "id": "VariableID:48123:370246", + "key": "6d3dbd4b106169de643a9cddc11dab498d15fa9a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/Light/C4IP-light-orange", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a8a96b08a8810a487326f6e09ff1f3d95c671c9b/4168:2022" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a8a96b08a8810a487326f6e09ff1f3d95c671c9b/4168:2022" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a8a96b08a8810a487326f6e09ff1f3d95c671c9b/4168:2022" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a8a96b08a8810a487326f6e09ff1f3d95c671c9b/4168:2022" + } + }, + "id": "VariableID:48123:370247", + "key": "c29faa442716dc0571bcf7f873acd3b5a6ae0c73", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/Light/C4IP-light-yellow", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:37ed99613f711d788024dbdc1d1793bc582faf84/4168:2034" + } + }, + "id": "VariableID:48123:370248", + "key": "cd3fe7c0351099ab1b73b511bb7b682ad56ef457", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-light-cyan", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7bdb3ed6a2dd697e024ba2fd51232bb2330e252e/4168:2176" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7bdb3ed6a2dd697e024ba2fd51232bb2330e252e/4168:2176" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1e9e3957c423a881c3e9de6c75b4e657c1189867/4168:2177" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1e9e3957c423a881c3e9de6c75b4e657c1189867/4168:2177" + } + }, + "id": "VariableID:36114:254", + "key": "fd717dee8eedc8f1ef31587720cc06813e656e80", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-light-gray", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:36114:256", + "key": "1df751856595b4a1ce132f10f349fe95c4923aa5", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-light-green", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:879bb6c8c87b6e86b302a6c2ac40a890d476ab5f/4168:2156" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:879bb6c8c87b6e86b302a6c2ac40a890d476ab5f/4168:2156" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + } + }, + "id": "VariableID:36114:258", + "key": "819f2196f2528a39a60d7a609c55e7bb1bdffc83", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-light-magenta", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e5804405fc317c7fe144fb34f14b4ee6237a8c11/4168:2085" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e5804405fc317c7fe144fb34f14b4ee6237a8c11/4168:2085" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8befd6eb4964e599fe74f383892e5fb61dd14325/4168:2096" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8befd6eb4964e599fe74f383892e5fb61dd14325/4168:2096" + } + }, + "id": "VariableID:36114:260", + "key": "7bd8b9833df13f66469ca3dfd3e51fd3999e202d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-light-purple", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:17cd40fea7c5cf8929aa5ccdb3e6938f8791b45c/4168:2063" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:17cd40fea7c5cf8929aa5ccdb3e6938f8791b45c/4168:2063" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c888e1e34b38f266409bbf874d32e4b096b65604/4168:2074" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c888e1e34b38f266409bbf874d32e4b096b65604/4168:2074" + } + }, + "id": "VariableID:36114:262", + "key": "6b7513f9075e60a6d927f0653451606b1b1464f5", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-light-teal", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:fce2cb424e0e6bf8e9dd9deb86d1f27553e443b6/4168:2041" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:fce2cb424e0e6bf8e9dd9deb86d1f27553e443b6/4168:2041" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1301e23d6c46041abf0ce630f5c4b95463c55ebb/4168:2042" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1301e23d6c46041abf0ce630f5c4b95463c55ebb/4168:2042" + } + }, + "id": "VariableID:36114:264", + "key": "5ce4de4b849fccccf544e60d0ef7941a2cd7b51d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/Dark/C4IP-dark-blue", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:92316c0851f52afe1ee3cd76e89a0cf6c86effdb/4168:2252" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:2e94e75cb682951016022f0a5c30d312af57b391/4168:2258" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:2e94e75cb682951016022f0a5c30d312af57b391/4168:2258" + } + }, + "id": "VariableID:48123:370251", + "key": "ad3bf2ae24d84c17f22baecc05e3af4e7183cc3b", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/Dark/C4IP-dark-red", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e9422b7bf491b177705091a0288ccdcfe64b464f/4168:2049" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e9422b7bf491b177705091a0288ccdcfe64b464f/4168:2049" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + } + }, + "id": "VariableID:48123:370252", + "key": "40e78b0db36c7b1c31d10ad1292bd6e9a8c82453", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/Dark/C4IP-dark-orange", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:da995ffe5c2efc57deedc4abcfc56d6ecd235616/4168:2021" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:da995ffe5c2efc57deedc4abcfc56d6ecd235616/4168:2021" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6436e5a85bb63bbcb124cb3ced9be24ed51da3bf/4168:2024" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6436e5a85bb63bbcb124cb3ced9be24ed51da3bf/4168:2024" + } + }, + "id": "VariableID:48123:370253", + "key": "fb2e1dd170beb9854546ddf3ddcc241d2cff9040", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/Dark/C4IP-dark-yellow", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:415d0723d1458ef3ea9dad1706efc076cbf2fd09/4168:2031" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:415d0723d1458ef3ea9dad1706efc076cbf2fd09/4168:2031" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7832f5b5ffc6b4aa3a0be208821cddbbd8058ab4/4168:2035" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7832f5b5ffc6b4aa3a0be208821cddbbd8058ab4/4168:2035" + } + }, + "id": "VariableID:48123:370254", + "key": "ddbf297d6c9765df8119afc7a52e13d2f5c4b8c3", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-dark-cyan", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:75f0ad894704b14b91c3b0061b423f0329b772f6/4168:2172" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:75f0ad894704b14b91c3b0061b423f0329b772f6/4168:2172" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6eb60bfc55c075f8cbb187238e28fd6f1d1ba2f0/4168:2181" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6eb60bfc55c075f8cbb187238e28fd6f1d1ba2f0/4168:2181" + } + }, + "id": "VariableID:36114:255", + "key": "a3b0048c9f7f1649bd51eb890f6973e609d247b4", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-dark-gray", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + } + }, + "id": "VariableID:36114:257", + "key": "530fda9b3f41e14c642c22eb622a4861c4ba5d92", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-dark-green", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ca1577cf1d05e8cbf1cd2e86eccee2cf75770dd/4168:2152" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ca1577cf1d05e8cbf1cd2e86eccee2cf75770dd/4168:2152" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7315f9e04f889d1b837f7af8d75c8e567cdca955/4168:2161" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7315f9e04f889d1b837f7af8d75c8e567cdca955/4168:2161" + } + }, + "id": "VariableID:36114:259", + "key": "201f4e499645812c27246f0aa3ab7073785967bd", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-dark-magenta", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:59117871485a92a2863ad02bc7cc977467f8d86c/4168:2082" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:59117871485a92a2863ad02bc7cc977467f8d86c/4168:2082" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:65a45fc2581d774376db2b717025255b55ae4fd8/4168:2099" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:65a45fc2581d774376db2b717025255b55ae4fd8/4168:2099" + } + }, + "id": "VariableID:36114:261", + "key": "21c77d49973082e2042f99cdef02296dfda793a9", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-dark-purple", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f91d0ddc4e112664f9f7fd8114e7ff12847f721d/4168:2058" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:f91d0ddc4e112664f9f7fd8114e7ff12847f721d/4168:2058" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e259bec36ff57973b1a277f13f47a14a7ea43f53/4168:2077" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e259bec36ff57973b1a277f13f47a14a7ea43f53/4168:2077" + } + }, + "id": "VariableID:36114:263", + "key": "8f38263a1675ef28b323387cc5dbd1880c2b15bf", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/User profile images/C4IP-dark-teal", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0b7497278f904ffb548aa52c2499f9eacc37d8ca/4168:2039" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0b7497278f904ffb548aa52c2499f9eacc37d8ca/4168:2039" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5515cbcc268d9a8b204ff8bedeeac405f6ca09c1/4168:2044" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5515cbcc268d9a8b204ff8bedeeac405f6ca09c1/4168:2044" + } + }, + "id": "VariableID:36114:265", + "key": "09f849eacbe274b0fb9c4cc60641dbdbe1bc55ae", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "White Theme", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "25984:0": true, + "25984:1": false, + "25984:2": false, + "25984:3": false + }, + "id": "VariableID:35618:3604", + "key": "3378740577b562db16e269aeb1c541ed41cc37c6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gray 10 Theme", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "25984:0": false, + "25984:1": true, + "25984:2": false, + "25984:3": false + }, + "id": "VariableID:35618:3605", + "key": "c0d32f919e4fb4be5d3e9924d71e3cffc6a34c73", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gray 90 Theme", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "25984:0": false, + "25984:1": false, + "25984:2": true, + "25984:3": false + }, + "id": "VariableID:35618:3606", + "key": "d1ab1cd402a8e68dff2a34af81745c756fe316e1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gray 100 Theme", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "25984:0": false, + "25984:1": false, + "25984:2": false, + "25984:3": true + }, + "id": "VariableID:35618:3607", + "key": "dc9e454dca375629916a21897dd83172d6303f31", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-fatal", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1b9f9591aad809f2472a87d987a44dc8e9cbaa9c/4168:2268" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1b9f9591aad809f2472a87d987a44dc8e9cbaa9c/4168:2268" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:36114:278", + "key": "275efb6233abd0d631e53073182ae6dcdc97c20c", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-critical", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:c9663a6fc99b6c44c9ceb797676a11135daed877/4168:2051" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d57092971d57bec0124c43c1b7a77364e57db2d9/4168:2052" + } + }, + "id": "VariableID:36114:279", + "key": "1e90d1b9cab47a1403d13e53886d322bf1734299", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-major-warning", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:30971:253" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:30971:253" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:30971:253" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:30971:253" + } + }, + "id": "VariableID:36114:280", + "key": "d343ba6c7d8ad90ad06e76f92ea67d031f8c9bec", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-minor-warning", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295194" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295194" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295194" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295194" + } + }, + "id": "VariableID:36114:281", + "key": "2829c92ee1f04739e1ed8f4b641d66588171bdf9", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-undefined", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:30971:255" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:30971:255" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:30971:255" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:30971:255" + } + }, + "id": "VariableID:36114:282", + "key": "294de0050b5d977040f4701857a0e0a22046e974", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-unknown", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:36114:283", + "key": "b25bfdc0c5513d94b1175fd24fb2d2489f5f42ab", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-normal", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:879bb6c8c87b6e86b302a6c2ac40a890d476ab5f/4168:2156" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:879bb6c8c87b6e86b302a6c2ac40a890d476ab5f/4168:2156" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + } + }, + "id": "VariableID:36114:284", + "key": "c9b01acea3fe688260e3f062f51aa3118fc1be58", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-info", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:36114:285", + "key": "692c9ecf05b3df1054bc63c109f63d063433c6c5", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-in-progress", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:36114:286", + "key": "074f146f5ad2ca918e5e056db4d83246cbb81e85", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-running", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:879bb6c8c87b6e86b302a6c2ac40a890d476ab5f/4168:2156" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:879bb6c8c87b6e86b302a6c2ac40a890d476ab5f/4168:2156" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ad11d28e7ab978815c977436fc70306fdde53509/4168:2157" + } + }, + "id": "VariableID:36114:287", + "key": "1282775f6258ea3ec052ad052380544011ce3b22", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Carbon for IBM Products/Status icons/C4IP-status-pending", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:36114:288", + "key": "7b5b2a8dd1a3ae00b93516b0d619b8ff890beb3f", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Outline/tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + } + }, + "id": "VariableID:41077:375798", + "key": "299d19e7efe039c35f2a1f4cedd1dd0ed05495b9", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Outline/tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321184" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + } + }, + "id": "VariableID:41077:375799", + "key": "c9ee7df68e5daa518cecb756317e9f795feb60c5", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Outline/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295104" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295104" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295104" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295104" + } + }, + "id": "VariableID:41077:375800", + "key": "8787b07890c2d85039c8f1044a7b44ec1e94c41f", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Outline/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295215" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295215" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295215" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295215" + } + }, + "id": "VariableID:41077:375801", + "key": "20ff4c78392df1d1f02fdbda92710465a0ef03c6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Outline/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + } + }, + "id": "VariableID:41080:382115", + "key": "0de1dbc45096f2aa9f9d766a0e319c7dc5c0e3f9", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Outline/tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295145" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295145" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295145" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295145" + } + }, + "id": "VariableID:41080:382116", + "key": "8d4e511cd8334eb2cd650e016516407f90dc9e59", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Outline/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:41080:382117", + "key": "8e8b11365ecc02aa2e15b7c68da84e93be8bbc36", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Tag/Outline/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295146" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295146" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295146" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295146" + } + }, + "id": "VariableID:41080:382144", + "key": "4cfbc96c2563d8c904da1a4a7cde8a040beb5b74", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Blue/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0a8f86036302507e2f3b9b6b0d424693fe4dd090/4168:2262" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0a8f86036302507e2f3b9b6b0d424693fe4dd090/4168:2262" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36550bcef1cc03d818c0372dd2280c6459f8c1c6/4168:2234" + } + }, + "id": "VariableID:41143:371197", + "key": "dd454260bed9bc4be231fffbbc07fffb4dba6294", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Cyan/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:be2dba04064d795ca1fe504cec920957174d4ff8/4168:2185" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:be2dba04064d795ca1fe504cec920957174d4ff8/4168:2185" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:56ffed17a0689bfdf6de4c3e06a99257ea05b5b9/4168:2173" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:56ffed17a0689bfdf6de4c3e06a99257ea05b5b9/4168:2173" + } + }, + "id": "VariableID:41143:371205", + "key": "14ffb81a96a9f580cca212147652d0bc4f99ea6a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Teal/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8eeec65ecdfa4bc7029e760caf442c51c98acf40/4168:2046" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8eeec65ecdfa4bc7029e760caf442c51c98acf40/4168:2046" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36b3d850294c8a238804a7e5f73c4498a475a3d4/4168:2040" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:36b3d850294c8a238804a7e5f73c4498a475a3d4/4168:2040" + } + }, + "id": "VariableID:41143:371213", + "key": "115a318b45874960df885dd3b8c56ca05f02101d", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Green/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:07779ee24a0cce9ce5931f5c46f70a1de89371a3/4168:2165" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:07779ee24a0cce9ce5931f5c46f70a1de89371a3/4168:2165" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1a815e4f4d360085382f71639fc32e1cd28009f5/4168:2153" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1a815e4f4d360085382f71639fc32e1cd28009f5/4168:2153" + } + }, + "id": "VariableID:41143:371221", + "key": "af7a4f5672004fa4338afb2e01d5963871f4b812", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Purple/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:97a8f44dc7c097b6018c3c000b4a78ea831d9025/4168:2081" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:97a8f44dc7c097b6018c3c000b4a78ea831d9025/4168:2081" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:98fafadce28e6b12597c9be5a25ee764cfded018/4168:2070" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:98fafadce28e6b12597c9be5a25ee764cfded018/4168:2070" + } + }, + "id": "VariableID:41143:371229", + "key": "0250a4318d2e5c74c224e5d58756df3a818b1b0a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Magenta/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d6190245e5e62ab1ecb77d442308974eb411431b/4168:2102" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d6190245e5e62ab1ecb77d442308974eb411431b/4168:2102" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:91358c585dfaef6d9b0e69f0d72e43e9a6b86834/4168:2092" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:91358c585dfaef6d9b0e69f0d72e43e9a6b86834/4168:2092" + } + }, + "id": "VariableID:41143:371237", + "key": "8f217e54d7afafc202fb1f3100bbcc276c0c8486", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Red/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4e1ef511396716bbc917784dbe2c2ae215ec8012/4168:2062" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4e1ef511396716bbc917784dbe2c2ae215ec8012/4168:2062" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:72387ab456405c3b41daba46ca2ee1f36b4410a2/4168:2050" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:72387ab456405c3b41daba46ca2ee1f36b4410a2/4168:2050" + } + }, + "id": "VariableID:41143:371245", + "key": "a7b103f0b3d8bb34cbb338911dcd98321c789495", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Orange/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0a0f0c906fcef715550ae76e6a2c9cc5a5d153b6/4168:2026" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0a0f0c906fcef715550ae76e6a2c9cc5a5d153b6/4168:2026" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:82169ae64a779848248a35380f49b61f190de2aa/4168:2020" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:82169ae64a779848248a35380f49b61f190de2aa/4168:2020" + } + }, + "id": "VariableID:41143:371253", + "key": "9f2bf91b86630ddf777552dec25983d4e61b6c42", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Yellow/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:daef08ba2e3619bec08d79f6f0a968a5b57e6840/4168:2036" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:daef08ba2e3619bec08d79f6f0a968a5b57e6840/4168:2036" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8f2beae6689920d0637137bb16a7b00c58c3907f/4168:2030" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8f2beae6689920d0637137bb16a7b00c58c3907f/4168:2030" + } + }, + "id": "VariableID:41143:371261", + "key": "e43b8a59d81856ed73442528851c9d170f0eb51e", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Gray/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:41143:371269", + "key": "3afc052503b795efaebb41e9637040b58c66f381", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Cool gray/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0ab42f51bcc4012803714bcce61b4a65060431f9/4168:2224" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:0ab42f51bcc4012803714bcce61b4a65060431f9/4168:2224" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25b29ba2e726ec26070c286c1b127c0990efa14a/4168:2213" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25b29ba2e726ec26070c286c1b127c0990efa14a/4168:2213" + } + }, + "id": "VariableID:41143:371277", + "key": "7eee39a3385456576d4a50403396cb0127b081ec", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Warm gray/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e2a70c8df891f1533b33200cc33b3adfa9ac84a8/4168:2204" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e2a70c8df891f1533b33200cc33b3adfa9ac84a8/4168:2204" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:75e792e8c96c8c4dcc52874ef4b0a8e6328bf34f/4168:2191" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:75e792e8c96c8c4dcc52874ef4b0a8e6328bf34f/4168:2191" + } + }, + "id": "VariableID:41143:371285", + "key": "3d0d22239dc3c7c726e4c2bd21bfaaf044be5291", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/High contrast/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295108" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295108" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295108" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295108" + } + }, + "id": "VariableID:41143:371293", + "key": "790fc23ee8cdb7b9089edccc7da1f926ecf05f96", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gantt Chart Library/Outline/gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + } + }, + "id": "VariableID:41143:371301", + "key": "74d590712ae229d1862520b93ba0c383839632ad", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Light Themes", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "25984:0": true, + "25984:1": true, + "25984:2": false, + "25984:3": false + }, + "id": "VariableID:42872:52877", + "key": "36c08263c64641ed59069d9622a395ffa9f647b7", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Dark Themes", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "25984:0": false, + "25984:1": false, + "25984:2": true, + "25984:3": true + }, + "id": "VariableID:42872:52878", + "key": "3306a939c3b6d994e0519b98c11b609aa0d2c863", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-background-enabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:42930:1992", + "key": "a9f18cb5005b82420152c9a92fdb298cdbf13f59", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-background-selected", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295128" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295128" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295128" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295128" + } + }, + "id": "VariableID:42930:2042", + "key": "ffe7e99cfdf5a8ad2f50c85df0ddca450083fbc6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-color-enabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295222" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295222" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295222" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295222" + } + }, + "id": "VariableID:42930:1993", + "key": "2a855b10f7fad1a5c404c47878f64bc69c874245", + "remote": false, + "scopes": ["SHAPE_FILL", "TEXT_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-color-selected", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295230" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295230" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295230" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295230" + } + }, + "id": "VariableID:42930:2067", + "key": "97f99808d715e9e8443c42e3151d9fdb9ae8254d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295115" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295115" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295115" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295115" + } + }, + "id": "VariableID:42930:1994", + "key": "759ae782993b4305e5584910c58af04f99aa6b7a", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295215" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295215" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295215" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295215" + } + }, + "id": "VariableID:42930:1995", + "key": "f9f5399a800ce0b2a0af296e29905e68ce68807f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + } + }, + "id": "VariableID:42930:1996", + "key": "358c85bc753d3361fabb8eb5e16190d92ca0e893", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295145" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295145" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295145" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295145" + } + }, + "id": "VariableID:42930:1997", + "key": "bd6b86c0154b879b2f5c384936daa9a312e3a0aa", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Tag/Selectable/tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295178" + } + }, + "id": "VariableID:42930:1998", + "key": "9ff670e71ac486a0d2e7fa2d9db27b8d1b186607", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Tag/Selectable/tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295146" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295146" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295146" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295146" + } + }, + "id": "VariableID:42930:1999", + "key": "6a4a24cb6e19cc04dca0386468727408c955f8f3", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "App Icons/Color/App icons - Solid vector", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a8ded19792fc3b6d8ac8ab0eee11d8c429bf7fa1/5453:28" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:a8ded19792fc3b6d8ac8ab0eee11d8c429bf7fa1/5453:28" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:601f7d91d7b8f117ac216d198384b0e3ae58e82f/5438:84" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:601f7d91d7b8f117ac216d198384b0e3ae58e82f/5438:84" + } + }, + "id": "VariableID:59004:103086", + "key": "4b079c2100144dd2b023c2e3a3d48b86237ed5f3", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "App Icons/Color/App icons - Gradient stop 1", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ff29d0da0a92a3b455525b5cf1edb27f0a6152b7/5453:46" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ff29d0da0a92a3b455525b5cf1edb27f0a6152b7/5453:46" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d13e07333fc49ac46eb9f4da35a46aea399b61f1/5438:104" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d13e07333fc49ac46eb9f4da35a46aea399b61f1/5438:104" + } + }, + "id": "VariableID:58975:102282", + "key": "d42348fca6abc885fd2e5c0262581cf8990d0e01", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "App Icons/Color/App icons - Gradient stop 2", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:377f8c4f45e919da5626465f210bc2576a86a2f5/5453:43" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:377f8c4f45e919da5626465f210bc2576a86a2f5/5453:43" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d716b244e8aacdf5254bd5e71865defe368ba4ea/5438:103" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d716b244e8aacdf5254bd5e71865defe368ba4ea/5438:103" + } + }, + "id": "VariableID:59004:103085", + "key": "43f9942943075c49589fcb8eff9ea236cce59975", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "App Icons/Monochromatic/App icons - Solid vector", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3fd309ab0cf2a4046ece9cf9a9bdab824f280b57/5453:29" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3fd309ab0cf2a4046ece9cf9a9bdab824f280b57/5453:29" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4d600655b338cffc4c6d0f6826d833df82b00dee/5444:46" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4d600655b338cffc4c6d0f6826d833df82b00dee/5444:46" + } + }, + "id": "VariableID:59044:3754", + "key": "4211c869afb2ca8971360f0bd05bb3e898891a99", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "App Icons/Monochromatic/App icons - Gradient stop 1", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4877e1c05c778c933eed192a4e18566b1f88b401/5453:36" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:4877e1c05c778c933eed192a4e18566b1f88b401/5453:36" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:118ebeaf57d22bea5f2e69cbe532cff5bde7cf03/5444:45" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:118ebeaf57d22bea5f2e69cbe532cff5bde7cf03/5444:45" + } + }, + "id": "VariableID:59044:3755", + "key": "dc8a1322d691459e8bdff5ac504b777f59fcdfc9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "App Icons/Monochromatic/App icons - Gradient stop 2", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d5863e5088ee43932386fe964f409f4fa4830b39/5444:34" + }, + "25984:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:d5863e5088ee43932386fe964f409f4fa4830b39/5444:34" + }, + "25984:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3680a072b04ed0e1f5807609400f7e7eb6c8b072/5453:50" + }, + "25984:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3680a072b04ed0e1f5807609400f7e7eb6c8b072/5453:50" + } + }, + "id": "VariableID:59044:3756", + "key": "f24f985ef534b94f91801b00653f566ae64398d9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:25984:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI/Chat/chat-avatar-test-color", + "resolvedType": "COLOR", + "valuesByMode": { + "25984:0": { + "r": 1, + "g": 0, + "b": 0, + "a": 1 + }, + "25984:1": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25984:2": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "25984:3": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:12161:1981", + "key": "0cbb3387f60cd4dda48d5a972b8aa105ec28a0af", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:25984:295101" + } + ] + }, + { + "id": "VariableCollectionId:26084:295101", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "0px (0rem) (spacing-00)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 0 + }, + "id": "VariableID:26090:295101", + "key": "fdebecaad4fa05a97afe4c1c7e626d83519847e4", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "2px (0_125rem) (spacing-01)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 2 + }, + "id": "VariableID:26084:295102", + "key": "b0adce039a70e90af45db0cb72e15d74b57a3323", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "4px (0_25rem) (spacing-02)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 4 + }, + "id": "VariableID:26084:295112", + "key": "8800d161de435a6477b89133510a3767edd07820", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "8px (0_5rem) (spacing-03)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 8 + }, + "id": "VariableID:26084:295113", + "key": "5c859a91b382051e9414ddb677066d1ca558a7e8", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "12px (0_75rem) (spacing-04)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 12 + }, + "id": "VariableID:26084:295114", + "key": "0da43f9fefc9bf3963292a273cfba38cf1ac130c", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "16px (1rem) (spacing-05)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 16 + }, + "id": "VariableID:26084:295115", + "key": "dd6e9e5648bbb915bbfbcb8113f2a45a05bb102a", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "24px (1_5rem) (spacing-06)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 24 + }, + "id": "VariableID:26084:295117", + "key": "65fd24808f96f70eb8a463663577cdfea0e7be42", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "32px (2rem) (spacing-07)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 32 + }, + "id": "VariableID:26084:295118", + "key": "4be6a414673caabb24db7f9ab68adac649ebf37f", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "40px (2_5rem) (spacing-08)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 40 + }, + "id": "VariableID:26084:295119", + "key": "69d425032f29b550d54599116a2ded5dd0a66a55", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "48px (3rem) (spacing-09)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 48 + }, + "id": "VariableID:26084:295120", + "key": "c7dd6835c8740504f9561e9db1ba13b8dcfd3b43", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "64px (4rem) (spacing-10)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 64 + }, + "id": "VariableID:26084:295121", + "key": "8e73608b42672dee6c04871a444193ecfdc61170", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "80px (5rem) (spacing-11)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 80 + }, + "id": "VariableID:26084:295122", + "key": "004f2f55d3f29dbdefb9e2f68ccf5ef7c1263077", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "96px (6rem) (spacing-12)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 96 + }, + "id": "VariableID:26084:295123", + "key": "f9974ecb4fc8480e60a2e3634399a49b1486d488", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "160px (10rem) (spacing-13)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26084:0": 160 + }, + "id": "VariableID:26084:295124", + "key": "0c8c6f3efce630a024204b6768e6f18b31b3fe5a", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26084:295101" + } + ] + }, + { + "id": "VariableCollectionId:26090:295102", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "None", + "resolvedType": "FLOAT", + "valuesByMode": { + "26090:0": 0 + }, + "id": "VariableID:26422:321099", + "key": "aad1bd62299daf45c5500bcb592fa6e11e8b778b", + "remote": false, + "scopes": ["CORNER_RADIUS"], + "variableCollectionId": "VariableCollectionId:26090:295102" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Round", + "resolvedType": "FLOAT", + "valuesByMode": { + "26090:0": 1000000000 + }, + "id": "VariableID:26090:295103", + "key": "775204df42d2ab8e2f1597c0f73d1d74ec23bba0", + "remote": false, + "scopes": ["CORNER_RADIUS"], + "variableCollectionId": "VariableCollectionId:26090:295102" + } + ] + }, + { + "id": "VariableCollectionId:26383:295149", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Gutter", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 32, + "26383:8": 32, + "26383:9": 32, + "26383:10": 32 + }, + "id": "VariableID:26385:295208", + "key": "937783808098bac1379753f8b91d951a142f0b10", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Left end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 16, + "26383:8": 32, + "26383:9": 32, + "26383:10": 40 + }, + "id": "VariableID:26385:295209", + "key": "84846377d22bf02a108191a94de5cf0de29f3755", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Right end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 16, + "26383:8": 32, + "26383:9": 32, + "26383:10": 40 + }, + "id": "VariableID:26385:295210", + "key": "8a380e54cc5b6fdc20279625f4015e4ab976b91e", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Left end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295209" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295209" + }, + "26383:9": 288, + "26383:10": 424 + }, + "id": "VariableID:27885:298551", + "key": "afbd762ca9bd9bd6b5d4f58c065f74cfe0df9ee2", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Right end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295210" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295210" + }, + "26383:9": 288, + "26383:10": 424 + }, + "id": "VariableID:27885:298552", + "key": "dc650e55564a11e64c265aa6c30e3e6afe9b8b45", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Columns", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 4, + "26383:8": 8, + "26383:9": 16, + "26383:10": 16 + }, + "id": "VariableID:26385:295211", + "key": "59a962649fd3ae07f829a5916d5add694cf27169", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Aside left spacer", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 224, + "26383:10": 352 + }, + "id": "VariableID:27854:298528", + "key": "be8f914ca0fb5f314c4bba103e7db58f955b7246", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Aside left spacer min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 224, + "26383:10": 352 + }, + "id": "VariableID:27864:298530", + "key": "f13c1a40e5462ddba2ee6394cedfe53f2df3c827", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/Aside left spacer max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 224, + "26383:10": 352 + }, + "id": "VariableID:27864:298529", + "key": "9023f1ed6cd0e7094100b4cfe0656d65e64760cd", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/2 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 48, + "26383:8": 128, + "26383:9": 96, + "26383:10": 160 + }, + "id": "VariableID:27798:298525", + "key": "49699b6ce336d23d2ef7589aa01098ffaebaea8d", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/2 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 48, + "26383:8": 128, + "26383:9": 96, + "26383:10": 160 + }, + "id": "VariableID:26405:324435", + "key": "748f79b40418fd02dab8bc8e0e814073307a95f4", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/2 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 48, + "26383:8": 128, + "26383:9": 162, + "26383:10": 185 + }, + "id": "VariableID:26405:324436", + "key": "74a4b5df806792239d53effc5a351b1017794893", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/4 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 288, + "26383:8": 288, + "26383:9": 224, + "26383:10": 352 + }, + "id": "VariableID:27798:298526", + "key": "81fee4064c55dcd9756efacfa0ba39293b8911b9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/4 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 288, + "26383:8": 288, + "26383:9": 224, + "26383:10": 352 + }, + "id": "VariableID:26392:295112", + "key": "150e3c5eff648f9d060efd49735f78d901590be0", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/4 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 288, + "26383:8": 288, + "26383:9": 356, + "26383:10": 402 + }, + "id": "VariableID:26392:295113", + "key": "bfc164e9dffb587969dc8174df5f12276e5f4d0d", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/6 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 208, + "26383:8": 448, + "26383:9": 352, + "26383:10": 544 + }, + "id": "VariableID:27798:298527", + "key": "323c6d2f5c9bf91578682bce7aa538920d8b6ec9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/6 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 208, + "26383:8": 448, + "26383:9": 352, + "26383:10": 544 + }, + "id": "VariableID:26407:325633", + "key": "6053e00770ec5ac0022828a348d1053f7c10e238", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/6 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 208, + "26383:8": 448, + "26383:9": 550, + "26383:10": 619 + }, + "id": "VariableID:26407:325634", + "key": "9fe41bc87dceca95017a509dbc3f58f56c4f1d69", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/8 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 288, + "26383:8": 608, + "26383:9": 480, + "26383:10": 736 + }, + "id": "VariableID:27798:298528", + "key": "5be09f7c879ef9b66342a1dc71d0c3c02a39431d", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/8 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 288, + "26383:8": 608, + "26383:9": 480, + "26383:10": 736 + }, + "id": "VariableID:26407:325635", + "key": "1c613e70d921438da132181a9c902d79cef2559a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/8 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 288, + "26383:8": 608, + "26383:9": 744, + "26383:10": 836 + }, + "id": "VariableID:26407:325636", + "key": "971e61bf510cbf9f624e6b20c915681747bda0e2", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Wide grid/12 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 288, + "26383:8": 448, + "26383:9": 736, + "26383:10": 1120 + }, + "id": "VariableID:27798:298529", + "key": "d43b4bf6de4e68c7d9328a2b7cf441771014edb4", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/Gutter", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 16, + "26383:8": 16, + "26383:9": 16, + "26383:10": 16 + }, + "id": "VariableID:26385:295217", + "key": "283145685f955a9b90e4da43385dbb331aadecd9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/Left end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 16, + "26383:9": 16, + "26383:10": 24 + }, + "id": "VariableID:26385:295218", + "key": "a11f5386f16fdaf50fbeaa9f5e9aacc664c2fd17", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/Right end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 16, + "26383:8": 32, + "26383:9": 32, + "26383:10": 40 + }, + "id": "VariableID:26385:295219", + "key": "10b363a0f47c76ff78f522998f60664dd630822c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/Left end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295218" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295218" + }, + "26383:9": 272, + "26383:10": 408 + }, + "id": "VariableID:27885:298553", + "key": "96d2436ac2feedc7bab45d7a88f52b8a441b8f86", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/Right end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295219" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295219" + }, + "26383:9": 288, + "26383:10": 424 + }, + "id": "VariableID:27885:298554", + "key": "01f84e3b1401c66be8fc835fef222ef25e45cce0", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Narrow grid/Columns", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 4, + "26383:8": 8, + "26383:9": 16, + "26383:10": 16 + }, + "id": "VariableID:26385:295220", + "key": "febbf283efed7418337b9ac7f2df008d919737ca", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/Aside left spacer", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 240, + "26383:10": 368 + }, + "id": "VariableID:27857:298529", + "key": "ef412c4cb35a68417648e6afbeb777cb1e67cd3c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/Aside left spacer min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 240, + "26383:10": 368 + }, + "id": "VariableID:27864:298531", + "key": "40b197b9216b332cd63f305c21752c1fe476742b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/Aside left spacer max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 240, + "26383:10": 0 + }, + "id": "VariableID:27864:298532", + "key": "6faba6e075df8935e4b9d0e34a76285a79c13126", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/2 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 64, + "26383:8": 144, + "26383:9": 112, + "26383:10": 176 + }, + "id": "VariableID:27798:298530", + "key": "230febf8d65adc5c273689c33b5495adb5329cf5", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/2 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 64, + "26383:8": 144, + "26383:9": 112, + "26383:10": 176 + }, + "id": "VariableID:26392:295114", + "key": "05b24d49774a7605a4ab83dc86792ca329b0fbca", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/2 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 64, + "26383:8": 144, + "26383:9": 112, + "26383:10": 176 + }, + "id": "VariableID:26392:295115", + "key": "36e707c24a45cececacf7f711ffaa5777a57a1e8", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/4 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 304, + "26383:8": 304, + "26383:9": 240, + "26383:10": 368 + }, + "id": "VariableID:27798:298531", + "key": "1a50e9073c3247587d36c814dbe2444404d8349c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/4 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 304, + "26383:8": 304, + "26383:9": 240, + "26383:10": 368 + }, + "id": "VariableID:26422:321101", + "key": "4730ceb1ea2e174a28c9a60482380871bf8786ef", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/4 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 304, + "26383:8": 304, + "26383:9": 240, + "26383:10": 368 + }, + "id": "VariableID:26422:321102", + "key": "47a19bb34d9e8157b9a6530bb7d7b680fe69484b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/6 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 224, + "26383:8": 464, + "26383:9": 368, + "26383:10": 560 + }, + "id": "VariableID:27798:298532", + "key": "2447a84091d808092ce06d549a99c56d098b930b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/6 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 224, + "26383:8": 464, + "26383:9": 368, + "26383:10": 560 + }, + "id": "VariableID:26422:321103", + "key": "8d1e1d4932d53705e597d72e61fbbfe44834226c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/6 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 224, + "26383:8": 464, + "26383:9": 368, + "26383:10": 560 + }, + "id": "VariableID:26422:321104", + "key": "0dc204c63b0a0ef301308b7136ed268914d90cd3", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/8 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 304, + "26383:8": 624, + "26383:9": 496, + "26383:10": 752 + }, + "id": "VariableID:27798:298533", + "key": "724901f48ae103e2d1e371195e0bbedbdf9969cb", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/8 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 304, + "26383:8": 624, + "26383:9": 496, + "26383:10": 752 + }, + "id": "VariableID:26422:321105", + "key": "9b5729a5f4df4de74bac8d65e845ea3af8ace7fa", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/8 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 304, + "26383:8": 624, + "26383:9": 496, + "26383:10": 752 + }, + "id": "VariableID:26422:321106", + "key": "752b69c3aaa0dcea253e49072ac754148003a26e", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Narrow grid/12 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 304, + "26383:8": 464, + "26383:9": 752, + "26383:10": 1136 + }, + "id": "VariableID:27798:298534", + "key": "3b380b99d75727bc82748ead7145df59917c20b0", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Gutter", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:26385:295222", + "key": "c8175ac633ab326b91f6d89d443e1c69712125d8", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Left end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 16, + "26383:9": 16, + "26383:10": 24 + }, + "id": "VariableID:26385:295223", + "key": "079f0e8947ab98f7d0e464e9a44916a653f6d825", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Right end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 16, + "26383:9": 16, + "26383:10": 24 + }, + "id": "VariableID:26385:295224", + "key": "efaf7ce5cdd4a61fcaa6a1da23792e20fe5e9d72", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Left end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295223" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295223" + }, + "26383:9": 272, + "26383:10": 408 + }, + "id": "VariableID:27885:298555", + "key": "c3702e6ddc2d530bdf2327581a13feccd61a0649", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Right end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295224" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295224" + }, + "26383:9": 272, + "26383:10": 408 + }, + "id": "VariableID:27885:298556", + "key": "19ed6e0d97532317dce579cfdf93c5301f4da04c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Column count", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 4, + "26383:8": 8, + "26383:9": 16, + "26383:10": 16 + }, + "id": "VariableID:26385:295225", + "key": "96d386dfb6dc4987d986e19ece34c3190fe18f3f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Aside left spacer", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 256, + "26383:10": 384 + }, + "id": "VariableID:27857:298530", + "key": "8c97a82ef369b3429c1e70fee4bb7d94aab7dca6", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Aside left spacer min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 256, + "26383:10": 384 + }, + "id": "VariableID:27864:298533", + "key": "04085fb1dbf076e5b5c7d6c326457f51d3b7c706", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/Aside left spacer max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 256, + "26383:10": 384 + }, + "id": "VariableID:27864:298534", + "key": "7a0b2f2eeddddb6bec84b1528293270d50d1830e", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/2 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 80, + "26383:8": 160, + "26383:9": 128, + "26383:10": 192 + }, + "id": "VariableID:27798:298535", + "key": "df525c1bfac93899b65f0efb59bc0e788ab8215c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/2 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 80, + "26383:8": 160, + "26383:9": 128, + "26383:10": 192 + }, + "id": "VariableID:26392:295117", + "key": "ae2408bc00e5b23456c4bd533f52ea99b77fc661", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/2 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 80, + "26383:8": 160, + "26383:9": 128, + "26383:10": 192 + }, + "id": "VariableID:26392:295118", + "key": "3a1aa5076e6405eb85257983351938178b2be647", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/4 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 320, + "26383:9": 256, + "26383:10": 384 + }, + "id": "VariableID:27798:298536", + "key": "dacc0f3df6589c580415507ffcf9b7bf4bf0b230", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/4 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 320, + "26383:9": 256, + "26383:10": 384 + }, + "id": "VariableID:26422:321107", + "key": "4c8c89da2cb693a24416b13f636f32cdc5e3668e", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/4 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 320, + "26383:9": 256, + "26383:10": 384 + }, + "id": "VariableID:26422:321108", + "key": "eb3b49a80d5751a2e24095cf60c41df7599005f5", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/6 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 240, + "26383:8": 480, + "26383:9": 384, + "26383:10": 576 + }, + "id": "VariableID:27798:298537", + "key": "791f84df909484ff867df8f1dd7f66937eab7ea7", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/6 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 240, + "26383:8": 480, + "26383:9": 384, + "26383:10": 576 + }, + "id": "VariableID:26422:321109", + "key": "fb46fece4b80345763c7382bf2daac86e9254b36", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/6 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 240, + "26383:8": 480, + "26383:9": 384, + "26383:10": 576 + }, + "id": "VariableID:26422:321110", + "key": "9bdb5735b77501e6e50feeb6cb5f889aa5695105", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/8 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 640, + "26383:9": 512, + "26383:10": 768 + }, + "id": "VariableID:27798:298538", + "key": "8eef18eebca4c70b4aa4e2a8496f6d2aeaee605f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/8 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 640, + "26383:9": 512, + "26383:10": 768 + }, + "id": "VariableID:26422:321111", + "key": "250997ea1e86fd68ece79a4c0c0f5424e6484120", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/8 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 640, + "26383:9": 512, + "26383:10": 768 + }, + "id": "VariableID:26422:321112", + "key": "d7fd29ead14a10a007661b6a78827d21a6901ee5", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Condensed grid/12 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 480, + "26383:9": 768, + "26383:10": 1152 + }, + "id": "VariableID:27798:298539", + "key": "f2c1273c1d0aea46b6e12df54bcab6a0a970b9c5", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Gutter", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:26445:295119", + "key": "961fb71fa3174a81901f949a9e83fd2a17eb967b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Left end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:26445:295120", + "key": "97ffc038d5df00c7f6b38e9262b496460a5c0d58", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Right end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:26445:295121", + "key": "916fa3881e7d63d95cde39c2aa35c2186037f3cf", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Left end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27885:298557", + "key": "513f649475746311f5f2b5eb10df8a00a1e1ed7c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Right end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27885:298558", + "key": "005a07a1682b9cf8d8ce1e248ae26f3859ef8ab6", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Column count", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 4, + "26383:8": 8, + "26383:9": 16, + "26383:10": 16 + }, + "id": "VariableID:26445:295122", + "key": "57101b34d3b17e8b656bb3cc8b0d335059255836", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Aside left spacer width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27857:298531", + "key": "cff5444530374dd55665692bc2b327db2aee6acc", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Aside left spacer min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27864:298535", + "key": "8986c3be9a47f0bf776d5f52908d19113a86282a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/Aside left spacer max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27864:298536", + "key": "a7d9678a292362696095b334ab816fd193402f81", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/2 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27798:298540", + "key": "9be5df82ad102b756da192fa62976a547683c401", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/2 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 56, + "26383:8": 144, + "26383:9": 104, + "26383:10": 170 + }, + "id": "VariableID:26445:295123", + "key": "70829afdbff40f38eaebfaed79846afda3291c12", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/2 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 56, + "26383:8": 144, + "26383:9": 104, + "26383:10": 170 + }, + "id": "VariableID:26445:295124", + "key": "d9eee57ec08625427b42e59b57ec2c048cca64d4", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/4 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27798:298541", + "key": "d0673c6d95d8f3b080c4fdaa1388362146958cee", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/4 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 144, + "26383:8": 320, + "26383:9": 240, + "26383:10": 372 + }, + "id": "VariableID:26445:295125", + "key": "f9f0e0251dcc942e7103180f45afd49a354a49d6", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/4 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 144, + "26383:8": 320, + "26383:9": 240, + "26383:10": 372 + }, + "id": "VariableID:26445:295126", + "key": "e389410270c898591c457e10dfdaf94fa961943f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/6 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27798:298542", + "key": "7348ce62b3aac09ca43bcf94001118892cd6016c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/6 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 232, + "26383:8": 496, + "26383:9": 376, + "26383:10": 574 + }, + "id": "VariableID:26445:295127", + "key": "25188933187c4f4c9d9ccc4846ec3ed45714e91f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/6 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 232, + "26383:8": 496, + "26383:9": 376, + "26383:10": 574 + }, + "id": "VariableID:26445:295128", + "key": "0c6a68108449d401bea479f79e4741a779dad45a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/8 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27798:298543", + "key": "c91331cbf609e5df97fefb08717aeb50649afdac", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/8 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 672, + "26383:9": 512, + "26383:10": 776 + }, + "id": "VariableID:26445:295129", + "key": "a99619b427145e84a83077dce94810b46e5a4f0a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/8 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 672, + "26383:9": 512, + "26383:10": 776 + }, + "id": "VariableID:26445:295130", + "key": "3a2cf29f8d083d12eaba467ad8d1bcf6ac9a8861", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Nested grid/12 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:27798:298544", + "key": "445d486b35668b96565322367b68134925f37bf8", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Viewport size", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 320, + "26383:8": 672, + "26383:9": 1056, + "26383:10": 1584 + }, + "id": "VariableID:26587:323039", + "key": "763a17cdce9e93d0d9bdd2faaa4308702bf19002", + "remote": false, + "scopes": ["WIDTH_HEIGHT"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Aside left min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 256, + "26383:8": 256, + "26383:9": 320, + "26383:10": 392 + }, + "id": "VariableID:27237:295639", + "key": "8a3572b28ea495468c5ce82e04143b20c2e76adb", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Aside right min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 256, + "26383:8": 256, + "26383:9": 320, + "26383:10": 392 + }, + "id": "VariableID:27237:295640", + "key": "4926e192a3b48736b71ad46392ace143efc742c9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Aside left", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": false, + "26383:8": false, + "26383:9": true, + "26383:10": true + }, + "id": "VariableID:27864:298539", + "key": "6b4ae78a1494f20faab4aafc6604c04b9a46833a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Wide grid/Number", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 0, + "26383:8": 0, + "26383:9": 0, + "26383:10": 0 + }, + "id": "VariableID:28172:298535", + "key": "82ffe4c19700ae42b998355fda41f73489b8a07b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Modal min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353273" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353270" + }, + "26383:9": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353267" + }, + "26383:10": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353262" + } + }, + "id": "VariableID:32639:353275", + "key": "014c911ffd7802a7b5870f07b7d121df2c7d55bd", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Modal max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353274" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353271" + }, + "26383:9": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353268" + }, + "26383:10": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353173" + } + }, + "id": "VariableID:32639:353276", + "key": "a7ae6d63893cbb0ca9946fb53dde9ffa489e162d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Modal text margin right", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353272" + }, + "26383:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353269" + }, + "26383:9": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353266" + }, + "26383:10": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:32639:353172" + } + }, + "id": "VariableID:32639:353277", + "key": "1724dff4f0d775477d177b3d24fb3bab643b3f46", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "End margins", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 16, + "26383:8": 32, + "26383:9": 32, + "26383:10": 40 + }, + "id": "VariableID:42946:326269", + "key": "1f6f6d4abeaed47c20133fb6b6478e7dc4c0f5c4", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Show on MD", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": false, + "26383:8": false, + "26383:9": false, + "26383:10": false + }, + "id": "VariableID:40067:164", + "key": "ce645b7ebd1e832cec37831c630a3c93b6f2bb65", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Show on LG", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": false, + "26383:8": false, + "26383:9": true, + "26383:10": false + }, + "id": "VariableID:40067:165", + "key": "10e3359573ad71ac7a0346b3a8b433866ada63d6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Show on SM", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": true, + "26383:8": false, + "26383:9": false, + "26383:10": false + }, + "id": "VariableID:40067:163", + "key": "9a4886fae988160e42a537b4f1bd9a89424ed898", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Show on Max", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": false, + "26383:8": false, + "26383:9": false, + "26383:10": true + }, + "id": "VariableID:40067:166", + "key": "37d189e8441cc98e82c702b8f7d0e4702e32c706", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Hide on SM", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": false, + "26383:8": true, + "26383:9": true, + "26383:10": true + }, + "id": "VariableID:40067:159", + "key": "cb75e12ddd8a0818d6a75bd3931861b3151b7ae2", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Hide on MD", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": true, + "26383:8": false, + "26383:9": true, + "26383:10": true + }, + "id": "VariableID:40067:160", + "key": "9816c008b3ea7148b43ae33a48838bed6c3b76a7", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Hide on LG", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": true, + "26383:8": true, + "26383:9": false, + "26383:10": true + }, + "id": "VariableID:40067:161", + "key": "34bf7bc301cd1d2812b8143e05daf199a7b090a8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Hide on Max", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": true, + "26383:8": true, + "26383:9": true, + "26383:10": false + }, + "id": "VariableID:40067:162", + "key": "5655e5cf93a3ab9953d1e9db875e7346a9f8c179", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Hide MD and below", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26383:7": false, + "26383:8": false, + "26383:9": true, + "26383:10": true + }, + "id": "VariableID:40067:8339", + "key": "32d10da37c1dafebfbe13d9bccfd88f96f4ed4f9", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Columns", + "resolvedType": "FLOAT", + "valuesByMode": { + "26383:7": 4, + "26383:8": 8, + "26383:9": 16, + "26383:10": 16 + }, + "id": "VariableID:42946:326264", + "key": "5cfd2b840333362e815b6bbc605ceace834e8455", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26383:295149" + } + ] + }, + { + "id": "VariableCollectionId:26385:295226", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Gutter", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295208" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295217" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295222" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295119" + } + }, + "id": "VariableID:26385:295227", + "key": "dec8cc57f9dde0c3d6c38909719e9af7e992deaf", + "remote": false, + "scopes": ["GAP"], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "End margins", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42946:326269" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42946:326269" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42946:326269" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42946:326269" + } + }, + "id": "VariableID:42946:326268", + "key": "ba235612b9acd103e6ee72e7395fc0161c9dde61", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Left end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295209" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295218" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295223" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295120" + } + }, + "id": "VariableID:26385:295233", + "key": "d8472ad8924e1ba47185f127400420d939135e56", + "remote": false, + "scopes": ["GAP"], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Right end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295210" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295219" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295224" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295121" + } + }, + "id": "VariableID:26385:295234", + "key": "fafc51aceeec99a1837163b94464e9c9409bd7ff", + "remote": false, + "scopes": ["GAP"], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Left end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298551" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298553" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298555" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298557" + } + }, + "id": "VariableID:27885:298559", + "key": "d801050b5f5830ac89e0d5e210721e8f30306e4b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Right end-margin with aside", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298552" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298554" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298556" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298558" + } + }, + "id": "VariableID:27885:298560", + "key": "85327cc87a4c1f5a4705c13820856df2ceb9333a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Aside left", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "26385:11": true, + "26385:12": true, + "26385:13": true, + "26445:0": false + }, + "id": "VariableID:27871:298546", + "key": "91e08da980a03989f4ee12765cb70e161a7e34c0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Aside left spacer width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27854:298528" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27857:298529" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27857:298530" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27857:298531" + } + }, + "id": "VariableID:27857:298532", + "key": "8637e74ebc3b341fc0ab239ec1b736cc81fc38df", + "remote": false, + "scopes": ["WIDTH_HEIGHT"], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Aside left spacer min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27864:298530" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27864:298531" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27864:298533" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27864:298535" + } + }, + "id": "VariableID:27864:298537", + "key": "3e09cb3b815465516d24936594575ef86d3829bb", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Aside left spacer max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27864:298529" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27864:298532" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27864:298534" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27864:298536" + } + }, + "id": "VariableID:27864:298538", + "key": "00e57841b981dd078802cef027d10e40873b52b6", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Aside left spacer max (XL)", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": 288, + "26385:12": 304, + "26385:13": 320, + "26445:0": 0 + }, + "id": "VariableID:27869:298545", + "key": "425f0ab8e489e0be589b77ee90c1e0edf82af3f2", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "2 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298525" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298530" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298535" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298540" + } + }, + "id": "VariableID:27798:298545", + "key": "d3b3bb953736fc1d5d1d3f491cc56a4ea2ff51d9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "2 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26405:324435" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26392:295114" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26392:295117" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295123" + } + }, + "id": "VariableID:26407:325639", + "key": "1c38b4fcf311a779288f3899adf1356ec38e0c24", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "2 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26405:324436" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26392:295115" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26392:295115" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295124" + } + }, + "id": "VariableID:26407:325640", + "key": "c870fbcbe7b1cf1dba3208d20ded6d115725cdea", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "4 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298526" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298531" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298536" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298541" + } + }, + "id": "VariableID:27798:298546", + "key": "88d32f49296bc0997d25cf06eae82400a40601b0", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "4 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26392:295112" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321101" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321107" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295125" + } + }, + "id": "VariableID:26407:325637", + "key": "1134412006ecd1ef28a151893a6e3a5554f2ddb5", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "4 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26392:295113" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321102" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321108" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295126" + } + }, + "id": "VariableID:26407:325638", + "key": "2a17873c0d07f50b14e4330fb782570f2c8f1a0f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "6 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298527" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298532" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298537" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298542" + } + }, + "id": "VariableID:27798:298547", + "key": "78a2e21e44e8643cf884d5e1059e08f1f982d613", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "6 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325633" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321103" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321109" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295127" + } + }, + "id": "VariableID:26407:325641", + "key": "cb8dcc2c25a564f350eea12d1d3798b0547c59c3", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "6 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325634" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321104" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321110" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295128" + } + }, + "id": "VariableID:26407:325642", + "key": "78c66fc56afdfd8bf45b52789e4c4bcd2b5ada9a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "8 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298528" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298533" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298538" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298543" + } + }, + "id": "VariableID:27798:298548", + "key": "a7ffb003f64ab4d768513abd6712abf3d5dee003", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "8 column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325635" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321105" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321111" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295129" + } + }, + "id": "VariableID:26407:325643", + "key": "fac5895760eed94ce1f84ed9685f35bbcb5dba1f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "8 column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325636" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321106" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26422:321112" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26445:295130" + } + }, + "id": "VariableID:26407:325644", + "key": "b73d2d7f6fbb7e5fe11d0049285248953f531570", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "12 column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26385:11": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298529" + }, + "26385:12": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298534" + }, + "26385:13": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298539" + }, + "26445:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298544" + } + }, + "id": "VariableID:27798:298549", + "key": "c91d8f114f5f5ddcb84e0b80d2153fcba9f82bc8", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:26385:295226" + } + ] + }, + { + "id": "VariableCollectionId:26392:295119", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Column width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26392:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298545" + }, + "26392:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298546" + }, + "26392:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298547" + }, + "26392:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27798:298548" + } + }, + "id": "VariableID:27798:298550", + "key": "19cd1bfbdef6798e2eede26d1afdcb82163e615a", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26392:295119" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Column min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26392:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325639" + }, + "26392:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325637" + }, + "26392:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325641" + }, + "26392:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325643" + } + }, + "id": "VariableID:26392:295120", + "key": "c25e696fa5f83bf812f9101af7ce4e9e4d86d634", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26392:295119" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Column max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "26392:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325640" + }, + "26392:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325638" + }, + "26392:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325642" + }, + "26392:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26407:325644" + } + }, + "id": "VariableID:26392:295121", + "key": "686f362ffda2d6d485ec0392573a88fba03829c4", + "remote": false, + "scopes": ["WIDTH_HEIGHT", "GAP"], + "variableCollectionId": "VariableCollectionId:26392:295119" + } + ] + }, + { + "id": "VariableCollectionId:27857:298533", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Aside left", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "27857:0": false, + "27857:1": true, + "27885:0": false, + "27885:1": true + }, + "id": "VariableID:27857:298534", + "key": "7f2a24246af23ca66c57af540170535891c52072", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:27857:298533" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Aside right", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "27857:0": false, + "27857:1": false, + "27885:0": true, + "27885:1": true + }, + "id": "VariableID:27885:298550", + "key": "778f6a3653f8edac9e4f4cf57410ac43709e2e54", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:27857:298533" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Left end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "27857:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295233" + }, + "27857:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298559" + }, + "27885:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295233" + }, + "27885:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298559" + } + }, + "id": "VariableID:27885:298547", + "key": "c9b560f08a6cceb20764c6293ca21af042a59858", + "remote": false, + "scopes": ["GAP"], + "variableCollectionId": "VariableCollectionId:27857:298533" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Right end-margin", + "resolvedType": "FLOAT", + "valuesByMode": { + "27857:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295234" + }, + "27857:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26385:295234" + }, + "27885:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298560" + }, + "27885:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:27885:298560" + } + }, + "id": "VariableID:27885:298548", + "key": "5217d88fbc82550ba4bdaaf35f97638e8df44947", + "remote": false, + "scopes": ["GAP"], + "variableCollectionId": "VariableCollectionId:27857:298533" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Hide when has aside left", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "27857:0": true, + "27857:1": false, + "27885:0": false, + "27885:1": false + }, + "id": "VariableID:38127:13122", + "key": "ac3b677a7f500c526ffabc2e217313a45e49ed4f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:27857:298533" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "End margins", + "resolvedType": "FLOAT", + "valuesByMode": { + "27857:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42946:326268" + }, + "27857:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42946:326268" + }, + "27885:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42946:326268" + }, + "27885:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42946:326268" + } + }, + "id": "VariableID:42946:326270", + "key": "d341233b96374a4e33662af57c6cb8830ad75dbf", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:27857:298533" + } + ] + }, + { + "id": "VariableCollectionId:28192:298534", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "background-or-layer (contextual)", + "resolvedType": "COLOR", + "valuesByMode": { + "28192:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:25984:295102" + }, + "28192:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295112" + }, + "28192:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26003:295113" + } + }, + "id": "VariableID:28192:298535", + "key": "cf3f61669cdd9b7ab20f634499ef1ae97de42a06", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:28192:298534" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "border-subtle (contextual)", + "resolvedType": "COLOR", + "valuesByMode": { + "28192:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295132" + }, + "28192:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295133" + }, + "28192:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295134" + } + }, + "id": "VariableID:28192:298536", + "key": "d6df68721dfeb672d45b3d506b6658afa43a0e6c", + "remote": false, + "scopes": ["STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:28192:298534" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "field (contextual)", + "resolvedType": "COLOR", + "valuesByMode": { + "28192:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295125" + }, + "28192:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295126" + }, + "28192:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295127" + } + }, + "id": "VariableID:31781:484", + "key": "453433b5aea036b42fb7971008ef2df9cbdbf133", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:28192:298534" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "field-hover (contextual)", + "resolvedType": "COLOR", + "valuesByMode": { + "28192:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295128" + }, + "28192:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295129" + }, + "28192:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295130" + } + }, + "id": "VariableID:31798:3422", + "key": "f18c384b549862eefa46e5e17d1cd858bb5d5ed9", + "remote": false, + "scopes": ["FRAME_FILL", "SHAPE_FILL"], + "variableCollectionId": "VariableCollectionId:28192:298534" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "border-strong (contextual)", + "resolvedType": "COLOR", + "valuesByMode": { + "28192:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295139" + }, + "28192:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295140" + }, + "28192:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26071:295141" + } + }, + "id": "VariableID:31781:540", + "key": "7028b9522be60eae22a86261452f0807f8ca2a28", + "remote": false, + "scopes": ["STROKE_COLOR"], + "variableCollectionId": "VariableCollectionId:28192:298534" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "layer-name", + "resolvedType": "STRING", + "valuesByMode": { + "28192:0": "Background", + "28192:1": "Layer 01", + "28192:2": "Layer 02" + }, + "id": "VariableID:32283:8553", + "key": "ff470f77382c6ee1908f431c29a06630d9bb2938", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:28192:298534" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "field-name", + "resolvedType": "STRING", + "valuesByMode": { + "28192:0": "Field 01", + "28192:1": "Field 02", + "28192:2": "Field 03" + }, + "id": "VariableID:32283:8554", + "key": "21fb519cef24dd462e83b8a0902d5aca740e8c75", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:28192:298534" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "border-subtle-name", + "resolvedType": "STRING", + "valuesByMode": { + "28192:0": "border-subtle-00", + "28192:1": "border-subtle-01", + "28192:2": "border-subtle-02" + }, + "id": "VariableID:32283:8683", + "key": "a40ce1210b95639cfcd300f643f11831b80cb50a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:28192:298534" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "border-strong-name", + "resolvedType": "STRING", + "valuesByMode": { + "28192:0": "border-strong-01", + "28192:1": "border-strong-02", + "28192:2": "border-strong-03" + }, + "id": "VariableID:32283:8684", + "key": "2941229b5cd39e779fc2e28ce8cbad0f11e3cfdd", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:28192:298534" + } + ] + }, + { + "id": "VariableCollectionId:32639:353171", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Max/Modal text margin right", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 224, + "32639:1": 147.1999969482422, + "32639:2": 108.80000305175781, + "32639:3": 0 + }, + "id": "VariableID:32639:353172", + "key": "54e1938f49539dac1b4e2ee8a2f428d2d8a84162", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Max/Modal min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 1120, + "32639:1": 736, + "32639:2": 544, + "32639:3": 352 + }, + "id": "VariableID:32639:353262", + "key": "aa74f7364a88672e9c9700aa59441861d63fe8fb", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Max/Modal max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 1120, + "32639:1": 736, + "32639:2": 544, + "32639:3": 352 + }, + "id": "VariableID:32639:353173", + "key": "a6856d68f3e9da2709dc2c0d3532942d50ba741d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "X-Large/Modal text margin right", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 185.60000610351562, + "32639:1": 121.5999984741211, + "32639:2": 89.5999984741211, + "32639:3": 0 + }, + "id": "VariableID:32639:353263", + "key": "9ec253f72209422e0d4fa87ed379f483ea4902ea", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "X-Large/Modal min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 928, + "32639:1": 608, + "32639:2": 448, + "32639:3": 288 + }, + "id": "VariableID:32639:353264", + "key": "b9c45bd06bdb96e9060cd28fb85c1506d78bd91d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "X-Large/Modal max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 928, + "32639:1": 608, + "32639:2": 448, + "32639:3": 288 + }, + "id": "VariableID:32639:353265", + "key": "987e27115ba4aab99f16fb4a58cf2dc753cfc4cf", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Large/Modal text margin right", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 172.8000030517578, + "32639:1": 121.5999984741211, + "32639:2": 0, + "32639:3": 0 + }, + "id": "VariableID:32639:353266", + "key": "7b350a4d1af1530741ffad4f3e7cb12008bae4a3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Large/Modal min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 864, + "32639:1": 608, + "32639:2": 416, + "32639:3": 288 + }, + "id": "VariableID:32639:353267", + "key": "c9e6b6b100a8996ff30085407d1900ba9facbccd", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Large/Modal max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 864, + "32639:1": 608, + "32639:2": 416, + "32639:3": 288 + }, + "id": "VariableID:32639:353268", + "key": "2ee4cce65c879ebe397b1d035b38adc765cbf6eb", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Medium/Modal text margin right", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 121.5999984741211, + "32639:1": 105.5999984741211, + "32639:2": 0, + "32639:3": 0 + }, + "id": "VariableID:32639:353269", + "key": "de89e9575e8f4d31d8dd7f795d39b1e579f56c70", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Medium/Modal min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 608, + "32639:1": 528, + "32639:2": 368, + "32639:3": 288 + }, + "id": "VariableID:32639:353270", + "key": "9ddf5e002d0d7b96c6523e3838e07b64d79500e0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Medium/Modal max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 608, + "32639:1": 528, + "32639:2": 369, + "32639:3": 288 + }, + "id": "VariableID:32639:353271", + "key": "b0652349aed1feb949aff78c26cb6e4422636137", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Small/Modal text margin right", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 0, + "32639:1": 0, + "32639:2": 0, + "32639:3": 0 + }, + "id": "VariableID:32639:353272", + "key": "eb03bfa2e4dd2a25c2fa97ab954fc42eadb4cf01", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Small/Modal min-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 320, + "32639:1": 320, + "32639:2": 320, + "32639:3": 320 + }, + "id": "VariableID:32639:353273", + "key": "9f28795ea76682fbaccf25c766af4ed75ae39a08", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Small/Modal max-width", + "resolvedType": "FLOAT", + "valuesByMode": { + "32639:0": 671, + "32639:1": 671, + "32639:2": 671, + "32639:3": 671 + }, + "id": "VariableID:32639:353274", + "key": "bb77939338a68e08372c0c29888a8a4f6ddb0385", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:32639:353171" + } + ] + }, + { + "id": "VariableCollectionId:40988:159", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:159" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:162" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:165" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:168" + } + }, + "id": "VariableID:40988:164", + "key": "ac6be86da7ec5f02152c29f685842503d823db40", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:160" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:163" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:166" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:169" + } + }, + "id": "VariableID:40988:165", + "key": "4b35a1213a644eba8ebf438a7a83a88fda878e04", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:161" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:164" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:167" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:170" + } + }, + "id": "VariableID:41013:1090", + "key": "a384d978fcb6b7ff85b2c41f68f6bde184352672", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382192" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382170" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382182" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382187" + } + }, + "id": "VariableID:41080:382197", + "key": "1d145a1b78d1454b28190811bbf3596e2fe260b8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382193" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382176" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382183" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382188" + } + }, + "id": "VariableID:41080:382198", + "key": "fbb40947eba7e0cfbf9163cf8edfc9e290880702", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382194" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382178" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382184" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382189" + } + }, + "id": "VariableID:41080:382199", + "key": "ee9185f953e1937a9e87b21e5995b0613dda34a1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382195" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382179" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382185" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382190" + } + }, + "id": "VariableID:41080:382200", + "key": "9e490c719606208bfcd15734a644733b37ec42ed", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382202" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382180" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382186" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382191" + } + }, + "id": "VariableID:41080:382201", + "key": "e6772f0202487cbe2ea9799beb29dc50fceb00f3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41158:371313" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41158:371314" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41158:371315" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41158:371316" + } + }, + "id": "VariableID:41158:371312", + "key": "73cdbbc907d8d1812d952954fd4efa36746790cc", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:45497:4856" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:46254:10749" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:46254:10751" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:46254:10753" + } + }, + "id": "VariableID:46254:10755", + "key": "bc31d62008d62a640bc3c85026d1f0e83517360d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:46254:10748" + }, + "41013:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:46254:10750" + }, + "41013:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:46254:10752" + }, + "41013:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:46254:10754" + } + }, + "id": "VariableID:46254:10756", + "key": "866bd3442481e4f62e808b678a60c65fb4d85692", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:159" + } + ] + }, + { + "id": "VariableCollectionId:40988:160", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321172" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321203" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321226" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41077:375798" + } + }, + "id": "VariableID:40997:159", + "key": "34dd131685caefeeb4a7688a1773f01b68375598", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321173" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321204" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321227" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41077:375799" + } + }, + "id": "VariableID:40997:160", + "key": "6f6bd302c2dcdf23fc26f5ca8c059467e393280c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321174" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321205" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321228" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41077:375800" + } + }, + "id": "VariableID:40997:161", + "key": "bdc5c0172618dbd58133028c4c98e60f864ca23e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382090" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382091" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382093" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41077:375801" + } + }, + "id": "VariableID:41080:382192", + "key": "16fe8bcb990c3c89d22000ce1bd96460802bc89b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382089" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382092" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382094" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382115" + } + }, + "id": "VariableID:41080:382193", + "key": "585f0cd5d00c4b16924f34216c03127e338ec110", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382118" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382119" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382120" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382116" + } + }, + "id": "VariableID:41080:382194", + "key": "fb6f5c7a08f209207aec43c7da7e3f0698cacc55", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382131" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382132" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382133" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382117" + } + }, + "id": "VariableID:41080:382195", + "key": "894c87aa3e89991b749073666d7f7aac772ea2bd", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382157" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382156" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382155" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382144" + } + }, + "id": "VariableID:41080:382202", + "key": "55a541380810e5e5f399b56c2c8de5322602ced8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9303" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9304" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9305" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382144" + } + }, + "id": "VariableID:45497:4856", + "key": "6ce6498705eddf8c4df7a011f86128a86961c9bb", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371197" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371205" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371213" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371301" + } + }, + "id": "VariableID:41158:371313", + "key": "eb7a115b3c332493d6125a552de6556a7b270925", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9366" + }, + "40997:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9368" + }, + "40997:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9369" + }, + "41080:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382144" + } + }, + "id": "VariableID:46254:10748", + "key": "a4354411f3c97847e904d59b3fafe8b2ba4045f1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:160" + } + ] + }, + { + "id": "VariableCollectionId:40988:161", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321210" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321223" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321217" + } + }, + "id": "VariableID:40997:162", + "key": "824bcfc9f5a1b599de44b1825c6f3da5a7869d87", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321211" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321224" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321218" + } + }, + "id": "VariableID:40997:163", + "key": "80c9b3b3d1ce95ff148e6794a7b3f7db5625db0e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321212" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321225" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321219" + } + }, + "id": "VariableID:40997:164", + "key": "5aff76ba3f4d9b45bfe496b21bd676de3fa94c1f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382095" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382097" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382099" + } + }, + "id": "VariableID:41080:382170", + "key": "52387fffd2661c2b7f8abdd7e6ddf5419d412d7e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382096" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382098" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382100" + } + }, + "id": "VariableID:41080:382176", + "key": "496d3f34324f52cd911134dd5ff8ac8fde9b2d78", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382121" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382122" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382123" + } + }, + "id": "VariableID:41080:382178", + "key": "f1b82042d93cdf0c233119f097e761db41a5e843", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382134" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382135" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382136" + } + }, + "id": "VariableID:41080:382179", + "key": "af395176238a941348b62a54732830c882e59ef8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382154" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382153" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382152" + } + }, + "id": "VariableID:41080:382180", + "key": "c6bf06f09e26e79370a1c7362e4352e230cd214d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371221" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371229" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371237" + } + }, + "id": "VariableID:41158:371314", + "key": "df66d4b021a4ab3878abed5f76be751d22c2d4cf", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9307" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9308" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9309" + } + }, + "id": "VariableID:46254:10749", + "key": "cc2071aadd18f7ca5701176a51ed4f622cc1fea4", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9370" + }, + "40997:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9371" + }, + "40997:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9372" + } + }, + "id": "VariableID:46254:10750", + "key": "6899e6d9564797f3d463212224defec39866fe5a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:161" + } + ] + }, + { + "id": "VariableCollectionId:40988:162", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321220" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:38928:280" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:38928:274" + } + }, + "id": "VariableID:40997:165", + "key": "9713d9a29b8a2524f67bec54e890aab0445faaa1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321221" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:38928:281" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:38928:275" + } + }, + "id": "VariableID:40997:166", + "key": "ef5a9f4b22aa11978ae0e54308c33a50a6f9b9ff", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321222" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:38928:282" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:38928:276" + } + }, + "id": "VariableID:40997:167", + "key": "4dabae65005b08020ccb653d2029475b7f0f4a6a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382101" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382103" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382105" + } + }, + "id": "VariableID:41080:382182", + "key": "2cfd566f58b0b4aefa3227ee31927ca4f6a849f1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382102" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382104" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382106" + } + }, + "id": "VariableID:41080:382183", + "key": "239bdec7b17fba3d7a8cefe6cdd358415d556f91", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382124" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382125" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382126" + } + }, + "id": "VariableID:41080:382184", + "key": "3b9f5792d73e16b562f24580bcb3c40c4e509926", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382137" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382138" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382139" + } + }, + "id": "VariableID:41080:382185", + "key": "593d21ddd950a8c6da6244164ad6037b976174e7", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382151" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382150" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382149" + } + }, + "id": "VariableID:41080:382186", + "key": "7152a573f3d6ca6f52fd640ff4beb909fee6981d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371245" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371253" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371261" + } + }, + "id": "VariableID:41158:371315", + "key": "f6c5616d128dbbce5cd40f82ce26a83d01fc833b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9311" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9312" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9314" + } + }, + "id": "VariableID:46254:10751", + "key": "32c98eb92442170b580d162b6f45cced388d107c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:3": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9373" + }, + "40997:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9374" + }, + "40997:5": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9375" + } + }, + "id": "VariableID:46254:10752", + "key": "f3b6ed8400c280a49ecace797a2ef51f7e1ccb91", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:162" + } + ] + }, + { + "id": "VariableCollectionId:40988:163", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321183" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321186" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321189" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41007:675" + } + }, + "id": "VariableID:40997:168", + "key": "9604eb0e1064794115120db935afb20eb014b583", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-color", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321184" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321187" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321190" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41007:676" + } + }, + "id": "VariableID:40997:169", + "key": "72b18d26655eb560fcfaa98645bf1446e964039b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321185" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321188" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:26423:321191" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41007:677" + } + }, + "id": "VariableID:40997:170", + "key": "f85474c26688d9c9a3034e00bd7399f58625bffa", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-icon", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382107" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382109" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382111" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41007:678" + } + }, + "id": "VariableID:41080:382187", + "key": "0ecb2e20e7bcf7eda7d109a7f0d776332483e1ab", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-background-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382108" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382110" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382112" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382114" + } + }, + "id": "VariableID:41080:382188", + "key": "ac658d5ef3ebe4521e7b2aaf82b11f4b92fa3afe", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382127" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382128" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382129" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382130" + } + }, + "id": "VariableID:41080:382189", + "key": "cef450ac0bdea177f119d56cb07bc7cd7ee05fa9", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-focus", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382140" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382141" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382142" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382143" + } + }, + "id": "VariableID:41080:382190", + "key": "2bfd9fb338106ef17dc58a61901b052fcbd7a002", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382148" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382147" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382146" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382145" + } + }, + "id": "VariableID:41080:382191", + "key": "12119545d33a5d1597c27cb4fd9d64e4debd8763", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "gantt-tag-group-background", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371269" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371277" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371285" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41143:371293" + } + }, + "id": "VariableID:41158:371316", + "key": "847b912eab2868a8b8f4a73e0cab75b346793109", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9317" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9318" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9321" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382130" + } + }, + "id": "VariableID:46254:10753", + "key": "0ebad537e2d114a429f24cd534033b11c3a70a74", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "tag-border-disabled-operational", + "resolvedType": "COLOR", + "valuesByMode": { + "40988:4": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9376" + }, + "40997:6": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9377" + }, + "40997:7": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:42928:9378" + }, + "40997:8": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:41080:382130" + } + }, + "id": "VariableID:46254:10754", + "key": "0c75713e8a19400e4fdc969a3bbde5c80a8b9c1b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:40988:163" + } + ] + }, + { + "id": "VariableCollectionId:48117:656", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI present/🚫 AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:165", + "key": "53ed655a215e13e3372dd1cfb2e47369746f3386", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI present/🚫 AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:166", + "key": "581424b750e8c9dfd0ff0d2f1c14e6e20920248b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI present/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:167", + "key": "2fb4eb796a49f7f8d22e558cb3e592ab17b3339b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI present/🚫 AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:168", + "key": "936aa4be3312bf3599d0df3e0ca1e59d6ba3c66e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI present/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:169", + "key": "6b18880a27d12dba390d9829105620a62721ad0b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI presence/No AI + AI present/No AI (Skeleton)", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:58245:28317", + "key": "cb7f3a8c3eaf0c0dc9ec51ae330853164ed9db6a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Chat shell/Light theme/chat-shell-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:52901:444687", + "key": "7d1c690f55ab7c19c1335e3195ef0bd2f190a35f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Chat shell/Light theme/chat-header-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:52901:444688", + "key": "df875945faa840eaeadda6740c00c3a59ac83b11", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Chat shell/Light theme/chat-prompt-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68034", + "key": "55ed7454fbba231b20850e502da68f6443bbdb9a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Chat shell/Light theme/chat-prompt-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68035", + "key": "8b58c0f0f009a9e4d820e29fc99acec5df6fbe43", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Chat shell/Light theme/chat-prompt-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48549:68036", + "key": "a79ce987b12c9f443106c9dceed532adee1c802d", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Chat shell/Light theme/chat-prompt-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48549:68076", + "key": "8a23dac0a85edd05529a01198c5bb4208d745e39", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Light theme/chat-bubble", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + } + }, + "id": "VariableID:48549:68153", + "key": "3c98d313e0afe91e944ad5d901837555f160d79d", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Light theme/chat-bubble-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + } + }, + "id": "VariableID:50035:163", + "key": "dac8e6007834eb4fc464dd8cd3adeed6759677c6", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Light theme/chat-bubble-active", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + } + }, + "id": "VariableID:50035:164", + "key": "793a44cbf7f302612ee2957897eeb2f6dee4abe2", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Light theme/chat-bubble-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.000009999999747378752 + } + }, + "id": "VariableID:48549:68154", + "key": "1ae028ee79a4706a56dd757c71863033ed184f86", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Light theme/chat-avatar-bot", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + } + }, + "id": "VariableID:48549:68080", + "key": "58e63aaacdbfe03bc6df4a37827f2c5e3875b8ab", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Light theme/chat-avatar-agent", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48549:68081", + "key": "49ca094184ac020a68156d5735afadd7c0d546ac", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Light theme/chat-avatar-user", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48549:68082", + "key": "a60d51a4728c18d60b11e9d8ebbb5f0fb705b6ef", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI presence/No AI + AI present/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:58322:79241", + "key": "c009fa7f1ce84841fb2d5994b125215c372d890a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-prompt-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:165" + } + }, + "id": "VariableID:48117:670", + "key": "5f896adeff4586acc4e933b54d5ebd22dc0dcaa0", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-prompt-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:40997:165" + } + }, + "id": "VariableID:48117:671", + "key": "bb24beaa0e7f97c0b221656f93aa619bac8198ae", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-prompt-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:48117:678", + "key": "72acde1e67302c8bd3d7c6386a3dcaad7fa991b8", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-prompt-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:48117:679", + "key": "fe0deba56a8d5d525c1ff50d4d74a7eebae36a5e", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-bubble-user", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:48117:672", + "key": "6d72324fef2e0bfce3ecfa455a281b69bb82852f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-bubble-agent", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:48117:673", + "key": "40018ec484bb07376e0277fab508447d1613d871", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-bubble-agent-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:48117:674", + "key": "5cb366c4b1902c44afedb278cb0a0ec3ae7b15f9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-avatar-bot", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:48117:675", + "key": "8dfda1cd294f8aad10d614fdb8bee0e28c29b789", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-avatar-agent", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:48117:676", + "key": "07c4e3a9ff2c71b91050af6a4e57cdcccdf93abd", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "chat-avatar-user", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + } + }, + "id": "VariableID:48117:677", + "key": "e88008a92cdb2edf712455fb47b5d8c6cdb9e611", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Chat shell/Dark theme/chat-shell-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:52901:444689", + "key": "682fdfbf42df013b26fc490f364366fd1a928789", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Chat shell/Dark theme/chat-header-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:52901:444690", + "key": "9abe401520e83a5342fed574c714fd2c4dccc8dc", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Chat shell/Dark theme/chat-prompt-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48549:68093", + "key": "de5dbd73ca211960b32db10d22e516f251a89e60", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Chat shell/Dark theme/chat-prompt-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48549:68094", + "key": "dec33c315592f06f4f9c303117cd8c69abb6c7e5", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Chat shell/Dark theme/chat-prompt-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:48549:68095", + "key": "637bf2d6a02279d8e9b5ae58d8988512f543ce3c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Chat shell/Dark theme/chat-prompt-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:48549:68096", + "key": "e49fff3595e0eb8e725c5a44ecb276049c88bab9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Dark theme/chat-bubble", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:166f546d107c34f3322a23c378cf30d9c1ad0767/4168:2238" + } + }, + "id": "VariableID:48549:68097", + "key": "172b7a109e0c3e1c9a21811be012b253ef1eec70", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Dark theme/chat-bubble-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:e97a01069ab823bbcc98a6c9d2b5326f552f1b0d/4168:2292" + } + }, + "id": "VariableID:50035:165", + "key": "8c8e129a7582022b418669a6010f864d1622ded3", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Dark theme/chat-bubble-active", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:688224970ca21f291738c1325d205c0f99932e0c/4168:2244" + } + }, + "id": "VariableID:50035:166", + "key": "aa841d768890bf0e77ad41acf49218201787a3f0", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Dark theme/chat-bubble-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 1, + "g": 1, + "b": 1, + "a": 0.000009999999747378752 + } + }, + "id": "VariableID:48549:68098", + "key": "795d9820015e0eb4de79103ef2cdadc496f28111", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Dark theme/chat-avatar-bot", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:48549:68100", + "key": "589360487885eb1c153fe1f4af0cc614d50634e0", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Dark theme/chat-avatar-agent", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48549:68101", + "key": "ae9d2e8f9645a7a50228ea7acbe77c4a62d50e42", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/User/Dark theme/chat-avatar-user", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48549:68102", + "key": "c8537cf76c3547cb075a6e3ee7987250c888f18a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-prompt-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68113", + "key": "8151e02144da07f1c74f74d49f50d9e9f1d452bc", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-prompt-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68114", + "key": "5d2288a277092c74a6a8e03b48040bc36838a683", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-prompt-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48549:68115", + "key": "6eaa487e8af899e41f792f8705ad8447350da40f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-prompt-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48549:68116", + "key": "e352454f18ac56c0af43602e4a15ca02bb74ed6a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-bubble", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68118", + "key": "0c9bdef10dad8149421fd2262d1dfef4f201455a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-bubble-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:50035:167", + "key": "c2ec641eef339d471a40fa174bb7b8d514017c63", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-bubble-active", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + } + }, + "id": "VariableID:50035:168", + "key": "378e91de71e7cc471cf2b769304ad952dd6a1f2b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-bubble-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:538a204cff54f76c70b6c2bd24867cf0cd76c6b9/4168:2231" + } + }, + "id": "VariableID:48549:68117", + "key": "f07bc8ddecb447061ec7f13a145e6f385aad26a5", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-avatar-bot", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:1ed06b7d3929433a0cbbfde6f4d1e9f7c8cb0bfe/4168:2259" + } + }, + "id": "VariableID:48549:68120", + "key": "bda20663e559239931c06209be49d27e1de2461b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-avatar-agent", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48549:68121", + "key": "89a6085270c2410f5f1e9e6d6e7fa0d8e1a38481", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Light theme/chat-avatar-user", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48549:68122", + "key": "8254e49297e81d695186b34434aad3de6e3a14b3", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-prompt-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48549:68143", + "key": "07e25c33688f84c389768bb66ccf66cbe746991f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-prompt-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:48549:68144", + "key": "e17110d6e0a380646ba3f4e2fd19ffec139b6c1d", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-prompt-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:48549:68145", + "key": "677ed1615ffdc152ab9d202e61d3bc332b23545a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-prompt-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:48549:68146", + "key": "5a9860f6b20f27769ec538bcc1d9e628aed0145a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-bubble", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7dd74a69c1cea732861694bc9776c573bb95bc2c/4168:2230" + } + }, + "id": "VariableID:48549:68147", + "key": "aceb1ea5261ab082f76737ac03022637d38dccf3", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-bubble-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:b43315ac7bc8daa1a2794476897e3d38fd3f4532/4168:2293" + } + }, + "id": "VariableID:50035:169", + "key": "33579f8d9b10b573d897a0ff7c1d9173539ee19c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-bubble-active", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:50035:170", + "key": "3a6fb67fddb4747734674ff3f8de1621996ad4fe", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-bubble-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:48549:68149", + "key": "c2b2ce69c95bce412a34a7802fe6bfc854df71cc", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-avatar-bot", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:7ef79d3553a25fbc43ee82d56c48de12e64b32cf/4168:2248" + } + }, + "id": "VariableID:48549:68150", + "key": "5182b4b70ed9efbad7345f34a8a8cc0c1189d826", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-avatar-agent", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48549:68151", + "key": "89d1a6405fc64313b9ea47bce068542836073408", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "User type/Non-user/Dark theme/chat-avatar-user", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:48549:68152", + "key": "1aef196776982b27b534a7a7e5eb52c5062af897", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Light theme/Enabled/AI slug gradient background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:508b85ce17f36e353759b5297c25e4cec2e5d72d/4168:2228" + } + }, + "id": "VariableID:50403:430496", + "key": "d580948439049ce0a60b61ae2737fcec19669fda", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Light theme/Enabled/AI slug gradient stop 1", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:80d29b48dd6d09bb614564abd46b1935060a1899/4168:2254" + } + }, + "id": "VariableID:50403:430497", + "key": "43114a1319bcd84281448026df50f1fa643e2b34", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Light theme/Enabled/AI slug gradient stop 2", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:50403:430498", + "key": "0c822048020649bacbb9f2af8eef57628c878999", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Light theme/Enabled/AI slug solid background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ef58aff8080b5044e7f23646e707551404943689/4168:2246" + } + }, + "id": "VariableID:50410:430523", + "key": "428f6f06bd303a770be9cc04afda12897f9fbfb9", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Light theme/Hover/AI slug gradient background hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8744233f1160dcf49f2a162b89e0e8059189b22e/4168:2294" + } + }, + "id": "VariableID:50409:430504", + "key": "e84b1d912b52f20f2ebced1c853803b5d454a336", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Light theme/Hover/AI slug gradient stop 1 hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + } + }, + "id": "VariableID:50409:430505", + "key": "ab7335fe1f0a8f046a70718cfcfce8e53700fd9b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Light theme/Hover/AI slug gradient stop 2 hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:50409:430506", + "key": "7758d968035e8f840d1f3afa0552a83994eb309f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Light theme/Hover/AI slug solid background hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:5539ea9f5391d36f4a33dc257dee7dd61e452942/4168:2290" + } + }, + "id": "VariableID:50410:430524", + "key": "d31a2d9bf2a7282a7ff1603410a5f0555f55eaf6", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Dark theme/Enabled/AI slug gradient background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cebdb6c43dfdb8e9c5c4c74d3ff13799a2552e1f/4168:2256" + } + }, + "id": "VariableID:50409:430512", + "key": "c6390582beebe7b723bd9fe4606bccc4b4852df6", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Dark theme/Enabled/AI slug gradient stop 1", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:cf71f9407dc31e96ab9479ee000de56cf004786a/4168:2239" + } + }, + "id": "VariableID:50409:430513", + "key": "1ce531b57db9b078aaef3faf54ce0b218bb1bd87", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Dark theme/Enabled/AI slug gradient stop 2", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:50409:430514", + "key": "cba7aa63ba53559422c8843539a0e46e3ebe3221", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Dark theme/Enabled/AI slug solid background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:ab1683672ec695e43e0a6ba949c555b5cc161d92/4168:2236" + } + }, + "id": "VariableID:50410:430526", + "key": "25fd73cad00601ba2ea5eac13657377ee65fc324", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Dark theme/Hover/AI slug gradient background hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:3fd462b1ba4470f64a4dfac7fc657feedc0b891f/4168:2288" + } + }, + "id": "VariableID:50409:430516", + "key": "e46dcde8bda05abd63153b582273f9e8ba011def", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Dark theme/Hover/AI slug gradient stop 1 hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:50409:430517", + "key": "d27d0a007a8127d8afa51dfa9d034e2296b9d49a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Dark theme/Hover/AI slug gradient stop 2 hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:50409:430518", + "key": "4fbc746267087566687dc320c1057a4b72d9fb95", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI slug/Dark theme/Hover/AI slug solid background hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:8a42f5d43cf7ecf2ae797525d9b209eaef514714/4168:2286" + } + }, + "id": "VariableID:50410:430527", + "key": "b97a28132d73e51ee163d69114d8d50e2e5831b2", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI skeleton/Light theme/AI-skeleton-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:6b76394b5a11b593c09b1ba7d0b1411a841965c4/4168:2271" + } + }, + "id": "VariableID:52277:1198", + "key": "0186a66851188b20600a4b47f9802b15e5e585cd", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI skeleton/Light theme/AI-skeleton-element", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:2e94e75cb682951016022f0a5c30d312af57b391/4168:2258" + } + }, + "id": "VariableID:52277:1199", + "key": "77142c7c304112214805c7794a01837797d649b1", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI skeleton/Dark theme/AI-skeleton-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 0.47058823704719543, + "g": 0.6627451181411743, + "b": 1, + "a": 0.5 + } + }, + "id": "VariableID:52277:1200", + "key": "1aae84902b647fb49d5de04d94556f6ecb9456f1", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI skeleton/Dark theme/AI-skeleton-element", + "resolvedType": "COLOR", + "valuesByMode": { + "48117:0": { + "r": 0.47058823704719543, + "g": 0.6627451181411743, + "b": 1, + "a": 0.30000001192092896 + } + }, + "id": "VariableID:52277:1201", + "key": "348fe2ae0ecbaefba47abf8477ef53a8db11f207", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI reverted/AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:170", + "key": "0a5e997d22ae5216dcd517147ee29d115da5f0ce", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI reverted/AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:171", + "key": "b4e350f45bda3676f21b26e8801f540e417590d9", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI reverted/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:172", + "key": "bcb23fa34678d56ff25d810e8b292bfd860f5b25", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI reverted/AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:173", + "key": "145e1e77ab5b3c1e54e58dd11e391eab109daf2a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/No AI + AI reverted/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:174", + "key": "fe2c88c44258479f6f46abc8f72b9cb1216105d3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI presence/No AI + AI reverted/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:58322:79242", + "key": "f4371c725521959c77108288f303ec7eca1864b0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI present/AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:55015:175", + "key": "1cbb6624aede70a7a20935dc06a89de134333fc9", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI present/AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:55015:176", + "key": "aae87e8c55dfe62279746232e2093346c0ff204b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI present/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:55015:177", + "key": "1bb3706b0e863b5f28a8ba2227e962ad1ef056a8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI present/AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:55015:178", + "key": "f3c3d1b394bd95a177186cf0fdcd5d3ea8763767", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI present/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:179", + "key": "9fbc789ec5e5d758fcc5788420419090cfdaf99f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI presence/All AI elements + AI present/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:58322:79243", + "key": "aa65bf7c99fdcbe27d8c749d31811d58dff4c15d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI reverted/AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:180", + "key": "3913201ad4ac2a48ddd2038f27c546e3e4f5954a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI reverted/AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:181", + "key": "20ed06282dcc83abccf99f54f499e07d36469aea", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI reverted/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:182", + "key": "310ff07b4175ce996303d2735b81d86b4004ea64", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI reverted/AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:183", + "key": "5a8c073574662b470784e507117b35e509de2bb1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/All AI elements + AI reverted/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:55015:184", + "key": "181fd374c4f814387e527ce09988b07a1c3be20b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI presence/All AI elements + AI reverted/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:58322:79244", + "key": "dd9b97ac7254b3d2697ac777bd9d4f904714768c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI present/AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:185", + "key": "ec4ba240c5b197c593d42b672500122637a29e23", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI present/AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:55015:186", + "key": "6a2d14a6cc103bccaf1a5e76f4a122079ce079cc", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI present/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:55015:187", + "key": "b164dfa4cedd8ff762285ed7cc2f08bd70ae9068", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI present/AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:55015:188", + "key": "bfefa8852b6662aaf52afcddfb7fb3593b88ccc6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI present/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:189", + "key": "549e0ffa51e894bfd71952784d2be47fad890c70", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI presence/AI layer only + AI present/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": true + }, + "id": "VariableID:58322:79245", + "key": "d2dba29f6d3fae578e9c1dc96933b5ab31dc172a", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI reverted/AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:190", + "key": "ab297617ed566102c76414b3a741d6c4de67f813", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI reverted/AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:191", + "key": "e5a8adaa46a9193591ba5f4a27b752e9fe2b641d", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI reverted/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:192", + "key": "da74c89e1b4667d1b73bf4efbffbff0a72d58326", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI reverted/AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:193", + "key": "abef18369cae7453c0ce99174f70452137476b1c", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI presence/AI layer only + AI reverted/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:55015:194", + "key": "1bbba0471ef3a49c8b1a824c0b1d1a0a63f59301", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI presence/AI layer only + AI reverted/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48117:0": false + }, + "id": "VariableID:58322:79246", + "key": "f355af2b0f47f3df0d56ea4877f1162dbc68f4a8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48117:656" + } + ] + }, + { + "id": "VariableCollectionId:48549:67963", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Light theme/chat-prompt-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68164", + "key": "bb46f18079ed565acf5c836c2509d34cdd4fdf80", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Light theme/chat-prompt-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68165", + "key": "2b3d972910c39735b4a23cc9c324bdaf6c2cf242", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Light theme/chat-prompt-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68166", + "key": "1f5fa15d611828329b47ff275831fa35b4aa299f", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Light theme/chat-prompt-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68167", + "key": "2dbd64484fe110be5e087975d6f4c52a3d3f79c4", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Light theme/chat-bubble", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68153" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68118" + } + }, + "id": "VariableID:48549:68168", + "key": "bcd5ecdf9056826b6fa8cca6f70b817dcddc64b5", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Light theme/chat-bubble-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:163" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:167" + } + }, + "id": "VariableID:50035:159", + "key": "efc5322dba559d46ec4700b457747040ec204791", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Light theme/chat-bubble-active", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:164" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:168" + } + }, + "id": "VariableID:50035:160", + "key": "a613d0c4abd8868845878b7126376ea4009c654b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Light theme/chat-bubble-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68154" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68117" + } + }, + "id": "VariableID:48549:68169", + "key": "06289ce4ea3448d9b3142b3739ee50d72c1976c8", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Dark theme/chat-prompt-background", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68170", + "key": "be79023c8321b160a4cc7acdc4c08c5c13d764ef", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Dark theme/chat-prompt-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68171", + "key": "3344b192512e8046788bc12ed2ab508a520b7a3a", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Dark theme/chat-prompt-border-start", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68172", + "key": "3563f53263d1b52174f341be04c80b7860512f7b", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Dark theme/chat-prompt-border-end", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:20edab35b932b784dec2134a1099fe90595111a6/4168:2266" + } + }, + "id": "VariableID:48549:68173", + "key": "779ee0dc72cc37b701c6c99e1c03b603dc4c5f6c", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Dark theme/chat-bubble", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68097" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68147" + } + }, + "id": "VariableID:48549:68174", + "key": "b06d20e906aaa3585d267f07e819b17a92d1ab94", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Dark theme/chat-bubble-hover", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:165" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:169" + } + }, + "id": "VariableID:50035:161", + "key": "90220b63158ac5a4df65abd34fc33e6e59bf9935", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Dark theme/chat-bubble-active", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:166" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50035:170" + } + }, + "id": "VariableID:50035:162", + "key": "8de60fd63cecdfbde7b1f67397d421dd2b780396", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "Dark theme/chat-bubble-border", + "resolvedType": "COLOR", + "valuesByMode": { + "48549:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68098" + }, + "48549:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:48549:68149" + } + }, + "id": "VariableID:48549:68175", + "key": "6901e6bd300420c73fe15b6cfdb5b565abdbf455", + "remote": false, + "scopes": [], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Show for user", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48549:1": true, + "48549:2": false + }, + "id": "VariableID:50183:159", + "key": "1dd6a413e21cc228c50bd891444e977f09d22e18", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48549:67963" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Show for non-user", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "48549:1": false, + "48549:2": true + }, + "id": "VariableID:50183:160", + "key": "93fa49cd43cfff6190aebe31bab32eda1ad784f2", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:48549:67963" + } + ] + }, + { + "id": "VariableCollectionId:50388:1641", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50388:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:161" + }, + "50388:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1248" + }, + "50388:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1254" + } + }, + "id": "VariableID:50388:1642", + "key": "ac9b1b9f94c653d6a4d7eae4b340e3123c8ea3c6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50388:1641" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50388:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:162" + }, + "50388:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1249" + }, + "50388:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1255" + } + }, + "id": "VariableID:50388:1643", + "key": "7690ea7dcccf85df3185d3a93bef1547b7d768e8", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50388:1641" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50388:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:163" + }, + "50388:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1250" + }, + "50388:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1256" + } + }, + "id": "VariableID:50388:1644", + "key": "3a460ba70006240442818b6004199faee5fe792f", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50388:1641" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50388:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:164" + }, + "50388:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1251" + }, + "50388:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1257" + } + }, + "id": "VariableID:50388:1645", + "key": "a318fc1caf87639895cbb9f7b2ba5328a6e4cdd7", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50388:1641" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50388:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:50542:440445" + }, + "50388:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1252" + }, + "50388:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1258" + } + }, + "id": "VariableID:55029:1305", + "key": "5cc1f5f8ce86427c8e871d0517985a6003ad01e3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50388:1641" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "No AI (skeleton)", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50388:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58245:28317" + }, + "50388:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1251" + }, + "50388:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55029:1251" + } + }, + "id": "VariableID:56525:2128", + "key": "f7f2c98046ebe919c74e0abb3b6cfb7f3912ac67", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50388:1641" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50388:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79248" + }, + "50388:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79249" + }, + "50388:2": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79250" + } + }, + "id": "VariableID:58322:79247", + "key": "c35457265b82a43c6873f8aee9d4e4db213d55e2", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50388:1641" + } + ] + }, + { + "id": "VariableCollectionId:50542:440444", + "variables": [ + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "No AI/AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:165" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:170" + } + }, + "id": "VariableID:55015:161", + "key": "c251e429c32df6a0cbe94b66e61e9eb7c8e09ad1", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "No AI/AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:166" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:171" + } + }, + "id": "VariableID:55015:162", + "key": "d4f56201a9f45f7388c2829a01cb9921be64770e", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "No AI/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:167" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:172" + } + }, + "id": "VariableID:55015:163", + "key": "6bfc5db95aa9bf0e90d5f1b471b2ed0cc1c94f73", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "No AI/AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:168" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:173" + } + }, + "id": "VariableID:55015:164", + "key": "ec053332dfd764538e876dbcc50ac11144b8ca49", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "No AI/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:169" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:174" + } + }, + "id": "VariableID:50542:440445", + "key": "4be2f48c6fac049c33266fc7f167e64d65de7134", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "No AI/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79241" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79242" + } + }, + "id": "VariableID:58322:79248", + "key": "91c98cbc44152e73d6b445d94b93bfc35a63617b", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "All AI elements/AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:175" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:180" + } + }, + "id": "VariableID:55029:1248", + "key": "f121ad3bda3a0d6c4943ad4513b759bc60d1f3a0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "All AI elements/AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:176" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:181" + } + }, + "id": "VariableID:55029:1249", + "key": "daa789bc89cefdf11ae8d256a939c368f64667e0", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "All AI elements/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:177" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:182" + } + }, + "id": "VariableID:55029:1250", + "key": "086277d0ea221970e8b8335255131b340c76a373", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "All AI elements/AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:178" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:183" + } + }, + "id": "VariableID:55029:1251", + "key": "f265c0bc3211270b56a6455cf641979dd8c1a8c3", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "All AI elements/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:179" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:184" + } + }, + "id": "VariableID:55029:1252", + "key": "abe8ffbfa8f2b8b5b1402ee621a4d031e0f49200", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "All AI elements/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79243" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79244" + } + }, + "id": "VariableID:58322:79249", + "key": "3a4deb9b122a608f1e87753dceebea7dcdd43486", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI layer only/AI slug", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:185" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:190" + } + }, + "id": "VariableID:55029:1254", + "key": "403a785c2b3202f1c2bba762eead463e72e30770", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI layer only/AI background", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:186" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:191" + } + }, + "id": "VariableID:55029:1255", + "key": "90b11945eb7826fcdd1281234a878fe3ec0ca9af", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI layer only/AI border", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:187" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:192" + } + }, + "id": "VariableID:55029:1256", + "key": "cfed2346f007acb6534f8d18127c690368027e00", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI layer only/AI aura", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:188" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:193" + } + }, + "id": "VariableID:55029:1257", + "key": "93b3f9d77cba9a966a1bfee4908971a8aaa6a3d2", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": true, + "name": "AI layer only/AI revert button", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:189" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:55015:194" + } + }, + "id": "VariableID:55029:1258", + "key": "a054aa3223788f54eb658d7efedb855bbd42fa71", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + }, + { + "publishStatus": "UNPUBLISHED", + "description": "", + "hiddenFromPublishing": false, + "name": "AI layer only/Test", + "resolvedType": "BOOLEAN", + "valuesByMode": { + "50542:0": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79245" + }, + "50542:1": { + "type": "VARIABLE_ALIAS", + "id": "VariableID:58322:79246" + } + }, + "id": "VariableID:58322:79250", + "key": "ce047d82135d0d05149cddce4a6478ab794b0cb6", + "remote": false, + "scopes": ["ALL_SCOPES"], + "variableCollectionId": "VariableCollectionId:50542:440444" + } + ] + } +] diff --git a/packages/figma-to-design-tokens/src/types/figma.ts b/packages/figma-to-design-tokens/src/types/figma.ts new file mode 100644 index 0000000..5bcbeea --- /dev/null +++ b/packages/figma-to-design-tokens/src/types/figma.ts @@ -0,0 +1,25 @@ +export type FigmaExtractedVariable = Omit< + Variable, + | keyof PluginDataMixin + | 'getPublishStatusAsync' + | 'resolveForConsumer' + | 'setValueForMode' + | 'remove' + | 'setVariableCodeSyntax' + | 'removeVariableCodeSyntax' + | 'codeSyntax' +> & { + publishStatus?: PublishStatus; +}; + +export type FigmaExtractedVariableCollection = Omit< + VariableCollection, + | keyof PluginDataMixin + | 'getPublishStatusAsync' + | 'remove' + | 'removeMode' + | 'addMode' + | 'renameMode' +> & { + variables: Array; +}; diff --git a/packages/figma-to-design-tokens/src/types/index.ts b/packages/figma-to-design-tokens/src/types/index.ts new file mode 100644 index 0000000..d325066 --- /dev/null +++ b/packages/figma-to-design-tokens/src/types/index.ts @@ -0,0 +1 @@ +export * from './figma'; diff --git a/packages/figma-to-design-tokens/tsconfig.json b/packages/figma-to-design-tokens/tsconfig.json new file mode 100644 index 0000000..ca6e0af --- /dev/null +++ b/packages/figma-to-design-tokens/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "lib": [ + "DOM", + "DOM.Iterable", + "ESNext" + ], + "allowJs": false, + "skipLibCheck": true, + "esModuleInterop": false, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "Node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "typeRoots": ["./node_modules/@types", "./node_modules/@figma"], + }, + "include": ["src"], +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 65d6dea..5e1419b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -89,6 +89,9 @@ importers: '@ds-project/database': specifier: workspace:* version: link:../../packages/database + '@ds-project/types': + specifier: workspace:* + version: link:../../packages/figma-to-design-tokens '@hookform/resolvers': specifier: ^3.9.0 version: 3.9.0(react-hook-form@7.52.2(react@18.3.1)) @@ -599,6 +602,9 @@ importers: '@ds-project/components': specifier: workspace:* version: link:../components + '@ds-project/types': + specifier: workspace:* + version: link:../figma-to-design-tokens '@octokit/core': specifier: ^6.1.2 version: 6.1.2 @@ -705,6 +711,10 @@ importers: color2k: specifier: ^2.0.3 version: 2.0.3 + devDependencies: + '@figma/plugin-typings': + specifier: ^1.98.0 + version: 1.98.0 style-dictionary: specifier: ^4.0.1 version: 4.0.1 @@ -2312,6 +2322,9 @@ packages: '@figma/plugin-typings@1.97.0': resolution: {integrity: sha512-AcmZey7TBbc43g2dO+9hjrcTbgb0UFY32do3to3rFU1OXb9hinsrmmbddyhD5105DHzRDac4oT7A5+VOow7p1Q==} + '@figma/plugin-typings@1.98.0': + resolution: {integrity: sha512-Bx5pBRf8XWeAFbDtKfdiUEM/UkCHyl4baOGb+7OPM0ozrzg5JNDH/BsrGA4EpuJKkS4uRmV525q3g067OX6VHg==} + '@floating-ui/core@1.6.5': resolution: {integrity: sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==} @@ -9049,6 +9062,8 @@ snapshots: '@figma/plugin-typings@1.97.0': {} + '@figma/plugin-typings@1.98.0': {} + '@floating-ui/core@1.6.5': dependencies: '@floating-ui/utils': 0.2.5 From 1a976fe7a57f52b6929f091370f9d7ba83128f14 Mon Sep 17 00:00:00 2001 From: Tomas Francisco <4301103+tomasfrancisco@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:19:12 +0200 Subject: [PATCH 02/15] fix figma rgba color parsing --- packages/figma-plugin/src/ui/app.tsx | 10 +++---- .../figma-to-design-tokens/eslint.config.js | 11 ++++++++ packages/figma-to-design-tokens/package.json | 9 +++++- .../src/extractors/color.ts | 23 ++++++++++----- packages/figma-to-design-tokens/src/test.ts | 28 +++++++++++++++---- packages/figma-to-design-tokens/tsconfig.json | 12 +++----- pnpm-lock.yaml | 9 ++++++ 7 files changed, 74 insertions(+), 28 deletions(-) create mode 100644 packages/figma-to-design-tokens/eslint.config.js diff --git a/packages/figma-plugin/src/ui/app.tsx b/packages/figma-plugin/src/ui/app.tsx index 116c162..be25090 100644 --- a/packages/figma-plugin/src/ui/app.tsx +++ b/packages/figma-plugin/src/ui/app.tsx @@ -6,7 +6,8 @@ import { AsyncMessageTypes } from '../message.types'; import { AsyncMessage } from '../message'; import { LinkDesignSystem } from './modules/link-design-system'; import { useAuth } from './modules/providers/auth-provider'; -import { config } from './config'; +import { api } from '@ds-project/api/react'; +import { useConfig } from './modules/providers/config-provider'; function App() { const { login, logout, state } = useAuth(); @@ -15,16 +16,13 @@ function App() { api.resources.updateDesignTokens.useMutation(); useEffect(() => { - // This is an authenticated request - if (state !== 'authorized') return; - AsyncMessage.ui .request({ type: AsyncMessageTypes.GetDesignTokens, }) .then(({ designTokens }) => { - if (config.features.shouldUpdateTokens) { - void updateDesignTokens(designTokens); + if (fileName) { + void updateDesignTokens({ designTokens, name: fileName }); } }) .catch((error) => { diff --git a/packages/figma-to-design-tokens/eslint.config.js b/packages/figma-to-design-tokens/eslint.config.js new file mode 100644 index 0000000..620ae46 --- /dev/null +++ b/packages/figma-to-design-tokens/eslint.config.js @@ -0,0 +1,11 @@ +import baseConfig from '@ds-project/eslint/base'; +import reactConfig from '@ds-project/eslint/react'; + +/** @type {import('typescript-eslint').Config} */ +export default [ + { + ignores: ['.next/**'], + }, + ...baseConfig, + ...reactConfig, +]; diff --git a/packages/figma-to-design-tokens/package.json b/packages/figma-to-design-tokens/package.json index 1c29484..74e2932 100644 --- a/packages/figma-to-design-tokens/package.json +++ b/packages/figma-to-design-tokens/package.json @@ -4,7 +4,11 @@ "main": "./src/index.ts", "types": "./src/index.ts", "private": true, + "prettier": "@ds-project/prettier", "scripts": { + "lint": "eslint", + "format": "prettier --check . --ignore-path ../../.gitignore --ignore-path ../../.prettierignore", + "type-check": "tsc --noEmit --emitDeclarationOnly false", "build": "tsup src/index.ts", "test": "tsx src/test.ts" }, @@ -12,10 +16,13 @@ "author": "", "license": "ISC", "devDependencies": { + "@ds-project/prettier": "workspace:*", + "@ds-project/eslint": "workspace:*", "@figma/plugin-typings": "^1.98.0", "style-dictionary": "^4.0.1", "tsup": "^8.2.4", - "tsx": "^4.17.0" + "tsx": "^4.17.0", + "eslint": "catalog:" }, "dependencies": { "color2k": "^2.0.3" diff --git a/packages/figma-to-design-tokens/src/extractors/color.ts b/packages/figma-to-design-tokens/src/extractors/color.ts index b967aba..0355738 100644 --- a/packages/figma-to-design-tokens/src/extractors/color.ts +++ b/packages/figma-to-design-tokens/src/extractors/color.ts @@ -2,6 +2,20 @@ import { DesignToken } from 'style-dictionary/types'; import { toHex } from 'color2k'; import { FigmaExtractedVariable } from '../types'; +const convertChannel = (value: number): number => { + return Math.round(value * 255); +}; + +const toRgba = (value: RGB | RGBA): string => { + if ('a' in value) { + // RGBA + return `rgba(${convertChannel(value.r)},${convertChannel(value.g)},${convertChannel(value.b)},${convertChannel(value.a)})`; + } + + // RGB + return `rgb(${convertChannel(value.r)},${convertChannel(value.g)},${convertChannel(value.b)})`; +}; + export function extractColor( variable: FigmaExtractedVariable, modeId: string @@ -19,14 +33,9 @@ export function extractColor( const extractedValue = (() => { // RGB | RGBA | VariableAlias - if ('a' in value) { + if ('a' in value || 'r' in value) { // RGBA - return toHex(`rgba(${value.r},${value.g},${value.b},${value.a})`); - } - - if ('b' in value) { - // RGB - return toHex(`rgb(${value.r},${value.g},${value.b})`); + return toHex(toRgba(value)); } if ('id' in value && value.type === 'VARIABLE_ALIAS') { diff --git a/packages/figma-to-design-tokens/src/test.ts b/packages/figma-to-design-tokens/src/test.ts index ef6e2f5..53b5820 100644 --- a/packages/figma-to-design-tokens/src/test.ts +++ b/packages/figma-to-design-tokens/src/test.ts @@ -2,9 +2,9 @@ import { convertFigmaVariablesToDesignTokens } from './converter'; const designTokens = convertFigmaVariablesToDesignTokens([ { - id: 'VariableCollectionId:0:3', defaultModeId: '0:0', hiddenFromPublishing: false, + id: 'VariableCollectionId:0:3', key: '3f006b7a91efbc3c1e9d79f5401ebdd09757b762', modes: [ { @@ -20,6 +20,7 @@ const designTokens = convertFigmaVariablesToDesignTokens([ 'VariableID:351:3', 'VariableID:351:4', 'VariableID:433:2', + 'VariableID:2221:8', ], variables: [ { @@ -30,9 +31,9 @@ const designTokens = convertFigmaVariablesToDesignTokens([ resolvedType: 'COLOR', valuesByMode: { '0:0': { - r: 1, - g: 0, - b: 0, + r: 0, + g: 0.03333333507180214, + b: 1, a: 1, }, }, @@ -107,12 +108,27 @@ const designTokens = convertFigmaVariablesToDesignTokens([ scopes: ['ALL_SCOPES'], variableCollectionId: 'VariableCollectionId:0:3', }, + { + publishStatus: 'UNPUBLISHED', + description: '', + hiddenFromPublishing: false, + name: 'Number', + resolvedType: 'FLOAT', + valuesByMode: { + '0:0': 16, + }, + id: 'VariableID:2221:8', + key: 'd9f849744bd7d5cf2e2a1e41e2bdb607421cec92', + remote: false, + scopes: ['LETTER_SPACING'], + variableCollectionId: 'VariableCollectionId:0:3', + }, ], }, { - id: 'VariableCollectionId:367:2', defaultModeId: '367:0', hiddenFromPublishing: false, + id: 'VariableCollectionId:367:2', key: 'da800af164d583defb046c7bf6b786e59bca4682', modes: [ { @@ -165,9 +181,9 @@ const designTokens = convertFigmaVariablesToDesignTokens([ ], }, { - id: 'VariableCollectionId:1476:2', defaultModeId: '1476:0', hiddenFromPublishing: true, + id: 'VariableCollectionId:1476:2', key: '97a9ba6fa48acdfd2c2b6f24f47818771fef268f', modes: [ { diff --git a/packages/figma-to-design-tokens/tsconfig.json b/packages/figma-to-design-tokens/tsconfig.json index ca6e0af..843c506 100644 --- a/packages/figma-to-design-tokens/tsconfig.json +++ b/packages/figma-to-design-tokens/tsconfig.json @@ -2,11 +2,7 @@ "compilerOptions": { "target": "ESNext", "useDefineForClassFields": true, - "lib": [ - "DOM", - "DOM.Iterable", - "ESNext" - ], + "lib": ["DOM", "DOM.Iterable", "ESNext"], "allowJs": false, "skipLibCheck": true, "esModuleInterop": false, @@ -18,7 +14,7 @@ "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, - "typeRoots": ["./node_modules/@types", "./node_modules/@figma"], + "typeRoots": ["./node_modules/@types", "./node_modules/@figma"] }, - "include": ["src"], -} \ No newline at end of file + "include": ["src"] +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5e1419b..20dfe8f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -712,9 +712,18 @@ importers: specifier: ^2.0.3 version: 2.0.3 devDependencies: + '@ds-project/eslint': + specifier: workspace:* + version: link:../../tools/eslint + '@ds-project/prettier': + specifier: workspace:* + version: link:../../tools/prettier '@figma/plugin-typings': specifier: ^1.98.0 version: 1.98.0 + eslint: + specifier: 'catalog:' + version: 8.57.0 style-dictionary: specifier: ^4.0.1 version: 4.0.1 From 60be4cc72bfc97d61f668b623ce924aa3645b41b Mon Sep 17 00:00:00 2001 From: Tomas Francisco <4301103+tomasfrancisco@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:21:24 +0200 Subject: [PATCH 03/15] remove unused endpoints --- .../app/(dashboard)/tokens/converter/page.tsx | 26 ----------------- .../src/app/api/figma/variables/route.ts | 29 ------------------- 2 files changed, 55 deletions(-) delete mode 100644 apps/dashboard/src/app/(dashboard)/tokens/converter/page.tsx delete mode 100644 apps/dashboard/src/app/api/figma/variables/route.ts diff --git a/apps/dashboard/src/app/(dashboard)/tokens/converter/page.tsx b/apps/dashboard/src/app/(dashboard)/tokens/converter/page.tsx deleted file mode 100644 index cafcb72..0000000 --- a/apps/dashboard/src/app/(dashboard)/tokens/converter/page.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import { Text } from '@ds-project/components'; -import { JsonBlock, MainContent } from '@/components'; -import { fetchTokens } from '../_actions'; - -export default async function Tokens() { - const figmaVariables = await fetchTokens(); - - if (!figmaVariables) { - return ( - -

Error fetching variables

-
- ); - } - - return ( - -
- -
-
- ); -} diff --git a/apps/dashboard/src/app/api/figma/variables/route.ts b/apps/dashboard/src/app/api/figma/variables/route.ts deleted file mode 100644 index a5c42f3..0000000 --- a/apps/dashboard/src/app/api/figma/variables/route.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { NextRequest } from 'next/server'; -import { eq } from 'drizzle-orm'; -import { database } from '@/lib/drizzle'; -import { insertResourcesSchema, resourcesTable } from '@/lib/drizzle/schema'; -import { isAuthenticated } from '@/lib/supabase/server/utils/is-authenticated'; - -export async function POST(request: NextRequest) { - if (!(await isAuthenticated(request))) { - return new Response('Not authenticated', { status: 401 }); - } - - try { - const validatedData = insertResourcesSchema - .pick({ designTokens: true, projectId: true }) - .parse(await request.json()); - - // Update database - await database - .update(resourcesTable) - .set({ - designTokens: validatedData.designTokens, - }) - .where(eq(resourcesTable.projectId, validatedData.projectId)); - } catch (error) { - return new Response(JSON.stringify(error), { status: 400 }); - } - - return new Response('OK', { status: 200 }); -} From 025f1ead4fc8208b110216ae0c868d137ecb5cf7 Mon Sep 17 00:00:00 2001 From: Tomas Francisco <4301103+tomasfrancisco@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:24:22 +0200 Subject: [PATCH 04/15] minor format --- .../figma-to-design-tokens/src/extractors/color.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/figma-to-design-tokens/src/extractors/color.ts b/packages/figma-to-design-tokens/src/extractors/color.ts index 0355738..c44e296 100644 --- a/packages/figma-to-design-tokens/src/extractors/color.ts +++ b/packages/figma-to-design-tokens/src/extractors/color.ts @@ -1,6 +1,6 @@ -import { DesignToken } from 'style-dictionary/types'; +import type { DesignToken } from 'style-dictionary/types'; import { toHex } from 'color2k'; -import { FigmaExtractedVariable } from '../types'; +import type { FigmaExtractedVariable } from '../types'; const convertChannel = (value: number): number => { return Math.round(value * 255); @@ -32,13 +32,13 @@ export function extractColor( } const extractedValue = (() => { - // RGB | RGBA | VariableAlias if ('a' in value || 'r' in value) { - // RGBA + // RGB | RGBA return toHex(toRgba(value)); } - if ('id' in value && value.type === 'VARIABLE_ALIAS') { + if ('id' in value) { + // VariableAlias return value.id; } })(); From bc5fa8a4099cf080b0ca627fa71e63713c4d9f3a Mon Sep 17 00:00:00 2001 From: Tomas Francisco <4301103+tomasfrancisco@users.noreply.github.com> Date: Thu, 22 Aug 2024 09:07:55 +0200 Subject: [PATCH 05/15] move figma typings up to catalog --- packages/figma-plugin/package.json | 2 +- packages/figma-to-design-tokens/package.json | 2 +- pnpm-lock.yaml | 14 ++++++-------- pnpm-workspace.yaml | 5 +++-- 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/packages/figma-plugin/package.json b/packages/figma-plugin/package.json index ca51d4d..7be34c0 100644 --- a/packages/figma-plugin/package.json +++ b/packages/figma-plugin/package.json @@ -41,7 +41,7 @@ "@ds-project/eslint": "workspace:*", "@ds-project/prettier": "workspace:*", "@figma/eslint-plugin-figma-plugins": "^0.15.0", - "@figma/plugin-typings": "^1.97.0", + "@figma/plugin-typings": "catalog:", "@types/object-hash": "^3.0.6", "@types/react": "catalog:", "@types/react-dom": "catalog:", diff --git a/packages/figma-to-design-tokens/package.json b/packages/figma-to-design-tokens/package.json index 74e2932..3a133cd 100644 --- a/packages/figma-to-design-tokens/package.json +++ b/packages/figma-to-design-tokens/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@ds-project/prettier": "workspace:*", "@ds-project/eslint": "workspace:*", - "@figma/plugin-typings": "^1.98.0", + "@figma/plugin-typings": "catalog:", "style-dictionary": "^4.0.1", "tsup": "^8.2.4", "tsx": "^4.17.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 20dfe8f..0e9c894 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,6 +6,9 @@ settings: catalogs: default: + '@figma/plugin-typings': + specifier: ^1.98.0 + version: 1.98.0 '@trpc/client': specifier: 11.0.0-rc.482 version: 11.0.0-rc.482 @@ -670,8 +673,8 @@ importers: specifier: ^0.15.0 version: 0.15.0(eslint@8.57.0) '@figma/plugin-typings': - specifier: ^1.97.0 - version: 1.97.0 + specifier: 'catalog:' + version: 1.98.0 '@types/object-hash': specifier: ^3.0.6 version: 3.0.6 @@ -719,7 +722,7 @@ importers: specifier: workspace:* version: link:../../tools/prettier '@figma/plugin-typings': - specifier: ^1.98.0 + specifier: 'catalog:' version: 1.98.0 eslint: specifier: 'catalog:' @@ -2328,9 +2331,6 @@ packages: '@figma/eslint-plugin-figma-plugins@0.15.0': resolution: {integrity: sha512-ol/v6qje8sxE2npvjCbOQUGlTx++RdYcq98jKaNokL/qN1IF7Y6Y7jgj2wiAYmT2V+aABvtX7MNtKKJ2fbcfWA==} - '@figma/plugin-typings@1.97.0': - resolution: {integrity: sha512-AcmZey7TBbc43g2dO+9hjrcTbgb0UFY32do3to3rFU1OXb9hinsrmmbddyhD5105DHzRDac4oT7A5+VOow7p1Q==} - '@figma/plugin-typings@1.98.0': resolution: {integrity: sha512-Bx5pBRf8XWeAFbDtKfdiUEM/UkCHyl4baOGb+7OPM0ozrzg5JNDH/BsrGA4EpuJKkS4uRmV525q3g067OX6VHg==} @@ -9069,8 +9069,6 @@ snapshots: - eslint - supports-color - '@figma/plugin-typings@1.97.0': {} - '@figma/plugin-typings@1.98.0': {} '@floating-ui/core@1.6.5': diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 697bea7..c08db66 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -4,6 +4,7 @@ packages: - tools/* catalog: + "@figma/plugin-typings": ^1.98.0 "@trpc/client": 11.0.0-rc.482 "@trpc/react-query": 11.0.0-rc.482 "@trpc/server": 11.0.0-rc.482 @@ -14,12 +15,12 @@ catalog: "style-dictionary": ^4.0.1 eslint: ^8.57.0 next: ^14.2.5 + postcss: ^8.4.39 prettier: ^3.3.3 react-dom: ^18.3.1 react: ^18.3.1 + tailwindcss: ^3.4.7 typescript: ^5.5.4 vite: ^5.3.1 zod: ^3.23.8 - tailwindcss: ^3.4.7 - postcss: ^8.4.39 From ca5309b1e7fdd0b843ce96d9565f2f5238c6d83e Mon Sep 17 00:00:00 2001 From: Tomas Francisco <4301103+tomasfrancisco@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:04:00 +0200 Subject: [PATCH 06/15] add auth refresh to trpc in figma --- apps/dashboard/src/types/kv-types.ts | 1 - package.json | 6 + packages/api/package.json | 4 +- packages/api/src/query-client.ts | 2 +- packages/api/src/react.tsx | 64 +++--- packages/figma-plugin/eslint.config.js | 13 +- packages/figma-plugin/package.json | 5 +- packages/figma-plugin/src/plugin/plugin.ts | 2 - .../figma-plugin/src/types/credentials.ts | 1 + packages/figma-plugin/src/ui/app.tsx | 4 +- packages/figma-plugin/src/ui/lib/api.tsx | 65 ------ .../link-design-system/link-design-system.tsx | 2 +- .../src/ui/modules/providers/api-provider.tsx | 41 ++++ .../ui/modules/providers/auth-provider.tsx | 57 ++--- .../src/ui/modules/providers/index.tsx | 7 +- pnpm-lock.yaml | 206 ++++-------------- pnpm-workspace.yaml | 1 - 17 files changed, 173 insertions(+), 308 deletions(-) delete mode 100644 packages/figma-plugin/src/ui/lib/api.tsx create mode 100644 packages/figma-plugin/src/ui/modules/providers/api-provider.tsx diff --git a/apps/dashboard/src/types/kv-types.ts b/apps/dashboard/src/types/kv-types.ts index 13d5e65..58718d4 100644 --- a/apps/dashboard/src/types/kv-types.ts +++ b/apps/dashboard/src/types/kv-types.ts @@ -5,7 +5,6 @@ export interface KVCredentialsRead { export interface KVCredentials { accessToken: string; refreshToken: string; - expiresAt: number; } diff --git a/package.json b/package.json index d5e25a3..8ab08df 100644 --- a/package.json +++ b/package.json @@ -21,5 +21,11 @@ "packageManager": "pnpm@9.5.0", "engines": { "node": "^20" + }, + "pnpm": { + "overrides": { + "@trpc/client": "11.0.0-rc.482", + "@trpc/server": "11.0.0-rc.482" + } } } diff --git a/packages/api/package.json b/packages/api/package.json index 85e223e..7b921d9 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -26,16 +26,16 @@ "author": "", "license": "ISC", "dependencies": { - "style-dictionary": "catalog:", - "@ds-project/services": "workspace:*", "@ds-project/auth": "workspace:*", "@ds-project/database": "workspace:*", + "@ds-project/services": "workspace:*", "@tanstack/react-query": "^5.51.24", "@trpc/client": "catalog:", "@trpc/react-query": "catalog:", "@trpc/server": "catalog:", "next": "catalog:", "react": "catalog:", + "style-dictionary": "catalog:", "superjson": "^2.2.1", "zod": "catalog:" }, diff --git a/packages/api/src/query-client.ts b/packages/api/src/query-client.ts index 6e4781f..5fb5c2b 100644 --- a/packages/api/src/query-client.ts +++ b/packages/api/src/query-client.ts @@ -10,7 +10,7 @@ export const createQueryClient = () => queries: { // With SSR, we usually want to set some default staleTime // above 0 to avoid refetching immediately on the client - staleTime: 30 * 1000, + staleTime: 30 * 1000, // 30 seconds }, dehydrate: { serializeData: SuperJSON.serialize, diff --git a/packages/api/src/react.tsx b/packages/api/src/react.tsx index 033390a..4d18a46 100644 --- a/packages/api/src/react.tsx +++ b/packages/api/src/react.tsx @@ -1,14 +1,15 @@ 'use client'; import type { QueryClient } from '@tanstack/react-query'; -import { useState } from 'react'; import { QueryClientProvider } from '@tanstack/react-query'; +import type { TRPCLink } from '@trpc/client'; import { loggerLink, unstable_httpBatchStreamLink } from '@trpc/client'; import { createTRPCReact } from '@trpc/react-query'; import SuperJSON from 'superjson'; import { createQueryClient } from './query-client'; import type { AppRouter } from './app-router'; +import { useMemo } from 'react'; let clientQueryClientSingleton: QueryClient | undefined = undefined; const getQueryClient = () => { @@ -23,33 +24,40 @@ const getQueryClient = () => { export const api = createTRPCReact(); -export function TRPCReactProvider(props: { children: React.ReactNode }) { +export function TRPCReactProvider(props: { + children: React.ReactNode; + source: string; + accessToken?: string; + trpcLinks?: TRPCLink[]; +}) { const queryClient = getQueryClient(); - const [trpcClient] = useState(() => - api.createClient({ - links: [ - loggerLink({ - enabled: (op) => - // eslint-disable-next-line turbo/no-undeclared-env-vars - process.env.NODE_ENV === 'development' || - (op.direction === 'down' && op.result instanceof Error), - }), - unstable_httpBatchStreamLink({ - transformer: SuperJSON, - url: getBaseUrl() + '/api/trpc', - headers() { - const headerObject: Record = {}; - const headers = new Headers(); - headers.set('x-trpc-source', 'nextjs-react'); - headers.forEach((header, value) => { - headerObject[header] = value; - }); - return headerObject; - }, - }), - ], - }) + const trpcClient = useMemo( + () => + api.createClient({ + links: [ + ...(props.trpcLinks ?? []), + loggerLink({ + enabled: (op) => + // eslint-disable-next-line turbo/no-undeclared-env-vars + process.env.NODE_ENV === 'development' || + (op.direction === 'down' && op.result instanceof Error), + }), + unstable_httpBatchStreamLink({ + transformer: SuperJSON, + url: getBaseUrl() + '/api/v1', + headers() { + return { + 'x-trpc-source': props.source, + ...(props.accessToken + ? { Authorization: `Bearer ${props.accessToken}` } + : {}), + }; + }, + }), + ], + }), + [props.accessToken, props.source, props.trpcLinks] ); return ( @@ -62,10 +70,10 @@ export function TRPCReactProvider(props: { children: React.ReactNode }) { } const getBaseUrl = () => { - if (typeof window !== 'undefined') return window.location.origin; + // if (typeof window !== 'undefined') return window.location.origin; // eslint-disable-next-line turbo/no-undeclared-env-vars if (process.env.VERCEL_URL) return `https://${process.env.VERCEL_URL}`; // eslint-disable-next-line turbo/no-undeclared-env-vars - return `http://localhost:${process.env.PORT ?? 3000}`; + return `https://localhost:${process.env.PORT ?? 3000}`; }; diff --git a/packages/figma-plugin/eslint.config.js b/packages/figma-plugin/eslint.config.js index 49e620b..6596cb1 100644 --- a/packages/figma-plugin/eslint.config.js +++ b/packages/figma-plugin/eslint.config.js @@ -1,14 +1,19 @@ import baseConfig from '@ds-project/eslint/base'; import reactConfig from '@ds-project/eslint/react'; +// import figmaPlugin from '@figma/eslint-plugin-figma-plugins'; /** @type {import('typescript-eslint').Config} */ export default [ { ignores: ['dist/**'], - extends: ['plugin:@figma/figma-plugins/recommended'], - globals: { - figma: 'readable', - __html__: 'readable', + languageOptions: { + globals: { + figma: 'readable', + __html__: 'readable', + }, + }, + rules: { + // ...figmaPlugin.configs.recommended.rules, }, }, ...baseConfig, diff --git a/packages/figma-plugin/package.json b/packages/figma-plugin/package.json index 7be34c0..4db25e1 100644 --- a/packages/figma-plugin/package.json +++ b/packages/figma-plugin/package.json @@ -14,10 +14,10 @@ "type-check": "tsc --noEmit --emitDeclarationOnly false" }, "dependencies": { - "@ds-project/types": "workspace:*", "@apollo/client": "^3.7.11", "@ds-project/api": "workspace:*", "@ds-project/components": "workspace:*", + "@ds-project/types": "workspace:*", "@octokit/core": "^6.1.2", "@octokit/request": "^9.1.3", "@octokit/types": "^13.5.0", @@ -35,7 +35,8 @@ "sass": "^1.60.0", "style-dictionary": "catalog:", "superjson": "^2.2.1", - "tailwindcss": "catalog:" + "tailwindcss": "catalog:", + "trpc-token-refresh-link": "^0.5.0" }, "devDependencies": { "@ds-project/eslint": "workspace:*", diff --git a/packages/figma-plugin/src/plugin/plugin.ts b/packages/figma-plugin/src/plugin/plugin.ts index e86b49e..423b3d7 100644 --- a/packages/figma-plugin/src/plugin/plugin.ts +++ b/packages/figma-plugin/src/plugin/plugin.ts @@ -27,8 +27,6 @@ AsyncMessage.plugin.handle(AsyncMessageTypes.GetCredentials, async () => { throw new Error('No DS Credentials found'); } - console.log(credentialsString); - return { credentials }; }); diff --git a/packages/figma-plugin/src/types/credentials.ts b/packages/figma-plugin/src/types/credentials.ts index bbecf8e..35dcdad 100644 --- a/packages/figma-plugin/src/types/credentials.ts +++ b/packages/figma-plugin/src/types/credentials.ts @@ -1,4 +1,5 @@ export interface Credentials { accessToken: string; refreshToken: string; + expireAt: number; } diff --git a/packages/figma-plugin/src/ui/app.tsx b/packages/figma-plugin/src/ui/app.tsx index be25090..82c446e 100644 --- a/packages/figma-plugin/src/ui/app.tsx +++ b/packages/figma-plugin/src/ui/app.tsx @@ -6,8 +6,8 @@ import { AsyncMessageTypes } from '../message.types'; import { AsyncMessage } from '../message'; import { LinkDesignSystem } from './modules/link-design-system'; import { useAuth } from './modules/providers/auth-provider'; -import { api } from '@ds-project/api/react'; import { useConfig } from './modules/providers/config-provider'; +import { api } from '@ds-project/api/react'; function App() { const { login, logout, state } = useAuth(); @@ -22,7 +22,7 @@ function App() { }) .then(({ designTokens }) => { if (fileName) { - void updateDesignTokens({ designTokens, name: fileName }); + // void updateDesignTokens({ designTokens, name: fileName }); } }) .catch((error) => { diff --git a/packages/figma-plugin/src/ui/lib/api.tsx b/packages/figma-plugin/src/ui/lib/api.tsx deleted file mode 100644 index 396c0f4..0000000 --- a/packages/figma-plugin/src/ui/lib/api.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import type { QueryClient } from '@tanstack/react-query'; -import { useMemo } from 'react'; -import { QueryClientProvider } from '@tanstack/react-query'; -import { loggerLink, unstable_httpBatchStreamLink } from '@trpc/client'; -import { createTRPCReact } from '@trpc/react-query'; -import SuperJSON from 'superjson'; - -import { createQueryClient } from './query-client'; -import type { AppRouter } from '@ds-project/api'; -import { config } from '../config'; -import { useAuth } from '../modules/providers/auth-provider'; - -let clientQueryClientSingleton: QueryClient | undefined = undefined; -const getQueryClient = () => { - // Browser: use singleton pattern to keep the same query client - return (clientQueryClientSingleton ??= createQueryClient()); -}; - -export const api = createTRPCReact(); - -export function TRPCReactProvider(props: { children: React.ReactNode }) { - const queryClient = getQueryClient(); - const { accessToken } = useAuth(); - - const trpcClient = useMemo( - () => - api.createClient({ - links: [ - loggerLink({ - enabled: (op) => - // eslint-disable-next-line turbo/no-undeclared-env-vars - process.env.NODE_ENV === 'development' || - (op.direction === 'down' && op.result instanceof Error), - }), - unstable_httpBatchStreamLink({ - transformer: SuperJSON, - url: getBaseUrl() + '/api/v1', - headers() { - return { - 'x-trpc-source': 'figma-react', - Authorization: `Bearer ${accessToken}`, - }; - }, - }), - ], - }), - [accessToken] - ); - - return ( - - - {props.children} - - - ); -} - -const getBaseUrl = () => { - // if (typeof window !== 'undefined') return window.location.origin; - // // eslint-disable-next-line turbo/no-undeclared-env-vars - // if (process.env.VERCEL_URL) return `https://${process.env.VERCEL_URL}`; - - return config.AUTH_API_HOST; -}; diff --git a/packages/figma-plugin/src/ui/modules/link-design-system/link-design-system.tsx b/packages/figma-plugin/src/ui/modules/link-design-system/link-design-system.tsx index 4a7c3de..b7f9dbc 100644 --- a/packages/figma-plugin/src/ui/modules/link-design-system/link-design-system.tsx +++ b/packages/figma-plugin/src/ui/modules/link-design-system/link-design-system.tsx @@ -8,8 +8,8 @@ import { import { useCallback, useEffect, useState } from 'react'; import { AsyncMessage } from '../../../message'; import { AsyncMessageTypes } from '../../../message.types'; -import { api } from '@ds-project/api/react'; import { useConfig } from '../providers/config-provider'; +import { api } from '@ds-project/api/react'; export function LinkDesignSystem() { const { fileName } = useConfig(); diff --git a/packages/figma-plugin/src/ui/modules/providers/api-provider.tsx b/packages/figma-plugin/src/ui/modules/providers/api-provider.tsx new file mode 100644 index 0000000..6c74006 --- /dev/null +++ b/packages/figma-plugin/src/ui/modules/providers/api-provider.tsx @@ -0,0 +1,41 @@ +import { useMemo } from 'react'; +import { TRPCReactProvider } from '@ds-project/api/react'; +import { useAuth } from './auth-provider'; +import { tokenRefreshLink } from 'trpc-token-refresh-link'; +import type { AppRouter } from '../../../../../api/src/app-router'; + +export function ApiProvider({ children }: { children: React.ReactNode }) { + const { credentials, refreshAccessToken, logout } = useAuth(); + + const authTrpcLink = useMemo( + () => + tokenRefreshLink({ + tokenRefreshNeeded: () => { + if (!credentials) { + return false; + } + + return credentials.expireAt - Date.now() < 0; + }, + fetchAccessToken: async () => { + console.log('✨ Refreshing token...'); + try { + void refreshAccessToken(); + } catch (error) { + await logout(); + } + }, + }), + [credentials, logout, refreshAccessToken] + ); + + return ( + + {children} + + ); +} diff --git a/packages/figma-plugin/src/ui/modules/providers/auth-provider.tsx b/packages/figma-plugin/src/ui/modules/providers/auth-provider.tsx index e93bd7a..d778912 100644 --- a/packages/figma-plugin/src/ui/modules/providers/auth-provider.tsx +++ b/packages/figma-plugin/src/ui/modules/providers/auth-provider.tsx @@ -17,8 +17,7 @@ interface AuthStartResponse { } interface ContextType { - accessToken?: string; - refreshToken?: string; + credentials: Credentials | undefined; state: | 'initializing' | 'authorizing' @@ -31,6 +30,7 @@ interface ContextType { } const Context = createContext({ + credentials: undefined, state: 'initializing', refreshAccessToken: () => Promise.resolve(), login: () => Promise.resolve(), @@ -41,10 +41,8 @@ export function AuthProvider({ children }: { children: React.ReactNode }) { const [state, setState] = useState< 'initializing' | 'authorizing' | 'authorized' | 'unauthorized' | 'failed' >('initializing'); - const [accessToken, setAccessToken] = useState(); - const [refreshToken, setRefreshToken] = - useState(); const [shouldUpdatePlugin, setShouldUpdatePlugin] = useState(false); + const [credentials, setCredentials] = useState(); useEffect(() => { // Try to get credentials from plugin if they exist. @@ -55,9 +53,8 @@ export function AuthProvider({ children }: { children: React.ReactNode }) { AsyncMessage.ui .request({ type: AsyncMessageTypes.GetCredentials }) - .then(({ credentials }) => { - setAccessToken(credentials.accessToken); - setRefreshToken(credentials.refreshToken); + .then(({ credentials: _credentials }) => { + setCredentials(_credentials); setState('authorized'); }) .catch((error) => { @@ -73,27 +70,23 @@ export function AuthProvider({ children }: { children: React.ReactNode }) { return; } - if (state === 'authorized' && accessToken && refreshToken) { + if (state === 'authorized' && credentials) { void AsyncMessage.ui.request({ type: AsyncMessageTypes.SetCredentials, - credentials: { - accessToken, - refreshToken, - }, + credentials, }); - } else if (state === 'unauthorized' && !accessToken && !refreshToken) { + } else if (state === 'unauthorized' && !credentials) { void AsyncMessage.ui.request({ type: AsyncMessageTypes.DeleteCredentials, }); } setShouldUpdatePlugin(false); - }, [accessToken, refreshToken, shouldUpdatePlugin, state]); + }, [credentials, shouldUpdatePlugin, state]); const refreshAccessToken = useCallback(async () => { - if (!refreshToken) { - setAccessToken(undefined); - setRefreshToken(undefined); + if (!credentials) { + setCredentials(undefined); setState('unauthorized'); setShouldUpdatePlugin(true); return; @@ -101,37 +94,33 @@ export function AuthProvider({ children }: { children: React.ReactNode }) { const response = await fetch(`${config.AUTH_API_HOST}/api/auth/refresh`, { method: 'POST', - body: JSON.stringify({ refreshToken }), + body: JSON.stringify({ refreshToken: credentials.refreshToken }), }); if (!response.ok) { - setAccessToken(undefined); - setRefreshToken(undefined); + setCredentials(undefined); setState('unauthorized'); setShouldUpdatePlugin(true); return; } - const credentials = (await response.json()) as Credentials; - setAccessToken(credentials.accessToken); - setRefreshToken(credentials.refreshToken); + const _credentials = (await response.json()) as Credentials; + setCredentials(_credentials); setState('authorized'); setShouldUpdatePlugin(true); - }, [refreshToken]); + }, [credentials]); const logout = useCallback(async () => { await AsyncMessage.ui.request({ type: AsyncMessageTypes.DeleteCredentials, }); - setAccessToken(undefined); - setRefreshToken(undefined); + setCredentials(undefined); setState('unauthorized'); setShouldUpdatePlugin(true); }, []); const login = useCallback(async () => { - setAccessToken(undefined); - setRefreshToken(undefined); + setCredentials(undefined); setState('authorizing'); setShouldUpdatePlugin(true); @@ -169,10 +158,9 @@ export function AuthProvider({ children }: { children: React.ReactNode }) { clearInterval(interval); - const credentials = (await exchangeResponse.json()) as Credentials; + const _credentials = (await exchangeResponse.json()) as Credentials; - setAccessToken(credentials.accessToken); - setRefreshToken(credentials.refreshToken); + setCredentials(_credentials); setState('authorized'); setShouldUpdatePlugin(true); }, config.READ_INTERVAL); @@ -181,13 +169,12 @@ export function AuthProvider({ children }: { children: React.ReactNode }) { const contextValue = useMemo( () => ({ state, - accessToken, - refreshToken, + credentials, refreshAccessToken, login, logout, }), - [accessToken, login, logout, refreshAccessToken, refreshToken, state] + [credentials, login, logout, refreshAccessToken, , state] ); return {children}; diff --git a/packages/figma-plugin/src/ui/modules/providers/index.tsx b/packages/figma-plugin/src/ui/modules/providers/index.tsx index e2afbfa..39b1b97 100644 --- a/packages/figma-plugin/src/ui/modules/providers/index.tsx +++ b/packages/figma-plugin/src/ui/modules/providers/index.tsx @@ -1,13 +1,14 @@ -import { TRPCReactProvider } from '../../lib/api'; +import { ApiProvider } from './api-provider'; import { AuthProvider } from './auth-provider'; import { ConfigProvider } from './config-provider'; +import { TRPCReactProvider } from '@ds-project/api/react'; export function Providers({ children }: { children: React.ReactNode }) { return ( - + {children} - + ); } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0e9c894..adec55b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,15 +9,9 @@ catalogs: '@figma/plugin-typings': specifier: ^1.98.0 version: 1.98.0 - '@trpc/client': - specifier: 11.0.0-rc.482 - version: 11.0.0-rc.482 '@trpc/react-query': specifier: 11.0.0-rc.482 version: 11.0.0-rc.482 - '@trpc/server': - specifier: 11.0.0-rc.482 - version: 11.0.0-rc.482 '@types/node': specifier: ^22.4.1 version: 22.4.1 @@ -64,6 +58,10 @@ catalogs: specifier: ^3.23.8 version: 3.23.8 +overrides: + '@trpc/client': 11.0.0-rc.482 + '@trpc/server': 11.0.0-rc.482 + importers: .: @@ -123,7 +121,7 @@ importers: specifier: 'catalog:' version: 11.0.0-rc.482(@tanstack/react-query@5.51.24(react@18.3.1))(@trpc/client@11.0.0-rc.482(@trpc/server@11.0.0-rc.482))(@trpc/server@11.0.0-rc.482)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@trpc/server': - specifier: 'catalog:' + specifier: 11.0.0-rc.482 version: 11.0.0-rc.482 '@vercel/kv': specifier: ^2.0.0 @@ -341,13 +339,13 @@ importers: specifier: ^5.51.24 version: 5.51.24(react@18.3.1) '@trpc/client': - specifier: 'catalog:' + specifier: 11.0.0-rc.482 version: 11.0.0-rc.482(@trpc/server@11.0.0-rc.482) '@trpc/react-query': specifier: 'catalog:' version: 11.0.0-rc.482(@tanstack/react-query@5.51.24(react@18.3.1))(@trpc/client@11.0.0-rc.482(@trpc/server@11.0.0-rc.482))(@trpc/server@11.0.0-rc.482)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@trpc/server': - specifier: 'catalog:' + specifier: 11.0.0-rc.482 version: 11.0.0-rc.482 next: specifier: 'catalog:' @@ -621,7 +619,7 @@ importers: specifier: ^5.51.24 version: 5.51.24(react@18.3.1) '@trpc/client': - specifier: 'catalog:' + specifier: 11.0.0-rc.482 version: 11.0.0-rc.482(@trpc/server@11.0.0-rc.482) '@trpc/react-query': specifier: 'catalog:' @@ -662,6 +660,9 @@ importers: tailwindcss: specifier: 'catalog:' version: 3.4.7 + trpc-token-refresh-link: + specifier: ^0.5.0 + version: 0.5.0 devDependencies: '@ds-project/eslint': specifier: workspace:* @@ -3038,111 +3039,56 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.17.2': - resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} - cpu: [arm] - os: [android] - '@rollup/rollup-android-arm-eabi@4.21.0': resolution: {integrity: sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.17.2': - resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==} - cpu: [arm64] - os: [android] - '@rollup/rollup-android-arm64@4.21.0': resolution: {integrity: sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.17.2': - resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==} - cpu: [arm64] - os: [darwin] - '@rollup/rollup-darwin-arm64@4.21.0': resolution: {integrity: sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.17.2': - resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==} - cpu: [x64] - os: [darwin] - '@rollup/rollup-darwin-x64@4.21.0': resolution: {integrity: sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.17.2': - resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.21.0': resolution: {integrity: sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.17.2': - resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.21.0': resolution: {integrity: sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.17.2': - resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.21.0': resolution: {integrity: sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.17.2': - resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-musl@4.21.0': resolution: {integrity: sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': - resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} - cpu: [ppc64] - os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.21.0': resolution: {integrity: sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.17.2': - resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} - cpu: [riscv64] - os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.21.0': resolution: {integrity: sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.17.2': - resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} - cpu: [s390x] - os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.21.0': resolution: {integrity: sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw==} cpu: [s390x] @@ -3158,41 +3104,21 @@ packages: cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.17.2': - resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-musl@4.21.0': resolution: {integrity: sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.17.2': - resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} - cpu: [arm64] - os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.21.0': resolution: {integrity: sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.17.2': - resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==} - cpu: [ia32] - os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.21.0': resolution: {integrity: sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.17.2': - resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==} - cpu: [x64] - os: [win32] - '@rollup/rollup-win32-x64-msvc@4.21.0': resolution: {integrity: sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ==} cpu: [x64] @@ -3485,14 +3411,14 @@ packages: '@trpc/client@11.0.0-rc.482': resolution: {integrity: sha512-G08bQe8zSSK6baavNTzlsGIXUuUJyRmbC7YCwIg/eYh01nah/loxh4Cg8NDtTLzOvwmUOyQaU3XcMyhywwC4/g==} peerDependencies: - '@trpc/server': 11.0.0-rc.482+930e652bf + '@trpc/server': 11.0.0-rc.482 '@trpc/react-query@11.0.0-rc.482': resolution: {integrity: sha512-pmXStCkoxs7AJoP8oM9hnEXoYYYQbp/5kbA507R4Hd/P2tniBFe6aKFg4bXqeV+bWOi7qPNGSa5+IDH64WPRBg==} peerDependencies: '@tanstack/react-query': ^5.49.2 - '@trpc/client': 11.0.0-rc.482+930e652bf - '@trpc/server': 11.0.0-rc.482+930e652bf + '@trpc/client': 11.0.0-rc.482 + '@trpc/server': 11.0.0-rc.482 react: '>=18.2.0' react-dom: '>=18.2.0' @@ -5046,6 +4972,9 @@ packages: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} @@ -6191,6 +6120,14 @@ packages: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} + p-queue@7.4.1: + resolution: {integrity: sha512-vRpMXmIkYF2/1hLBKisKeVYJZ8S2tZ0zEAmIJgdVKP2nq0nh4qCdf8bgw+ZgKrkh71AOCaqzwbJJk1WtdcF3VA==} + engines: {node: '>=12'} + + p-timeout@5.1.0: + resolution: {integrity: sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==} + engines: {node: '>=12'} + p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} @@ -6723,11 +6660,6 @@ packages: peerDependencies: rollup: ^2.0.0 || ^3.0.0 || ^4.0.0 - rollup@4.17.2: - resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - rollup@4.21.0: resolution: {integrity: sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -7135,6 +7067,9 @@ packages: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true + trpc-token-refresh-link@0.5.0: + resolution: {integrity: sha512-yXPrGjYnXafDfjOYV29bcHYlfMmCnpCFhrDSI5fxJJlYamClHhyTgHjd+VHov/EJvwVu4Z+cp7FgIkL7Q6rKuQ==} + ts-api-utils@1.3.0: resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} @@ -9811,69 +9746,36 @@ snapshots: optionalDependencies: rollup: 4.21.0 - '@rollup/rollup-android-arm-eabi@4.17.2': - optional: true - '@rollup/rollup-android-arm-eabi@4.21.0': optional: true - '@rollup/rollup-android-arm64@4.17.2': - optional: true - '@rollup/rollup-android-arm64@4.21.0': optional: true - '@rollup/rollup-darwin-arm64@4.17.2': - optional: true - '@rollup/rollup-darwin-arm64@4.21.0': optional: true - '@rollup/rollup-darwin-x64@4.17.2': - optional: true - '@rollup/rollup-darwin-x64@4.21.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.17.2': - optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.21.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.17.2': - optional: true - '@rollup/rollup-linux-arm-musleabihf@4.21.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.17.2': - optional: true - '@rollup/rollup-linux-arm64-gnu@4.21.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.17.2': - optional: true - '@rollup/rollup-linux-arm64-musl@4.21.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': - optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.21.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.17.2': - optional: true - '@rollup/rollup-linux-riscv64-gnu@4.21.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.17.2': - optional: true - '@rollup/rollup-linux-s390x-gnu@4.21.0': optional: true @@ -9883,27 +9785,15 @@ snapshots: '@rollup/rollup-linux-x64-gnu@4.21.0': optional: true - '@rollup/rollup-linux-x64-musl@4.17.2': - optional: true - '@rollup/rollup-linux-x64-musl@4.21.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.17.2': - optional: true - '@rollup/rollup-win32-arm64-msvc@4.21.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.17.2': - optional: true - '@rollup/rollup-win32-ia32-msvc@4.21.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.17.2': - optional: true - '@rollup/rollup-win32-x64-msvc@4.21.0': optional: true @@ -12363,6 +12253,8 @@ snapshots: etag@1.8.1: {} + eventemitter3@5.0.1: {} + events@3.3.0: {} execa@5.1.1: @@ -13551,6 +13443,13 @@ snapshots: dependencies: p-limit: 3.1.0 + p-queue@7.4.1: + dependencies: + eventemitter3: 5.0.1 + p-timeout: 5.1.0 + + p-timeout@5.1.0: {} + p-try@2.2.0: {} package-json-from-dist@1.0.0: {} @@ -14083,28 +13982,6 @@ snapshots: magic-string: 0.30.10 rollup: 4.21.0 - rollup@4.17.2: - dependencies: - '@types/estree': 1.0.5 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.17.2 - '@rollup/rollup-android-arm64': 4.17.2 - '@rollup/rollup-darwin-arm64': 4.17.2 - '@rollup/rollup-darwin-x64': 4.17.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.17.2 - '@rollup/rollup-linux-arm-musleabihf': 4.17.2 - '@rollup/rollup-linux-arm64-gnu': 4.17.2 - '@rollup/rollup-linux-arm64-musl': 4.17.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2 - '@rollup/rollup-linux-riscv64-gnu': 4.17.2 - '@rollup/rollup-linux-s390x-gnu': 4.17.2 - '@rollup/rollup-linux-x64-gnu': 4.17.2 - '@rollup/rollup-linux-x64-musl': 4.17.2 - '@rollup/rollup-win32-arm64-msvc': 4.17.2 - '@rollup/rollup-win32-ia32-msvc': 4.17.2 - '@rollup/rollup-win32-x64-msvc': 4.17.2 - fsevents: 2.3.3 - rollup@4.21.0: dependencies: '@types/estree': 1.0.5 @@ -14609,6 +14486,13 @@ snapshots: tree-kill@1.2.2: {} + trpc-token-refresh-link@0.5.0: + dependencies: + '@trpc/client': 11.0.0-rc.482(@trpc/server@11.0.0-rc.482) + '@trpc/server': 11.0.0-rc.482 + date-fns: 2.30.0 + p-queue: 7.4.1 + ts-api-utils@1.3.0(typescript@5.5.4): dependencies: typescript: 5.5.4 @@ -14946,7 +14830,7 @@ snapshots: dependencies: esbuild: 0.21.5 postcss: 8.4.39 - rollup: 4.17.2 + rollup: 4.21.0 optionalDependencies: '@types/node': 22.4.1 fsevents: 2.3.3 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index c08db66..5e24858 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -23,4 +23,3 @@ catalog: typescript: ^5.5.4 vite: ^5.3.1 zod: ^3.23.8 - From 92e86b9645937e071f5d4e202d66a358be0567a0 Mon Sep 17 00:00:00 2001 From: Tomas Francisco <4301103+tomasfrancisco@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:57:48 +0200 Subject: [PATCH 07/15] fix figma authentication --- .../src/lib/middleware/figma/middleware.ts | 4 +-- packages/figma-plugin/package.json | 3 +- packages/figma-plugin/src/plugin/plugin.ts | 8 +++-- .../figma-plugin/src/types/credentials.ts | 10 ++++++- packages/figma-plugin/src/ui/app.tsx | 5 ++-- packages/figma-plugin/src/ui/config.ts | 2 +- .../src/ui/modules/providers/api-provider.tsx | 3 +- .../ui/modules/providers/auth-provider.tsx | 30 +++++++++++-------- pnpm-lock.yaml | 3 ++ 9 files changed, 43 insertions(+), 25 deletions(-) diff --git a/apps/dashboard/src/lib/middleware/figma/middleware.ts b/apps/dashboard/src/lib/middleware/figma/middleware.ts index 62139e6..1a8f457 100644 --- a/apps/dashboard/src/lib/middleware/figma/middleware.ts +++ b/apps/dashboard/src/lib/middleware/figma/middleware.ts @@ -83,8 +83,8 @@ export const figmaMiddleware: MiddlewareFactory = console.log('🔐 Figma: Figma key detected. Finishing authentication...'); const supabase = createMiddlewareClient(request, response, { - supabaseAnonKey: config.supabaseUrl, - supabaseUrl: config.supabaseAnonKey, + supabaseAnonKey: config.supabaseAnonKey, + supabaseUrl: config.supabaseUrl, }); const { data: { session }, diff --git a/packages/figma-plugin/package.json b/packages/figma-plugin/package.json index 4db25e1..a769ca2 100644 --- a/packages/figma-plugin/package.json +++ b/packages/figma-plugin/package.json @@ -36,7 +36,8 @@ "style-dictionary": "catalog:", "superjson": "^2.2.1", "tailwindcss": "catalog:", - "trpc-token-refresh-link": "^0.5.0" + "trpc-token-refresh-link": "^0.5.0", + "zod": "catalog:" }, "devDependencies": { "@ds-project/eslint": "workspace:*", diff --git a/packages/figma-plugin/src/plugin/plugin.ts b/packages/figma-plugin/src/plugin/plugin.ts index 423b3d7..411c370 100644 --- a/packages/figma-plugin/src/plugin/plugin.ts +++ b/packages/figma-plugin/src/plugin/plugin.ts @@ -1,7 +1,7 @@ import { convertFigmaVariablesToDesignTokens } from '@ds-project/types'; import { AsyncMessage } from '../message'; import { AsyncMessageTypes } from '../message.types'; -import type { Credentials } from '../types/credentials'; +import { CredentialsSchema } from '../types/credentials'; import { config } from '../ui/config'; import { extractVariables } from './extract-variables/extract-variables'; import { storage } from './storage'; @@ -21,7 +21,7 @@ AsyncMessage.plugin.handle(AsyncMessageTypes.GetConfig, async () => { AsyncMessage.plugin.handle(AsyncMessageTypes.GetCredentials, async () => { const credentialsString = await storage.get(config.CREDENTIALS_KEY); const credentials = credentialsString - ? (JSON.parse(credentialsString) as Credentials) + ? CredentialsSchema.parse(JSON.parse(credentialsString)) : null; if (!credentials) { throw new Error('No DS Credentials found'); @@ -35,7 +35,7 @@ AsyncMessage.plugin.handle( async (message) => { await storage.set( config.CREDENTIALS_KEY, - JSON.stringify(message.credentials) + JSON.stringify(CredentialsSchema.parse(message.credentials)) ); return {}; @@ -51,6 +51,8 @@ AsyncMessage.plugin.handle(AsyncMessageTypes.DeleteCredentials, async () => { AsyncMessage.plugin.handle(AsyncMessageTypes.GetDesignTokens, async () => { const variables = await extractVariables(figma); + console.log({ variables }); + return { designTokens: convertFigmaVariablesToDesignTokens(variables), }; diff --git a/packages/figma-plugin/src/types/credentials.ts b/packages/figma-plugin/src/types/credentials.ts index 35dcdad..2f7bfa2 100644 --- a/packages/figma-plugin/src/types/credentials.ts +++ b/packages/figma-plugin/src/types/credentials.ts @@ -1,5 +1,13 @@ +import z from 'zod'; + export interface Credentials { accessToken: string; refreshToken: string; - expireAt: number; + expiresAt: number; } + +export const CredentialsSchema = z.object({ + accessToken: z.string(), + refreshToken: z.string(), + expiresAt: z.number(), +}); diff --git a/packages/figma-plugin/src/ui/app.tsx b/packages/figma-plugin/src/ui/app.tsx index 82c446e..d561d5c 100644 --- a/packages/figma-plugin/src/ui/app.tsx +++ b/packages/figma-plugin/src/ui/app.tsx @@ -21,20 +21,19 @@ function App() { type: AsyncMessageTypes.GetDesignTokens, }) .then(({ designTokens }) => { + console.log({ designTokens }); if (fileName) { // void updateDesignTokens({ designTokens, name: fileName }); } }) .catch((error) => { - // eslint-disable-next-line no-console -- TODO: replace with monitoring console.error('Error updating design tokens', error); }); - }, [state, updateDesignTokens]); + }, [fileName, state, updateDesignTokens]); return (
{state === 'authorized' ? : null} - {/* eslint-disable-next-line no-nested-ternary -- Intentional */} {state === 'authorized' ? ( + ) : null} {state === 'authorized' ? : null} {state === 'authorized' ? (