From 9e356803634a5fe00e60da1a60c0e94c3778220d Mon Sep 17 00:00:00 2001 From: horam-deriv <64075768+horam-deriv@users.noreply.github.com> Date: Mon, 20 Nov 2023 14:35:57 +0800 Subject: [PATCH] enhance the naming convention of the output --- dist/quill-tailwind/mobile_dark_colors.dart | 36 +- dist/quill-tailwind/mobile_light_colors.dart | 36 +- src/generators/tailwind/index.ts | 12 +- .../__snapshots__/tailwind.test.ts.snap | 2560 ++++++++--------- 4 files changed, 1328 insertions(+), 1316 deletions(-) diff --git a/dist/quill-tailwind/mobile_dark_colors.dart b/dist/quill-tailwind/mobile_dark_colors.dart index 3f0e023..20b6e8c 100644 --- a/dist/quill-tailwind/mobile_dark_colors.dart +++ b/dist/quill-tailwind/mobile_dark_colors.dart @@ -3,24 +3,28 @@ // mobile_dark_colors.dart // +// Do not edit directly +// Generated on Mon, 20 Nov 2023 06:32:08 GMT + + import 'dart:ui'; -class { - ._(); +class MobileDarkColors { + MobileDarkColors._(); - static const base = #11141b; - static const base = #11141b; - static const container = #181c25; - static const container = #181c25; - static const danger = #f92e26; - static const default = rgba(#ffffff,72%); - static const dialog = #181c25; - static const disabled = rgba(#ffffff,24%); - static const info = #3daaff; - static const link = #ff444f; - static const prominent = #ffffff; - static const subtle = rgba(#ffffff,48%); - static const success = #26a44e; - static const warning = #ffae26; + static const semanticColorBackgroundDialog = #181c25; + static const semanticColorBackgroundPrimaryBase = #11141b; + static const semanticColorBackgroundPrimaryContainer = #181c25; + static const semanticColorBackgroundSecondaryBase = #11141b; + static const semanticColorBackgroundSecondaryContainer = #181c25; + static const semanticColorStatusDanger = #f92e26; + static const semanticColorStatusInfo = #3daaff; + static const semanticColorStatusSuccess = #26a44e; + static const semanticColorStatusWarning = #ffae26; + static const semanticColorTypographyDefault = rgba(#ffffff,72%); + static const semanticColorTypographyDisabled = rgba(#ffffff,24%); + static const semanticColorTypographyLink = #ff444f; + static const semanticColorTypographyProminent = #ffffff; + static const semanticColorTypographySubtle = rgba(#ffffff,48%); } diff --git a/dist/quill-tailwind/mobile_light_colors.dart b/dist/quill-tailwind/mobile_light_colors.dart index 1ef54e5..236d751 100644 --- a/dist/quill-tailwind/mobile_light_colors.dart +++ b/dist/quill-tailwind/mobile_light_colors.dart @@ -3,24 +3,28 @@ // mobile_light_colors.dart // +// Do not edit directly +// Generated on Mon, 20 Nov 2023 06:32:09 GMT + + import 'dart:ui'; -class { - ._(); +class MobileLightColors { + MobileLightColors._(); - static const base = #f6f7f8; - static const base = #ffffff; - static const container = #ffffff; - static const container = #f6f7f8; - static const danger = #db0800; - static const default = rgba(#000000,72%); - static const dialog = #ffffff; - static const disabled = rgba(#000000,24%); - static const info = #1789e1; - static const link = #ff444f; - static const prominent = #000000; - static const subtle = rgba(#000000,48%); - static const success = #00822a; - static const warning = #e18d00; + static const semanticColorBackgroundDialog = #ffffff; + static const semanticColorBackgroundPrimaryBase = #f6f7f8; + static const semanticColorBackgroundPrimaryContainer = #ffffff; + static const semanticColorBackgroundSecondaryBase = #ffffff; + static const semanticColorBackgroundSecondaryContainer = #f6f7f8; + static const semanticColorStatusDanger = #db0800; + static const semanticColorStatusInfo = #1789e1; + static const semanticColorStatusSuccess = #00822a; + static const semanticColorStatusWarning = #e18d00; + static const semanticColorTypographyDefault = rgba(#000000,72%); + static const semanticColorTypographyDisabled = rgba(#000000,24%); + static const semanticColorTypographyLink = #ff444f; + static const semanticColorTypographyProminent = #000000; + static const semanticColorTypographySubtle = rgba(#000000,48%); } diff --git a/src/generators/tailwind/index.ts b/src/generators/tailwind/index.ts index 16f5217..47a7cd5 100644 --- a/src/generators/tailwind/index.ts +++ b/src/generators/tailwind/index.ts @@ -103,16 +103,17 @@ export const SemanticLightMobileConfig = StyleDictionary.extend({ platforms: { semantic_mobile_flutter_light: { // Todo(Horam): remove the commented code before merging the PR. - transforms:['color/hex8flutter'], //[...TokenStudioTransforms,], // 'deriv/mobile-color', 'color/hex8flutter' + transforms:[ 'name/cti/camel','color/hex8flutter'], //[...TokenStudioTransforms,], // 'deriv/mobile-color', 'color/hex8flutter' buildPath: QUILL_TAILWIND_BUILD_PATH, files: [ { destination: 'mobile_light_colors.dart', format: 'flutter/class.dart', + className: 'MobileLightColors', filter: (token) => token.path.includes('semantic'), options: { outputReferences: false, - showFileHeader: false, + showFileHeader: true, }, }, ], @@ -125,16 +126,19 @@ export const SemanticDarkMobileConfig = StyleDictionary.extend({ platforms: { semantic_mobile_flutter_dark: { // Todo(Horam): remove the commented code before merging the PR. - transforms: ['deriv/mobile-color'],//[...TokenStudioTransforms, ], // 'deriv/mobile-color', 'color/hex8flutter' + transforms: [ 'name/cti/camel','deriv/mobile-color'],//[...TokenStudioTransforms, ], // 'deriv/mobile-color', 'color/hex8flutter' buildPath: QUILL_TAILWIND_BUILD_PATH, files: [ { destination: 'mobile_dark_colors.dart', format: 'flutter/class.dart', + className: 'MobileDarkColors', + + filter: (token) => token.path.includes('semantic'), options: { outputReferences: false, - showFileHeader: false, + showFileHeader: true, }, }, ], diff --git a/src/tests/tailwind/__snapshots__/tailwind.test.ts.snap b/src/tests/tailwind/__snapshots__/tailwind.test.ts.snap index ca4580a..0b3f2d2 100644 --- a/src/tests/tailwind/__snapshots__/tailwind.test.ts.snap +++ b/src/tests/tailwind/__snapshots__/tailwind.test.ts.snap @@ -127878,7 +127878,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "100", + "name": "coreBorderRadius100", "original": { "description": "0.125rem", "type": "borderRadius", @@ -127897,7 +127897,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1000", + "name": "coreBorderRadius1000", "original": { "description": "1.25rem", "type": "borderRadius", @@ -127916,7 +127916,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1100", + "name": "coreBorderRadius1100", "original": { "description": "1.375rem", "type": "borderRadius", @@ -127935,7 +127935,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1200", + "name": "coreBorderRadius1200", "original": { "description": "1.5rem", "type": "borderRadius", @@ -127954,7 +127954,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1300", + "name": "coreBorderRadius1300", "original": { "description": "1.625rem", "type": "borderRadius", @@ -127973,7 +127973,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1400", + "name": "coreBorderRadius1400", "original": { "description": "1.75rem", "type": "borderRadius", @@ -127992,7 +127992,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1500", + "name": "coreBorderRadius1500", "original": { "description": "1.875rem", "type": "borderRadius", @@ -128011,7 +128011,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1600", + "name": "coreBorderRadius1600", "original": { "description": "2rem", "type": "borderRadius", @@ -128030,7 +128030,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1700", + "name": "coreBorderRadius1700", "original": { "description": "2.125rem", "type": "borderRadius", @@ -128049,7 +128049,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1800", + "name": "coreBorderRadius1800", "original": { "description": "2.25rem", "type": "borderRadius", @@ -128068,7 +128068,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1900", + "name": "coreBorderRadius1900", "original": { "description": "2.375rem", "type": "borderRadius", @@ -128087,7 +128087,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "200", + "name": "coreBorderRadius200", "original": { "description": "0.25rem", "type": "borderRadius", @@ -128106,7 +128106,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2000", + "name": "coreBorderRadius2000", "original": { "description": "2.5rem", "type": "borderRadius", @@ -128125,7 +128125,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2100", + "name": "coreBorderRadius2100", "original": { "description": "2.625rem", "type": "borderRadius", @@ -128144,7 +128144,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2200", + "name": "coreBorderRadius2200", "original": { "description": "2.75rem", "type": "borderRadius", @@ -128163,7 +128163,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2300", + "name": "coreBorderRadius2300", "original": { "description": "2.875rem", "type": "borderRadius", @@ -128182,7 +128182,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2400", + "name": "coreBorderRadius2400", "original": { "description": "3rem", "type": "borderRadius", @@ -128201,7 +128201,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2500", + "name": "coreBorderRadius2500", "original": { "description": "3.125rem", "type": "borderRadius", @@ -128220,7 +128220,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2600", + "name": "coreBorderRadius2600", "original": { "description": "3.25rem", "type": "borderRadius", @@ -128239,7 +128239,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2700", + "name": "coreBorderRadius2700", "original": { "description": "3.375rem", "type": "borderRadius", @@ -128258,7 +128258,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2800", + "name": "coreBorderRadius2800", "original": { "description": "3.5rem", "type": "borderRadius", @@ -128277,7 +128277,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2900", + "name": "coreBorderRadius2900", "original": { "description": "3.625rem", "type": "borderRadius", @@ -128296,7 +128296,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "300", + "name": "coreBorderRadius300", "original": { "description": "0.375rem", "type": "borderRadius", @@ -128315,7 +128315,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3000", + "name": "coreBorderRadius3000", "original": { "description": "3.75rem", "type": "borderRadius", @@ -128334,7 +128334,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3100", + "name": "coreBorderRadius3100", "original": { "description": "3.875rem", "type": "borderRadius", @@ -128353,7 +128353,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3200", + "name": "coreBorderRadius3200", "original": { "description": "4rem", "type": "borderRadius", @@ -128372,7 +128372,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3300", + "name": "coreBorderRadius3300", "original": { "description": "4.125rem", "type": "borderRadius", @@ -128391,7 +128391,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3400", + "name": "coreBorderRadius3400", "original": { "description": "4.25rem", "type": "borderRadius", @@ -128410,7 +128410,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3500", + "name": "coreBorderRadius3500", "original": { "description": "4.375rem", "type": "borderRadius", @@ -128429,7 +128429,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3600", + "name": "coreBorderRadius3600", "original": { "description": "4.5rem", "type": "borderRadius", @@ -128448,7 +128448,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3700", + "name": "coreBorderRadius3700", "original": { "description": "4.625rem", "type": "borderRadius", @@ -128467,7 +128467,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3800", + "name": "coreBorderRadius3800", "original": { "description": "4.75rem", "type": "borderRadius", @@ -128486,7 +128486,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3900", + "name": "coreBorderRadius3900", "original": { "description": "4.875rem", "type": "borderRadius", @@ -128505,7 +128505,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "400", + "name": "coreBorderRadius400", "original": { "description": "0.5rem", "type": "borderRadius", @@ -128524,7 +128524,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4000", + "name": "coreBorderRadius4000", "original": { "description": "5rem", "type": "borderRadius", @@ -128543,7 +128543,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4100", + "name": "coreBorderRadius4100", "original": { "description": "5.125rem", "type": "borderRadius", @@ -128562,7 +128562,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4200", + "name": "coreBorderRadius4200", "original": { "description": "5.25rem", "type": "borderRadius", @@ -128581,7 +128581,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4300", + "name": "coreBorderRadius4300", "original": { "description": "5.375rem", "type": "borderRadius", @@ -128600,7 +128600,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4400", + "name": "coreBorderRadius4400", "original": { "description": "5.5rem", "type": "borderRadius", @@ -128619,7 +128619,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4500", + "name": "coreBorderRadius4500", "original": { "description": "5.625rem", "type": "borderRadius", @@ -128638,7 +128638,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4600", + "name": "coreBorderRadius4600", "original": { "description": "5.75rem", "type": "borderRadius", @@ -128657,7 +128657,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4700", + "name": "coreBorderRadius4700", "original": { "description": "5.875rem", "type": "borderRadius", @@ -128676,7 +128676,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "6rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4800", + "name": "coreBorderRadius4800", "original": { "description": "6rem", "type": "borderRadius", @@ -128695,7 +128695,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "6.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4900", + "name": "coreBorderRadius4900", "original": { "description": "6.125rem", "type": "borderRadius", @@ -128713,7 +128713,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "50", + "name": "coreBorderRadius50", "original": { "type": "borderRadius", "value": "0px", @@ -128731,7 +128731,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "500", + "name": "coreBorderRadius500", "original": { "description": "0.625rem", "type": "borderRadius", @@ -128750,7 +128750,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "6.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "5000", + "name": "coreBorderRadius5000", "original": { "description": "6.25rem", "type": "borderRadius", @@ -128769,7 +128769,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "600", + "name": "coreBorderRadius600", "original": { "description": "0.75rem", "type": "borderRadius", @@ -128788,7 +128788,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "700", + "name": "coreBorderRadius700", "original": { "description": "0.875rem", "type": "borderRadius", @@ -128807,7 +128807,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "800", + "name": "coreBorderRadius800", "original": { "description": "1rem", "type": "borderRadius", @@ -128826,7 +128826,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "900", + "name": "coreBorderRadius900", "original": { "description": "1.125rem", "type": "borderRadius", @@ -128847,7 +128847,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.125", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "100", + "name": "coreBorderWidth100", "original": { "description": "0.125", "type": "borderWidth", @@ -128866,7 +128866,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "200", + "name": "coreBorderWidth200", "original": { "description": "0.25rem", "type": "borderWidth", @@ -128885,7 +128885,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "300", + "name": "coreBorderWidth300", "original": { "description": "0.5rem", "type": "borderWidth", @@ -128903,7 +128903,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "50", + "name": "coreBorderWidth50", "original": { "type": "borderWidth", "value": "0", @@ -128921,7 +128921,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.0625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "75", + "name": "coreBorderWidth75", "original": { "description": "0.0625rem", "type": "borderWidth", @@ -128943,7 +128943,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "110", + "name": "coreColorGradientSlate110", "original": { "type": "color", "value": "linear-gradient(1.93deg, {core.color.opacity.overflow.100} 1.56%, {core.color.solid.slate.50} 49.91%)", @@ -128962,7 +128962,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "120", + "name": "coreColorGradientSlate120", "original": { "type": "color", "value": "linear-gradient(88.07deg, {core.color.opacity.overflow.100} 1.63%, {core.color.solid.slate.50} 50.02%)", @@ -128981,7 +128981,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "130", + "name": "coreColorGradientSlate130", "original": { "type": "color", "value": "linear-gradient(181.93deg, {core.color.opacity.overflow.100} 1.63%, {core.color.solid.slate.50} 50.01%)", @@ -129000,7 +129000,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "140", + "name": "coreColorGradientSlate140", "original": { "type": "color", "value": "linear-gradient(271.93deg, {core.color.opacity.overflow.100} 1.63%, {core.color.solid.slate.50} 49.98%)", @@ -129019,7 +129019,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "210", + "name": "coreColorGradientSlate210", "original": { "type": "color", "value": "linear-gradient(1.93deg, {core.color.opacity.overflow.200} 1.56%, {core.color.solid.slate.75} 49.91%)", @@ -129038,7 +129038,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "220", + "name": "coreColorGradientSlate220", "original": { "type": "color", "value": "linear-gradient(88.07deg, {core.color.opacity.overflow.200} 1.63%, {core.color.solid.slate.75} 50.02%)", @@ -129057,7 +129057,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "230", + "name": "coreColorGradientSlate230", "original": { "type": "color", "value": "linear-gradient(181.93deg, {core.color.opacity.overflow.200} 1.63%, {core.color.solid.slate.75} 50.01%)", @@ -129076,7 +129076,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "240", + "name": "coreColorGradientSlate240", "original": { "type": "color", "value": "linear-gradient(271.93deg, {core.color.opacity.overflow.200} 1.63%, {core.color.solid.slate.75} 49.98%)", @@ -129095,7 +129095,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "310", + "name": "coreColorGradientSlate310", "original": { "type": "color", "value": "linear-gradient(1.93deg, {core.color.opacity.overflow.400} 1.56%, {core.color.solid.slate.1300} 49.91%)", @@ -129114,7 +129114,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "320", + "name": "coreColorGradientSlate320", "original": { "type": "color", "value": "linear-gradient(88.07deg, {core.color.opacity.overflow.400} 1.63%, {core.color.solid.slate.1300} 50.02%)", @@ -129133,7 +129133,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "330", + "name": "coreColorGradientSlate330", "original": { "type": "color", "value": "linear-gradient(181.93deg, {core.color.opacity.overflow.400} 1.63%, {core.color.solid.slate.1300} 50.01%)", @@ -129152,7 +129152,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "340", + "name": "coreColorGradientSlate340", "original": { "type": "color", "value": "linear-gradient(271.93deg, {core.color.opacity.overflow.400} 1.63%, {core.color.solid.slate.1300} 49.98%)", @@ -129171,7 +129171,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "410", + "name": "coreColorGradientSlate410", "original": { "type": "color", "value": "linear-gradient(1.93deg, {core.color.opacity.overflow.300} 1.56%, {core.color.solid.slate.1200} 49.91%)", @@ -129190,7 +129190,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "420", + "name": "coreColorGradientSlate420", "original": { "type": "color", "value": "linear-gradient(88.07deg, {core.color.opacity.overflow.300} 1.63%, {core.color.solid.slate.1200} 50.02%)", @@ -129209,7 +129209,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "430", + "name": "coreColorGradientSlate430", "original": { "type": "color", "value": "linear-gradient(181.93deg, {core.color.opacity.overflow.300} 1.63%, {core.color.solid.slate.1200} 50.01%)", @@ -129228,7 +129228,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "440", + "name": "coreColorGradientSlate440", "original": { "type": "color", "value": "linear-gradient(271.93deg, {core.color.opacity.overflow.300} 1.63%, {core.color.solid.slate.1200} 49.98%)", @@ -129252,7 +129252,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityBlack100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -129273,7 +129273,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityBlack200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -129294,7 +129294,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityBlack300", "original": { "description": "24% of base color", "type": "color", @@ -129315,7 +129315,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityBlack400", "original": { "description": "48% of base color", "type": "color", @@ -129336,7 +129336,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityBlack500", "original": { "description": "56% of base color", "type": "color", @@ -129357,7 +129357,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityBlack600", "original": { "description": "72% of base color", "type": "color", @@ -129378,7 +129378,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityBlack700", "original": { "description": "80% of base color", "type": "color", @@ -129399,7 +129399,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "75", + "name": "coreColorOpacityBlack75", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -129420,7 +129420,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityBlack800", "original": { "description": "88% of base color", "type": "color", @@ -129443,7 +129443,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityBlue100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -129464,7 +129464,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityBlue200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -129485,7 +129485,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityBlue300", "original": { "description": "24% of base color", "type": "color", @@ -129506,7 +129506,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityBlue400", "original": { "description": "48% of base color", "type": "color", @@ -129527,7 +129527,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityBlue500", "original": { "description": "56% of base color", "type": "color", @@ -129548,7 +129548,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityBlue600", "original": { "description": "72% of base color", "type": "color", @@ -129569,7 +129569,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityBlue700", "original": { "description": "80% of base color", "type": "color", @@ -129590,7 +129590,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityBlue800", "original": { "description": "88% of base color", "type": "color", @@ -129613,7 +129613,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityBlueberry100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -129634,7 +129634,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityBlueberry200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -129655,7 +129655,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityBlueberry300", "original": { "description": "24% of base color", "type": "color", @@ -129676,7 +129676,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityBlueberry400", "original": { "description": "48% of base color", "type": "color", @@ -129697,7 +129697,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityBlueberry500", "original": { "description": "56% of base color", "type": "color", @@ -129718,7 +129718,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityBlueberry600", "original": { "description": "72% of base color", "type": "color", @@ -129739,7 +129739,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityBlueberry700", "original": { "description": "80% of base color", "type": "color", @@ -129760,7 +129760,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityBlueberry800", "original": { "description": "88% of base color", "type": "color", @@ -129783,7 +129783,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityCherry100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -129804,7 +129804,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityCherry200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -129825,7 +129825,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityCherry300", "original": { "description": "24% of base color", "type": "color", @@ -129846,7 +129846,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityCherry400", "original": { "description": "48% of base color", "type": "color", @@ -129867,7 +129867,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityCherry500", "original": { "description": "56% of base color", "type": "color", @@ -129888,7 +129888,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityCherry600", "original": { "description": "72% of base color", "type": "color", @@ -129909,7 +129909,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityCherry700", "original": { "description": "80% of base color", "type": "color", @@ -129930,7 +129930,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityCherry800", "original": { "description": "88% of base color", "type": "color", @@ -129953,7 +129953,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityEmerald100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -129974,7 +129974,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityEmerald200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -129995,7 +129995,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityEmerald300", "original": { "description": "24% of base color", "type": "color", @@ -130016,7 +130016,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityEmerald400", "original": { "description": "48% of base color", "type": "color", @@ -130037,7 +130037,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityEmerald500", "original": { "description": "56% of base color", "type": "color", @@ -130058,7 +130058,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityEmerald600", "original": { "description": "72% of base color", "type": "color", @@ -130079,7 +130079,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityEmerald700", "original": { "description": "80% of base color", "type": "color", @@ -130100,7 +130100,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityEmerald800", "original": { "description": "88% of base color", "type": "color", @@ -130123,7 +130123,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityGrape100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -130144,7 +130144,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityGrape200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -130165,7 +130165,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityGrape300", "original": { "description": "24% of base color", "type": "color", @@ -130186,7 +130186,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityGrape400", "original": { "description": "48% of base color", "type": "color", @@ -130207,7 +130207,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityGrape500", "original": { "description": "56% of base color", "type": "color", @@ -130228,7 +130228,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityGrape600", "original": { "description": "72% of base color", "type": "color", @@ -130249,7 +130249,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityGrape700", "original": { "description": "80% of base color", "type": "color", @@ -130270,7 +130270,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityGrape800", "original": { "description": "88% of base color", "type": "color", @@ -130293,7 +130293,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityGreen100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -130314,7 +130314,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityGreen200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -130335,7 +130335,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityGreen300", "original": { "description": "24% of base color", "type": "color", @@ -130356,7 +130356,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityGreen400", "original": { "description": "48% of base color", "type": "color", @@ -130377,7 +130377,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityGreen500", "original": { "description": "56% of base color", "type": "color", @@ -130398,7 +130398,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityGreen600", "original": { "description": "72% of base color", "type": "color", @@ -130419,7 +130419,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityGreen700", "original": { "description": "80% of base color", "type": "color", @@ -130440,7 +130440,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityGreen800", "original": { "description": "88% of base color", "type": "color", @@ -130463,7 +130463,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityMagenta100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -130484,7 +130484,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityMagenta200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -130505,7 +130505,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityMagenta300", "original": { "description": "24% of base color", "type": "color", @@ -130526,7 +130526,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityMagenta400", "original": { "description": "48% of base color", "type": "color", @@ -130547,7 +130547,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityMagenta500", "original": { "description": "56% of base color", "type": "color", @@ -130568,7 +130568,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityMagenta600", "original": { "description": "72% of base color", "type": "color", @@ -130589,7 +130589,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityMagenta700", "original": { "description": "80% of base color", "type": "color", @@ -130610,7 +130610,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityMagenta800", "original": { "description": "88% of base color", "type": "color", @@ -130633,7 +130633,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityMustard100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -130654,7 +130654,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityMustard200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -130675,7 +130675,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityMustard300", "original": { "description": "24% of base color", "type": "color", @@ -130696,7 +130696,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityMustard400", "original": { "description": "48% of base color", "type": "color", @@ -130717,7 +130717,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityMustard500", "original": { "description": "56% of base color", "type": "color", @@ -130738,7 +130738,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityMustard600", "original": { "description": "72% of base color", "type": "color", @@ -130759,7 +130759,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityMustard700", "original": { "description": "80% of base color", "type": "color", @@ -130780,7 +130780,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityMustard800", "original": { "description": "88% of base color", "type": "color", @@ -130803,7 +130803,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityOlive100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -130824,7 +130824,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityOlive200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -130845,7 +130845,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityOlive300", "original": { "description": "24% of base color", "type": "color", @@ -130866,7 +130866,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityOlive400", "original": { "description": "48% of base color", "type": "color", @@ -130887,7 +130887,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityOlive500", "original": { "description": "56% of base color", "type": "color", @@ -130908,7 +130908,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityOlive600", "original": { "description": "72% of base color", "type": "color", @@ -130929,7 +130929,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityOlive700", "original": { "description": "80% of base color", "type": "color", @@ -130950,7 +130950,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityOlive800", "original": { "description": "88% of base color", "type": "color", @@ -130973,7 +130973,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityOrange100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -130994,7 +130994,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityOrange200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131015,7 +131015,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityOrange300", "original": { "description": "24% of base color", "type": "color", @@ -131036,7 +131036,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityOrange400", "original": { "description": "48% of base color", "type": "color", @@ -131057,7 +131057,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityOrange500", "original": { "description": "56% of base color", "type": "color", @@ -131078,7 +131078,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityOrange600", "original": { "description": "72% of base color", "type": "color", @@ -131099,7 +131099,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityOrange700", "original": { "description": "80% of base color", "type": "color", @@ -131120,7 +131120,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityOrange800", "original": { "description": "88% of base color", "type": "color", @@ -131142,7 +131142,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityOverflow100", "original": { "type": "color", "value": "rgba( {core.color.solid.slate.50},{core.opacity.50})", @@ -131161,7 +131161,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityOverflow200", "original": { "type": "color", "value": "rgba( {core.color.solid.slate.75},{core.opacity.50})", @@ -131180,7 +131180,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityOverflow300", "original": { "type": "color", "value": "rgba( {core.color.solid.slate.1200} ,{core.opacity.50})", @@ -131199,7 +131199,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityOverflow400", "original": { "type": "color", "value": "rgba( {core.color.solid.slate.1300} ,{core.opacity.50})", @@ -131221,7 +131221,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityRed100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -131242,7 +131242,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityRed200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131263,7 +131263,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityRed300", "original": { "description": "24% of base color", "type": "color", @@ -131284,7 +131284,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityRed400", "original": { "description": "48% of base color", "type": "color", @@ -131305,7 +131305,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityRed500", "original": { "description": "56% of base color", "type": "color", @@ -131326,7 +131326,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityRed600", "original": { "description": "72% of base color", "type": "color", @@ -131347,7 +131347,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityRed700", "original": { "description": "80% of base color", "type": "color", @@ -131368,7 +131368,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityRed800", "original": { "description": "88% of base color", "type": "color", @@ -131391,7 +131391,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacitySapphire100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131412,7 +131412,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacitySapphire200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131433,7 +131433,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacitySapphire300", "original": { "description": "24% of base color", "type": "color", @@ -131454,7 +131454,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacitySapphire400", "original": { "description": "48% of base color", "type": "color", @@ -131475,7 +131475,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacitySapphire500", "original": { "description": "56% of base color", "type": "color", @@ -131496,7 +131496,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacitySapphire600", "original": { "description": "72% of base color", "type": "color", @@ -131517,7 +131517,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacitySapphire700", "original": { "description": "80% of base color", "type": "color", @@ -131538,7 +131538,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacitySapphire800", "original": { "description": "88% of base color", "type": "color", @@ -131561,7 +131561,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacitySeawater100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -131582,7 +131582,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacitySeawater200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131603,7 +131603,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacitySeawater300", "original": { "description": "24% of base color", "type": "color", @@ -131624,7 +131624,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacitySeawater400", "original": { "description": "48% of base color", "type": "color", @@ -131645,7 +131645,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacitySeawater500", "original": { "description": "56% of base color", "type": "color", @@ -131666,7 +131666,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacitySeawater600", "original": { "description": "72% of base color", "type": "color", @@ -131687,7 +131687,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacitySeawater700", "original": { "description": "80% of base color", "type": "color", @@ -131708,7 +131708,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacitySeawater800", "original": { "description": "88% of base color", "type": "color", @@ -131731,7 +131731,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacitySlate100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131752,7 +131752,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacitySlate200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131773,7 +131773,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacitySlate300", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131794,7 +131794,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacitySlate400", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131815,7 +131815,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacitySlate500", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131836,7 +131836,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacitySlate600", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131857,7 +131857,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacitySlate700", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131878,7 +131878,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacitySlate800", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131901,7 +131901,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityTeal100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -131922,7 +131922,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityTeal200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -131943,7 +131943,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityTeal300", "original": { "description": "24% of base color", "type": "color", @@ -131964,7 +131964,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityTeal400", "original": { "description": "48% of base color", "type": "color", @@ -131985,7 +131985,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityTeal500", "original": { "description": "56% of base color", "type": "color", @@ -132006,7 +132006,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityTeal600", "original": { "description": "72% of base color", "type": "color", @@ -132027,7 +132027,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityTeal700", "original": { "description": "80% of base color", "type": "color", @@ -132048,7 +132048,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityTeal800", "original": { "description": "88% of base color", "type": "color", @@ -132071,7 +132071,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityTiffany100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -132092,7 +132092,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityTiffany200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -132113,7 +132113,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityTiffany300", "original": { "description": "24% of base color", "type": "color", @@ -132134,7 +132134,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityTiffany400", "original": { "description": "48% of base color", "type": "color", @@ -132155,7 +132155,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityTiffany500", "original": { "description": "56% of base color", "type": "color", @@ -132176,7 +132176,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityTiffany600", "original": { "description": "72% of base color", "type": "color", @@ -132197,7 +132197,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityTiffany700", "original": { "description": "80% of base color", "type": "color", @@ -132218,7 +132218,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityTiffany800", "original": { "description": "88% of base color", "type": "color", @@ -132240,7 +132240,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityWhite100", "original": { "type": "color", "value": "rgba({core.color.solid.slate.50},{core.opacity.100})", @@ -132259,7 +132259,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityWhite200", "original": { "type": "color", "value": "rgba({core.color.solid.slate.50},{core.opacity.200})", @@ -132278,7 +132278,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityWhite300", "original": { "type": "color", "value": "rgba({core.color.solid.slate.50},{core.opacity.300})", @@ -132298,7 +132298,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityWhite400", "original": { "description": "48% of base color", "type": "color", @@ -132319,7 +132319,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityWhite500", "original": { "description": "56% of base color", "type": "color", @@ -132340,7 +132340,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityWhite600", "original": { "description": "72% of base color", "type": "color", @@ -132361,7 +132361,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityWhite700", "original": { "description": "80% of base color", "type": "color", @@ -132381,7 +132381,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "75", + "name": "coreColorOpacityWhite75", "original": { "type": "color", "value": "rgba({core.color.solid.slate.50},{core.opacity.75})", @@ -132401,7 +132401,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityWhite800", "original": { "description": "88% of base color", "type": "color", @@ -132424,7 +132424,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityYellow100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -132445,7 +132445,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityYellow200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -132466,7 +132466,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityYellow300", "original": { "description": "24% of base color", "type": "color", @@ -132487,7 +132487,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityYellow400", "original": { "description": "48% of base color", "type": "color", @@ -132508,7 +132508,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityYellow500", "original": { "description": "56% of base color", "type": "color", @@ -132529,7 +132529,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityYellow600", "original": { "description": "72% of base color", "type": "color", @@ -132550,7 +132550,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityYellow700", "original": { "description": "80% of base color", "type": "color", @@ -132571,7 +132571,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityYellow800", "original": { "description": "88% of base color", "type": "color", @@ -132595,7 +132595,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidBlue100", "original": { "type": "color", "value": "#e6f5ff", @@ -132614,7 +132614,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidBlue1000", "original": { "type": "color", "value": "#0066a6", @@ -132633,7 +132633,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidBlue1100", "original": { "type": "color", "value": "#005488", @@ -132652,7 +132652,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidBlue1200", "original": { "type": "color", "value": "#00426a", @@ -132671,7 +132671,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidBlue1300", "original": { "type": "color", "value": "#00304d", @@ -132690,7 +132690,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidBlue200", "original": { "type": "color", "value": "#bfe7ff", @@ -132709,7 +132709,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidBlue300", "original": { "type": "color", "value": "#99d8ff", @@ -132728,7 +132728,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidBlue400", "original": { "type": "color", "value": "#73c9ff", @@ -132747,7 +132747,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidBlue500", "original": { "type": "color", "value": "#53b9ff", @@ -132766,7 +132766,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidBlue600", "original": { "type": "color", "value": "#3daaff", @@ -132785,7 +132785,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidBlue700", "original": { "type": "color", "value": "#2c9aff", @@ -132804,7 +132804,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidBlue800", "original": { "type": "color", "value": "#1789e1", @@ -132823,7 +132823,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidBlue900", "original": { "type": "color", "value": "#0777c4", @@ -132844,7 +132844,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidBlueberry100", "original": { "type": "color", "value": "#ede6fc", @@ -132863,7 +132863,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidBlueberry1000", "original": { "type": "color", "value": "#2f0192", @@ -132882,7 +132882,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidBlueberry1100", "original": { "type": "color", "value": "#270178", @@ -132901,7 +132901,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidBlueberry1200", "original": { "type": "color", "value": "#1e015d", @@ -132920,7 +132920,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidBlueberry1300", "original": { "type": "color", "value": "#160143", @@ -132939,7 +132939,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidBlueberry200", "original": { "type": "color", "value": "#d2c0f7", @@ -132958,7 +132958,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidBlueberry300", "original": { "type": "color", "value": "#b69af3", @@ -132977,7 +132977,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidBlueberry400", "original": { "type": "color", "value": "#9b74ee", @@ -132996,7 +132996,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidBlueberry500", "original": { "type": "color", "value": "#804ee9", @@ -133015,7 +133015,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidBlueberry600", "original": { "type": "color", "value": "#6428e5", @@ -133034,7 +133034,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidBlueberry700", "original": { "type": "color", "value": "#4902e0", @@ -133053,7 +133053,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidBlueberry800", "original": { "type": "color", "value": "#4102c6", @@ -133072,7 +133072,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidBlueberry900", "original": { "type": "color", "value": "#3802ac", @@ -133093,7 +133093,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidCherry100", "original": { "type": "color", "value": "#ffe6e7", @@ -133112,7 +133112,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidCherry1000", "original": { "type": "color", "value": "#a6001a", @@ -133131,7 +133131,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidCherry1100", "original": { "type": "color", "value": "#880011", @@ -133150,7 +133150,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidCherry1200", "original": { "type": "color", "value": "#6a000a", @@ -133169,7 +133169,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidCherry1300", "original": { "type": "color", "value": "#4d0005", @@ -133188,7 +133188,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidCherry200", "original": { "type": "color", "value": "#ffbfc6", @@ -133207,7 +133207,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidCherry300", "original": { "type": "color", "value": "#ff99a6", @@ -133226,7 +133226,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidCherry400", "original": { "type": "color", "value": "#ff7389", @@ -133245,7 +133245,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidCherry500", "original": { "type": "color", "value": "#ff4d6e", @@ -133264,7 +133264,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidCherry600", "original": { "type": "color", "value": "#f32656", @@ -133283,7 +133283,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidCherry700", "original": { "type": "color", "value": "#de0040", @@ -133302,7 +133302,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidCherry800", "original": { "type": "color", "value": "#d40032", @@ -133321,7 +133321,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidCherry900", "original": { "type": "color", "value": "#c40025", @@ -133342,7 +133342,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidCoral100", "original": { "type": "color", "value": "#ffe6e6", @@ -133361,7 +133361,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidCoral1000", "original": { "type": "color", "value": "#a60e19", @@ -133380,7 +133380,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidCoral1100", "original": { "type": "color", "value": "#88030d", @@ -133399,7 +133399,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidCoral1200", "original": { "type": "color", "value": "#6a0004", @@ -133418,7 +133418,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidCoral1300", "original": { "type": "color", "value": "#4d0000", @@ -133437,7 +133437,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidCoral200", "original": { "type": "color", "value": "#ffbfc2", @@ -133456,7 +133456,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidCoral300", "original": { "type": "color", "value": "#ff9ba3", @@ -133475,7 +133475,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidCoral400", "original": { "type": "color", "value": "#ff7e88", @@ -133494,7 +133494,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidCoral500", "original": { "type": "color", "value": "#ff6671", @@ -133513,7 +133513,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidCoral600", "original": { "type": "color", "value": "#ff535e", @@ -133532,7 +133532,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidCoral700", "original": { "type": "color", "value": "#ff444f", @@ -133551,7 +133551,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidCoral800", "original": { "type": "color", "value": "#e12e3a", @@ -133570,7 +133570,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidCoral900", "original": { "type": "color", "value": "#c41c28", @@ -133591,7 +133591,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidEmerald100", "original": { "type": "color", "value": "#e6fff9", @@ -133610,7 +133610,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidEmerald1000", "original": { "type": "color", "value": "#009e6d", @@ -133629,7 +133629,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidEmerald1100", "original": { "type": "color", "value": "#00885d", @@ -133648,7 +133648,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidEmerald1200", "original": { "type": "color", "value": "#006a4c", @@ -133667,7 +133667,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidEmerald1300", "original": { "type": "color", "value": "#004d39", @@ -133686,7 +133686,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidEmerald200", "original": { "type": "color", "value": "#bfffed", @@ -133705,7 +133705,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidEmerald300", "original": { "type": "color", "value": "#99ffdf", @@ -133724,7 +133724,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidEmerald400", "original": { "type": "color", "value": "#73f9cf", @@ -133743,7 +133743,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidEmerald500", "original": { "type": "color", "value": "#4decbc", @@ -133762,7 +133762,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidEmerald600", "original": { "type": "color", "value": "#26daa7", @@ -133781,7 +133781,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidEmerald700", "original": { "type": "color", "value": "#00c390", @@ -133800,7 +133800,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidEmerald800", "original": { "type": "color", "value": "#00bb86", @@ -133819,7 +133819,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidEmerald900", "original": { "type": "color", "value": "#00ae7a", @@ -133840,7 +133840,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidGrape100", "original": { "type": "color", "value": "#f2e7fa", @@ -133859,7 +133859,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidGrape1000", "original": { "type": "color", "value": "#530987", @@ -133878,7 +133878,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidGrape1100", "original": { "type": "color", "value": "#44076e", @@ -133897,7 +133897,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidGrape1200", "original": { "type": "color", "value": "#350556", @@ -133916,7 +133916,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidGrape1300", "original": { "type": "color", "value": "#26043e", @@ -133935,7 +133935,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidGrape200", "original": { "type": "color", "value": "#dfc3f3", @@ -133954,7 +133954,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidGrape300", "original": { "type": "color", "value": "#cc9eec", @@ -133973,7 +133973,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidGrape400", "original": { "type": "color", "value": "#b97ae5", @@ -133992,7 +133992,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidGrape500", "original": { "type": "color", "value": "#a556dd", @@ -134011,7 +134011,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidGrape600", "original": { "type": "color", "value": "#9231d6", @@ -134030,7 +134030,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidGrape700", "original": { "type": "color", "value": "#7f0dcf", @@ -134049,7 +134049,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidGrape800", "original": { "type": "color", "value": "#700cb7", @@ -134068,7 +134068,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidGrape900", "original": { "type": "color", "value": "#610a9f", @@ -134089,7 +134089,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidGreen100", "original": { "type": "color", "value": "#e6fae9", @@ -134108,7 +134108,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidGreen1000", "original": { "type": "color", "value": "#006f1b", @@ -134127,7 +134127,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidGreen1100", "original": { "type": "color", "value": "#006114", @@ -134146,7 +134146,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidGreen1200", "original": { "type": "color", "value": "#00500f", @@ -134165,7 +134165,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidGreen1300", "original": { "type": "color", "value": "#003d0a", @@ -134184,7 +134184,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidGreen200", "original": { "type": "color", "value": "#bfefc8", @@ -134203,7 +134203,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidGreen300", "original": { "type": "color", "value": "#99e2a8", @@ -134222,7 +134222,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidGreen400", "original": { "type": "color", "value": "#73d089", @@ -134241,7 +134241,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidGreen500", "original": { "type": "color", "value": "#4dbc6b", @@ -134260,7 +134260,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidGreen600", "original": { "type": "color", "value": "#26a44e", @@ -134279,7 +134279,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidGreen700", "original": { "type": "color", "value": "#008832", @@ -134298,7 +134298,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidGreen800", "original": { "type": "color", "value": "#00822a", @@ -134317,7 +134317,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidGreen900", "original": { "type": "color", "value": "#007a22", @@ -134338,7 +134338,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidMagenta100", "original": { "type": "color", "value": "#fae7fe", @@ -134357,7 +134357,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidMagenta1000", "original": { "type": "color", "value": "#8409a1", @@ -134376,7 +134376,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidMagenta1100", "original": { "type": "color", "value": "#6c0784", @@ -134395,7 +134395,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidMagenta1200", "original": { "type": "color", "value": "#550567", @@ -134414,7 +134414,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidMagenta1300", "original": { "type": "color", "value": "#3d044a", @@ -134433,7 +134433,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidMagenta200", "original": { "type": "color", "value": "#f2c3fd", @@ -134452,7 +134452,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidMagenta300", "original": { "type": "color", "value": "#ea9efc", @@ -134471,7 +134471,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidMagenta400", "original": { "type": "color", "value": "#e27afb", @@ -134490,7 +134490,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidMagenta500", "original": { "type": "color", "value": "#db56f9", @@ -134509,7 +134509,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidMagenta600", "original": { "type": "color", "value": "#d331f8", @@ -134528,7 +134528,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidMagenta700", "original": { "type": "color", "value": "#cb0df7", @@ -134547,7 +134547,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidMagenta800", "original": { "type": "color", "value": "#b30cda", @@ -134566,7 +134566,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidMagenta900", "original": { "type": "color", "value": "#9c0abd", @@ -134587,7 +134587,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidMustard100", "original": { "type": "color", "value": "#fef9e7", @@ -134606,7 +134606,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidMustard1000", "original": { "type": "color", "value": "#a18107", @@ -134625,7 +134625,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidMustard1100", "original": { "type": "color", "value": "#846a06", @@ -134644,7 +134644,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidMustard1200", "original": { "type": "color", "value": "#675305", @@ -134663,7 +134663,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidMustard1300", "original": { "type": "color", "value": "#4a3b03", @@ -134682,7 +134682,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidMustard200", "original": { "type": "color", "value": "#fdf1c2", @@ -134701,7 +134701,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidMustard300", "original": { "type": "color", "value": "#fce89d", @@ -134720,7 +134720,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidMustard400", "original": { "type": "color", "value": "#fbe079", @@ -134739,7 +134739,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidMustard500", "original": { "type": "color", "value": "#f9d754", @@ -134758,7 +134758,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidMustard600", "original": { "type": "color", "value": "#f8cf30", @@ -134777,7 +134777,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidMustard700", "original": { "type": "color", "value": "#f7c60b", @@ -134796,7 +134796,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidMustard800", "original": { "type": "color", "value": "#daaf0a", @@ -134815,7 +134815,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidMustard900", "original": { "type": "color", "value": "#bd9808", @@ -134836,7 +134836,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidOlive100", "original": { "type": "color", "value": "#fcfbe6", @@ -134855,7 +134855,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidOlive1000", "original": { "type": "color", "value": "#928e01", @@ -134874,7 +134874,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidOlive1100", "original": { "type": "color", "value": "#787401", @@ -134893,7 +134893,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidOlive1200", "original": { "type": "color", "value": "#5d5b01", @@ -134912,7 +134912,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidOlive1300", "original": { "type": "color", "value": "#434101", @@ -134931,7 +134931,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidOlive200", "original": { "type": "color", "value": "#f7f6c0", @@ -134950,7 +134950,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidOlive300", "original": { "type": "color", "value": "#f3f09a", @@ -134969,7 +134969,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidOlive400", "original": { "type": "color", "value": "#eeeb74", @@ -134988,7 +134988,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidOlive500", "original": { "type": "color", "value": "#e9e54e", @@ -135007,7 +135007,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidOlive600", "original": { "type": "color", "value": "#e5e028", @@ -135026,7 +135026,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidOlive700", "original": { "type": "color", "value": "#e0da02", @@ -135045,7 +135045,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidOlive800", "original": { "type": "color", "value": "#c6c102", @@ -135064,7 +135064,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidOlive900", "original": { "type": "color", "value": "#aca702", @@ -135085,7 +135085,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidOrange100", "original": { "type": "color", "value": "#feefe7", @@ -135104,7 +135104,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidOrange1000", "original": { "type": "color", "value": "#9f3e07", @@ -135123,7 +135123,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidOrange1100", "original": { "type": "color", "value": "#833305", @@ -135142,7 +135142,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidOrange1200", "original": { "type": "color", "value": "#662804", @@ -135161,7 +135161,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidOrange1300", "original": { "type": "color", "value": "#4a1d03", @@ -135180,7 +135180,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidOrange200", "original": { "type": "color", "value": "#fdd7c2", @@ -135199,7 +135199,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidOrange300", "original": { "type": "color", "value": "#fbbf9d", @@ -135218,7 +135218,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidOrange400", "original": { "type": "color", "value": "#faa778", @@ -135237,7 +135237,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidOrange500", "original": { "type": "color", "value": "#f88f54", @@ -135256,7 +135256,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidOrange600", "original": { "type": "color", "value": "#f7772f", @@ -135275,7 +135275,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidOrange700", "original": { "type": "color", "value": "#f55f0a", @@ -135294,7 +135294,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidOrange800", "original": { "type": "color", "value": "#d85409", @@ -135313,7 +135313,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidOrange900", "original": { "type": "color", "value": "#bc4908", @@ -135335,7 +135335,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "test change", "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidRed100", "original": { "description": "test change", "type": "color", @@ -135355,7 +135355,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidRed1000", "original": { "type": "color", "value": "#a60000", @@ -135374,7 +135374,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidRed1100", "original": { "type": "color", "value": "#880000", @@ -135393,7 +135393,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidRed1200", "original": { "type": "color", "value": "#6a0000", @@ -135412,7 +135412,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidRed1300", "original": { "type": "color", "value": "#4d0000", @@ -135431,7 +135431,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidRed200", "original": { "type": "color", "value": "#ffbfbf", @@ -135450,7 +135450,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidRed300", "original": { "type": "color", "value": "#ff9999", @@ -135469,7 +135469,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidRed400", "original": { "type": "color", "value": "#ff7373", @@ -135488,7 +135488,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidRed500", "original": { "type": "color", "value": "#ff4d4d", @@ -135507,7 +135507,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidRed600", "original": { "type": "color", "value": "#f92e26", @@ -135526,7 +135526,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidRed700", "original": { "type": "color", "value": "#e6190e", @@ -135545,7 +135545,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidRed800", "original": { "type": "color", "value": "#db0800", @@ -135564,7 +135564,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidRed900", "original": { "type": "color", "value": "#c40000", @@ -135585,7 +135585,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidSapphire100", "original": { "type": "color", "value": "#e7eafe", @@ -135604,7 +135604,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidSapphire1000", "original": { "type": "color", "value": "#081aa1", @@ -135623,7 +135623,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidSapphire1100", "original": { "type": "color", "value": "#061584", @@ -135642,7 +135642,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidSapphire1200", "original": { "type": "color", "value": "#051167", @@ -135661,7 +135661,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidSapphire1300", "original": { "type": "color", "value": "#040c4a", @@ -135680,7 +135680,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidSapphire200", "original": { "type": "color", "value": "#c2c9fd", @@ -135699,7 +135699,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidSapphire300", "original": { "type": "color", "value": "#9ea9fc", @@ -135718,7 +135718,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidSapphire400", "original": { "type": "color", "value": "#7989fb", @@ -135737,7 +135737,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidSapphire500", "original": { "type": "color", "value": "#5569f9", @@ -135756,7 +135756,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidSapphire600", "original": { "type": "color", "value": "#3148f8", @@ -135775,7 +135775,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidSapphire700", "original": { "type": "color", "value": "#0c28f7", @@ -135794,7 +135794,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidSapphire800", "original": { "type": "color", "value": "#0b23da", @@ -135813,7 +135813,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidSapphire900", "original": { "type": "color", "value": "#091fbd", @@ -135834,7 +135834,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidSeawater100", "original": { "type": "color", "value": "#e7f6f7", @@ -135853,7 +135853,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidSeawater1000", "original": { "type": "color", "value": "#076872", @@ -135872,7 +135872,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidSeawater1100", "original": { "type": "color", "value": "#05555e", @@ -135891,7 +135891,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidSeawater1200", "original": { "type": "color", "value": "#044349", @@ -135910,7 +135910,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidSeawater1300", "original": { "type": "color", "value": "#033035", @@ -135929,7 +135929,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidSeawater200", "original": { "type": "color", "value": "#c2e7eb", @@ -135948,7 +135948,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidSeawater300", "original": { "type": "color", "value": "#9dd9df", @@ -135967,7 +135967,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidSeawater400", "original": { "type": "color", "value": "#78cbd4", @@ -135986,7 +135986,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidSeawater500", "original": { "type": "color", "value": "#54bdc8", @@ -136005,7 +136005,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidSeawater600", "original": { "type": "color", "value": "#2faebc", @@ -136024,7 +136024,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidSeawater700", "original": { "type": "color", "value": "#0aa0b0", @@ -136043,7 +136043,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidSeawater800", "original": { "type": "color", "value": "#098d9c", @@ -136062,7 +136062,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidSeawater900", "original": { "type": "color", "value": "#087b87", @@ -136083,7 +136083,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidSlate100", "original": { "type": "color", "value": "#ebecef", @@ -136102,7 +136102,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidSlate1000", "original": { "type": "color", "value": "#282c38", @@ -136121,7 +136121,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidSlate1100", "original": { "type": "color", "value": "#20242f", @@ -136140,7 +136140,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidSlate1200", "original": { "type": "color", "value": "#181c25", @@ -136159,7 +136159,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidSlate1300", "original": { "type": "color", "value": "#11141b", @@ -136178,7 +136178,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1400", + "name": "coreColorSolidSlate1400", "original": { "type": "color", "value": "#000000", @@ -136197,7 +136197,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidSlate200", "original": { "type": "color", "value": "#ced0d6", @@ -136216,7 +136216,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidSlate300", "original": { "type": "color", "value": "#b1b4bc", @@ -136235,7 +136235,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidSlate400", "original": { "type": "color", "value": "#9498a2", @@ -136254,7 +136254,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "50", + "name": "coreColorSolidSlate50", "original": { "type": "color", "value": "#ffffff", @@ -136273,7 +136273,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidSlate500", "original": { "type": "color", "value": "#787d88", @@ -136292,7 +136292,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidSlate600", "original": { "type": "color", "value": "#5c616d", @@ -136311,7 +136311,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidSlate700", "original": { "type": "color", "value": "#414652", @@ -136330,7 +136330,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "75", + "name": "coreColorSolidSlate75", "original": { "type": "color", "value": "#f6f7f8", @@ -136349,7 +136349,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidSlate800", "original": { "type": "color", "value": "#383d4a", @@ -136368,7 +136368,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidSlate900", "original": { "type": "color", "value": "#303541", @@ -136389,7 +136389,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidTeal100", "original": { "type": "color", "value": "#e6fafa", @@ -136408,7 +136408,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidTeal1000", "original": { "type": "color", "value": "#008585", @@ -136427,7 +136427,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidTeal1100", "original": { "type": "color", "value": "#006d6d", @@ -136446,7 +136446,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidTeal1200", "original": { "type": "color", "value": "#005555", @@ -136465,7 +136465,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidTeal1300", "original": { "type": "color", "value": "#003d3d", @@ -136484,7 +136484,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidTeal200", "original": { "type": "color", "value": "#bff2f2", @@ -136503,7 +136503,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidTeal300", "original": { "type": "color", "value": "#99ebeb", @@ -136522,7 +136522,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidTeal400", "original": { "type": "color", "value": "#73e3e3", @@ -136541,7 +136541,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidTeal500", "original": { "type": "color", "value": "#4ddbdb", @@ -136560,7 +136560,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidTeal600", "original": { "type": "color", "value": "#26d4d4", @@ -136579,7 +136579,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidTeal700", "original": { "type": "color", "value": "#00cccc", @@ -136598,7 +136598,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidTeal800", "original": { "type": "color", "value": "#00b4b4", @@ -136617,7 +136617,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidTeal900", "original": { "type": "color", "value": "#009c9c", @@ -136638,7 +136638,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidTiffany100", "original": { "type": "color", "value": "#e8fdf8", @@ -136657,7 +136657,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidTiffany1000", "original": { "type": "color", "value": "#0f987b", @@ -136676,7 +136676,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidTiffany1100", "original": { "type": "color", "value": "#0c7d65", @@ -136695,7 +136695,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidTiffany1200", "original": { "type": "color", "value": "#0a624f", @@ -136714,7 +136714,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidTiffany1300", "original": { "type": "color", "value": "#074639", @@ -136733,7 +136733,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidTiffany200", "original": { "type": "color", "value": "#c5faef", @@ -136752,7 +136752,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidTiffany300", "original": { "type": "color", "value": "#a2f7e5", @@ -136771,7 +136771,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidTiffany400", "original": { "type": "color", "value": "#7ff3db", @@ -136790,7 +136790,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidTiffany500", "original": { "type": "color", "value": "#5df0d1", @@ -136809,7 +136809,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidTiffany600", "original": { "type": "color", "value": "#3aedc7", @@ -136828,7 +136828,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidTiffany700", "original": { "type": "color", "value": "#17eabd", @@ -136847,7 +136847,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidTiffany800", "original": { "type": "color", "value": "#14cfa7", @@ -136866,7 +136866,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidTiffany900", "original": { "type": "color", "value": "#12b391", @@ -136887,7 +136887,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidYellow100", "original": { "type": "color", "value": "#fff7e6", @@ -136906,7 +136906,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidYellow1000", "original": { "type": "color", "value": "#a66c00", @@ -136925,7 +136925,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidYellow1100", "original": { "type": "color", "value": "#885a00", @@ -136944,7 +136944,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidYellow1200", "original": { "type": "color", "value": "#6a4800", @@ -136963,7 +136963,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidYellow1300", "original": { "type": "color", "value": "#4d3500", @@ -136982,7 +136982,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidYellow200", "original": { "type": "color", "value": "#ffeabf", @@ -137001,7 +137001,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidYellow300", "original": { "type": "color", "value": "#ffdd99", @@ -137020,7 +137020,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidYellow400", "original": { "type": "color", "value": "#ffce73", @@ -137039,7 +137039,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidYellow500", "original": { "type": "color", "value": "#ffbe4d", @@ -137058,7 +137058,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidYellow600", "original": { "type": "color", "value": "#ffae26", @@ -137077,7 +137077,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidYellow700", "original": { "type": "color", "value": "#ff9c13", @@ -137096,7 +137096,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidYellow800", "original": { "type": "color", "value": "#e18d00", @@ -137115,7 +137115,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidYellow900", "original": { "type": "color", "value": "#c47d00", @@ -137139,7 +137139,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "110", + "name": "coreElevationShadow110", "original": { "type": "boxShadow", "value": [ @@ -137191,7 +137191,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "120", + "name": "coreElevationShadow120", "original": { "type": "boxShadow", "value": [ @@ -137243,7 +137243,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "130", + "name": "coreElevationShadow130", "original": { "type": "boxShadow", "value": [ @@ -137295,7 +137295,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "140", + "name": "coreElevationShadow140", "original": { "type": "boxShadow", "value": [ @@ -137347,7 +137347,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "210", + "name": "coreElevationShadow210", "original": { "type": "boxShadow", "value": [ @@ -137399,7 +137399,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "220", + "name": "coreElevationShadow220", "original": { "type": "boxShadow", "value": [ @@ -137451,7 +137451,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "230", + "name": "coreElevationShadow230", "original": { "type": "boxShadow", "value": [ @@ -137503,7 +137503,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "240", + "name": "coreElevationShadow240", "original": { "type": "boxShadow", "value": [ @@ -137555,7 +137555,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "310", + "name": "coreElevationShadow310", "original": { "type": "boxShadow", "value": [ @@ -137607,7 +137607,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "320", + "name": "coreElevationShadow320", "original": { "type": "boxShadow", "value": [ @@ -137659,7 +137659,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "330", + "name": "coreElevationShadow330", "original": { "type": "boxShadow", "value": [ @@ -137711,7 +137711,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "340", + "name": "coreElevationShadow340", "original": { "type": "boxShadow", "value": [ @@ -137763,7 +137763,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "410", + "name": "coreElevationShadow410", "original": { "type": "boxShadow", "value": [ @@ -137815,7 +137815,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "420", + "name": "coreElevationShadow420", "original": { "type": "boxShadow", "value": [ @@ -137867,7 +137867,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "430", + "name": "coreElevationShadow430", "original": { "type": "boxShadow", "value": [ @@ -137919,7 +137919,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "440", + "name": "coreElevationShadow440", "original": { "type": "boxShadow", "value": [ @@ -137971,7 +137971,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "50", + "name": "coreElevationShadow50", "original": { "type": "boxShadow", "value": { @@ -138003,7 +138003,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "510", + "name": "coreElevationShadow510", "original": { "type": "boxShadow", "value": [ @@ -138055,7 +138055,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "520", + "name": "coreElevationShadow520", "original": { "type": "boxShadow", "value": [ @@ -138107,7 +138107,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "530", + "name": "coreElevationShadow530", "original": { "type": "boxShadow", "value": [ @@ -138159,7 +138159,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "540", + "name": "coreElevationShadow540", "original": { "type": "boxShadow", "value": [ @@ -138211,7 +138211,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "610", + "name": "coreElevationShadow610", "original": { "type": "boxShadow", "value": [ @@ -138263,7 +138263,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "620", + "name": "coreElevationShadow620", "original": { "type": "boxShadow", "value": [ @@ -138315,7 +138315,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "630", + "name": "coreElevationShadow630", "original": { "type": "boxShadow", "value": [ @@ -138367,7 +138367,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "710", + "name": "coreElevationShadow710", "original": { "type": "boxShadow", "value": [ @@ -138419,7 +138419,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "720", + "name": "coreElevationShadow720", "original": { "type": "boxShadow", "value": [ @@ -138471,7 +138471,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "730", + "name": "coreElevationShadow730", "original": { "type": "boxShadow", "value": [ @@ -138523,7 +138523,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "740", + "name": "coreElevationShadow740", "original": { "type": "boxShadow", "value": [ @@ -138578,7 +138578,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "underline", + "name": "coreFontDecorationUnderline", "original": { "type": "textDecoration", "value": "underline", @@ -138598,7 +138598,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "brands", + "name": "coreFontFamilyFontAwesomeBrands", "original": { "type": "fontFamilies", "value": "Font Awesome 6 Brands", @@ -138616,7 +138616,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "pro", + "name": "coreFontFamilyFontAwesomePro", "original": { "type": "fontFamilies", "value": "Font Awesome 6 Pro", @@ -138636,7 +138636,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "mono", + "name": "coreFontFamilyIbmPlexMono", "original": { "type": "fontFamilies", "value": "IBM Plex Mono", @@ -138654,7 +138654,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "sans", + "name": "coreFontFamilyIbmPlexSans", "original": { "type": "fontFamilies", "value": "IBM Plex Sans", @@ -138673,7 +138673,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "ubuntu", + "name": "coreFontFamilyUbuntu", "original": { "type": "fontFamilies", "value": "Ubuntu", @@ -138693,7 +138693,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "100", + "name": "coreFontSize100", "original": { "description": "1rem", "type": "fontSizes", @@ -138712,7 +138712,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.125rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "200", + "name": "coreFontSize200", "original": { "description": "1.125rem", "type": "fontSizes", @@ -138731,7 +138731,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.25rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "300", + "name": "coreFontSize300", "original": { "description": "1.25rem", "type": "fontSizes", @@ -138750,7 +138750,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "400", + "name": "coreFontSize400", "original": { "description": "1.5rem", "type": "fontSizes", @@ -138769,7 +138769,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.75rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "50", + "name": "coreFontSize50", "original": { "description": "0.75rem", "type": "fontSizes", @@ -138788,7 +138788,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "500", + "name": "coreFontSize500", "original": { "description": "2rem", "type": "fontSizes", @@ -138807,7 +138807,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "600", + "name": "coreFontSize600", "original": { "description": "2.5rem", "type": "fontSizes", @@ -138826,7 +138826,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "700", + "name": "coreFontSize700", "original": { "description": "3rem", "type": "fontSizes", @@ -138845,7 +138845,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.875rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "75", + "name": "coreFontSize75", "original": { "description": "0.875rem", "type": "fontSizes", @@ -138864,7 +138864,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "800", + "name": "coreFontSize800", "original": { "description": "4rem", "type": "fontSizes", @@ -138883,7 +138883,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "900", + "name": "coreFontSize900", "original": { "description": "5rem", "type": "fontSizes", @@ -138903,7 +138903,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "bold", + "name": "coreFontWeightBold", "original": { "type": "fontWeights", "value": "700", @@ -138920,7 +138920,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "boldItalic", + "name": "coreFontWeightBoldItalic", "original": { "type": "fontWeights", "value": "Bold Italic", @@ -138937,7 +138937,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "italic", + "name": "coreFontWeightItalic", "original": { "type": "fontWeights", "value": "Italic", @@ -138954,7 +138954,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "light", + "name": "coreFontWeightLight", "original": { "type": "fontWeights", "value": "300", @@ -138971,7 +138971,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "regular", + "name": "coreFontWeightRegular", "original": { "type": "fontWeights", "value": "400", @@ -138991,7 +138991,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.125rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "100", + "name": "coreLineHeight100", "original": { "description": "1.125rem", "type": "lineHeights", @@ -139010,7 +139010,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "6rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "1000", + "name": "coreLineHeight1000", "original": { "description": "6rem", "type": "lineHeights", @@ -139029,7 +139029,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.375rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "200", + "name": "coreLineHeight200", "original": { "description": "1.375rem", "type": "lineHeights", @@ -139048,7 +139048,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "300", + "name": "coreLineHeight300", "original": { "description": "1.5rem", "type": "lineHeights", @@ -139067,7 +139067,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.75rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "400", + "name": "coreLineHeight400", "original": { "description": "1.75rem", "type": "lineHeights", @@ -139086,7 +139086,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.875rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "500", + "name": "coreLineHeight500", "original": { "description": "1.875rem", "type": "lineHeights", @@ -139105,7 +139105,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "600", + "name": "coreLineHeight600", "original": { "description": "2rem", "type": "lineHeights", @@ -139124,7 +139124,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.25rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "700", + "name": "coreLineHeight700", "original": { "description": "2.25rem", "type": "lineHeights", @@ -139143,7 +139143,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "800", + "name": "coreLineHeight800", "original": { "description": "3rem", "type": "lineHeights", @@ -139162,7 +139162,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "900", + "name": "coreLineHeight900", "original": { "description": "4rem", "type": "lineHeights", @@ -139180,7 +139180,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "auto", + "name": "coreLineHeightAuto", "original": { "type": "lineHeights", "value": "auto", @@ -139200,7 +139200,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "100", + "name": "coreMotionDuration100", "original": { "type": "other", "value": "80ms", @@ -139218,7 +139218,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1000", + "name": "coreMotionDuration1000", "original": { "type": "other", "value": "1920ms", @@ -139236,7 +139236,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1100", + "name": "coreMotionDuration1100", "original": { "type": "other", "value": "2400ms", @@ -139254,7 +139254,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1200", + "name": "coreMotionDuration1200", "original": { "type": "other", "value": "2880ms", @@ -139272,7 +139272,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1300", + "name": "coreMotionDuration1300", "original": { "type": "other", "value": "3360ms", @@ -139290,7 +139290,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1400", + "name": "coreMotionDuration1400", "original": { "type": "other", "value": "3840ms", @@ -139308,7 +139308,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1500", + "name": "coreMotionDuration1500", "original": { "type": "other", "value": "4320ms", @@ -139326,7 +139326,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "200", + "name": "coreMotionDuration200", "original": { "type": "other", "value": "160ms", @@ -139344,7 +139344,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "300", + "name": "coreMotionDuration300", "original": { "type": "other", "value": "240ms", @@ -139362,7 +139362,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "400", + "name": "coreMotionDuration400", "original": { "type": "other", "value": "480ms", @@ -139380,7 +139380,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "50", + "name": "coreMotionDuration50", "original": { "type": "other", "value": "0ms", @@ -139398,7 +139398,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "500", + "name": "coreMotionDuration500", "original": { "type": "other", "value": "720ms", @@ -139416,7 +139416,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "600", + "name": "coreMotionDuration600", "original": { "type": "other", "value": "960ms", @@ -139434,7 +139434,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "700", + "name": "coreMotionDuration700", "original": { "type": "other", "value": "1200ms", @@ -139452,7 +139452,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "800", + "name": "coreMotionDuration800", "original": { "type": "other", "value": "1440ms", @@ -139470,7 +139470,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "900", + "name": "coreMotionDuration900", "original": { "type": "other", "value": "1680ms", @@ -139490,7 +139490,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "100", + "name": "coreMotionEase100", "original": { "type": "other", "value": "cubic-bezier(0, 0, 1, 1)", @@ -139508,7 +139508,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "200", + "name": "coreMotionEase200", "original": { "type": "other", "value": "cubic-bezier(1, 0, 1, 1)", @@ -139526,7 +139526,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "300", + "name": "coreMotionEase300", "original": { "type": "other", "value": "cubic-bezier(0, 0, 0, 1)", @@ -139544,7 +139544,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "400", + "name": "coreMotionEase400", "original": { "type": "other", "value": "cubic-bezier(0.72, 0, 0.24, 1)", @@ -139565,7 +139565,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "100", + "name": "coreOpacity100", "original": { "type": "opacity", "value": "8%", @@ -139582,7 +139582,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "1000", + "name": "coreOpacity1000", "original": { "type": "opacity", "value": "80%", @@ -139599,7 +139599,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "1100", + "name": "coreOpacity1100", "original": { "type": "opacity", "value": "88%", @@ -139616,7 +139616,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "1200", + "name": "coreOpacity1200", "original": { "type": "opacity", "value": "96%", @@ -139633,7 +139633,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "1300", + "name": "coreOpacity1300", "original": { "type": "opacity", "value": "100%", @@ -139650,7 +139650,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "200", + "name": "coreOpacity200", "original": { "type": "opacity", "value": "16%", @@ -139667,7 +139667,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "300", + "name": "coreOpacity300", "original": { "type": "opacity", "value": "24%", @@ -139684,7 +139684,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "400", + "name": "coreOpacity400", "original": { "type": "opacity", "value": "32%", @@ -139701,7 +139701,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "50", + "name": "coreOpacity50", "original": { "type": "opacity", "value": "0%", @@ -139718,7 +139718,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "500", + "name": "coreOpacity500", "original": { "type": "opacity", "value": "40%", @@ -139735,7 +139735,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "600", + "name": "coreOpacity600", "original": { "type": "opacity", "value": "48%", @@ -139752,7 +139752,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "700", + "name": "coreOpacity700", "original": { "type": "opacity", "value": "56%", @@ -139769,7 +139769,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "75", + "name": "coreOpacity75", "original": { "type": "opacity", "value": "4%", @@ -139786,7 +139786,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "800", + "name": "coreOpacity800", "original": { "type": "opacity", "value": "64%", @@ -139803,7 +139803,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "900", + "name": "coreOpacity900", "original": { "type": "opacity", "value": "72%", @@ -139823,7 +139823,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "100", + "name": "coreParagraphSpacing100", "original": { "description": "1rem", "type": "paragraphSpacing", @@ -139842,7 +139842,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.125rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "200", + "name": "coreParagraphSpacing200", "original": { "description": "1.125rem", "type": "paragraphSpacing", @@ -139861,7 +139861,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.25rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "300", + "name": "coreParagraphSpacing300", "original": { "description": "1.25rem", "type": "paragraphSpacing", @@ -139880,7 +139880,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "400", + "name": "coreParagraphSpacing400", "original": { "description": "1.5rem", "type": "paragraphSpacing", @@ -139899,7 +139899,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.75 rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "50", + "name": "coreParagraphSpacing50", "original": { "description": "0.75 rem", "type": "paragraphSpacing", @@ -139918,7 +139918,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "500", + "name": "coreParagraphSpacing500", "original": { "description": "2rem", "type": "paragraphSpacing", @@ -139937,7 +139937,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "600", + "name": "coreParagraphSpacing600", "original": { "description": "2.5rem", "type": "paragraphSpacing", @@ -139956,7 +139956,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "700", + "name": "coreParagraphSpacing700", "original": { "description": "3", "type": "paragraphSpacing", @@ -139975,7 +139975,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.875rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "75", + "name": "coreParagraphSpacing75", "original": { "description": "0.875rem", "type": "paragraphSpacing", @@ -139994,7 +139994,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "800", + "name": "coreParagraphSpacing800", "original": { "description": "4rem", "type": "paragraphSpacing", @@ -140013,7 +140013,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "900", + "name": "coreParagraphSpacing900", "original": { "description": "5rem", "type": "paragraphSpacing", @@ -140034,7 +140034,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "100", + "name": "coreSpacing100", "original": { "description": "0.125rem", "type": "spacing", @@ -140053,7 +140053,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1000", + "name": "coreSpacing1000", "original": { "description": "1.25rem", "type": "spacing", @@ -140072,7 +140072,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1100", + "name": "coreSpacing1100", "original": { "description": "1.375rem", "type": "spacing", @@ -140091,7 +140091,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1200", + "name": "coreSpacing1200", "original": { "description": "1.5rem", "type": "spacing", @@ -140110,7 +140110,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1300", + "name": "coreSpacing1300", "original": { "description": "1.625rem", "type": "spacing", @@ -140129,7 +140129,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1400", + "name": "coreSpacing1400", "original": { "description": "1.75rem", "type": "spacing", @@ -140148,7 +140148,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1500", + "name": "coreSpacing1500", "original": { "description": "1.875rem", "type": "spacing", @@ -140167,7 +140167,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1600", + "name": "coreSpacing1600", "original": { "description": "2rem", "type": "spacing", @@ -140186,7 +140186,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1700", + "name": "coreSpacing1700", "original": { "description": "2.125rem", "type": "spacing", @@ -140205,7 +140205,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1800", + "name": "coreSpacing1800", "original": { "description": "2.25rem", "type": "spacing", @@ -140224,7 +140224,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1900", + "name": "coreSpacing1900", "original": { "description": "2.375rem", "type": "spacing", @@ -140243,7 +140243,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "200", + "name": "coreSpacing200", "original": { "description": "0.25rem", "type": "spacing", @@ -140262,7 +140262,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2000", + "name": "coreSpacing2000", "original": { "description": "2.5rem", "type": "spacing", @@ -140281,7 +140281,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2100", + "name": "coreSpacing2100", "original": { "description": "2.625rem", "type": "spacing", @@ -140300,7 +140300,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2200", + "name": "coreSpacing2200", "original": { "description": "2.75rem", "type": "spacing", @@ -140319,7 +140319,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "2.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2300", + "name": "coreSpacing2300", "original": { "description": "2.875rem", "type": "spacing", @@ -140338,7 +140338,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2400", + "name": "coreSpacing2400", "original": { "description": "3rem", "type": "spacing", @@ -140357,7 +140357,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2500", + "name": "coreSpacing2500", "original": { "description": "3.125rem", "type": "spacing", @@ -140376,7 +140376,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2600", + "name": "coreSpacing2600", "original": { "description": "3.25rem", "type": "spacing", @@ -140395,7 +140395,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2700", + "name": "coreSpacing2700", "original": { "description": "3.375rem", "type": "spacing", @@ -140414,7 +140414,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2800", + "name": "coreSpacing2800", "original": { "description": "3.5rem", "type": "spacing", @@ -140433,7 +140433,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2900", + "name": "coreSpacing2900", "original": { "description": "3.625rem", "type": "spacing", @@ -140452,7 +140452,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "300", + "name": "coreSpacing300", "original": { "description": "0.375rem", "type": "spacing", @@ -140471,7 +140471,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3000", + "name": "coreSpacing3000", "original": { "description": "3.75rem", "type": "spacing", @@ -140490,7 +140490,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "3.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3100", + "name": "coreSpacing3100", "original": { "description": "3.875rem", "type": "spacing", @@ -140509,7 +140509,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3200", + "name": "coreSpacing3200", "original": { "description": "4rem", "type": "spacing", @@ -140528,7 +140528,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3300", + "name": "coreSpacing3300", "original": { "description": "4.125rem", "type": "spacing", @@ -140547,7 +140547,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3400", + "name": "coreSpacing3400", "original": { "description": "4.25rem", "type": "spacing", @@ -140566,7 +140566,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3500", + "name": "coreSpacing3500", "original": { "description": "4.375rem", "type": "spacing", @@ -140585,7 +140585,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3600", + "name": "coreSpacing3600", "original": { "description": "4.5rem", "type": "spacing", @@ -140604,7 +140604,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3700", + "name": "coreSpacing3700", "original": { "description": "4.625rem", "type": "spacing", @@ -140623,7 +140623,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3800", + "name": "coreSpacing3800", "original": { "description": "4.75rem", "type": "spacing", @@ -140642,7 +140642,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "4.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3900", + "name": "coreSpacing3900", "original": { "description": "4.875rem", "type": "spacing", @@ -140661,7 +140661,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "400", + "name": "coreSpacing400", "original": { "description": "0.5rem", "type": "spacing", @@ -140680,7 +140680,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4000", + "name": "coreSpacing4000", "original": { "description": "5rem", "type": "spacing", @@ -140699,7 +140699,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4100", + "name": "coreSpacing4100", "original": { "description": "5.125rem", "type": "spacing", @@ -140718,7 +140718,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4200", + "name": "coreSpacing4200", "original": { "description": "5.25rem", "type": "spacing", @@ -140737,7 +140737,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4300", + "name": "coreSpacing4300", "original": { "description": "5.375rem", "type": "spacing", @@ -140756,7 +140756,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4400", + "name": "coreSpacing4400", "original": { "description": "5.5rem", "type": "spacing", @@ -140775,7 +140775,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4500", + "name": "coreSpacing4500", "original": { "description": "5.625rem", "type": "spacing", @@ -140794,7 +140794,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4600", + "name": "coreSpacing4600", "original": { "description": "5.75rem", "type": "spacing", @@ -140813,7 +140813,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "5.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4700", + "name": "coreSpacing4700", "original": { "description": "5.875rem", "type": "spacing", @@ -140832,7 +140832,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "6rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4800", + "name": "coreSpacing4800", "original": { "description": "6rem", "type": "spacing", @@ -140851,7 +140851,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "6.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4900", + "name": "coreSpacing4900", "original": { "description": "6.125rem", "type": "spacing", @@ -140870,7 +140870,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "50", + "name": "coreSpacing50", "original": { "description": "0rem", "type": "spacing", @@ -140889,7 +140889,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "500", + "name": "coreSpacing500", "original": { "description": "0.625rem", "type": "spacing", @@ -140908,7 +140908,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "6.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "5000", + "name": "coreSpacing5000", "original": { "description": "6.25rem", "type": "spacing", @@ -140927,7 +140927,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "600", + "name": "coreSpacing600", "original": { "description": "0.75rem", "type": "spacing", @@ -140946,7 +140946,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "700", + "name": "coreSpacing700", "original": { "description": "0.875rem", "type": "spacing", @@ -140965,7 +140965,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "0.0625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "75", + "name": "coreSpacing75", "original": { "description": "0.0625rem", "type": "spacing", @@ -140984,7 +140984,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "800", + "name": "coreSpacing800", "original": { "description": "1rem", "type": "spacing", @@ -141003,7 +141003,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "description": "1.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "900", + "name": "coreSpacing900", "original": { "description": "1.125rem", "type": "spacing", @@ -141026,7 +141026,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "dialog", + "name": "semanticColorBackgroundDialog", "original": { "type": "color", "value": "{core.color.solid.slate.1200}", @@ -141045,7 +141045,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "base", + "name": "semanticColorBackgroundPrimaryBase", "original": { "type": "color", "value": "{core.color.solid.slate.1300}", @@ -141064,7 +141064,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "container", + "name": "semanticColorBackgroundPrimaryContainer", "original": { "type": "color", "value": "{core.color.solid.slate.1200}", @@ -141085,7 +141085,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "base", + "name": "semanticColorBackgroundSecondaryBase", "original": { "type": "color", "value": "{core.color.solid.slate.1300}", @@ -141104,7 +141104,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "container", + "name": "semanticColorBackgroundSecondaryContainer", "original": { "type": "color", "value": "{core.color.solid.slate.1200}", @@ -141126,7 +141126,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "danger", + "name": "semanticColorStatusDanger", "original": { "type": "color", "value": "{core.color.solid.red.600}", @@ -141144,7 +141144,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "info", + "name": "semanticColorStatusInfo", "original": { "type": "color", "value": "{core.color.solid.blue.600}", @@ -141162,7 +141162,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "success", + "name": "semanticColorStatusSuccess", "original": { "type": "color", "value": "{core.color.solid.green.600}", @@ -141180,7 +141180,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "warning", + "name": "semanticColorStatusWarning", "original": { "type": "color", "value": "{core.color.solid.yellow.600}", @@ -141200,7 +141200,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "default", + "name": "semanticColorTypographyDefault", "original": { "type": "color", "value": "{core.color.opacity.white.600}", @@ -141218,7 +141218,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "disabled", + "name": "semanticColorTypographyDisabled", "original": { "type": "color", "value": "{core.color.opacity.white.300}", @@ -141236,7 +141236,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "link", + "name": "semanticColorTypographyLink", "original": { "type": "color", "value": "{core.color.solid.coral.700}", @@ -141254,7 +141254,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "prominent", + "name": "semanticColorTypographyProminent", "original": { "type": "color", "value": "{core.color.solid.slate.50}", @@ -141272,7 +141272,7 @@ exports[`Tailwind Exports Should generate Mobile Dark Theme Semantic variables p "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/dark.json", "isSource": true, - "name": "subtle", + "name": "semanticColorTypographySubtle", "original": { "type": "color", "value": "{core.color.opacity.white.400}", @@ -141301,7 +141301,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "100", + "name": "coreBorderRadius100", "original": { "description": "0.125rem", "type": "borderRadius", @@ -141320,7 +141320,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1000", + "name": "coreBorderRadius1000", "original": { "description": "1.25rem", "type": "borderRadius", @@ -141339,7 +141339,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1100", + "name": "coreBorderRadius1100", "original": { "description": "1.375rem", "type": "borderRadius", @@ -141358,7 +141358,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1200", + "name": "coreBorderRadius1200", "original": { "description": "1.5rem", "type": "borderRadius", @@ -141377,7 +141377,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1300", + "name": "coreBorderRadius1300", "original": { "description": "1.625rem", "type": "borderRadius", @@ -141396,7 +141396,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1400", + "name": "coreBorderRadius1400", "original": { "description": "1.75rem", "type": "borderRadius", @@ -141415,7 +141415,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1500", + "name": "coreBorderRadius1500", "original": { "description": "1.875rem", "type": "borderRadius", @@ -141434,7 +141434,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1600", + "name": "coreBorderRadius1600", "original": { "description": "2rem", "type": "borderRadius", @@ -141453,7 +141453,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1700", + "name": "coreBorderRadius1700", "original": { "description": "2.125rem", "type": "borderRadius", @@ -141472,7 +141472,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1800", + "name": "coreBorderRadius1800", "original": { "description": "2.25rem", "type": "borderRadius", @@ -141491,7 +141491,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "1900", + "name": "coreBorderRadius1900", "original": { "description": "2.375rem", "type": "borderRadius", @@ -141510,7 +141510,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "200", + "name": "coreBorderRadius200", "original": { "description": "0.25rem", "type": "borderRadius", @@ -141529,7 +141529,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2000", + "name": "coreBorderRadius2000", "original": { "description": "2.5rem", "type": "borderRadius", @@ -141548,7 +141548,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2100", + "name": "coreBorderRadius2100", "original": { "description": "2.625rem", "type": "borderRadius", @@ -141567,7 +141567,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2200", + "name": "coreBorderRadius2200", "original": { "description": "2.75rem", "type": "borderRadius", @@ -141586,7 +141586,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2300", + "name": "coreBorderRadius2300", "original": { "description": "2.875rem", "type": "borderRadius", @@ -141605,7 +141605,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2400", + "name": "coreBorderRadius2400", "original": { "description": "3rem", "type": "borderRadius", @@ -141624,7 +141624,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2500", + "name": "coreBorderRadius2500", "original": { "description": "3.125rem", "type": "borderRadius", @@ -141643,7 +141643,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2600", + "name": "coreBorderRadius2600", "original": { "description": "3.25rem", "type": "borderRadius", @@ -141662,7 +141662,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2700", + "name": "coreBorderRadius2700", "original": { "description": "3.375rem", "type": "borderRadius", @@ -141681,7 +141681,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2800", + "name": "coreBorderRadius2800", "original": { "description": "3.5rem", "type": "borderRadius", @@ -141700,7 +141700,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "2900", + "name": "coreBorderRadius2900", "original": { "description": "3.625rem", "type": "borderRadius", @@ -141719,7 +141719,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "300", + "name": "coreBorderRadius300", "original": { "description": "0.375rem", "type": "borderRadius", @@ -141738,7 +141738,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3000", + "name": "coreBorderRadius3000", "original": { "description": "3.75rem", "type": "borderRadius", @@ -141757,7 +141757,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3100", + "name": "coreBorderRadius3100", "original": { "description": "3.875rem", "type": "borderRadius", @@ -141776,7 +141776,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3200", + "name": "coreBorderRadius3200", "original": { "description": "4rem", "type": "borderRadius", @@ -141795,7 +141795,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3300", + "name": "coreBorderRadius3300", "original": { "description": "4.125rem", "type": "borderRadius", @@ -141814,7 +141814,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3400", + "name": "coreBorderRadius3400", "original": { "description": "4.25rem", "type": "borderRadius", @@ -141833,7 +141833,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3500", + "name": "coreBorderRadius3500", "original": { "description": "4.375rem", "type": "borderRadius", @@ -141852,7 +141852,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3600", + "name": "coreBorderRadius3600", "original": { "description": "4.5rem", "type": "borderRadius", @@ -141871,7 +141871,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3700", + "name": "coreBorderRadius3700", "original": { "description": "4.625rem", "type": "borderRadius", @@ -141890,7 +141890,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3800", + "name": "coreBorderRadius3800", "original": { "description": "4.75rem", "type": "borderRadius", @@ -141909,7 +141909,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "3900", + "name": "coreBorderRadius3900", "original": { "description": "4.875rem", "type": "borderRadius", @@ -141928,7 +141928,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "400", + "name": "coreBorderRadius400", "original": { "description": "0.5rem", "type": "borderRadius", @@ -141947,7 +141947,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4000", + "name": "coreBorderRadius4000", "original": { "description": "5rem", "type": "borderRadius", @@ -141966,7 +141966,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4100", + "name": "coreBorderRadius4100", "original": { "description": "5.125rem", "type": "borderRadius", @@ -141985,7 +141985,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4200", + "name": "coreBorderRadius4200", "original": { "description": "5.25rem", "type": "borderRadius", @@ -142004,7 +142004,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.375rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4300", + "name": "coreBorderRadius4300", "original": { "description": "5.375rem", "type": "borderRadius", @@ -142023,7 +142023,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4400", + "name": "coreBorderRadius4400", "original": { "description": "5.5rem", "type": "borderRadius", @@ -142042,7 +142042,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4500", + "name": "coreBorderRadius4500", "original": { "description": "5.625rem", "type": "borderRadius", @@ -142061,7 +142061,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4600", + "name": "coreBorderRadius4600", "original": { "description": "5.75rem", "type": "borderRadius", @@ -142080,7 +142080,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4700", + "name": "coreBorderRadius4700", "original": { "description": "5.875rem", "type": "borderRadius", @@ -142099,7 +142099,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "6rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4800", + "name": "coreBorderRadius4800", "original": { "description": "6rem", "type": "borderRadius", @@ -142118,7 +142118,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "6.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "4900", + "name": "coreBorderRadius4900", "original": { "description": "6.125rem", "type": "borderRadius", @@ -142136,7 +142136,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "50", + "name": "coreBorderRadius50", "original": { "type": "borderRadius", "value": "0px", @@ -142154,7 +142154,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "500", + "name": "coreBorderRadius500", "original": { "description": "0.625rem", "type": "borderRadius", @@ -142173,7 +142173,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "6.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "5000", + "name": "coreBorderRadius5000", "original": { "description": "6.25rem", "type": "borderRadius", @@ -142192,7 +142192,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.75rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "600", + "name": "coreBorderRadius600", "original": { "description": "0.75rem", "type": "borderRadius", @@ -142211,7 +142211,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.875rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "700", + "name": "coreBorderRadius700", "original": { "description": "0.875rem", "type": "borderRadius", @@ -142230,7 +142230,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "800", + "name": "coreBorderRadius800", "original": { "description": "1rem", "type": "borderRadius", @@ -142249,7 +142249,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.125rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "900", + "name": "coreBorderRadius900", "original": { "description": "1.125rem", "type": "borderRadius", @@ -142270,7 +142270,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.125", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "100", + "name": "coreBorderWidth100", "original": { "description": "0.125", "type": "borderWidth", @@ -142289,7 +142289,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.25rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "200", + "name": "coreBorderWidth200", "original": { "description": "0.25rem", "type": "borderWidth", @@ -142308,7 +142308,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.5rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "300", + "name": "coreBorderWidth300", "original": { "description": "0.5rem", "type": "borderWidth", @@ -142326,7 +142326,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "50", + "name": "coreBorderWidth50", "original": { "type": "borderWidth", "value": "0", @@ -142344,7 +142344,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.0625rem", "filePath": "raw-tokens/data/core/border.json", "isSource": true, - "name": "75", + "name": "coreBorderWidth75", "original": { "description": "0.0625rem", "type": "borderWidth", @@ -142366,7 +142366,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "110", + "name": "coreColorGradientSlate110", "original": { "type": "color", "value": "linear-gradient(1.93deg, {core.color.opacity.overflow.100} 1.56%, {core.color.solid.slate.50} 49.91%)", @@ -142385,7 +142385,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "120", + "name": "coreColorGradientSlate120", "original": { "type": "color", "value": "linear-gradient(88.07deg, {core.color.opacity.overflow.100} 1.63%, {core.color.solid.slate.50} 50.02%)", @@ -142404,7 +142404,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "130", + "name": "coreColorGradientSlate130", "original": { "type": "color", "value": "linear-gradient(181.93deg, {core.color.opacity.overflow.100} 1.63%, {core.color.solid.slate.50} 50.01%)", @@ -142423,7 +142423,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "140", + "name": "coreColorGradientSlate140", "original": { "type": "color", "value": "linear-gradient(271.93deg, {core.color.opacity.overflow.100} 1.63%, {core.color.solid.slate.50} 49.98%)", @@ -142442,7 +142442,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "210", + "name": "coreColorGradientSlate210", "original": { "type": "color", "value": "linear-gradient(1.93deg, {core.color.opacity.overflow.200} 1.56%, {core.color.solid.slate.75} 49.91%)", @@ -142461,7 +142461,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "220", + "name": "coreColorGradientSlate220", "original": { "type": "color", "value": "linear-gradient(88.07deg, {core.color.opacity.overflow.200} 1.63%, {core.color.solid.slate.75} 50.02%)", @@ -142480,7 +142480,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "230", + "name": "coreColorGradientSlate230", "original": { "type": "color", "value": "linear-gradient(181.93deg, {core.color.opacity.overflow.200} 1.63%, {core.color.solid.slate.75} 50.01%)", @@ -142499,7 +142499,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "240", + "name": "coreColorGradientSlate240", "original": { "type": "color", "value": "linear-gradient(271.93deg, {core.color.opacity.overflow.200} 1.63%, {core.color.solid.slate.75} 49.98%)", @@ -142518,7 +142518,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "310", + "name": "coreColorGradientSlate310", "original": { "type": "color", "value": "linear-gradient(1.93deg, {core.color.opacity.overflow.400} 1.56%, {core.color.solid.slate.1300} 49.91%)", @@ -142537,7 +142537,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "320", + "name": "coreColorGradientSlate320", "original": { "type": "color", "value": "linear-gradient(88.07deg, {core.color.opacity.overflow.400} 1.63%, {core.color.solid.slate.1300} 50.02%)", @@ -142556,7 +142556,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "330", + "name": "coreColorGradientSlate330", "original": { "type": "color", "value": "linear-gradient(181.93deg, {core.color.opacity.overflow.400} 1.63%, {core.color.solid.slate.1300} 50.01%)", @@ -142575,7 +142575,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "340", + "name": "coreColorGradientSlate340", "original": { "type": "color", "value": "linear-gradient(271.93deg, {core.color.opacity.overflow.400} 1.63%, {core.color.solid.slate.1300} 49.98%)", @@ -142594,7 +142594,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "410", + "name": "coreColorGradientSlate410", "original": { "type": "color", "value": "linear-gradient(1.93deg, {core.color.opacity.overflow.300} 1.56%, {core.color.solid.slate.1200} 49.91%)", @@ -142613,7 +142613,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "420", + "name": "coreColorGradientSlate420", "original": { "type": "color", "value": "linear-gradient(88.07deg, {core.color.opacity.overflow.300} 1.63%, {core.color.solid.slate.1200} 50.02%)", @@ -142632,7 +142632,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "430", + "name": "coreColorGradientSlate430", "original": { "type": "color", "value": "linear-gradient(181.93deg, {core.color.opacity.overflow.300} 1.63%, {core.color.solid.slate.1200} 50.01%)", @@ -142651,7 +142651,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/gradients.json", "isSource": true, - "name": "440", + "name": "coreColorGradientSlate440", "original": { "type": "color", "value": "linear-gradient(271.93deg, {core.color.opacity.overflow.300} 1.63%, {core.color.solid.slate.1200} 49.98%)", @@ -142675,7 +142675,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityBlack100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -142696,7 +142696,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityBlack200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -142717,7 +142717,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityBlack300", "original": { "description": "24% of base color", "type": "color", @@ -142738,7 +142738,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityBlack400", "original": { "description": "48% of base color", "type": "color", @@ -142759,7 +142759,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityBlack500", "original": { "description": "56% of base color", "type": "color", @@ -142780,7 +142780,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityBlack600", "original": { "description": "72% of base color", "type": "color", @@ -142801,7 +142801,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityBlack700", "original": { "description": "80% of base color", "type": "color", @@ -142822,7 +142822,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "75", + "name": "coreColorOpacityBlack75", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -142843,7 +142843,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityBlack800", "original": { "description": "88% of base color", "type": "color", @@ -142866,7 +142866,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityBlue100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -142887,7 +142887,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityBlue200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -142908,7 +142908,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityBlue300", "original": { "description": "24% of base color", "type": "color", @@ -142929,7 +142929,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityBlue400", "original": { "description": "48% of base color", "type": "color", @@ -142950,7 +142950,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityBlue500", "original": { "description": "56% of base color", "type": "color", @@ -142971,7 +142971,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityBlue600", "original": { "description": "72% of base color", "type": "color", @@ -142992,7 +142992,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityBlue700", "original": { "description": "80% of base color", "type": "color", @@ -143013,7 +143013,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityBlue800", "original": { "description": "88% of base color", "type": "color", @@ -143036,7 +143036,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityBlueberry100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143057,7 +143057,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityBlueberry200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143078,7 +143078,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityBlueberry300", "original": { "description": "24% of base color", "type": "color", @@ -143099,7 +143099,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityBlueberry400", "original": { "description": "48% of base color", "type": "color", @@ -143120,7 +143120,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityBlueberry500", "original": { "description": "56% of base color", "type": "color", @@ -143141,7 +143141,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityBlueberry600", "original": { "description": "72% of base color", "type": "color", @@ -143162,7 +143162,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityBlueberry700", "original": { "description": "80% of base color", "type": "color", @@ -143183,7 +143183,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityBlueberry800", "original": { "description": "88% of base color", "type": "color", @@ -143206,7 +143206,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityCherry100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143227,7 +143227,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityCherry200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143248,7 +143248,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityCherry300", "original": { "description": "24% of base color", "type": "color", @@ -143269,7 +143269,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityCherry400", "original": { "description": "48% of base color", "type": "color", @@ -143290,7 +143290,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityCherry500", "original": { "description": "56% of base color", "type": "color", @@ -143311,7 +143311,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityCherry600", "original": { "description": "72% of base color", "type": "color", @@ -143332,7 +143332,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityCherry700", "original": { "description": "80% of base color", "type": "color", @@ -143353,7 +143353,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityCherry800", "original": { "description": "88% of base color", "type": "color", @@ -143376,7 +143376,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityEmerald100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -143397,7 +143397,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityEmerald200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143418,7 +143418,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityEmerald300", "original": { "description": "24% of base color", "type": "color", @@ -143439,7 +143439,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityEmerald400", "original": { "description": "48% of base color", "type": "color", @@ -143460,7 +143460,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityEmerald500", "original": { "description": "56% of base color", "type": "color", @@ -143481,7 +143481,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityEmerald600", "original": { "description": "72% of base color", "type": "color", @@ -143502,7 +143502,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityEmerald700", "original": { "description": "80% of base color", "type": "color", @@ -143523,7 +143523,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityEmerald800", "original": { "description": "88% of base color", "type": "color", @@ -143546,7 +143546,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityGrape100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143567,7 +143567,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityGrape200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143588,7 +143588,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityGrape300", "original": { "description": "24% of base color", "type": "color", @@ -143609,7 +143609,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityGrape400", "original": { "description": "48% of base color", "type": "color", @@ -143630,7 +143630,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityGrape500", "original": { "description": "56% of base color", "type": "color", @@ -143651,7 +143651,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityGrape600", "original": { "description": "72% of base color", "type": "color", @@ -143672,7 +143672,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityGrape700", "original": { "description": "80% of base color", "type": "color", @@ -143693,7 +143693,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityGrape800", "original": { "description": "88% of base color", "type": "color", @@ -143716,7 +143716,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityGreen100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -143737,7 +143737,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityGreen200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143758,7 +143758,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityGreen300", "original": { "description": "24% of base color", "type": "color", @@ -143779,7 +143779,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityGreen400", "original": { "description": "48% of base color", "type": "color", @@ -143800,7 +143800,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityGreen500", "original": { "description": "56% of base color", "type": "color", @@ -143821,7 +143821,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityGreen600", "original": { "description": "72% of base color", "type": "color", @@ -143842,7 +143842,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityGreen700", "original": { "description": "80% of base color", "type": "color", @@ -143863,7 +143863,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityGreen800", "original": { "description": "88% of base color", "type": "color", @@ -143886,7 +143886,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityMagenta100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143907,7 +143907,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityMagenta200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -143928,7 +143928,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityMagenta300", "original": { "description": "24% of base color", "type": "color", @@ -143949,7 +143949,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityMagenta400", "original": { "description": "48% of base color", "type": "color", @@ -143970,7 +143970,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityMagenta500", "original": { "description": "56% of base color", "type": "color", @@ -143991,7 +143991,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityMagenta600", "original": { "description": "72% of base color", "type": "color", @@ -144012,7 +144012,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityMagenta700", "original": { "description": "80% of base color", "type": "color", @@ -144033,7 +144033,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityMagenta800", "original": { "description": "88% of base color", "type": "color", @@ -144056,7 +144056,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityMustard100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -144077,7 +144077,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityMustard200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -144098,7 +144098,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityMustard300", "original": { "description": "24% of base color", "type": "color", @@ -144119,7 +144119,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityMustard400", "original": { "description": "48% of base color", "type": "color", @@ -144140,7 +144140,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityMustard500", "original": { "description": "56% of base color", "type": "color", @@ -144161,7 +144161,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityMustard600", "original": { "description": "72% of base color", "type": "color", @@ -144182,7 +144182,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityMustard700", "original": { "description": "80% of base color", "type": "color", @@ -144203,7 +144203,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityMustard800", "original": { "description": "88% of base color", "type": "color", @@ -144226,7 +144226,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityOlive100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -144247,7 +144247,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityOlive200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -144268,7 +144268,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityOlive300", "original": { "description": "24% of base color", "type": "color", @@ -144289,7 +144289,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityOlive400", "original": { "description": "48% of base color", "type": "color", @@ -144310,7 +144310,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityOlive500", "original": { "description": "56% of base color", "type": "color", @@ -144331,7 +144331,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityOlive600", "original": { "description": "72% of base color", "type": "color", @@ -144352,7 +144352,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityOlive700", "original": { "description": "80% of base color", "type": "color", @@ -144373,7 +144373,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityOlive800", "original": { "description": "88% of base color", "type": "color", @@ -144396,7 +144396,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityOrange100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -144417,7 +144417,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityOrange200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -144438,7 +144438,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityOrange300", "original": { "description": "24% of base color", "type": "color", @@ -144459,7 +144459,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityOrange400", "original": { "description": "48% of base color", "type": "color", @@ -144480,7 +144480,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityOrange500", "original": { "description": "56% of base color", "type": "color", @@ -144501,7 +144501,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityOrange600", "original": { "description": "72% of base color", "type": "color", @@ -144522,7 +144522,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityOrange700", "original": { "description": "80% of base color", "type": "color", @@ -144543,7 +144543,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityOrange800", "original": { "description": "88% of base color", "type": "color", @@ -144565,7 +144565,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityOverflow100", "original": { "type": "color", "value": "rgba( {core.color.solid.slate.50},{core.opacity.50})", @@ -144584,7 +144584,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityOverflow200", "original": { "type": "color", "value": "rgba( {core.color.solid.slate.75},{core.opacity.50})", @@ -144603,7 +144603,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityOverflow300", "original": { "type": "color", "value": "rgba( {core.color.solid.slate.1200} ,{core.opacity.50})", @@ -144622,7 +144622,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityOverflow400", "original": { "type": "color", "value": "rgba( {core.color.solid.slate.1300} ,{core.opacity.50})", @@ -144644,7 +144644,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityRed100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -144665,7 +144665,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityRed200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -144686,7 +144686,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityRed300", "original": { "description": "24% of base color", "type": "color", @@ -144707,7 +144707,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityRed400", "original": { "description": "48% of base color", "type": "color", @@ -144728,7 +144728,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityRed500", "original": { "description": "56% of base color", "type": "color", @@ -144749,7 +144749,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityRed600", "original": { "description": "72% of base color", "type": "color", @@ -144770,7 +144770,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityRed700", "original": { "description": "80% of base color", "type": "color", @@ -144791,7 +144791,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityRed800", "original": { "description": "88% of base color", "type": "color", @@ -144814,7 +144814,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacitySapphire100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -144835,7 +144835,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacitySapphire200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -144856,7 +144856,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacitySapphire300", "original": { "description": "24% of base color", "type": "color", @@ -144877,7 +144877,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacitySapphire400", "original": { "description": "48% of base color", "type": "color", @@ -144898,7 +144898,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacitySapphire500", "original": { "description": "56% of base color", "type": "color", @@ -144919,7 +144919,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacitySapphire600", "original": { "description": "72% of base color", "type": "color", @@ -144940,7 +144940,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacitySapphire700", "original": { "description": "80% of base color", "type": "color", @@ -144961,7 +144961,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacitySapphire800", "original": { "description": "88% of base color", "type": "color", @@ -144984,7 +144984,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacitySeawater100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -145005,7 +145005,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacitySeawater200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145026,7 +145026,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacitySeawater300", "original": { "description": "24% of base color", "type": "color", @@ -145047,7 +145047,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacitySeawater400", "original": { "description": "48% of base color", "type": "color", @@ -145068,7 +145068,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacitySeawater500", "original": { "description": "56% of base color", "type": "color", @@ -145089,7 +145089,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacitySeawater600", "original": { "description": "72% of base color", "type": "color", @@ -145110,7 +145110,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacitySeawater700", "original": { "description": "80% of base color", "type": "color", @@ -145131,7 +145131,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacitySeawater800", "original": { "description": "88% of base color", "type": "color", @@ -145154,7 +145154,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacitySlate100", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145175,7 +145175,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacitySlate200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145196,7 +145196,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacitySlate300", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145217,7 +145217,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacitySlate400", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145238,7 +145238,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacitySlate500", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145259,7 +145259,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacitySlate600", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145280,7 +145280,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacitySlate700", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145301,7 +145301,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacitySlate800", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145324,7 +145324,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityTeal100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -145345,7 +145345,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityTeal200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145366,7 +145366,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityTeal300", "original": { "description": "24% of base color", "type": "color", @@ -145387,7 +145387,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityTeal400", "original": { "description": "48% of base color", "type": "color", @@ -145408,7 +145408,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityTeal500", "original": { "description": "56% of base color", "type": "color", @@ -145429,7 +145429,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityTeal600", "original": { "description": "72% of base color", "type": "color", @@ -145450,7 +145450,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityTeal700", "original": { "description": "80% of base color", "type": "color", @@ -145471,7 +145471,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityTeal800", "original": { "description": "88% of base color", "type": "color", @@ -145494,7 +145494,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityTiffany100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -145515,7 +145515,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityTiffany200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145536,7 +145536,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityTiffany300", "original": { "description": "24% of base color", "type": "color", @@ -145557,7 +145557,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityTiffany400", "original": { "description": "48% of base color", "type": "color", @@ -145578,7 +145578,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityTiffany500", "original": { "description": "56% of base color", "type": "color", @@ -145599,7 +145599,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityTiffany600", "original": { "description": "72% of base color", "type": "color", @@ -145620,7 +145620,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityTiffany700", "original": { "description": "80% of base color", "type": "color", @@ -145641,7 +145641,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityTiffany800", "original": { "description": "88% of base color", "type": "color", @@ -145663,7 +145663,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityWhite100", "original": { "type": "color", "value": "rgba({core.color.solid.slate.50},{core.opacity.100})", @@ -145682,7 +145682,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityWhite200", "original": { "type": "color", "value": "rgba({core.color.solid.slate.50},{core.opacity.200})", @@ -145701,7 +145701,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityWhite300", "original": { "type": "color", "value": "rgba({core.color.solid.slate.50},{core.opacity.300})", @@ -145721,7 +145721,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityWhite400", "original": { "description": "48% of base color", "type": "color", @@ -145742,7 +145742,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityWhite500", "original": { "description": "56% of base color", "type": "color", @@ -145763,7 +145763,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityWhite600", "original": { "description": "72% of base color", "type": "color", @@ -145784,7 +145784,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityWhite700", "original": { "description": "80% of base color", "type": "color", @@ -145804,7 +145804,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "75", + "name": "coreColorOpacityWhite75", "original": { "type": "color", "value": "rgba({core.color.solid.slate.50},{core.opacity.75})", @@ -145824,7 +145824,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityWhite800", "original": { "description": "88% of base color", "type": "color", @@ -145847,7 +145847,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 4%. changed to 8%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "100", + "name": "coreColorOpacityYellow100", "original": { "description": "Initially 4%. changed to 8%.", "type": "color", @@ -145868,7 +145868,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "Initially 8%. changed to 16%.", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "200", + "name": "coreColorOpacityYellow200", "original": { "description": "Initially 8%. changed to 16%.", "type": "color", @@ -145889,7 +145889,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "24% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "300", + "name": "coreColorOpacityYellow300", "original": { "description": "24% of base color", "type": "color", @@ -145910,7 +145910,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "48% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "400", + "name": "coreColorOpacityYellow400", "original": { "description": "48% of base color", "type": "color", @@ -145931,7 +145931,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "56% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "500", + "name": "coreColorOpacityYellow500", "original": { "description": "56% of base color", "type": "color", @@ -145952,7 +145952,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "72% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "600", + "name": "coreColorOpacityYellow600", "original": { "description": "72% of base color", "type": "color", @@ -145973,7 +145973,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "80% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "700", + "name": "coreColorOpacityYellow700", "original": { "description": "80% of base color", "type": "color", @@ -145994,7 +145994,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "88% of base color", "filePath": "raw-tokens/data/core/color/opacity.json", "isSource": true, - "name": "800", + "name": "coreColorOpacityYellow800", "original": { "description": "88% of base color", "type": "color", @@ -146018,7 +146018,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidBlue100", "original": { "type": "color", "value": "#e6f5ff", @@ -146037,7 +146037,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidBlue1000", "original": { "type": "color", "value": "#0066a6", @@ -146056,7 +146056,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidBlue1100", "original": { "type": "color", "value": "#005488", @@ -146075,7 +146075,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidBlue1200", "original": { "type": "color", "value": "#00426a", @@ -146094,7 +146094,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidBlue1300", "original": { "type": "color", "value": "#00304d", @@ -146113,7 +146113,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidBlue200", "original": { "type": "color", "value": "#bfe7ff", @@ -146132,7 +146132,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidBlue300", "original": { "type": "color", "value": "#99d8ff", @@ -146151,7 +146151,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidBlue400", "original": { "type": "color", "value": "#73c9ff", @@ -146170,7 +146170,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidBlue500", "original": { "type": "color", "value": "#53b9ff", @@ -146189,7 +146189,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidBlue600", "original": { "type": "color", "value": "#3daaff", @@ -146208,7 +146208,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidBlue700", "original": { "type": "color", "value": "#2c9aff", @@ -146227,7 +146227,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidBlue800", "original": { "type": "color", "value": "#1789e1", @@ -146246,7 +146246,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidBlue900", "original": { "type": "color", "value": "#0777c4", @@ -146267,7 +146267,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidBlueberry100", "original": { "type": "color", "value": "#ede6fc", @@ -146286,7 +146286,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidBlueberry1000", "original": { "type": "color", "value": "#2f0192", @@ -146305,7 +146305,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidBlueberry1100", "original": { "type": "color", "value": "#270178", @@ -146324,7 +146324,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidBlueberry1200", "original": { "type": "color", "value": "#1e015d", @@ -146343,7 +146343,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidBlueberry1300", "original": { "type": "color", "value": "#160143", @@ -146362,7 +146362,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidBlueberry200", "original": { "type": "color", "value": "#d2c0f7", @@ -146381,7 +146381,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidBlueberry300", "original": { "type": "color", "value": "#b69af3", @@ -146400,7 +146400,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidBlueberry400", "original": { "type": "color", "value": "#9b74ee", @@ -146419,7 +146419,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidBlueberry500", "original": { "type": "color", "value": "#804ee9", @@ -146438,7 +146438,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidBlueberry600", "original": { "type": "color", "value": "#6428e5", @@ -146457,7 +146457,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidBlueberry700", "original": { "type": "color", "value": "#4902e0", @@ -146476,7 +146476,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidBlueberry800", "original": { "type": "color", "value": "#4102c6", @@ -146495,7 +146495,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidBlueberry900", "original": { "type": "color", "value": "#3802ac", @@ -146516,7 +146516,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidCherry100", "original": { "type": "color", "value": "#ffe6e7", @@ -146535,7 +146535,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidCherry1000", "original": { "type": "color", "value": "#a6001a", @@ -146554,7 +146554,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidCherry1100", "original": { "type": "color", "value": "#880011", @@ -146573,7 +146573,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidCherry1200", "original": { "type": "color", "value": "#6a000a", @@ -146592,7 +146592,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidCherry1300", "original": { "type": "color", "value": "#4d0005", @@ -146611,7 +146611,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidCherry200", "original": { "type": "color", "value": "#ffbfc6", @@ -146630,7 +146630,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidCherry300", "original": { "type": "color", "value": "#ff99a6", @@ -146649,7 +146649,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidCherry400", "original": { "type": "color", "value": "#ff7389", @@ -146668,7 +146668,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidCherry500", "original": { "type": "color", "value": "#ff4d6e", @@ -146687,7 +146687,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidCherry600", "original": { "type": "color", "value": "#f32656", @@ -146706,7 +146706,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidCherry700", "original": { "type": "color", "value": "#de0040", @@ -146725,7 +146725,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidCherry800", "original": { "type": "color", "value": "#d40032", @@ -146744,7 +146744,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidCherry900", "original": { "type": "color", "value": "#c40025", @@ -146765,7 +146765,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidCoral100", "original": { "type": "color", "value": "#ffe6e6", @@ -146784,7 +146784,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidCoral1000", "original": { "type": "color", "value": "#a60e19", @@ -146803,7 +146803,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidCoral1100", "original": { "type": "color", "value": "#88030d", @@ -146822,7 +146822,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidCoral1200", "original": { "type": "color", "value": "#6a0004", @@ -146841,7 +146841,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidCoral1300", "original": { "type": "color", "value": "#4d0000", @@ -146860,7 +146860,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidCoral200", "original": { "type": "color", "value": "#ffbfc2", @@ -146879,7 +146879,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidCoral300", "original": { "type": "color", "value": "#ff9ba3", @@ -146898,7 +146898,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidCoral400", "original": { "type": "color", "value": "#ff7e88", @@ -146917,7 +146917,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidCoral500", "original": { "type": "color", "value": "#ff6671", @@ -146936,7 +146936,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidCoral600", "original": { "type": "color", "value": "#ff535e", @@ -146955,7 +146955,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidCoral700", "original": { "type": "color", "value": "#ff444f", @@ -146974,7 +146974,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidCoral800", "original": { "type": "color", "value": "#e12e3a", @@ -146993,7 +146993,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidCoral900", "original": { "type": "color", "value": "#c41c28", @@ -147014,7 +147014,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidEmerald100", "original": { "type": "color", "value": "#e6fff9", @@ -147033,7 +147033,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidEmerald1000", "original": { "type": "color", "value": "#009e6d", @@ -147052,7 +147052,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidEmerald1100", "original": { "type": "color", "value": "#00885d", @@ -147071,7 +147071,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidEmerald1200", "original": { "type": "color", "value": "#006a4c", @@ -147090,7 +147090,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidEmerald1300", "original": { "type": "color", "value": "#004d39", @@ -147109,7 +147109,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidEmerald200", "original": { "type": "color", "value": "#bfffed", @@ -147128,7 +147128,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidEmerald300", "original": { "type": "color", "value": "#99ffdf", @@ -147147,7 +147147,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidEmerald400", "original": { "type": "color", "value": "#73f9cf", @@ -147166,7 +147166,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidEmerald500", "original": { "type": "color", "value": "#4decbc", @@ -147185,7 +147185,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidEmerald600", "original": { "type": "color", "value": "#26daa7", @@ -147204,7 +147204,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidEmerald700", "original": { "type": "color", "value": "#00c390", @@ -147223,7 +147223,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidEmerald800", "original": { "type": "color", "value": "#00bb86", @@ -147242,7 +147242,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidEmerald900", "original": { "type": "color", "value": "#00ae7a", @@ -147263,7 +147263,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidGrape100", "original": { "type": "color", "value": "#f2e7fa", @@ -147282,7 +147282,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidGrape1000", "original": { "type": "color", "value": "#530987", @@ -147301,7 +147301,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidGrape1100", "original": { "type": "color", "value": "#44076e", @@ -147320,7 +147320,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidGrape1200", "original": { "type": "color", "value": "#350556", @@ -147339,7 +147339,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidGrape1300", "original": { "type": "color", "value": "#26043e", @@ -147358,7 +147358,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidGrape200", "original": { "type": "color", "value": "#dfc3f3", @@ -147377,7 +147377,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidGrape300", "original": { "type": "color", "value": "#cc9eec", @@ -147396,7 +147396,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidGrape400", "original": { "type": "color", "value": "#b97ae5", @@ -147415,7 +147415,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidGrape500", "original": { "type": "color", "value": "#a556dd", @@ -147434,7 +147434,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidGrape600", "original": { "type": "color", "value": "#9231d6", @@ -147453,7 +147453,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidGrape700", "original": { "type": "color", "value": "#7f0dcf", @@ -147472,7 +147472,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidGrape800", "original": { "type": "color", "value": "#700cb7", @@ -147491,7 +147491,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidGrape900", "original": { "type": "color", "value": "#610a9f", @@ -147512,7 +147512,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidGreen100", "original": { "type": "color", "value": "#e6fae9", @@ -147531,7 +147531,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidGreen1000", "original": { "type": "color", "value": "#006f1b", @@ -147550,7 +147550,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidGreen1100", "original": { "type": "color", "value": "#006114", @@ -147569,7 +147569,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidGreen1200", "original": { "type": "color", "value": "#00500f", @@ -147588,7 +147588,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidGreen1300", "original": { "type": "color", "value": "#003d0a", @@ -147607,7 +147607,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidGreen200", "original": { "type": "color", "value": "#bfefc8", @@ -147626,7 +147626,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidGreen300", "original": { "type": "color", "value": "#99e2a8", @@ -147645,7 +147645,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidGreen400", "original": { "type": "color", "value": "#73d089", @@ -147664,7 +147664,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidGreen500", "original": { "type": "color", "value": "#4dbc6b", @@ -147683,7 +147683,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidGreen600", "original": { "type": "color", "value": "#26a44e", @@ -147702,7 +147702,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidGreen700", "original": { "type": "color", "value": "#008832", @@ -147721,7 +147721,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidGreen800", "original": { "type": "color", "value": "#00822a", @@ -147740,7 +147740,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidGreen900", "original": { "type": "color", "value": "#007a22", @@ -147761,7 +147761,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidMagenta100", "original": { "type": "color", "value": "#fae7fe", @@ -147780,7 +147780,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidMagenta1000", "original": { "type": "color", "value": "#8409a1", @@ -147799,7 +147799,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidMagenta1100", "original": { "type": "color", "value": "#6c0784", @@ -147818,7 +147818,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidMagenta1200", "original": { "type": "color", "value": "#550567", @@ -147837,7 +147837,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidMagenta1300", "original": { "type": "color", "value": "#3d044a", @@ -147856,7 +147856,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidMagenta200", "original": { "type": "color", "value": "#f2c3fd", @@ -147875,7 +147875,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidMagenta300", "original": { "type": "color", "value": "#ea9efc", @@ -147894,7 +147894,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidMagenta400", "original": { "type": "color", "value": "#e27afb", @@ -147913,7 +147913,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidMagenta500", "original": { "type": "color", "value": "#db56f9", @@ -147932,7 +147932,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidMagenta600", "original": { "type": "color", "value": "#d331f8", @@ -147951,7 +147951,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidMagenta700", "original": { "type": "color", "value": "#cb0df7", @@ -147970,7 +147970,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidMagenta800", "original": { "type": "color", "value": "#b30cda", @@ -147989,7 +147989,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidMagenta900", "original": { "type": "color", "value": "#9c0abd", @@ -148010,7 +148010,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidMustard100", "original": { "type": "color", "value": "#fef9e7", @@ -148029,7 +148029,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidMustard1000", "original": { "type": "color", "value": "#a18107", @@ -148048,7 +148048,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidMustard1100", "original": { "type": "color", "value": "#846a06", @@ -148067,7 +148067,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidMustard1200", "original": { "type": "color", "value": "#675305", @@ -148086,7 +148086,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidMustard1300", "original": { "type": "color", "value": "#4a3b03", @@ -148105,7 +148105,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidMustard200", "original": { "type": "color", "value": "#fdf1c2", @@ -148124,7 +148124,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidMustard300", "original": { "type": "color", "value": "#fce89d", @@ -148143,7 +148143,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidMustard400", "original": { "type": "color", "value": "#fbe079", @@ -148162,7 +148162,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidMustard500", "original": { "type": "color", "value": "#f9d754", @@ -148181,7 +148181,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidMustard600", "original": { "type": "color", "value": "#f8cf30", @@ -148200,7 +148200,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidMustard700", "original": { "type": "color", "value": "#f7c60b", @@ -148219,7 +148219,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidMustard800", "original": { "type": "color", "value": "#daaf0a", @@ -148238,7 +148238,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidMustard900", "original": { "type": "color", "value": "#bd9808", @@ -148259,7 +148259,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidOlive100", "original": { "type": "color", "value": "#fcfbe6", @@ -148278,7 +148278,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidOlive1000", "original": { "type": "color", "value": "#928e01", @@ -148297,7 +148297,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidOlive1100", "original": { "type": "color", "value": "#787401", @@ -148316,7 +148316,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidOlive1200", "original": { "type": "color", "value": "#5d5b01", @@ -148335,7 +148335,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidOlive1300", "original": { "type": "color", "value": "#434101", @@ -148354,7 +148354,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidOlive200", "original": { "type": "color", "value": "#f7f6c0", @@ -148373,7 +148373,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidOlive300", "original": { "type": "color", "value": "#f3f09a", @@ -148392,7 +148392,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidOlive400", "original": { "type": "color", "value": "#eeeb74", @@ -148411,7 +148411,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidOlive500", "original": { "type": "color", "value": "#e9e54e", @@ -148430,7 +148430,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidOlive600", "original": { "type": "color", "value": "#e5e028", @@ -148449,7 +148449,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidOlive700", "original": { "type": "color", "value": "#e0da02", @@ -148468,7 +148468,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidOlive800", "original": { "type": "color", "value": "#c6c102", @@ -148487,7 +148487,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidOlive900", "original": { "type": "color", "value": "#aca702", @@ -148508,7 +148508,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidOrange100", "original": { "type": "color", "value": "#feefe7", @@ -148527,7 +148527,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidOrange1000", "original": { "type": "color", "value": "#9f3e07", @@ -148546,7 +148546,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidOrange1100", "original": { "type": "color", "value": "#833305", @@ -148565,7 +148565,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidOrange1200", "original": { "type": "color", "value": "#662804", @@ -148584,7 +148584,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidOrange1300", "original": { "type": "color", "value": "#4a1d03", @@ -148603,7 +148603,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidOrange200", "original": { "type": "color", "value": "#fdd7c2", @@ -148622,7 +148622,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidOrange300", "original": { "type": "color", "value": "#fbbf9d", @@ -148641,7 +148641,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidOrange400", "original": { "type": "color", "value": "#faa778", @@ -148660,7 +148660,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidOrange500", "original": { "type": "color", "value": "#f88f54", @@ -148679,7 +148679,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidOrange600", "original": { "type": "color", "value": "#f7772f", @@ -148698,7 +148698,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidOrange700", "original": { "type": "color", "value": "#f55f0a", @@ -148717,7 +148717,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidOrange800", "original": { "type": "color", "value": "#d85409", @@ -148736,7 +148736,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidOrange900", "original": { "type": "color", "value": "#bc4908", @@ -148758,7 +148758,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "test change", "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidRed100", "original": { "description": "test change", "type": "color", @@ -148778,7 +148778,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidRed1000", "original": { "type": "color", "value": "#a60000", @@ -148797,7 +148797,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidRed1100", "original": { "type": "color", "value": "#880000", @@ -148816,7 +148816,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidRed1200", "original": { "type": "color", "value": "#6a0000", @@ -148835,7 +148835,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidRed1300", "original": { "type": "color", "value": "#4d0000", @@ -148854,7 +148854,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidRed200", "original": { "type": "color", "value": "#ffbfbf", @@ -148873,7 +148873,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidRed300", "original": { "type": "color", "value": "#ff9999", @@ -148892,7 +148892,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidRed400", "original": { "type": "color", "value": "#ff7373", @@ -148911,7 +148911,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidRed500", "original": { "type": "color", "value": "#ff4d4d", @@ -148930,7 +148930,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidRed600", "original": { "type": "color", "value": "#f92e26", @@ -148949,7 +148949,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidRed700", "original": { "type": "color", "value": "#e6190e", @@ -148968,7 +148968,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidRed800", "original": { "type": "color", "value": "#db0800", @@ -148987,7 +148987,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidRed900", "original": { "type": "color", "value": "#c40000", @@ -149008,7 +149008,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidSapphire100", "original": { "type": "color", "value": "#e7eafe", @@ -149027,7 +149027,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidSapphire1000", "original": { "type": "color", "value": "#081aa1", @@ -149046,7 +149046,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidSapphire1100", "original": { "type": "color", "value": "#061584", @@ -149065,7 +149065,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidSapphire1200", "original": { "type": "color", "value": "#051167", @@ -149084,7 +149084,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidSapphire1300", "original": { "type": "color", "value": "#040c4a", @@ -149103,7 +149103,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidSapphire200", "original": { "type": "color", "value": "#c2c9fd", @@ -149122,7 +149122,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidSapphire300", "original": { "type": "color", "value": "#9ea9fc", @@ -149141,7 +149141,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidSapphire400", "original": { "type": "color", "value": "#7989fb", @@ -149160,7 +149160,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidSapphire500", "original": { "type": "color", "value": "#5569f9", @@ -149179,7 +149179,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidSapphire600", "original": { "type": "color", "value": "#3148f8", @@ -149198,7 +149198,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidSapphire700", "original": { "type": "color", "value": "#0c28f7", @@ -149217,7 +149217,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidSapphire800", "original": { "type": "color", "value": "#0b23da", @@ -149236,7 +149236,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidSapphire900", "original": { "type": "color", "value": "#091fbd", @@ -149257,7 +149257,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidSeawater100", "original": { "type": "color", "value": "#e7f6f7", @@ -149276,7 +149276,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidSeawater1000", "original": { "type": "color", "value": "#076872", @@ -149295,7 +149295,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidSeawater1100", "original": { "type": "color", "value": "#05555e", @@ -149314,7 +149314,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidSeawater1200", "original": { "type": "color", "value": "#044349", @@ -149333,7 +149333,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidSeawater1300", "original": { "type": "color", "value": "#033035", @@ -149352,7 +149352,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidSeawater200", "original": { "type": "color", "value": "#c2e7eb", @@ -149371,7 +149371,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidSeawater300", "original": { "type": "color", "value": "#9dd9df", @@ -149390,7 +149390,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidSeawater400", "original": { "type": "color", "value": "#78cbd4", @@ -149409,7 +149409,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidSeawater500", "original": { "type": "color", "value": "#54bdc8", @@ -149428,7 +149428,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidSeawater600", "original": { "type": "color", "value": "#2faebc", @@ -149447,7 +149447,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidSeawater700", "original": { "type": "color", "value": "#0aa0b0", @@ -149466,7 +149466,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidSeawater800", "original": { "type": "color", "value": "#098d9c", @@ -149485,7 +149485,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidSeawater900", "original": { "type": "color", "value": "#087b87", @@ -149506,7 +149506,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidSlate100", "original": { "type": "color", "value": "#ebecef", @@ -149525,7 +149525,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidSlate1000", "original": { "type": "color", "value": "#282c38", @@ -149544,7 +149544,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidSlate1100", "original": { "type": "color", "value": "#20242f", @@ -149563,7 +149563,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidSlate1200", "original": { "type": "color", "value": "#181c25", @@ -149582,7 +149582,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidSlate1300", "original": { "type": "color", "value": "#11141b", @@ -149601,7 +149601,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1400", + "name": "coreColorSolidSlate1400", "original": { "type": "color", "value": "#000000", @@ -149620,7 +149620,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidSlate200", "original": { "type": "color", "value": "#ced0d6", @@ -149639,7 +149639,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidSlate300", "original": { "type": "color", "value": "#b1b4bc", @@ -149658,7 +149658,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidSlate400", "original": { "type": "color", "value": "#9498a2", @@ -149677,7 +149677,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "50", + "name": "coreColorSolidSlate50", "original": { "type": "color", "value": "#ffffff", @@ -149696,7 +149696,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidSlate500", "original": { "type": "color", "value": "#787d88", @@ -149715,7 +149715,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidSlate600", "original": { "type": "color", "value": "#5c616d", @@ -149734,7 +149734,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidSlate700", "original": { "type": "color", "value": "#414652", @@ -149753,7 +149753,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "75", + "name": "coreColorSolidSlate75", "original": { "type": "color", "value": "#f6f7f8", @@ -149772,7 +149772,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidSlate800", "original": { "type": "color", "value": "#383d4a", @@ -149791,7 +149791,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidSlate900", "original": { "type": "color", "value": "#303541", @@ -149812,7 +149812,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidTeal100", "original": { "type": "color", "value": "#e6fafa", @@ -149831,7 +149831,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidTeal1000", "original": { "type": "color", "value": "#008585", @@ -149850,7 +149850,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidTeal1100", "original": { "type": "color", "value": "#006d6d", @@ -149869,7 +149869,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidTeal1200", "original": { "type": "color", "value": "#005555", @@ -149888,7 +149888,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidTeal1300", "original": { "type": "color", "value": "#003d3d", @@ -149907,7 +149907,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidTeal200", "original": { "type": "color", "value": "#bff2f2", @@ -149926,7 +149926,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidTeal300", "original": { "type": "color", "value": "#99ebeb", @@ -149945,7 +149945,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidTeal400", "original": { "type": "color", "value": "#73e3e3", @@ -149964,7 +149964,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidTeal500", "original": { "type": "color", "value": "#4ddbdb", @@ -149983,7 +149983,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidTeal600", "original": { "type": "color", "value": "#26d4d4", @@ -150002,7 +150002,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidTeal700", "original": { "type": "color", "value": "#00cccc", @@ -150021,7 +150021,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidTeal800", "original": { "type": "color", "value": "#00b4b4", @@ -150040,7 +150040,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidTeal900", "original": { "type": "color", "value": "#009c9c", @@ -150061,7 +150061,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidTiffany100", "original": { "type": "color", "value": "#e8fdf8", @@ -150080,7 +150080,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidTiffany1000", "original": { "type": "color", "value": "#0f987b", @@ -150099,7 +150099,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidTiffany1100", "original": { "type": "color", "value": "#0c7d65", @@ -150118,7 +150118,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidTiffany1200", "original": { "type": "color", "value": "#0a624f", @@ -150137,7 +150137,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidTiffany1300", "original": { "type": "color", "value": "#074639", @@ -150156,7 +150156,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidTiffany200", "original": { "type": "color", "value": "#c5faef", @@ -150175,7 +150175,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidTiffany300", "original": { "type": "color", "value": "#a2f7e5", @@ -150194,7 +150194,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidTiffany400", "original": { "type": "color", "value": "#7ff3db", @@ -150213,7 +150213,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidTiffany500", "original": { "type": "color", "value": "#5df0d1", @@ -150232,7 +150232,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidTiffany600", "original": { "type": "color", "value": "#3aedc7", @@ -150251,7 +150251,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidTiffany700", "original": { "type": "color", "value": "#17eabd", @@ -150270,7 +150270,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidTiffany800", "original": { "type": "color", "value": "#14cfa7", @@ -150289,7 +150289,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidTiffany900", "original": { "type": "color", "value": "#12b391", @@ -150310,7 +150310,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "100", + "name": "coreColorSolidYellow100", "original": { "type": "color", "value": "#fff7e6", @@ -150329,7 +150329,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1000", + "name": "coreColorSolidYellow1000", "original": { "type": "color", "value": "#a66c00", @@ -150348,7 +150348,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1100", + "name": "coreColorSolidYellow1100", "original": { "type": "color", "value": "#885a00", @@ -150367,7 +150367,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1200", + "name": "coreColorSolidYellow1200", "original": { "type": "color", "value": "#6a4800", @@ -150386,7 +150386,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "1300", + "name": "coreColorSolidYellow1300", "original": { "type": "color", "value": "#4d3500", @@ -150405,7 +150405,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "200", + "name": "coreColorSolidYellow200", "original": { "type": "color", "value": "#ffeabf", @@ -150424,7 +150424,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "300", + "name": "coreColorSolidYellow300", "original": { "type": "color", "value": "#ffdd99", @@ -150443,7 +150443,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "400", + "name": "coreColorSolidYellow400", "original": { "type": "color", "value": "#ffce73", @@ -150462,7 +150462,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "500", + "name": "coreColorSolidYellow500", "original": { "type": "color", "value": "#ffbe4d", @@ -150481,7 +150481,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "600", + "name": "coreColorSolidYellow600", "original": { "type": "color", "value": "#ffae26", @@ -150500,7 +150500,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "700", + "name": "coreColorSolidYellow700", "original": { "type": "color", "value": "#ff9c13", @@ -150519,7 +150519,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "800", + "name": "coreColorSolidYellow800", "original": { "type": "color", "value": "#e18d00", @@ -150538,7 +150538,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/color/solid.json", "isSource": true, - "name": "900", + "name": "coreColorSolidYellow900", "original": { "type": "color", "value": "#c47d00", @@ -150562,7 +150562,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "110", + "name": "coreElevationShadow110", "original": { "type": "boxShadow", "value": [ @@ -150614,7 +150614,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "120", + "name": "coreElevationShadow120", "original": { "type": "boxShadow", "value": [ @@ -150666,7 +150666,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "130", + "name": "coreElevationShadow130", "original": { "type": "boxShadow", "value": [ @@ -150718,7 +150718,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "140", + "name": "coreElevationShadow140", "original": { "type": "boxShadow", "value": [ @@ -150770,7 +150770,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "210", + "name": "coreElevationShadow210", "original": { "type": "boxShadow", "value": [ @@ -150822,7 +150822,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "220", + "name": "coreElevationShadow220", "original": { "type": "boxShadow", "value": [ @@ -150874,7 +150874,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "230", + "name": "coreElevationShadow230", "original": { "type": "boxShadow", "value": [ @@ -150926,7 +150926,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "240", + "name": "coreElevationShadow240", "original": { "type": "boxShadow", "value": [ @@ -150978,7 +150978,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "310", + "name": "coreElevationShadow310", "original": { "type": "boxShadow", "value": [ @@ -151030,7 +151030,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "320", + "name": "coreElevationShadow320", "original": { "type": "boxShadow", "value": [ @@ -151082,7 +151082,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "330", + "name": "coreElevationShadow330", "original": { "type": "boxShadow", "value": [ @@ -151134,7 +151134,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "340", + "name": "coreElevationShadow340", "original": { "type": "boxShadow", "value": [ @@ -151186,7 +151186,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "410", + "name": "coreElevationShadow410", "original": { "type": "boxShadow", "value": [ @@ -151238,7 +151238,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "420", + "name": "coreElevationShadow420", "original": { "type": "boxShadow", "value": [ @@ -151290,7 +151290,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "430", + "name": "coreElevationShadow430", "original": { "type": "boxShadow", "value": [ @@ -151342,7 +151342,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "440", + "name": "coreElevationShadow440", "original": { "type": "boxShadow", "value": [ @@ -151394,7 +151394,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "50", + "name": "coreElevationShadow50", "original": { "type": "boxShadow", "value": { @@ -151426,7 +151426,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "510", + "name": "coreElevationShadow510", "original": { "type": "boxShadow", "value": [ @@ -151478,7 +151478,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "520", + "name": "coreElevationShadow520", "original": { "type": "boxShadow", "value": [ @@ -151530,7 +151530,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "530", + "name": "coreElevationShadow530", "original": { "type": "boxShadow", "value": [ @@ -151582,7 +151582,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "540", + "name": "coreElevationShadow540", "original": { "type": "boxShadow", "value": [ @@ -151634,7 +151634,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "610", + "name": "coreElevationShadow610", "original": { "type": "boxShadow", "value": [ @@ -151686,7 +151686,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "620", + "name": "coreElevationShadow620", "original": { "type": "boxShadow", "value": [ @@ -151738,7 +151738,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "630", + "name": "coreElevationShadow630", "original": { "type": "boxShadow", "value": [ @@ -151790,7 +151790,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "710", + "name": "coreElevationShadow710", "original": { "type": "boxShadow", "value": [ @@ -151842,7 +151842,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "720", + "name": "coreElevationShadow720", "original": { "type": "boxShadow", "value": [ @@ -151894,7 +151894,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "730", + "name": "coreElevationShadow730", "original": { "type": "boxShadow", "value": [ @@ -151946,7 +151946,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/boxShadow.json", "isSource": true, - "name": "740", + "name": "coreElevationShadow740", "original": { "type": "boxShadow", "value": [ @@ -152001,7 +152001,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "underline", + "name": "coreFontDecorationUnderline", "original": { "type": "textDecoration", "value": "underline", @@ -152021,7 +152021,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "brands", + "name": "coreFontFamilyFontAwesomeBrands", "original": { "type": "fontFamilies", "value": "Font Awesome 6 Brands", @@ -152039,7 +152039,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "pro", + "name": "coreFontFamilyFontAwesomePro", "original": { "type": "fontFamilies", "value": "Font Awesome 6 Pro", @@ -152059,7 +152059,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "mono", + "name": "coreFontFamilyIbmPlexMono", "original": { "type": "fontFamilies", "value": "IBM Plex Mono", @@ -152077,7 +152077,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "sans", + "name": "coreFontFamilyIbmPlexSans", "original": { "type": "fontFamilies", "value": "IBM Plex Sans", @@ -152096,7 +152096,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "ubuntu", + "name": "coreFontFamilyUbuntu", "original": { "type": "fontFamilies", "value": "Ubuntu", @@ -152116,7 +152116,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "100", + "name": "coreFontSize100", "original": { "description": "1rem", "type": "fontSizes", @@ -152135,7 +152135,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.125rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "200", + "name": "coreFontSize200", "original": { "description": "1.125rem", "type": "fontSizes", @@ -152154,7 +152154,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.25rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "300", + "name": "coreFontSize300", "original": { "description": "1.25rem", "type": "fontSizes", @@ -152173,7 +152173,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "400", + "name": "coreFontSize400", "original": { "description": "1.5rem", "type": "fontSizes", @@ -152192,7 +152192,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.75rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "50", + "name": "coreFontSize50", "original": { "description": "0.75rem", "type": "fontSizes", @@ -152211,7 +152211,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "500", + "name": "coreFontSize500", "original": { "description": "2rem", "type": "fontSizes", @@ -152230,7 +152230,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "600", + "name": "coreFontSize600", "original": { "description": "2.5rem", "type": "fontSizes", @@ -152249,7 +152249,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "700", + "name": "coreFontSize700", "original": { "description": "3rem", "type": "fontSizes", @@ -152268,7 +152268,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.875rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "75", + "name": "coreFontSize75", "original": { "description": "0.875rem", "type": "fontSizes", @@ -152287,7 +152287,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "800", + "name": "coreFontSize800", "original": { "description": "4rem", "type": "fontSizes", @@ -152306,7 +152306,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "900", + "name": "coreFontSize900", "original": { "description": "5rem", "type": "fontSizes", @@ -152326,7 +152326,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "bold", + "name": "coreFontWeightBold", "original": { "type": "fontWeights", "value": "700", @@ -152343,7 +152343,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "boldItalic", + "name": "coreFontWeightBoldItalic", "original": { "type": "fontWeights", "value": "Bold Italic", @@ -152360,7 +152360,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "italic", + "name": "coreFontWeightItalic", "original": { "type": "fontWeights", "value": "Italic", @@ -152377,7 +152377,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "light", + "name": "coreFontWeightLight", "original": { "type": "fontWeights", "value": "300", @@ -152394,7 +152394,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "regular", + "name": "coreFontWeightRegular", "original": { "type": "fontWeights", "value": "400", @@ -152414,7 +152414,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.125rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "100", + "name": "coreLineHeight100", "original": { "description": "1.125rem", "type": "lineHeights", @@ -152433,7 +152433,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "6rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "1000", + "name": "coreLineHeight1000", "original": { "description": "6rem", "type": "lineHeights", @@ -152452,7 +152452,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.375rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "200", + "name": "coreLineHeight200", "original": { "description": "1.375rem", "type": "lineHeights", @@ -152471,7 +152471,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "300", + "name": "coreLineHeight300", "original": { "description": "1.5rem", "type": "lineHeights", @@ -152490,7 +152490,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.75rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "400", + "name": "coreLineHeight400", "original": { "description": "1.75rem", "type": "lineHeights", @@ -152509,7 +152509,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.875rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "500", + "name": "coreLineHeight500", "original": { "description": "1.875rem", "type": "lineHeights", @@ -152528,7 +152528,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "600", + "name": "coreLineHeight600", "original": { "description": "2rem", "type": "lineHeights", @@ -152547,7 +152547,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.25rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "700", + "name": "coreLineHeight700", "original": { "description": "2.25rem", "type": "lineHeights", @@ -152566,7 +152566,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "800", + "name": "coreLineHeight800", "original": { "description": "3rem", "type": "lineHeights", @@ -152585,7 +152585,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "900", + "name": "coreLineHeight900", "original": { "description": "4rem", "type": "lineHeights", @@ -152603,7 +152603,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "auto", + "name": "coreLineHeightAuto", "original": { "type": "lineHeights", "value": "auto", @@ -152623,7 +152623,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "100", + "name": "coreMotionDuration100", "original": { "type": "other", "value": "80ms", @@ -152641,7 +152641,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1000", + "name": "coreMotionDuration1000", "original": { "type": "other", "value": "1920ms", @@ -152659,7 +152659,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1100", + "name": "coreMotionDuration1100", "original": { "type": "other", "value": "2400ms", @@ -152677,7 +152677,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1200", + "name": "coreMotionDuration1200", "original": { "type": "other", "value": "2880ms", @@ -152695,7 +152695,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1300", + "name": "coreMotionDuration1300", "original": { "type": "other", "value": "3360ms", @@ -152713,7 +152713,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1400", + "name": "coreMotionDuration1400", "original": { "type": "other", "value": "3840ms", @@ -152731,7 +152731,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "1500", + "name": "coreMotionDuration1500", "original": { "type": "other", "value": "4320ms", @@ -152749,7 +152749,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "200", + "name": "coreMotionDuration200", "original": { "type": "other", "value": "160ms", @@ -152767,7 +152767,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "300", + "name": "coreMotionDuration300", "original": { "type": "other", "value": "240ms", @@ -152785,7 +152785,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "400", + "name": "coreMotionDuration400", "original": { "type": "other", "value": "480ms", @@ -152803,7 +152803,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "50", + "name": "coreMotionDuration50", "original": { "type": "other", "value": "0ms", @@ -152821,7 +152821,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "500", + "name": "coreMotionDuration500", "original": { "type": "other", "value": "720ms", @@ -152839,7 +152839,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "600", + "name": "coreMotionDuration600", "original": { "type": "other", "value": "960ms", @@ -152857,7 +152857,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "700", + "name": "coreMotionDuration700", "original": { "type": "other", "value": "1200ms", @@ -152875,7 +152875,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "800", + "name": "coreMotionDuration800", "original": { "type": "other", "value": "1440ms", @@ -152893,7 +152893,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "900", + "name": "coreMotionDuration900", "original": { "type": "other", "value": "1680ms", @@ -152913,7 +152913,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "100", + "name": "coreMotionEase100", "original": { "type": "other", "value": "cubic-bezier(0, 0, 1, 1)", @@ -152931,7 +152931,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "200", + "name": "coreMotionEase200", "original": { "type": "other", "value": "cubic-bezier(1, 0, 1, 1)", @@ -152949,7 +152949,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "300", + "name": "coreMotionEase300", "original": { "type": "other", "value": "cubic-bezier(0, 0, 0, 1)", @@ -152967,7 +152967,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/motion.json", "isSource": true, - "name": "400", + "name": "coreMotionEase400", "original": { "type": "other", "value": "cubic-bezier(0.72, 0, 0.24, 1)", @@ -152988,7 +152988,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "100", + "name": "coreOpacity100", "original": { "type": "opacity", "value": "8%", @@ -153005,7 +153005,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "1000", + "name": "coreOpacity1000", "original": { "type": "opacity", "value": "80%", @@ -153022,7 +153022,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "1100", + "name": "coreOpacity1100", "original": { "type": "opacity", "value": "88%", @@ -153039,7 +153039,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "1200", + "name": "coreOpacity1200", "original": { "type": "opacity", "value": "96%", @@ -153056,7 +153056,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "1300", + "name": "coreOpacity1300", "original": { "type": "opacity", "value": "100%", @@ -153073,7 +153073,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "200", + "name": "coreOpacity200", "original": { "type": "opacity", "value": "16%", @@ -153090,7 +153090,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "300", + "name": "coreOpacity300", "original": { "type": "opacity", "value": "24%", @@ -153107,7 +153107,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "400", + "name": "coreOpacity400", "original": { "type": "opacity", "value": "32%", @@ -153124,7 +153124,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "50", + "name": "coreOpacity50", "original": { "type": "opacity", "value": "0%", @@ -153141,7 +153141,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "500", + "name": "coreOpacity500", "original": { "type": "opacity", "value": "40%", @@ -153158,7 +153158,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "600", + "name": "coreOpacity600", "original": { "type": "opacity", "value": "48%", @@ -153175,7 +153175,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "700", + "name": "coreOpacity700", "original": { "type": "opacity", "value": "56%", @@ -153192,7 +153192,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "75", + "name": "coreOpacity75", "original": { "type": "opacity", "value": "4%", @@ -153209,7 +153209,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "800", + "name": "coreOpacity800", "original": { "type": "opacity", "value": "64%", @@ -153226,7 +153226,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/core/opacity.json", "isSource": true, - "name": "900", + "name": "coreOpacity900", "original": { "type": "opacity", "value": "72%", @@ -153246,7 +153246,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "100", + "name": "coreParagraphSpacing100", "original": { "description": "1rem", "type": "paragraphSpacing", @@ -153265,7 +153265,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.125rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "200", + "name": "coreParagraphSpacing200", "original": { "description": "1.125rem", "type": "paragraphSpacing", @@ -153284,7 +153284,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.25rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "300", + "name": "coreParagraphSpacing300", "original": { "description": "1.25rem", "type": "paragraphSpacing", @@ -153303,7 +153303,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "400", + "name": "coreParagraphSpacing400", "original": { "description": "1.5rem", "type": "paragraphSpacing", @@ -153322,7 +153322,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.75 rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "50", + "name": "coreParagraphSpacing50", "original": { "description": "0.75 rem", "type": "paragraphSpacing", @@ -153341,7 +153341,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "500", + "name": "coreParagraphSpacing500", "original": { "description": "2rem", "type": "paragraphSpacing", @@ -153360,7 +153360,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "600", + "name": "coreParagraphSpacing600", "original": { "description": "2.5rem", "type": "paragraphSpacing", @@ -153379,7 +153379,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "700", + "name": "coreParagraphSpacing700", "original": { "description": "3", "type": "paragraphSpacing", @@ -153398,7 +153398,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.875rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "75", + "name": "coreParagraphSpacing75", "original": { "description": "0.875rem", "type": "paragraphSpacing", @@ -153417,7 +153417,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "800", + "name": "coreParagraphSpacing800", "original": { "description": "4rem", "type": "paragraphSpacing", @@ -153436,7 +153436,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5rem", "filePath": "raw-tokens/data/core/typography.json", "isSource": true, - "name": "900", + "name": "coreParagraphSpacing900", "original": { "description": "5rem", "type": "paragraphSpacing", @@ -153457,7 +153457,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "100", + "name": "coreSpacing100", "original": { "description": "0.125rem", "type": "spacing", @@ -153476,7 +153476,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1000", + "name": "coreSpacing1000", "original": { "description": "1.25rem", "type": "spacing", @@ -153495,7 +153495,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1100", + "name": "coreSpacing1100", "original": { "description": "1.375rem", "type": "spacing", @@ -153514,7 +153514,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1200", + "name": "coreSpacing1200", "original": { "description": "1.5rem", "type": "spacing", @@ -153533,7 +153533,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1300", + "name": "coreSpacing1300", "original": { "description": "1.625rem", "type": "spacing", @@ -153552,7 +153552,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1400", + "name": "coreSpacing1400", "original": { "description": "1.75rem", "type": "spacing", @@ -153571,7 +153571,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1500", + "name": "coreSpacing1500", "original": { "description": "1.875rem", "type": "spacing", @@ -153590,7 +153590,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1600", + "name": "coreSpacing1600", "original": { "description": "2rem", "type": "spacing", @@ -153609,7 +153609,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1700", + "name": "coreSpacing1700", "original": { "description": "2.125rem", "type": "spacing", @@ -153628,7 +153628,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1800", + "name": "coreSpacing1800", "original": { "description": "2.25rem", "type": "spacing", @@ -153647,7 +153647,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "1900", + "name": "coreSpacing1900", "original": { "description": "2.375rem", "type": "spacing", @@ -153666,7 +153666,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "200", + "name": "coreSpacing200", "original": { "description": "0.25rem", "type": "spacing", @@ -153685,7 +153685,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2000", + "name": "coreSpacing2000", "original": { "description": "2.5rem", "type": "spacing", @@ -153704,7 +153704,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2100", + "name": "coreSpacing2100", "original": { "description": "2.625rem", "type": "spacing", @@ -153723,7 +153723,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2200", + "name": "coreSpacing2200", "original": { "description": "2.75rem", "type": "spacing", @@ -153742,7 +153742,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "2.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2300", + "name": "coreSpacing2300", "original": { "description": "2.875rem", "type": "spacing", @@ -153761,7 +153761,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2400", + "name": "coreSpacing2400", "original": { "description": "3rem", "type": "spacing", @@ -153780,7 +153780,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2500", + "name": "coreSpacing2500", "original": { "description": "3.125rem", "type": "spacing", @@ -153799,7 +153799,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2600", + "name": "coreSpacing2600", "original": { "description": "3.25rem", "type": "spacing", @@ -153818,7 +153818,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2700", + "name": "coreSpacing2700", "original": { "description": "3.375rem", "type": "spacing", @@ -153837,7 +153837,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2800", + "name": "coreSpacing2800", "original": { "description": "3.5rem", "type": "spacing", @@ -153856,7 +153856,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "2900", + "name": "coreSpacing2900", "original": { "description": "3.625rem", "type": "spacing", @@ -153875,7 +153875,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "300", + "name": "coreSpacing300", "original": { "description": "0.375rem", "type": "spacing", @@ -153894,7 +153894,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3000", + "name": "coreSpacing3000", "original": { "description": "3.75rem", "type": "spacing", @@ -153913,7 +153913,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "3.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3100", + "name": "coreSpacing3100", "original": { "description": "3.875rem", "type": "spacing", @@ -153932,7 +153932,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3200", + "name": "coreSpacing3200", "original": { "description": "4rem", "type": "spacing", @@ -153951,7 +153951,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3300", + "name": "coreSpacing3300", "original": { "description": "4.125rem", "type": "spacing", @@ -153970,7 +153970,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3400", + "name": "coreSpacing3400", "original": { "description": "4.25rem", "type": "spacing", @@ -153989,7 +153989,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3500", + "name": "coreSpacing3500", "original": { "description": "4.375rem", "type": "spacing", @@ -154008,7 +154008,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3600", + "name": "coreSpacing3600", "original": { "description": "4.5rem", "type": "spacing", @@ -154027,7 +154027,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3700", + "name": "coreSpacing3700", "original": { "description": "4.625rem", "type": "spacing", @@ -154046,7 +154046,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3800", + "name": "coreSpacing3800", "original": { "description": "4.75rem", "type": "spacing", @@ -154065,7 +154065,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "4.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "3900", + "name": "coreSpacing3900", "original": { "description": "4.875rem", "type": "spacing", @@ -154084,7 +154084,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "400", + "name": "coreSpacing400", "original": { "description": "0.5rem", "type": "spacing", @@ -154103,7 +154103,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4000", + "name": "coreSpacing4000", "original": { "description": "5rem", "type": "spacing", @@ -154122,7 +154122,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4100", + "name": "coreSpacing4100", "original": { "description": "5.125rem", "type": "spacing", @@ -154141,7 +154141,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4200", + "name": "coreSpacing4200", "original": { "description": "5.25rem", "type": "spacing", @@ -154160,7 +154160,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.375rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4300", + "name": "coreSpacing4300", "original": { "description": "5.375rem", "type": "spacing", @@ -154179,7 +154179,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.5rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4400", + "name": "coreSpacing4400", "original": { "description": "5.5rem", "type": "spacing", @@ -154198,7 +154198,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4500", + "name": "coreSpacing4500", "original": { "description": "5.625rem", "type": "spacing", @@ -154217,7 +154217,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4600", + "name": "coreSpacing4600", "original": { "description": "5.75rem", "type": "spacing", @@ -154236,7 +154236,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "5.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4700", + "name": "coreSpacing4700", "original": { "description": "5.875rem", "type": "spacing", @@ -154255,7 +154255,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "6rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4800", + "name": "coreSpacing4800", "original": { "description": "6rem", "type": "spacing", @@ -154274,7 +154274,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "6.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "4900", + "name": "coreSpacing4900", "original": { "description": "6.125rem", "type": "spacing", @@ -154293,7 +154293,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "50", + "name": "coreSpacing50", "original": { "description": "0rem", "type": "spacing", @@ -154312,7 +154312,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "500", + "name": "coreSpacing500", "original": { "description": "0.625rem", "type": "spacing", @@ -154331,7 +154331,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "6.25rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "5000", + "name": "coreSpacing5000", "original": { "description": "6.25rem", "type": "spacing", @@ -154350,7 +154350,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.75rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "600", + "name": "coreSpacing600", "original": { "description": "0.75rem", "type": "spacing", @@ -154369,7 +154369,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.875rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "700", + "name": "coreSpacing700", "original": { "description": "0.875rem", "type": "spacing", @@ -154388,7 +154388,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "0.0625rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "75", + "name": "coreSpacing75", "original": { "description": "0.0625rem", "type": "spacing", @@ -154407,7 +154407,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "800", + "name": "coreSpacing800", "original": { "description": "1rem", "type": "spacing", @@ -154426,7 +154426,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "description": "1.125rem", "filePath": "raw-tokens/data/core/spacing.json", "isSource": true, - "name": "900", + "name": "coreSpacing900", "original": { "description": "1.125rem", "type": "spacing", @@ -154449,7 +154449,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "dialog", + "name": "semanticColorBackgroundDialog", "original": { "type": "color", "value": "{core.color.solid.slate.50}", @@ -154468,7 +154468,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "base", + "name": "semanticColorBackgroundPrimaryBase", "original": { "type": "color", "value": "{core.color.solid.slate.75}", @@ -154487,7 +154487,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "container", + "name": "semanticColorBackgroundPrimaryContainer", "original": { "type": "color", "value": "{core.color.solid.slate.50}", @@ -154508,7 +154508,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "base", + "name": "semanticColorBackgroundSecondaryBase", "original": { "type": "color", "value": "{core.color.solid.slate.50}", @@ -154527,7 +154527,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "container", + "name": "semanticColorBackgroundSecondaryContainer", "original": { "type": "color", "value": "{core.color.solid.slate.75}", @@ -154549,7 +154549,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "danger", + "name": "semanticColorStatusDanger", "original": { "type": "color", "value": "{core.color.solid.red.800}", @@ -154567,7 +154567,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "info", + "name": "semanticColorStatusInfo", "original": { "type": "color", "value": "{core.color.solid.blue.800}", @@ -154585,7 +154585,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "success", + "name": "semanticColorStatusSuccess", "original": { "type": "color", "value": "{core.color.solid.green.800}", @@ -154603,7 +154603,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "warning", + "name": "semanticColorStatusWarning", "original": { "type": "color", "value": "{core.color.solid.yellow.800}", @@ -154623,7 +154623,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "default", + "name": "semanticColorTypographyDefault", "original": { "type": "color", "value": "{core.color.opacity.black.600}", @@ -154641,7 +154641,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "disabled", + "name": "semanticColorTypographyDisabled", "original": { "type": "color", "value": "{core.color.opacity.black.300}", @@ -154659,7 +154659,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "link", + "name": "semanticColorTypographyLink", "original": { "type": "color", "value": "{core.color.solid.coral.700}", @@ -154677,7 +154677,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "prominent", + "name": "semanticColorTypographyProminent", "original": { "type": "color", "value": "{core.color.solid.slate.1400}", @@ -154695,7 +154695,7 @@ exports[`Tailwind Exports Should generate Mobile Light Theme Semantic variables "attributes": {}, "filePath": "raw-tokens/data/semantic/theme/light.json", "isSource": true, - "name": "subtle", + "name": "semanticColorTypographySubtle", "original": { "type": "color", "value": "{core.color.opacity.black.400}",