From 96f2f6cf8c001e9bb138d62065a7170b8a0096c6 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] 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/.eslintrc.js | 3 +-
packages/figma-plugin/package.json | 2 +
.../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 | 5 +-
packages/figma-plugin/src/ui/config.ts | 5 +
.../ui/modules/providers/ds-api-provider.tsx | 2 +-
.../figma-plugin/style-dictionary/config.json | 15 -
.../style-dictionary/tokens/color.json | 20 -
packages/figma-to-design-tokens/package.json | 23 +
.../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 | 953 +-
34 files changed, 21438 insertions(+), 78 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/package.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 fa380b6..8347ba2 100644
--- a/apps/dashboard/package.json
+++ b/apps/dashboard/package.json
@@ -17,6 +17,7 @@
"db:stop": "pnpx supabase stop"
},
"dependencies": {
+ "@ds-project/types": "workspace:*",
"@ds-project/components": "workspace:*",
"@hookform/resolvers": "^3.9.0",
"@octokit/app": "^15.1.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 b010a37..7353c3f 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
@@ -24,6 +24,7 @@ async function searchFileSha({
path: string[];
index?: number;
}) {
+ // TODO: Explore recursive approach instead https://arc.net/l/quote/wmwrxkfr
const { data: treeData } = await installation.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/.eslintrc.js b/packages/figma-plugin/.eslintrc.js
index c2e2bb0..d34d0e5 100644
--- a/packages/figma-plugin/.eslintrc.js
+++ b/packages/figma-plugin/.eslintrc.js
@@ -1,6 +1,7 @@
module.exports = {
extends: [
- '@repo/eslint-config/react.js',
+ 'eslint:recommended',
+ 'plugin:@typescript-eslint/recommended',
'plugin:@figma/figma-plugins/recommended',
],
globals: {
diff --git a/packages/figma-plugin/package.json b/packages/figma-plugin/package.json
index f4c9a5a..1d742c6 100644
--- a/packages/figma-plugin/package.json
+++ b/packages/figma-plugin/package.json
@@ -9,6 +9,7 @@
"dev": "concurrently -n main,ui \"npm run main -- --watch\" \"npm run ui -- --watch\""
},
"dependencies": {
+ "@ds-project/types": "workspace:*",
"@apollo/client": "^3.7.11",
"@ds-project/components": "workspace:*",
"@octokit/core": "^6.1.2",
@@ -33,6 +34,7 @@
"@types/object-hash": "^3.0.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
+ "@typescript-eslint/eslint-plugin": "^7.13.1",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "^8.0.1",
"esbuild": "^0.17.15",
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 c5a1b9d..a5859cf 100644
--- a/packages/figma-plugin/src/ui/app.tsx
+++ b/packages/figma-plugin/src/ui/app.tsx
@@ -7,6 +7,7 @@ import { AsyncMessage } from '../message';
import { useDSApi } from './modules/providers/ds-api-provider';
import { LinkDesignSystem } from './modules/link-design-system';
import { useAuth } from './modules/providers/auth-provider';
+import { config } from './config';
function App() {
const { login, logout, state } = useAuth();
@@ -21,7 +22,9 @@ function App() {
type: AsyncMessageTypes.GetDesignTokens,
})
.then(({ designTokens }) => {
- void updateDesignTokens(designTokens);
+ if (config.features.shouldUpdateTokens) {
+ void updateDesignTokens(designTokens);
+ }
})
.catch((error) => {
// eslint-disable-next-line no-console -- TODO: replace with monitoring
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/src/ui/modules/providers/ds-api-provider.tsx b/packages/figma-plugin/src/ui/modules/providers/ds-api-provider.tsx
index f06758a..177879b 100644
--- a/packages/figma-plugin/src/ui/modules/providers/ds-api-provider.tsx
+++ b/packages/figma-plugin/src/ui/modules/providers/ds-api-provider.tsx
@@ -105,7 +105,7 @@ export function DSApiProvider({ children }: { children: React.ReactNode }) {
const updateDesignTokens = useCallback(
async (designTokens: DesignTokens) => {
- const response = await apiFetch('/api/figma/design-tokens', {
+ const response = await apiFetch('/api/figma/variables', {
method: 'POST',
body: JSON.stringify({
projectId: linkedProjectId,
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
new file mode 100644
index 0000000..1c29484
--- /dev/null
+++ b/packages/figma-to-design-tokens/package.json
@@ -0,0 +1,23 @@
+{
+ "name": "@ds-project/types",
+ "type": "module",
+ "main": "./src/index.ts",
+ "types": "./src/index.ts",
+ "private": true,
+ "scripts": {
+ "build": "tsup src/index.ts",
+ "test": "tsx src/test.ts"
+ },
+ "keywords": [],
+ "author": "",
+ "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 f47557c..462ab1d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -20,6 +20,9 @@ importers:
'@ds-project/components':
specifier: workspace:*
version: link:../../packages/components
+ '@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))
@@ -140,7 +143,7 @@ importers:
version: 1.187.10
tailwindcss:
specifier: ^3.4.7
- version: 3.4.7
+ version: 3.4.7(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
typescript:
specifier: ^5.5.4
version: 5.5.4
@@ -177,7 +180,7 @@ importers:
version: 8.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5)))(typescript@5.4.5)
'@storybook/react-vite':
specifier: ^8.2.3
- version: 8.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.17.2)(storybook@8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5)))(typescript@5.4.5)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))
+ version: 8.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.20.0)(storybook@8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5)))(typescript@5.4.5)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))
'@storybook/test':
specifier: ^8.2.3
version: 8.2.3(storybook@8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5)))
@@ -282,10 +285,10 @@ importers:
version: 2.4.0
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.4)
+ version: 1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4)))
tailwindcss-fluid-type:
specifier: ^2.0.6
- version: 2.0.6(tailwindcss@3.4.4)
+ version: 2.0.6(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4)))
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -316,7 +319,7 @@ importers:
version: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.57.0)
eslint-plugin-tailwindcss:
specifier: ^3.17.4
- version: 3.17.4(tailwindcss@3.4.4)
+ version: 3.17.4(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4)))
eslint-plugin-unused-imports:
specifier: ^4.0.0
version: 4.0.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
@@ -325,10 +328,10 @@ importers:
version: 8.4.39
rollup-preserve-directives:
specifier: ^1.1.1
- version: 1.1.1(rollup@4.17.2)
+ version: 1.1.1(rollup@4.20.0)
tailwindcss:
specifier: ^3.4.4
- version: 3.4.4
+ version: 3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4))
typescript:
specifier: ^5.5.4
version: 5.5.4
@@ -337,7 +340,7 @@ importers:
version: 5.2.11(@types/node@20.14.10)(sass@1.77.8)
vite-plugin-dts:
specifier: ^3.9.1
- version: 3.9.1(@types/node@20.14.10)(rollup@4.17.2)(typescript@5.5.4)(vite@5.2.11(@types/node@20.14.10)(sass@1.77.8))
+ version: 3.9.1(@types/node@20.14.10)(rollup@4.20.0)(typescript@5.5.4)(vite@5.2.11(@types/node@20.14.10)(sass@1.77.8))
packages/eslint-config:
devDependencies:
@@ -361,7 +364,7 @@ importers:
version: 0.8.0(eslint@8.57.0)(typescript@5.5.4)
eslint-plugin-tailwindcss:
specifier: ^3.15.1
- version: 3.17.4(tailwindcss@3.4.7)
+ version: 3.17.4(tailwindcss@3.4.7(ts-node@10.9.2(typescript@5.5.4)))
eslint-plugin-unused-imports:
specifier: ^3.1.0
version: 3.2.0(@typescript-eslint/eslint-plugin@7.16.0(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
@@ -374,6 +377,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
@@ -415,7 +421,7 @@ importers:
version: 4.0.0
tailwindcss:
specifier: ^3.4.7
- version: 3.4.7
+ version: 3.4.7(ts-node@10.9.2(@types/node@22.1.0)(typescript@4.9.5))
devDependencies:
'@figma/eslint-plugin-figma-plugins':
specifier: ^0.15.0
@@ -435,6 +441,9 @@ importers:
'@types/react-dom':
specifier: ^18.0.11
version: 18.3.0
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^7.13.1
+ version: 7.16.0(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)
'@vitejs/plugin-react':
specifier: ^3.1.0
version: 3.1.0(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))
@@ -449,7 +458,7 @@ importers:
version: 8.57.0
rollup-preserve-directives:
specifier: ^1.1.1
- version: 1.1.1(rollup@4.17.2)
+ version: 1.1.1(rollup@4.20.0)
typescript:
specifier: ^4.9.3
version: 4.9.5
@@ -458,7 +467,26 @@ importers:
version: 5.3.3(@types/node@22.1.0)(sass@1.77.8)
vite-plugin-singlefile:
specifier: ^0.13.5
- version: 0.13.5(rollup@4.17.2)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))
+ version: 0.13.5(rollup@4.20.0)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))
+
+ packages/figma-to-design-tokens:
+ dependencies:
+ 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
+ tsup:
+ specifier: ^8.2.4
+ version: 8.2.4(@microsoft/api-extractor@7.43.0)(jiti@1.21.6)(postcss@8.4.39)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.4.2)
+ tsx:
+ specifier: ^4.17.0
+ version: 4.17.0
packages/typescript-config: {}
@@ -1231,6 +1259,10 @@ packages:
'@bundled-es-modules/memfs@4.9.4':
resolution: {integrity: sha512-1XyYPUaIHwEOdF19wYVLBtHJRr42Do+3ctht17cZOHwHf67vkmRNPlYDGY2kJps4RgE5+c7nEZmEzxxvb1NZWA==}
+ '@cspotcode/source-map-support@0.8.1':
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
+ engines: {node: '>=12'}
+
'@drizzle-team/brocli@0.8.2':
resolution: {integrity: sha512-zTrFENsqGvOkBOuHDC1pXCkDXNd2UhP4lI3gYGhQ1R1SPeAAfqzPsV1dcpMy4uNU6kB5VpU5NGhvwxVNETR02A==}
@@ -1285,6 +1317,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.23.0':
+ resolution: {integrity: sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.17.19':
resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
engines: {node: '>=12'}
@@ -1315,6 +1353,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.23.0':
+ resolution: {integrity: sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.17.19':
resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
engines: {node: '>=12'}
@@ -1345,6 +1389,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.23.0':
+ resolution: {integrity: sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.17.19':
resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
engines: {node: '>=12'}
@@ -1375,6 +1425,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.23.0':
+ resolution: {integrity: sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.17.19':
resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
engines: {node: '>=12'}
@@ -1405,6 +1461,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.23.0':
+ resolution: {integrity: sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.17.19':
resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
engines: {node: '>=12'}
@@ -1435,6 +1497,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.23.0':
+ resolution: {integrity: sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.17.19':
resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
engines: {node: '>=12'}
@@ -1465,6 +1533,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.23.0':
+ resolution: {integrity: sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.17.19':
resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
engines: {node: '>=12'}
@@ -1495,6 +1569,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.23.0':
+ resolution: {integrity: sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.17.19':
resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
engines: {node: '>=12'}
@@ -1525,6 +1605,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.23.0':
+ resolution: {integrity: sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.17.19':
resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
engines: {node: '>=12'}
@@ -1555,6 +1641,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.23.0':
+ resolution: {integrity: sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.17.19':
resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
engines: {node: '>=12'}
@@ -1585,6 +1677,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.23.0':
+ resolution: {integrity: sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.17.19':
resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
engines: {node: '>=12'}
@@ -1615,6 +1713,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.23.0':
+ resolution: {integrity: sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.17.19':
resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
engines: {node: '>=12'}
@@ -1645,6 +1749,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.23.0':
+ resolution: {integrity: sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.17.19':
resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
engines: {node: '>=12'}
@@ -1675,6 +1785,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.23.0':
+ resolution: {integrity: sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.17.19':
resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
engines: {node: '>=12'}
@@ -1705,6 +1821,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.23.0':
+ resolution: {integrity: sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.17.19':
resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
engines: {node: '>=12'}
@@ -1735,6 +1857,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.23.0':
+ resolution: {integrity: sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.17.19':
resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
engines: {node: '>=12'}
@@ -1765,6 +1893,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.23.0':
+ resolution: {integrity: sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.17.19':
resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
engines: {node: '>=12'}
@@ -1795,6 +1929,18 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.23.0':
+ resolution: {integrity: sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.23.0':
+ resolution: {integrity: sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.17.19':
resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
engines: {node: '>=12'}
@@ -1825,6 +1971,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.23.0':
+ resolution: {integrity: sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.17.19':
resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
engines: {node: '>=12'}
@@ -1855,6 +2007,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.23.0':
+ resolution: {integrity: sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.17.19':
resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
engines: {node: '>=12'}
@@ -1885,6 +2043,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.23.0':
+ resolution: {integrity: sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.17.19':
resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
engines: {node: '>=12'}
@@ -1915,6 +2079,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.23.0':
+ resolution: {integrity: sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.17.19':
resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
engines: {node: '>=12'}
@@ -1945,6 +2115,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.23.0':
+ resolution: {integrity: sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1969,6 +2145,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==}
@@ -2046,6 +2225,9 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ '@jridgewell/trace-mapping@0.3.9':
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
+
'@jsonjoy.com/base64@1.1.2':
resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
engines: {node: '>=10.0'}
@@ -2690,81 +2872,161 @@ packages:
cpu: [arm]
os: [android]
+ '@rollup/rollup-android-arm-eabi@4.20.0':
+ resolution: {integrity: sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==}
+ 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.20.0':
+ resolution: {integrity: sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==}
+ 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.20.0':
+ resolution: {integrity: sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==}
+ 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.20.0':
+ resolution: {integrity: sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==}
+ 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.20.0':
+ resolution: {integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==}
+ 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.20.0':
+ resolution: {integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==}
+ 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.20.0':
+ resolution: {integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==}
+ 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.20.0':
+ resolution: {integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==}
+ 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.20.0':
+ resolution: {integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==}
+ 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.20.0':
+ resolution: {integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==}
+ 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.20.0':
+ resolution: {integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==}
+ cpu: [s390x]
+ os: [linux]
+
'@rollup/rollup-linux-x64-gnu@4.17.2':
resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-gnu@4.20.0':
+ resolution: {integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==}
+ 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.20.0':
+ resolution: {integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==}
+ 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.20.0':
+ resolution: {integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==}
+ 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.20.0':
+ resolution: {integrity: sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==}
+ 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.20.0':
+ resolution: {integrity: sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==}
+ cpu: [x64]
+ os: [win32]
+
'@rushstack/eslint-patch@1.10.3':
resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==}
@@ -3023,6 +3285,18 @@ packages:
peerDependencies:
'@testing-library/dom': '>=7.21.4'
+ '@tsconfig/node10@1.0.11':
+ resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+
+ '@tsconfig/node12@1.0.11':
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+
+ '@tsconfig/node14@1.0.3':
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+ '@tsconfig/node16@1.0.4':
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+
'@types/acorn@4.0.6':
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
@@ -3470,6 +3744,10 @@ packages:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
+ acorn-walk@8.3.3:
+ resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
+ engines: {node: '>=0.4.0'}
+
acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
@@ -3518,6 +3796,9 @@ packages:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
+ arg@4.1.3:
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
+
arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
@@ -3711,6 +3992,12 @@ packages:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
+ bundle-require@5.0.0:
+ resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ peerDependencies:
+ esbuild: '>=0.18'
+
busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
@@ -3719,6 +4006,10 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
+ cac@6.7.14:
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+ engines: {node: '>=8'}
+
call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -3868,6 +4159,9 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ color2k@2.0.3:
+ resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==}
+
commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
@@ -3944,6 +4238,9 @@ packages:
create-emotion@10.0.27:
resolution: {integrity: sha512-fIK73w82HPPn/RsAij7+Zt8eCE8SptcJ3WoRMfxMtjteYxud8GDTKKld7MYwAX2TVhrw29uR1N/bVGxeStHILg==}
+ create-require@1.1.1:
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+
cross-fetch@3.1.8:
resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
@@ -4030,6 +4327,15 @@ packages:
supports-color:
optional: true
+ debug@4.3.6:
+ resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
@@ -4335,6 +4641,11 @@ packages:
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.23.0:
+ resolution: {integrity: sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.1.2:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
@@ -5263,6 +5574,10 @@ packages:
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+ joycon@3.1.1:
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
+ engines: {node: '>=10'}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -5389,6 +5704,10 @@ packages:
load-plugin@6.0.3:
resolution: {integrity: sha512-kc0X2FEUZr145odl68frm+lMJuQ23+rTXYmR6TImqPtbpmXC4vVXbWKDQ9IzndA0HfyQamWfKLhzsqGSTxE63w==}
+ load-tsconfig@0.2.5:
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -5419,6 +5738,9 @@ packages:
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ lodash.sortby@4.7.0:
+ resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
+
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -5471,6 +5793,9 @@ packages:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
+ make-error@1.3.6:
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+
map-or-similar@1.5.0:
resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
@@ -6081,6 +6406,24 @@ packages:
ts-node:
optional: true
+ postcss-load-config@6.0.1:
+ resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
+ engines: {node: '>= 18'}
+ peerDependencies:
+ jiti: '>=1.21.0'
+ postcss: '>=8.0.9'
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ jiti:
+ optional: true
+ postcss:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
postcss-nested@6.0.1:
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
@@ -6414,6 +6757,10 @@ packages:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
+ resolve-from@5.0.0:
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
+
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
@@ -6465,6 +6812,11 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ rollup@4.20.0:
+ resolution: {integrity: sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@@ -6607,6 +6959,10 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
+ source-map@0.8.0-beta.0:
+ resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
+ engines: {node: '>= 8'}
+
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
@@ -6868,6 +7224,9 @@ packages:
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ tr46@1.0.1:
+ resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
+
tree-dump@1.0.2:
resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==}
engines: {node: '>=10.0'}
@@ -6898,6 +7257,20 @@ packages:
resolution: {integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==}
engines: {node: '>=8'}
+ ts-node@10.9.2:
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
+ hasBin: true
+ peerDependencies:
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ '@swc/wasm':
+ optional: true
+
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
@@ -6911,12 +7284,36 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tsup@8.2.4:
+ resolution: {integrity: sha512-akpCPePnBnC/CXgRrcy72ZSntgIEUa1jN0oJbbvpALWKNOz1B7aM+UVDWGRGIO/T/PZugAESWDJUAb5FD48o8Q==}
+ engines: {node: '>=18'}
+ hasBin: true
+ peerDependencies:
+ '@microsoft/api-extractor': ^7.36.0
+ '@swc/core': ^1
+ postcss: ^8.4.12
+ typescript: '>=4.5.0'
+ peerDependenciesMeta:
+ '@microsoft/api-extractor':
+ optional: true
+ '@swc/core':
+ optional: true
+ postcss:
+ optional: true
+ typescript:
+ optional: true
+
tsutils@3.21.0:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ tsx@4.17.0:
+ resolution: {integrity: sha512-eN4mnDA5UMKDt4YZixo9tBioibaMBpoxBkD+rIPAjVmYERSG0/dWEY1CEFuV89CgASlKL499q8AhmkMnnjtOJg==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
+
turbo-darwin-64@2.0.6:
resolution: {integrity: sha512-XpgBwWj3Ggmz/gQVqXdMKXHC1iFPMDiuwugLwSzE7Ih0O13JuNtYZKhQnopvbDQnFQCeRq2Vsm5OTWabg/oB/g==}
cpu: [x64]
@@ -7203,6 +7600,9 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ v8-compile-cache-lib@3.0.1:
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
+
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
@@ -7324,6 +7724,9 @@ packages:
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ webidl-conversions@4.0.2:
+ resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
+
webpack-sources@3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
@@ -7334,6 +7737,9 @@ packages:
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+ whatwg-url@7.1.0:
+ resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
+
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
@@ -7419,6 +7825,10 @@ packages:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
+ yn@3.1.1:
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
+
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -8448,6 +8858,11 @@ snapshots:
stream: 0.0.3
util: 0.12.5
+ '@cspotcode/source-map-support@0.8.1':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
+ optional: true
+
'@drizzle-team/brocli@0.8.2': {}
'@emotion/cache@10.0.29':
@@ -8498,6 +8913,9 @@ snapshots:
'@esbuild/aix-ppc64@0.21.5':
optional: true
+ '@esbuild/aix-ppc64@0.23.0':
+ optional: true
+
'@esbuild/android-arm64@0.17.19':
optional: true
@@ -8513,6 +8931,9 @@ snapshots:
'@esbuild/android-arm64@0.21.5':
optional: true
+ '@esbuild/android-arm64@0.23.0':
+ optional: true
+
'@esbuild/android-arm@0.17.19':
optional: true
@@ -8528,6 +8949,9 @@ snapshots:
'@esbuild/android-arm@0.21.5':
optional: true
+ '@esbuild/android-arm@0.23.0':
+ optional: true
+
'@esbuild/android-x64@0.17.19':
optional: true
@@ -8543,6 +8967,9 @@ snapshots:
'@esbuild/android-x64@0.21.5':
optional: true
+ '@esbuild/android-x64@0.23.0':
+ optional: true
+
'@esbuild/darwin-arm64@0.17.19':
optional: true
@@ -8558,6 +8985,9 @@ snapshots:
'@esbuild/darwin-arm64@0.21.5':
optional: true
+ '@esbuild/darwin-arm64@0.23.0':
+ optional: true
+
'@esbuild/darwin-x64@0.17.19':
optional: true
@@ -8573,6 +9003,9 @@ snapshots:
'@esbuild/darwin-x64@0.21.5':
optional: true
+ '@esbuild/darwin-x64@0.23.0':
+ optional: true
+
'@esbuild/freebsd-arm64@0.17.19':
optional: true
@@ -8588,6 +9021,9 @@ snapshots:
'@esbuild/freebsd-arm64@0.21.5':
optional: true
+ '@esbuild/freebsd-arm64@0.23.0':
+ optional: true
+
'@esbuild/freebsd-x64@0.17.19':
optional: true
@@ -8603,6 +9039,9 @@ snapshots:
'@esbuild/freebsd-x64@0.21.5':
optional: true
+ '@esbuild/freebsd-x64@0.23.0':
+ optional: true
+
'@esbuild/linux-arm64@0.17.19':
optional: true
@@ -8618,6 +9057,9 @@ snapshots:
'@esbuild/linux-arm64@0.21.5':
optional: true
+ '@esbuild/linux-arm64@0.23.0':
+ optional: true
+
'@esbuild/linux-arm@0.17.19':
optional: true
@@ -8633,7 +9075,10 @@ snapshots:
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.17.19':
+ '@esbuild/linux-arm@0.23.0':
+ optional: true
+
+ '@esbuild/linux-ia32@0.17.19':
optional: true
'@esbuild/linux-ia32@0.18.20':
@@ -8648,6 +9093,9 @@ snapshots:
'@esbuild/linux-ia32@0.21.5':
optional: true
+ '@esbuild/linux-ia32@0.23.0':
+ optional: true
+
'@esbuild/linux-loong64@0.17.19':
optional: true
@@ -8663,6 +9111,9 @@ snapshots:
'@esbuild/linux-loong64@0.21.5':
optional: true
+ '@esbuild/linux-loong64@0.23.0':
+ optional: true
+
'@esbuild/linux-mips64el@0.17.19':
optional: true
@@ -8678,6 +9129,9 @@ snapshots:
'@esbuild/linux-mips64el@0.21.5':
optional: true
+ '@esbuild/linux-mips64el@0.23.0':
+ optional: true
+
'@esbuild/linux-ppc64@0.17.19':
optional: true
@@ -8693,6 +9147,9 @@ snapshots:
'@esbuild/linux-ppc64@0.21.5':
optional: true
+ '@esbuild/linux-ppc64@0.23.0':
+ optional: true
+
'@esbuild/linux-riscv64@0.17.19':
optional: true
@@ -8708,6 +9165,9 @@ snapshots:
'@esbuild/linux-riscv64@0.21.5':
optional: true
+ '@esbuild/linux-riscv64@0.23.0':
+ optional: true
+
'@esbuild/linux-s390x@0.17.19':
optional: true
@@ -8723,6 +9183,9 @@ snapshots:
'@esbuild/linux-s390x@0.21.5':
optional: true
+ '@esbuild/linux-s390x@0.23.0':
+ optional: true
+
'@esbuild/linux-x64@0.17.19':
optional: true
@@ -8738,6 +9201,9 @@ snapshots:
'@esbuild/linux-x64@0.21.5':
optional: true
+ '@esbuild/linux-x64@0.23.0':
+ optional: true
+
'@esbuild/netbsd-x64@0.17.19':
optional: true
@@ -8753,6 +9219,12 @@ snapshots:
'@esbuild/netbsd-x64@0.21.5':
optional: true
+ '@esbuild/netbsd-x64@0.23.0':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.23.0':
+ optional: true
+
'@esbuild/openbsd-x64@0.17.19':
optional: true
@@ -8768,6 +9240,9 @@ snapshots:
'@esbuild/openbsd-x64@0.21.5':
optional: true
+ '@esbuild/openbsd-x64@0.23.0':
+ optional: true
+
'@esbuild/sunos-x64@0.17.19':
optional: true
@@ -8783,6 +9258,9 @@ snapshots:
'@esbuild/sunos-x64@0.21.5':
optional: true
+ '@esbuild/sunos-x64@0.23.0':
+ optional: true
+
'@esbuild/win32-arm64@0.17.19':
optional: true
@@ -8798,6 +9276,9 @@ snapshots:
'@esbuild/win32-arm64@0.21.5':
optional: true
+ '@esbuild/win32-arm64@0.23.0':
+ optional: true
+
'@esbuild/win32-ia32@0.17.19':
optional: true
@@ -8813,6 +9294,9 @@ snapshots:
'@esbuild/win32-ia32@0.21.5':
optional: true
+ '@esbuild/win32-ia32@0.23.0':
+ optional: true
+
'@esbuild/win32-x64@0.17.19':
optional: true
@@ -8828,6 +9312,9 @@ snapshots:
'@esbuild/win32-x64@0.21.5':
optional: true
+ '@esbuild/win32-x64@0.23.0':
+ optional: true
+
'@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
dependencies:
eslint: 8.57.0
@@ -8862,6 +9349,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
@@ -8943,6 +9432,12 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping@0.3.9':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ optional: true
+
'@jsonjoy.com/base64@1.1.2(tslib@2.6.2)':
dependencies:
tslib: 2.6.2
@@ -9614,62 +10109,110 @@ snapshots:
'@radix-ui/rect@1.1.0': {}
- '@rollup/pluginutils@5.1.0(rollup@4.17.2)':
+ '@rollup/pluginutils@5.1.0(rollup@4.20.0)':
dependencies:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.17.2
+ rollup: 4.20.0
'@rollup/rollup-android-arm-eabi@4.17.2':
optional: true
+ '@rollup/rollup-android-arm-eabi@4.20.0':
+ optional: true
+
'@rollup/rollup-android-arm64@4.17.2':
optional: true
+ '@rollup/rollup-android-arm64@4.20.0':
+ optional: true
+
'@rollup/rollup-darwin-arm64@4.17.2':
optional: true
+ '@rollup/rollup-darwin-arm64@4.20.0':
+ optional: true
+
'@rollup/rollup-darwin-x64@4.17.2':
optional: true
+ '@rollup/rollup-darwin-x64@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-arm-gnueabihf@4.17.2':
optional: true
+ '@rollup/rollup-linux-arm-gnueabihf@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-arm-musleabihf@4.17.2':
optional: true
+ '@rollup/rollup-linux-arm-musleabihf@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-arm64-gnu@4.17.2':
optional: true
+ '@rollup/rollup-linux-arm64-gnu@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-arm64-musl@4.17.2':
optional: true
+ '@rollup/rollup-linux-arm64-musl@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
optional: true
+ '@rollup/rollup-linux-powerpc64le-gnu@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-riscv64-gnu@4.17.2':
optional: true
+ '@rollup/rollup-linux-riscv64-gnu@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-s390x-gnu@4.17.2':
optional: true
+ '@rollup/rollup-linux-s390x-gnu@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-x64-gnu@4.17.2':
optional: true
+ '@rollup/rollup-linux-x64-gnu@4.20.0':
+ optional: true
+
'@rollup/rollup-linux-x64-musl@4.17.2':
optional: true
+ '@rollup/rollup-linux-x64-musl@4.20.0':
+ optional: true
+
'@rollup/rollup-win32-arm64-msvc@4.17.2':
optional: true
+ '@rollup/rollup-win32-arm64-msvc@4.20.0':
+ optional: true
+
'@rollup/rollup-win32-ia32-msvc@4.17.2':
optional: true
+ '@rollup/rollup-win32-ia32-msvc@4.20.0':
+ optional: true
+
'@rollup/rollup-win32-x64-msvc@4.17.2':
optional: true
+ '@rollup/rollup-win32-x64-msvc@4.20.0':
+ optional: true
+
'@rushstack/eslint-patch@1.10.3': {}
'@rushstack/node-core-library@4.0.2(@types/node@20.14.10)':
@@ -9933,10 +10476,10 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
storybook: 8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5))
- '@storybook/react-vite@8.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.17.2)(storybook@8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5)))(typescript@5.4.5)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))':
+ '@storybook/react-vite@8.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.20.0)(storybook@8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5)))(typescript@5.4.5)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))':
dependencies:
'@joshwooding/vite-plugin-react-docgen-typescript': 0.3.1(typescript@5.4.5)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))
- '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
'@storybook/builder-vite': 8.2.3(storybook@8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5)))(typescript@5.4.5)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8))
'@storybook/react': 8.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.2.3(@babel/preset-env@7.24.8(@babel/core@7.24.5)))(typescript@5.4.5)
find-up: 5.0.0
@@ -10080,6 +10623,18 @@ snapshots:
dependencies:
'@testing-library/dom': 10.1.0
+ '@tsconfig/node10@1.0.11':
+ optional: true
+
+ '@tsconfig/node12@1.0.11':
+ optional: true
+
+ '@tsconfig/node14@1.0.3':
+ optional: true
+
+ '@tsconfig/node16@1.0.4':
+ optional: true
+
'@types/acorn@4.0.6':
dependencies:
'@types/estree': 1.0.5
@@ -10284,6 +10839,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/eslint-plugin@7.16.0(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)':
+ dependencies:
+ '@eslint-community/regexpp': 4.10.0
+ '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@4.9.5)
+ '@typescript-eslint/scope-manager': 7.16.0
+ '@typescript-eslint/type-utils': 7.16.0(eslint@8.57.0)(typescript@4.9.5)
+ '@typescript-eslint/utils': 7.16.0(eslint@8.57.0)(typescript@4.9.5)
+ '@typescript-eslint/visitor-keys': 7.16.0
+ eslint: 8.57.0
+ graphemer: 1.4.0
+ ignore: 5.3.1
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@4.9.5)
+ optionalDependencies:
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/eslint-plugin@7.16.0(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
dependencies:
'@eslint-community/regexpp': 4.10.0
@@ -10334,6 +10907,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@4.9.5)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.16.0
+ '@typescript-eslint/types': 7.16.0
+ '@typescript-eslint/typescript-estree': 7.16.0(typescript@4.9.5)
+ '@typescript-eslint/visitor-keys': 7.16.0
+ debug: 4.3.4
+ eslint: 8.57.0
+ optionalDependencies:
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.4.5)':
dependencies:
'@typescript-eslint/scope-manager': 7.16.0
@@ -10387,6 +10973,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/type-utils@7.16.0(eslint@8.57.0)(typescript@4.9.5)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.16.0(typescript@4.9.5)
+ '@typescript-eslint/utils': 7.16.0(eslint@8.57.0)(typescript@4.9.5)
+ debug: 4.3.4
+ eslint: 8.57.0
+ ts-api-utils: 1.3.0(typescript@4.9.5)
+ optionalDependencies:
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/type-utils@7.16.0(eslint@8.57.0)(typescript@5.4.5)':
dependencies:
'@typescript-eslint/typescript-estree': 7.16.0(typescript@5.4.5)
@@ -10461,6 +11059,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@7.16.0(typescript@4.9.5)':
+ dependencies:
+ '@typescript-eslint/types': 7.16.0
+ '@typescript-eslint/visitor-keys': 7.16.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.4
+ semver: 7.6.2
+ ts-api-utils: 1.3.0(typescript@4.9.5)
+ optionalDependencies:
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/typescript-estree@7.16.0(typescript@5.4.5)':
dependencies:
'@typescript-eslint/types': 7.16.0
@@ -10535,6 +11148,17 @@ snapshots:
- supports-color
- typescript
+ '@typescript-eslint/utils@7.16.0(eslint@8.57.0)(typescript@4.9.5)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ '@typescript-eslint/scope-manager': 7.16.0
+ '@typescript-eslint/types': 7.16.0
+ '@typescript-eslint/typescript-estree': 7.16.0(typescript@4.9.5)
+ eslint: 8.57.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
'@typescript-eslint/utils@7.16.0(eslint@8.57.0)(typescript@5.4.5)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
@@ -10758,6 +11382,11 @@ snapshots:
acorn-walk@7.2.0: {}
+ acorn-walk@8.3.3:
+ dependencies:
+ acorn: 8.11.3
+ optional: true
+
acorn@7.4.1: {}
acorn@8.11.3: {}
@@ -10798,6 +11427,9 @@ snapshots:
normalize-path: 3.0.0
picomatch: 2.3.1
+ arg@4.1.3:
+ optional: true
+
arg@5.0.2: {}
argparse@1.0.10:
@@ -11068,12 +11700,19 @@ snapshots:
builtin-modules@3.3.0: {}
+ bundle-require@5.0.0(esbuild@0.23.0):
+ dependencies:
+ esbuild: 0.23.0
+ load-tsconfig: 0.2.5
+
busboy@1.6.0:
dependencies:
streamsearch: 1.1.0
bytes@3.1.2: {}
+ cac@6.7.14: {}
+
call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
@@ -11214,6 +11853,8 @@ snapshots:
color-name@1.1.4: {}
+ color2k@2.0.3: {}
+
commander@4.1.1: {}
commander@6.2.1: {}
@@ -11287,6 +11928,9 @@ snapshots:
'@emotion/sheet': 0.9.4
'@emotion/utils': 0.11.3
+ create-require@1.1.1:
+ optional: true
+
cross-fetch@3.1.8:
dependencies:
node-fetch: 2.7.0
@@ -11357,6 +12001,10 @@ snapshots:
dependencies:
ms: 2.1.2
+ debug@4.3.6:
+ dependencies:
+ ms: 2.1.2
+
decode-named-character-reference@1.0.2:
dependencies:
character-entities: 2.0.2
@@ -11725,6 +12373,33 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
+ esbuild@0.23.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.23.0
+ '@esbuild/android-arm': 0.23.0
+ '@esbuild/android-arm64': 0.23.0
+ '@esbuild/android-x64': 0.23.0
+ '@esbuild/darwin-arm64': 0.23.0
+ '@esbuild/darwin-x64': 0.23.0
+ '@esbuild/freebsd-arm64': 0.23.0
+ '@esbuild/freebsd-x64': 0.23.0
+ '@esbuild/linux-arm': 0.23.0
+ '@esbuild/linux-arm64': 0.23.0
+ '@esbuild/linux-ia32': 0.23.0
+ '@esbuild/linux-loong64': 0.23.0
+ '@esbuild/linux-mips64el': 0.23.0
+ '@esbuild/linux-ppc64': 0.23.0
+ '@esbuild/linux-riscv64': 0.23.0
+ '@esbuild/linux-s390x': 0.23.0
+ '@esbuild/linux-x64': 0.23.0
+ '@esbuild/netbsd-x64': 0.23.0
+ '@esbuild/openbsd-arm64': 0.23.0
+ '@esbuild/openbsd-x64': 0.23.0
+ '@esbuild/sunos-x64': 0.23.0
+ '@esbuild/win32-arm64': 0.23.0
+ '@esbuild/win32-ia32': 0.23.0
+ '@esbuild/win32-x64': 0.23.0
+
escalade@3.1.2: {}
escape-html@1.0.3: {}
@@ -11872,7 +12547,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0)
hasown: 2.0.2
is-core-module: 2.13.1
is-glob: 4.0.3
@@ -12000,17 +12675,17 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-tailwindcss@3.17.4(tailwindcss@3.4.4):
+ eslint-plugin-tailwindcss@3.17.4(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4))):
dependencies:
fast-glob: 3.3.2
postcss: 8.4.39
- tailwindcss: 3.4.4
+ tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4))
- eslint-plugin-tailwindcss@3.17.4(tailwindcss@3.4.7):
+ eslint-plugin-tailwindcss@3.17.4(tailwindcss@3.4.7(ts-node@10.9.2(typescript@5.5.4))):
dependencies:
fast-glob: 3.3.2
postcss: 8.4.39
- tailwindcss: 3.4.7
+ tailwindcss: 3.4.7(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
eslint-plugin-testing-library@6.2.2(eslint@8.57.0)(typescript@5.5.4):
dependencies:
@@ -12848,6 +13523,8 @@ snapshots:
jju@1.4.0: {}
+ joycon@3.1.1: {}
+
js-tokens@4.0.0: {}
js-yaml@4.1.0:
@@ -12971,6 +13648,8 @@ snapshots:
'@npmcli/config': 8.3.2
import-meta-resolve: 4.1.0
+ load-tsconfig@0.2.5: {}
+
locate-path@3.0.0:
dependencies:
p-locate: 3.0.0
@@ -12996,6 +13675,8 @@ snapshots:
lodash.merge@4.6.2: {}
+ lodash.sortby@4.7.0: {}
+
lodash@4.17.21: {}
log-symbols@4.1.0:
@@ -13046,6 +13727,9 @@ snapshots:
dependencies:
semver: 6.3.1
+ make-error@1.3.6:
+ optional: true
+
map-or-similar@1.5.0: {}
markdown-to-jsx@7.4.7(react@18.3.1):
@@ -13843,12 +14527,38 @@ snapshots:
camelcase-css: 2.0.1
postcss: 8.4.39
- postcss-load-config@4.0.2(postcss@8.4.39):
+ postcss-load-config@4.0.2(postcss@8.4.39)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4)):
+ dependencies:
+ lilconfig: 3.1.1
+ yaml: 2.4.2
+ optionalDependencies:
+ postcss: 8.4.39
+ ts-node: 10.9.2(@types/node@20.14.10)(typescript@5.5.4)
+
+ postcss-load-config@4.0.2(postcss@8.4.39)(ts-node@10.9.2(@types/node@22.1.0)(typescript@4.9.5)):
dependencies:
lilconfig: 3.1.1
yaml: 2.4.2
optionalDependencies:
postcss: 8.4.39
+ ts-node: 10.9.2(@types/node@22.1.0)(typescript@4.9.5)
+
+ postcss-load-config@4.0.2(postcss@8.4.39)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4)):
+ dependencies:
+ lilconfig: 3.1.1
+ yaml: 2.4.2
+ optionalDependencies:
+ postcss: 8.4.39
+ ts-node: 10.9.2(@types/node@22.1.0)(typescript@5.5.4)
+
+ postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.39)(tsx@4.17.0)(yaml@2.4.2):
+ dependencies:
+ lilconfig: 3.1.1
+ optionalDependencies:
+ jiti: 1.21.6
+ postcss: 8.4.39
+ tsx: 4.17.0
+ yaml: 2.4.2
postcss-nested@6.0.1(postcss@8.4.39):
dependencies:
@@ -14231,6 +14941,8 @@ snapshots:
resolve-from@4.0.0: {}
+ resolve-from@5.0.0: {}
+
resolve-pkg-maps@1.0.0: {}
resolve@1.19.0:
@@ -14271,10 +14983,10 @@ snapshots:
dependencies:
glob: 10.4.5
- rollup-preserve-directives@1.1.1(rollup@4.17.2):
+ rollup-preserve-directives@1.1.1(rollup@4.20.0):
dependencies:
magic-string: 0.30.10
- rollup: 4.17.2
+ rollup: 4.20.0
rollup@4.17.2:
dependencies:
@@ -14298,6 +15010,28 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.17.2
fsevents: 2.3.3
+ rollup@4.20.0:
+ dependencies:
+ '@types/estree': 1.0.5
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.20.0
+ '@rollup/rollup-android-arm64': 4.20.0
+ '@rollup/rollup-darwin-arm64': 4.20.0
+ '@rollup/rollup-darwin-x64': 4.20.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.20.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.20.0
+ '@rollup/rollup-linux-arm64-gnu': 4.20.0
+ '@rollup/rollup-linux-arm64-musl': 4.20.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.20.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.20.0
+ '@rollup/rollup-linux-s390x-gnu': 4.20.0
+ '@rollup/rollup-linux-x64-gnu': 4.20.0
+ '@rollup/rollup-linux-x64-musl': 4.20.0
+ '@rollup/rollup-win32-arm64-msvc': 4.20.0
+ '@rollup/rollup-win32-ia32-msvc': 4.20.0
+ '@rollup/rollup-win32-x64-msvc': 4.20.0
+ fsevents: 2.3.3
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
@@ -14453,6 +15187,10 @@ snapshots:
source-map@0.6.1: {}
+ source-map@0.8.0-beta.0:
+ dependencies:
+ whatwg-url: 7.1.0
+
space-separated-tokens@2.0.2: {}
spawn-command@0.0.2: {}
@@ -14683,15 +15421,15 @@ snapshots:
tailwind-merge@2.4.0: {}
- tailwindcss-animate@1.0.7(tailwindcss@3.4.4):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4))):
dependencies:
- tailwindcss: 3.4.4
+ tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4))
- tailwindcss-fluid-type@2.0.6(tailwindcss@3.4.4):
+ tailwindcss-fluid-type@2.0.6(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4))):
dependencies:
- tailwindcss: 3.4.4
+ tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4))
- tailwindcss@3.4.4:
+ tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -14710,7 +15448,7 @@ snapshots:
postcss: 8.4.39
postcss-import: 15.1.0(postcss@8.4.39)
postcss-js: 4.0.1(postcss@8.4.39)
- postcss-load-config: 4.0.2(postcss@8.4.39)
+ postcss-load-config: 4.0.2(postcss@8.4.39)(ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4))
postcss-nested: 6.0.1(postcss@8.4.39)
postcss-selector-parser: 6.1.1
resolve: 1.22.8
@@ -14718,7 +15456,34 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.7:
+ tailwindcss@3.4.7(ts-node@10.9.2(@types/node@22.1.0)(typescript@4.9.5)):
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ arg: 5.0.2
+ chokidar: 3.6.0
+ didyoumean: 1.2.2
+ dlv: 1.1.3
+ fast-glob: 3.3.2
+ glob-parent: 6.0.2
+ is-glob: 4.0.3
+ jiti: 1.21.6
+ lilconfig: 2.1.0
+ micromatch: 4.0.5
+ normalize-path: 3.0.0
+ object-hash: 3.0.0
+ picocolors: 1.0.1
+ postcss: 8.4.39
+ postcss-import: 15.1.0(postcss@8.4.39)
+ postcss-js: 4.0.1(postcss@8.4.39)
+ postcss-load-config: 4.0.2(postcss@8.4.39)(ts-node@10.9.2(@types/node@22.1.0)(typescript@4.9.5))
+ postcss-nested: 6.0.1(postcss@8.4.39)
+ postcss-selector-parser: 6.1.1
+ resolve: 1.22.8
+ sucrase: 3.35.0
+ transitivePeerDependencies:
+ - ts-node
+
+ tailwindcss@3.4.7(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -14737,7 +15502,7 @@ snapshots:
postcss: 8.4.39
postcss-import: 15.1.0(postcss@8.4.39)
postcss-js: 4.0.1(postcss@8.4.39)
- postcss-load-config: 4.0.2(postcss@8.4.39)
+ postcss-load-config: 4.0.2(postcss@8.4.39)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
postcss-nested: 6.0.1(postcss@8.4.39)
postcss-selector-parser: 6.1.1
resolve: 1.22.8
@@ -14816,6 +15581,10 @@ snapshots:
tr46@0.0.3: {}
+ tr46@1.0.1:
+ dependencies:
+ punycode: 2.3.1
+
tree-dump@1.0.2(tslib@2.6.2):
dependencies:
tslib: 2.6.2
@@ -14824,6 +15593,10 @@ snapshots:
trough@2.2.0: {}
+ ts-api-utils@1.3.0(typescript@4.9.5):
+ dependencies:
+ typescript: 4.9.5
+
ts-api-utils@1.3.0(typescript@5.4.5):
dependencies:
typescript: 5.4.5
@@ -14840,6 +15613,63 @@ snapshots:
dependencies:
tslib: 2.6.2
+ ts-node@10.9.2(@types/node@20.14.10)(typescript@5.5.4):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 20.14.10
+ acorn: 8.11.3
+ acorn-walk: 8.3.3
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.5.4
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optional: true
+
+ ts-node@10.9.2(@types/node@22.1.0)(typescript@4.9.5):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 22.1.0
+ acorn: 8.11.3
+ acorn-walk: 8.3.3
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 4.9.5
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optional: true
+
+ ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 22.1.0
+ acorn: 8.11.3
+ acorn-walk: 8.3.3
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.5.4
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optional: true
+
tsconfig-paths@3.15.0:
dependencies:
'@types/json5': 0.0.29
@@ -14857,6 +15687,34 @@ snapshots:
tslib@2.6.2: {}
+ tsup@8.2.4(@microsoft/api-extractor@7.43.0)(jiti@1.21.6)(postcss@8.4.39)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.4.2):
+ dependencies:
+ bundle-require: 5.0.0(esbuild@0.23.0)
+ cac: 6.7.14
+ chokidar: 3.6.0
+ consola: 3.2.3
+ debug: 4.3.6
+ esbuild: 0.23.0
+ execa: 5.1.1
+ globby: 11.1.0
+ joycon: 3.1.1
+ picocolors: 1.0.1
+ postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.39)(tsx@4.17.0)(yaml@2.4.2)
+ resolve-from: 5.0.0
+ rollup: 4.20.0
+ source-map: 0.8.0-beta.0
+ sucrase: 3.35.0
+ tree-kill: 1.2.2
+ optionalDependencies:
+ '@microsoft/api-extractor': 7.43.0(@types/node@20.14.10)
+ postcss: 8.4.39
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - jiti
+ - supports-color
+ - tsx
+ - yaml
+
tsutils@3.21.0(typescript@5.4.5):
dependencies:
tslib: 1.14.1
@@ -14867,6 +15725,13 @@ snapshots:
tslib: 1.14.1
typescript: 5.5.4
+ tsx@4.17.0:
+ dependencies:
+ esbuild: 0.23.0
+ get-tsconfig: 4.7.5
+ optionalDependencies:
+ fsevents: 2.3.3
+
turbo-darwin-64@2.0.6:
optional: true
@@ -15160,6 +16025,9 @@ snapshots:
kleur: 4.1.5
sade: 1.8.1
+ v8-compile-cache-lib@3.0.1:
+ optional: true
+
validate-npm-package-license@3.0.4:
dependencies:
spdx-correct: 3.2.0
@@ -15201,10 +16069,10 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vite-plugin-dts@3.9.1(@types/node@20.14.10)(rollup@4.17.2)(typescript@5.5.4)(vite@5.2.11(@types/node@20.14.10)(sass@1.77.8)):
+ vite-plugin-dts@3.9.1(@types/node@20.14.10)(rollup@4.20.0)(typescript@5.5.4)(vite@5.2.11(@types/node@20.14.10)(sass@1.77.8)):
dependencies:
'@microsoft/api-extractor': 7.43.0(@types/node@20.14.10)
- '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
'@vue/language-core': 1.8.27(typescript@5.5.4)
debug: 4.3.4
kolorist: 1.8.0
@@ -15218,10 +16086,10 @@ snapshots:
- rollup
- supports-color
- vite-plugin-singlefile@0.13.5(rollup@4.17.2)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8)):
+ vite-plugin-singlefile@0.13.5(rollup@4.20.0)(vite@5.3.3(@types/node@22.1.0)(sass@1.77.8)):
dependencies:
micromatch: 4.0.5
- rollup: 4.17.2
+ rollup: 4.20.0
vite: 5.3.3(@types/node@22.1.0)(sass@1.77.8)
vite@5.2.11(@types/node@20.14.10)(sass@1.77.8):
@@ -15266,6 +16134,8 @@ snapshots:
webidl-conversions@3.0.1: {}
+ webidl-conversions@4.0.2: {}
+
webpack-sources@3.2.3: {}
webpack-virtual-modules@0.6.2: {}
@@ -15275,6 +16145,12 @@ snapshots:
tr46: 0.0.3
webidl-conversions: 3.0.1
+ whatwg-url@7.1.0:
+ dependencies:
+ lodash.sortby: 4.7.0
+ tr46: 1.0.1
+ webidl-conversions: 4.0.2
+
which-boxed-primitive@1.0.2:
dependencies:
is-bigint: 1.0.4
@@ -15370,6 +16246,9 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
+ yn@3.1.1:
+ optional: true
+
yocto-queue@0.1.0: {}
z-schema@5.0.5: