diff --git a/lib/atom/Callout/Callout.module.css b/lib/atom/Callout/Callout.module.css index 54f3c96..e683ff4 100644 --- a/lib/atom/Callout/Callout.module.css +++ b/lib/atom/Callout/Callout.module.css @@ -27,4 +27,5 @@ .actionButton { background: var(--accent-2); + border-radius: var(--radius-4); } diff --git a/lib/atom/Severity/Severity.module.css b/lib/atom/Severity/Severity.module.css index b74cdc4..2377adf 100644 --- a/lib/atom/Severity/Severity.module.css +++ b/lib/atom/Severity/Severity.module.css @@ -1,7 +1,7 @@ .dot { height: 8px; width: 8px; - border-radius: 50%; + border-radius: var(--radius-full); display: inline-block; position: relative; box-sizing: content-box; diff --git a/lib/atom/Severity/Severity.tsx b/lib/atom/Severity/Severity.tsx index 8f20f04..6418345 100644 --- a/lib/atom/Severity/Severity.tsx +++ b/lib/atom/Severity/Severity.tsx @@ -12,7 +12,7 @@ const Severity = ({ level, textOnly, iconOnly }: ISeverityProps) => { return ( - {(iconOnly || !textOnly) && } + {(iconOnly || !textOnly) && } {(!iconOnly || textOnly) && ( {displayText} diff --git a/lib/compound/DateRangePicker/DateRangePicker.module.css b/lib/compound/DateRangePicker/DateRangePicker.module.css index 654dc62..f036b47 100644 --- a/lib/compound/DateRangePicker/DateRangePicker.module.css +++ b/lib/compound/DateRangePicker/DateRangePicker.module.css @@ -4,14 +4,14 @@ --rdp-day_button-width: 32px; --rdp-day_button-height: 32px; --rdp-nav-height: 32px; - font-size: 14px; + font-size: var(--font-size-2); } .today { background-color: var(--gray-3); color: var(--gray-12); font-weight: bold; - border-radius: 6px; + border-radius: var(--radius-3); } .rangeEnd, @@ -19,7 +19,7 @@ background-color: var(--accent-9); color: var(--gray-1); font-weight: normal; - border-radius: 6px; + border-radius: var(--radius-3); border: 0; } diff --git a/lib/molecule/CalendarChips/CalendarChips.module.css b/lib/molecule/CalendarChips/CalendarChips.module.css index dca9002..c5987e1 100644 --- a/lib/molecule/CalendarChips/CalendarChips.module.css +++ b/lib/molecule/CalendarChips/CalendarChips.module.css @@ -1,10 +1,11 @@ .calendarChip { - display: flex; - align-items: center; - flex-direction: column; - width: 42px; - height: auto; - min-height: 32px; - gap: 0; - padding: var(--space-2) var(--space-3); + color: var(--gray-12); + box-shadow: inset 0 0 0 1px var(--accent-a7); + border-color: red; + + &:global(.selected) { + color: var(--gray-1); + background: var(--blue-11); + font-weight: var(--font-weight-bold); + } } diff --git a/lib/molecule/CalendarChips/CalendarChips.tsx b/lib/molecule/CalendarChips/CalendarChips.tsx index 2935398..0fde642 100644 --- a/lib/molecule/CalendarChips/CalendarChips.tsx +++ b/lib/molecule/CalendarChips/CalendarChips.tsx @@ -2,6 +2,8 @@ import { Flex, Button, Text } from '@radix-ui/themes'; import { useMemo } from 'react'; import { useCalendarChips } from './hooks'; import type { ICalendarChipsProps } from './CalendarChips.types'; +import cn from 'classnames'; +import styles from './CalendarChips.module.css' const CalendarChip = ({ date, selected }: { readonly date: Date; readonly selected?: boolean }) => { return ( @@ -16,7 +18,7 @@ const CalendarChip = ({ date, selected }: { readonly date: Date; readonly select width="42px" height="56px" > - diff --git a/lib/styles/colors.css b/lib/styles/colors.css index 9053af1..207b4f7 100644 --- a/lib/styles/colors.css +++ b/lib/styles/colors.css @@ -1,525 +1,809 @@ -/** Manually generated using https://www.radix-ui.com/colors/custom **/ +/** + * Generated from Figma token exports. + * Source files: + * - Light.tokens.json + * - Dark.tokens.json + * - Theme.tokens.json + * - Radius.tokens.json + * - Space.tokens.json + * + * Do not edit manually. Re-run: + * node scripts/sync-figma-tokens.js + */ -/* :root, +:root, .light, .light-theme { - --color-background: #fff; + --font-family-code: Menlo; + --font-family-emphasis: Times New Roman; + --font-family-quote: Times New Roman; + --font-family-text: SF Pro; + --font-size-1: 12px; + --font-size-2: 14px; + --font-size-3: 16px; + --font-size-4: 18px; + --font-size-5: 20px; + --font-size-6: 24px; + --font-size-7: 28px; + --font-size-8: 35px; + --font-size-9: 60px; + --font-weight-bold: Bold; + --font-weight-light: Light; + --font-weight-medium: Medium; + --font-weight-regular: Regular; + --letter-spacing-1: 0.04px; + --letter-spacing-2: 0px; + --letter-spacing-3: 0px; + --letter-spacing-4: -0.04px; + --letter-spacing-5: -0.08px; + --letter-spacing-6: -0.1px; + --letter-spacing-7: -0.12px; + --letter-spacing-8: -0.16px; + --letter-spacing-9: -0.4px; + --line-height-1: 16px; + --line-height-2: 20px; + --line-height-3: 24px; + --line-height-4: 26px; + --line-height-5: 28px; + --line-height-6: 30px; + --line-height-7: 36px; + --line-height-8: 40px; + --line-height-9: 60px; + --radius-1-max: 3px; + --radius-1: 3px; + --radius-2-max: 4px; + --radius-2: 4px; + --radius-3-max: 6px; + --radius-3: 6px; + --radius-4-max: 8px; + --radius-4: 8px; + --radius-5-max: 12px; + --radius-5: 12px; + --radius-6-max: 16px; + --radius-6: 16px; + --space-1: 4px; + --space-2: 8px; + --space-3: 12px; + --space-4: 16px; + --space-5: 24px; + --space-6: 32px; + --space-7: 40px; + --space-8: 48px; + --space-9: 64px; } :root, .light, .light-theme { - --gray-1: #fbfcfe; - --gray-2: #f8f9fa; - --gray-3: #eef0f3; - --gray-4: #e7e8e8; - --gray-5: #dfe1e4; - --gray-6: #d8d9d9; - --gray-7: #cdcecf; - --gray-8: #babbbd; - --gray-9: #8d8d8e; - --gray-10: #828384; - --gray-11: #646465; + --accent-1: #FDFDFE; + --accent-10: #3358D4; + --accent-11: #3A5BC7; + --accent-12: #1F2D5C; + --accent-2: #F7F9FF; + --accent-3: #EDF2FE; + --accent-4: #E1E9FF; + --accent-5: #D2DEFF; + --accent-6: #C1D0FF; + --accent-7: #ABBDF9; + --accent-8: #8DA4EF; + --accent-9: #3E63DD; + --accent-a1: rgba(0, 0, 128, 0.008); + --accent-a10: rgba(0, 46, 201, 0.8); + --accent-a11: rgba(0, 43, 183, 0.772); + --accent-a12: rgba(0, 16, 70, 0.878); + --accent-a2: rgba(0, 64, 255, 0.031); + --accent-a3: rgba(0, 71, 241, 0.071); + --accent-a4: rgba(0, 68, 255, 0.118); + --accent-a5: rgba(0, 68, 255, 0.176); + --accent-a6: rgba(0, 62, 255, 0.243); + --accent-a7: rgba(0, 55, 237, 0.329); + --accent-a8: rgba(0, 52, 220, 0.447); + --accent-a9: rgba(0, 49, 210, 0.757); + --accent-contrast: #FFFFFF; + --accent-indicator: #3E63DD; + --accent-surface: rgba(0, 64, 255, 0.031); + --accent-track: #3E63DD; + --black-a1: rgba(0, 0, 0, 0.05); + --black-a10: rgba(0, 0, 0, 0.8); + --black-a11: rgba(0, 0, 0, 0.9); + --black-a12: rgba(0, 0, 0, 0.95); + --black-a2: rgba(0, 0, 0, 0.1); + --black-a3: rgba(0, 0, 0, 0.15); + --black-a4: rgba(0, 0, 0, 0.2); + --black-a5: rgba(0, 0, 0, 0.3); + --black-a6: rgba(0, 0, 0, 0.4); + --black-a7: rgba(0, 0, 0, 0.5); + --black-a8: rgba(0, 0, 0, 0.6); + --black-a9: rgba(0, 0, 0, 0.7); + --blue-1: #FBFDFF; + --blue-10: #3C89E1; + --blue-11: #1E73CD; + --blue-12: #13355B; + --blue-2: #F5F9FF; + --blue-3: #EAF3FE; + --blue-4: #DBECFF; + --blue-5: #CBE2FF; + --blue-6: #B8D5F9; + --blue-7: #9EC4F2; + --blue-8: #79ACEA; + --blue-9: #4395F3; + --blue-a1: rgba(0, 128, 255, 0.016); + --blue-a10: rgba(0, 134, 240, 0.98); + --blue-a11: rgba(0, 109, 203, 0.949); + --blue-a12: rgba(91, 92, 93, 0.933); + --blue-a2: rgba(0, 140, 255, 0.043); + --blue-a3: rgba(0, 143, 245, 0.098); + --blue-a4: rgba(0, 158, 255, 0.165); + --blue-a5: rgba(0, 147, 255, 0.239); + --blue-a6: rgba(0, 136, 246, 0.326); + --blue-a7: rgba(0, 131, 235, 0.443); + --blue-a8: rgba(0, 132, 230, 0.631); + --blue-a9: #0090FF; + --blue-contrast: #1C2024; + --blue-indicator: #4395F3; + --blue-surface: rgba(0, 140, 255, 0.043); + --blue-track: #4395F3; + --color-background: #FFFFFF; + --color-background-header: rgba(255, 255, 255, 0.9); + --color-overlay: rgba(0, 8, 48, 0.275); + --color-text: #1C2024; + --gray-1: #FCFCFC; + --gray-10: #838383; + --gray-11: #646464; --gray-12: #202020; - - --gray-a1: #0040c004; - --gray-a2: #00254907; - --gray-a3: #001e4b11; - --gray-a4: #000b0b18; - --gray-a5: #00102820; - --gray-a6: #00070727; - --gray-a7: #00060b32; - --gray-a8: #00040c45; - --gray-a9: #00000372; - --gray-a10: #0003057d; - --gray-a11: #0000029b; - --gray-a12: #000000df; - - --gray-contrast: #ffffff; - --gray-surface: #ffffffcc; - --gray-indicator: #8d8d8e; - --gray-track: #8d8d8e; + --gray-2: #F9F9F9; + --gray-3: #F0F0F0; + --gray-4: #E8E8E8; + --gray-5: #E0E0E0; + --gray-6: #D9D9D9; + --gray-7: #CECECE; + --gray-8: #BBBBBB; + --gray-9: #8D8D8D; + --gray-a1: rgba(0, 0, 0, 0.012); + --gray-a10: rgba(0, 0, 0, 0.486); + --gray-a11: rgba(0, 0, 0, 0.608); + --gray-a12: rgba(0, 0, 0, 0.874); + --gray-a2: rgba(0, 0, 0, 0.023); + --gray-a3: rgba(0, 0, 0, 0.059); + --gray-a4: rgba(0, 0, 0, 0.09); + --gray-a5: rgba(0, 0, 0, 0.122); + --gray-a6: rgba(0, 0, 0, 0.149); + --gray-a7: rgba(0, 0, 0, 0.192); + --gray-a8: rgba(0, 0, 0, 0.267); + --gray-a9: rgba(0, 0, 0, 0.447); + --gray-contrast: #1C2024; + --gray-indicator: #8D8D8D; + --gray-surface: rgba(0, 0, 0, 0.023); + --gray-track: #8D8D8D; + --green-1: #FBFEFC; + --green-10: #2B9A66; + --green-11: #218358; + --green-12: #193B2D; + --green-2: #F4FBF6; + --green-3: #E6F6EB; + --green-4: #D6F1DF; + --green-5: #C4E8D1; + --green-6: #ADDDC0; + --green-7: #8ECEAA; + --green-8: #5BB98B; + --green-9: #30A46C; + --green-a1: rgba(0, 192, 64, 0.016); + --green-a10: rgba(0, 134, 71, 0.831); + --green-a11: rgba(0, 113, 63, 0.871); + --green-a12: rgba(0, 38, 22, 0.902); + --green-a2: rgba(0, 163, 47, 0.043); + --green-a3: rgba(0, 164, 51, 0.098); + --green-a4: rgba(0, 168, 56, 0.161); + --green-a5: rgba(1, 156, 57, 0.231); + --green-a6: rgba(0, 150, 60, 0.322); + --green-a7: rgba(0, 145, 64, 0.443); + --green-a8: rgba(0, 146, 75, 0.643); + --green-a9: rgba(0, 143, 74, 0.812); + --green-contrast: #1C2024; + --green-indicator: #30A46C; + --green-surface: rgba(0, 163, 47, 0.043); + --green-track: #30A46C; + --indigo-1: #FDFDFE; + --indigo-10: #3358D4; + --indigo-11: #3A5BC7; + --indigo-12: #1F2D5C; + --indigo-2: #F7F9FF; + --indigo-3: #EDF2FE; + --indigo-4: #E1E9FF; + --indigo-5: #D2DEFF; + --indigo-6: #C1D0FF; + --indigo-7: #ABBDF9; + --indigo-8: #8DA4EF; + --indigo-9: #3E63DD; + --indigo-a1: rgba(0, 0, 128, 0.008); + --indigo-a10: rgba(0, 46, 201, 0.8); + --indigo-a11: rgba(0, 43, 183, 0.772); + --indigo-a12: rgba(0, 16, 70, 0.878); + --indigo-a2: rgba(0, 64, 255, 0.031); + --indigo-a3: rgba(0, 71, 241, 0.071); + --indigo-a4: rgba(0, 68, 255, 0.118); + --indigo-a5: rgba(0, 68, 255, 0.176); + --indigo-a6: rgba(0, 62, 255, 0.243); + --indigo-a7: rgba(0, 55, 237, 0.329); + --indigo-a8: rgba(0, 52, 220, 0.447); + --indigo-a9: rgba(0, 49, 210, 0.757); + --orange-1: #FEFCFB; + --orange-10: #E77600; + --orange-11: #C45C00; + --orange-12: #582D1D; + --orange-2: #FFF5EB; + --orange-3: #FFE9D2; + --orange-4: #FFD9B4; + --orange-5: #FFCB9D; + --orange-6: #FFBC81; + --orange-7: #FFA456; + --orange-8: #FD8A19; + --orange-9: #F48200; + --orange-a1: rgba(192, 64, 0, 0.016); + --orange-a10: #EF5F00; + --orange-a11: rgba(204, 78, 0, 0.773); + --orange-a12: rgba(67, 18, 0, 0.886); + --orange-a2: rgba(255, 142, 0, 0.071); + --orange-a3: rgba(255, 156, 0, 0.161); + --orange-a4: rgba(255, 145, 1, 0.29); + --orange-a5: rgba(255, 139, 0, 0.396); + --orange-a6: rgba(255, 129, 0, 0.49); + --orange-a7: rgba(237, 108, 0, 0.549); + --orange-a8: rgba(227, 95, 0, 0.667); + --orange-a9: rgba(246, 94, 0, 0.918); + --orange-contrast: #1C2024; + --orange-indicator: #F48200; + --orange-surface: rgba(255, 142, 0, 0.071); + --orange-track: #F48200; + --red-1: #FFFCFC; + --red-10: #DC3E42; + --red-11: #CE2C31; + --red-12: #641723; + --red-2: #FFF7F7; + --red-3: #FEEBEC; + --red-4: #FFDBDC; + --red-5: #FFCDCE; + --red-6: #FDBDBE; + --red-7: #F4A9AA; + --red-8: #EB8E90; + --red-9: #E5484D; + --red-a1: rgba(255, 0, 0, 0.012); + --red-a10: rgba(209, 0, 5, 0.757); + --red-a11: rgba(196, 0, 6, 0.827); + --red-a12: rgba(85, 0, 13, 0.91); + --red-a2: rgba(255, 0, 0, 0.031); + --red-a3: rgba(243, 0, 13, 0.078); + --red-a4: rgba(255, 0, 8, 0.141); + --red-a5: rgba(255, 0, 6, 0.196); + --red-a6: rgba(248, 0, 4, 0.259); + --red-a7: rgba(223, 0, 3, 0.337); + --red-a8: rgba(210, 0, 5, 0.443); + --red-a9: rgba(219, 0, 7, 0.718); + --red-contrast: #FFFFFF; + --red-indicator: #E5484D; + --red-surface: rgba(255, 0, 0, 0.031); + --red-track: #E5484D; + --sky-1: #F9FEFF; + --sky-10: #74DAF8; + --sky-11: #00749E; + --sky-12: #1D3E56; + --sky-2: #F1FAFD; + --sky-3: #E1F6FD; + --sky-4: #D1F0FA; + --sky-5: #BEE7F5; + --sky-6: #A9DAED; + --sky-7: #8DCAE3; + --sky-8: #60B3D7; + --sky-9: #7CE2FE; + --sky-a1: rgba(0, 213, 255, 0.023); + --sky-a10: rgba(0, 188, 243, 0.545); + --sky-a11: #00749E; + --sky-a12: rgba(0, 37, 64, 0.886); + --sky-a2: rgba(0, 164, 219, 0.055); + --sky-a3: rgba(0, 179, 238, 0.118); + --sky-a4: rgba(0, 172, 228, 0.18); + --sky-a5: rgba(0, 161, 216, 0.255); + --sky-a6: rgba(0, 146, 202, 0.337); + --sky-a7: rgba(0, 137, 193, 0.447); + --sky-a8: rgba(0, 133, 191, 0.623); + --sky-a9: rgba(0, 199, 254, 0.514); + --slate-1: #FCFCFD; + --slate-10: #80838D; + --slate-11: #60646C; + --slate-12: #1C2024; + --slate-2: #F9F9FB; + --slate-3: #F0F0F3; + --slate-4: #E8E8EC; + --slate-5: #E0E1E6; + --slate-6: #D9D9E0; + --slate-7: #CDCED6; + --slate-8: #B9BBC6; + --slate-9: #8B8D98; + --slate-a1: rgba(0, 0, 85, 0.012); + --slate-a10: rgba(0, 7, 27, 0.498); + --slate-a11: rgba(0, 7, 20, 0.623); + --slate-a12: rgba(0, 5, 9, 0.89); + --slate-a2: rgba(0, 0, 85, 0.023); + --slate-a3: rgba(0, 0, 51, 0.059); + --slate-a4: rgba(0, 0, 45, 0.09); + --slate-a5: rgba(0, 9, 50, 0.122); + --slate-a6: rgba(0, 0, 47, 0.149); + --slate-a7: rgba(0, 6, 46, 0.196); + --slate-a8: rgba(0, 8, 48, 0.275); + --slate-a9: rgba(0, 5, 29, 0.455); + --white-a1: rgba(255, 255, 255, 0.05); + --white-a10: rgba(255, 255, 255, 0.8); + --white-a11: rgba(255, 255, 255, 0.9); + --white-a12: rgba(255, 255, 255, 0.95); + --white-a2: rgba(255, 255, 255, 0.1); + --white-a3: rgba(255, 255, 255, 0.15); + --white-a4: rgba(255, 255, 255, 0.2); + --white-a5: rgba(255, 255, 255, 0.3); + --white-a6: rgba(255, 255, 255, 0.4); + --white-a7: rgba(255, 255, 255, 0.5); + --white-a8: rgba(255, 255, 255, 0.6); + --white-a9: rgba(255, 255, 255, 0.7); + --yellow-1: #FDFDF9; + --yellow-10: #FFDC00; + --yellow-11: #9E6C00; + --yellow-12: #473B1F; + --yellow-2: #FEFCE9; + --yellow-3: #FFFAB8; + --yellow-4: #FFF394; + --yellow-5: #FFE770; + --yellow-6: #F3D768; + --yellow-7: #E4C767; + --yellow-8: #D5AE39; + --yellow-9: #FFE629; + --yellow-a1: rgba(170, 170, 0, 0.023); + --yellow-a10: #FFDC00; + --yellow-a11: #9E6C00; + --yellow-a12: rgba(46, 32, 0, 0.878); + --yellow-a2: rgba(244, 221, 0, 0.086); + --yellow-a3: rgba(255, 238, 0, 0.278); + --yellow-a4: rgba(255, 227, 1, 0.42); + --yellow-a5: rgba(255, 213, 0, 0.561); + --yellow-a6: rgba(235, 188, 0, 0.592); + --yellow-a7: rgba(210, 161, 0, 0.596); + --yellow-a8: rgba(201, 151, 0, 0.776); + --yellow-a9: rgba(255, 225, 0, 0.839); + --yellow-contrast: #1C2024; + --yellow-indicator: #FFE629; + --yellow-surface: rgba(244, 221, 0, 0.086); + --yellow-track: #FFE629; } -@supports (color: color(display-p3 1 1 1)) { - @media (color-gamut: p3) { - :root, - .light, - .light-theme { - --gray-1: oklch(99.1% 0.003 264.5); - --gray-2: oklch(98.1% 0.0023 264.5); - --gray-3: oklch(95.3% 0.0045 264.5); - --gray-4: oklch(93% 0.001 264.5); - --gray-5: oklch(90.8% 0.0045 264.5); - --gray-6: oklch(88.4% 0.0005 264.5); - --gray-7: oklch(85.1% 0.0011 264.5); - --gray-8: oklch(79.1% 0.003 264.5); - --gray-9: oklch(64.3% 0.0011 264.5); - --gray-10: oklch(60.9% 0.0016 264.5); - --gray-11: oklch(50.3% 0.0009 264.5); - --gray-12: oklch(24.3% 0.0004 264.5); - - --gray-a1: color(display-p3 0.0235 0.2667 0.7569 / 0.016); - --gray-a2: color(display-p3 0.0235 0.1608 0.302 / 0.028); - --gray-a3: color(display-p3 0.0078 0.1255 0.298 / 0.067); - --gray-a4: color(display-p3 0.0118 0.051 0.051 / 0.095); - --gray-a5: color(display-p3 0.0078 0.0667 0.1608 / 0.126); - --gray-a6: color(display-p3 0.0039 0.0275 0.0275 / 0.153); - --gray-a7: color(display-p3 0.0078 0.0275 0.0471 / 0.197); - --gray-a8: color(display-p3 0.0039 0.0196 0.0471 / 0.271); - --gray-a9: color(display-p3 0.0039 0.0039 0.0118 / 0.448); - --gray-a10: color(display-p3 0.0039 0.0118 0.0196 / 0.491); - --gray-a11: color(display-p3 0 0 0.0078 / 0.608); - --gray-a12: color(display-p3 0 0 0 / 0.8745); - - --gray-contrast: #ffffff; - --gray-surface: color(display-p3 1 1 1 / 80%); - --gray-indicator: oklch(64.3% 0.0011 264.5); - --gray-track: oklch(64.3% 0.0011 264.5); - } - } +.dark, +.dark-theme { + --accent-1: #11131F; + --accent-10: #5472E4; + --accent-11: #9EB1FF; + --accent-12: #D6E1FF; + --accent-2: #141726; + --accent-3: #182449; + --accent-4: #1D2E62; + --accent-5: #253974; + --accent-6: #304384; + --accent-7: #3A4F97; + --accent-8: #435DB1; + --accent-9: #3E63DD; + --accent-a1: rgba(17, 51, 255, 0.059); + --accent-a10: rgba(92, 126, 254, 0.89); + --accent-a11: #9EB1FF; + --accent-a12: #D6E1FF; + --accent-a2: rgba(51, 84, 250, 0.09); + --accent-a3: rgba(47, 98, 255, 0.235); + --accent-a4: rgba(53, 102, 255, 0.341); + --accent-a5: rgba(65, 113, 253, 0.42); + --accent-a6: rgba(81, 120, 253, 0.486); + --accent-a7: rgba(90, 127, 255, 0.565); + --accent-a8: rgba(91, 129, 254, 0.674); + --accent-a9: rgba(70, 113, 255, 0.859); + --accent-contrast: #FFFFFF; + --accent-indicator: #3E63DD; + --accent-surface: rgba(51, 84, 250, 0.09); + --accent-track: #3E63DD; + --black-a1: rgba(0, 0, 0, 0.05); + --black-a10: rgba(0, 0, 0, 0.8); + --black-a11: rgba(0, 0, 0, 0.9); + --black-a12: rgba(0, 0, 0, 0.95); + --black-a2: rgba(0, 0, 0, 0.1); + --black-a3: rgba(0, 0, 0, 0.15); + --black-a4: rgba(0, 0, 0, 0.2); + --black-a5: rgba(0, 0, 0, 0.3); + --black-a6: rgba(0, 0, 0, 0.4); + --black-a7: rgba(0, 0, 0, 0.5); + --black-a8: rgba(0, 0, 0, 0.6); + --black-a9: rgba(0, 0, 0, 0.7); + --blue-1: #0D1520; + --blue-10: #3B9EFF; + --blue-11: #70B8FF; + --blue-12: #C2E6FF; + --blue-2: #111927; + --blue-3: #0D2847; + --blue-4: #003362; + --blue-5: #004074; + --blue-6: #104D87; + --blue-7: #205D9E; + --blue-8: #2870BD; + --blue-9: #0090FF; + --blue-a1: rgba(0, 77, 242, 0.067); + --blue-a10: #3B9EFF; + --blue-a11: #70B8FF; + --blue-a12: #C2E6FF; + --blue-a2: rgba(17, 102, 251, 0.094); + --blue-a3: rgba(0, 119, 255, 0.228); + --blue-a4: rgba(0, 117, 255, 0.341); + --blue-a5: rgba(0, 129, 253, 0.42); + --blue-a6: rgba(15, 137, 253, 0.498); + --blue-a7: rgba(42, 145, 254, 0.596); + --blue-a8: rgba(48, 148, 254, 0.725); + --blue-a9: #0090FF; + --blue-contrast: #FFFFFF; + --blue-indicator: #0090FF; + --blue-surface: rgba(17, 102, 251, 0.094); + --blue-track: #0090FF; + --color-background: #111113; + --color-background-header: rgba(0, 0, 0, 0.25); + --color-overlay: rgba(0, 0, 0, 0.75); + --color-text: #FFFFFF; + --gray-1: #111111; + --gray-10: #7B7B7B; + --gray-11: #B4B4B4; + --gray-12: #EEEEEE; + --gray-2: #191919; + --gray-3: #222222; + --gray-4: #2A2A2A; + --gray-5: #313131; + --gray-6: #3A3A3A; + --gray-7: #484848; + --gray-8: #606060; + --gray-9: #6E6E6E; + --gray-a1: rgba(0, 0, 0, 0); + --gray-a10: rgba(255, 255, 255, 0.447); + --gray-a11: rgba(255, 255, 255, 0.686); + --gray-a12: rgba(255, 255, 255, 0.929); + --gray-a2: rgba(255, 255, 255, 0.035); + --gray-a3: rgba(255, 255, 255, 0.071); + --gray-a4: rgba(255, 255, 255, 0.106); + --gray-a5: rgba(255, 255, 255, 0.133); + --gray-a6: rgba(255, 255, 255, 0.172); + --gray-a7: rgba(255, 255, 255, 0.231); + --gray-a8: rgba(255, 255, 255, 0.333); + --gray-a9: rgba(255, 255, 255, 0.392); + --gray-contrast: #FFFFFF; + --gray-indicator: #6E6E6E; + --gray-surface: rgba(255, 255, 255, 0.035); + --gray-track: #6E6E6E; + --green-1: #0E1512; + --green-10: #33B074; + --green-11: #3DD68C; + --green-12: #B1F1CB; + --green-2: #121B17; + --green-3: #132D21; + --green-4: #113B29; + --green-5: #174933; + --green-6: #20573E; + --green-7: #28684A; + --green-8: #2F7C57; + --green-9: #30A46C; + --green-a1: rgba(0, 222, 69, 0.02); + --green-a10: rgba(67, 254, 164, 0.671); + --green-a11: rgba(70, 254, 165, 0.831); + --green-a12: rgba(187, 255, 215, 0.941); + --green-a2: rgba(41, 249, 157, 0.043); + --green-a3: rgba(34, 255, 153, 0.118); + --green-a4: rgba(17, 255, 153, 0.176); + --green-a5: rgba(43, 255, 162, 0.235); + --green-a6: rgba(68, 255, 170, 0.294); + --green-a7: rgba(80, 253, 172, 0.369); + --green-a8: rgba(84, 255, 173, 0.451); + --green-a9: rgba(68, 255, 164, 0.62); + --green-contrast: #1C2024; + --green-indicator: #30A46C; + --green-surface: rgba(41, 249, 157, 0.043); + --green-track: #30A46C; + --indigo-1: #11131F; + --indigo-10: #5472E4; + --indigo-11: #9EB1FF; + --indigo-12: #D6E1FF; + --indigo-2: #141726; + --indigo-3: #182449; + --indigo-4: #1D2E62; + --indigo-5: #253974; + --indigo-6: #304384; + --indigo-7: #3A4F97; + --indigo-8: #435DB1; + --indigo-9: #3E63DD; + --indigo-a1: rgba(17, 51, 255, 0.059); + --indigo-a10: rgba(92, 126, 254, 0.89); + --indigo-a11: #9EB1FF; + --indigo-a12: #D6E1FF; + --indigo-a2: rgba(51, 84, 250, 0.09); + --indigo-a3: rgba(47, 98, 255, 0.235); + --indigo-a4: rgba(53, 102, 255, 0.341); + --indigo-a5: rgba(65, 113, 253, 0.42); + --indigo-a6: rgba(81, 120, 253, 0.486); + --indigo-a7: rgba(90, 127, 255, 0.565); + --indigo-a8: rgba(91, 129, 254, 0.674); + --indigo-a9: rgba(70, 113, 255, 0.859); + --orange-1: #17120E; + --orange-10: #FF801F; + --orange-11: #FFA057; + --orange-12: #FFE0C2; + --orange-2: #1E160F; + --orange-3: #331E0B; + --orange-4: #462100; + --orange-5: #562800; + --orange-6: #66350C; + --orange-7: #7E451D; + --orange-8: #A35829; + --orange-9: #F76B15; + --orange-a1: rgba(236, 54, 0, 0.027); + --orange-a10: #FF801F; + --orange-a11: #FFA057; + --orange-a12: #FFE0C2; + --orange-a2: rgba(254, 109, 0, 0.055); + --orange-a3: rgba(251, 106, 0, 0.145); + --orange-a4: rgba(255, 89, 0, 0.223); + --orange-a5: rgba(255, 97, 0, 0.29); + --orange-a6: rgba(253, 117, 4, 0.361); + --orange-a7: rgba(255, 131, 44, 0.459); + --orange-a8: rgba(254, 132, 56, 0.616); + --orange-a9: rgba(254, 109, 21, 0.969); + --orange-contrast: #1C2024; + --orange-indicator: #F76B15; + --orange-surface: rgba(254, 109, 0, 0.055); + --orange-track: #F76B15; + --red-1: #191111; + --red-10: #EC5D5E; + --red-11: #FF9592; + --red-12: #FFD1D9; + --red-2: #201314; + --red-3: #3B1219; + --red-4: #500F1C; + --red-5: #611623; + --red-6: #72232D; + --red-7: #8C333A; + --red-8: #B54548; + --red-9: #E5484D; + --red-a1: rgba(244, 18, 18, 0.035); + --red-a10: rgba(255, 100, 101, 0.922); + --red-a11: #FF9592; + --red-a12: #FFD1D9; + --red-a2: rgba(242, 47, 62, 0.067); + --red-a3: rgba(255, 23, 63, 0.176); + --red-a4: rgba(254, 10, 59, 0.267); + --red-a5: rgba(255, 32, 71, 0.337); + --red-a6: rgba(255, 62, 86, 0.408); + --red-a7: rgba(255, 83, 97, 0.518); + --red-a8: rgba(255, 93, 97, 0.69); + --red-a9: rgba(254, 78, 84, 0.894); + --red-contrast: #FFFFFF; + --red-indicator: #E5484D; + --red-surface: rgba(242, 47, 62, 0.067); + --red-track: #E5484D; + --sky-1: #0D141F; + --sky-10: #A8EEFF; + --sky-11: #75C7F0; + --sky-12: #C2F3FF; + --sky-2: #111A27; + --sky-3: #112840; + --sky-4: #113555; + --sky-5: #154467; + --sky-6: #1B537B; + --sky-7: #1F6692; + --sky-8: #197CAE; + --sky-9: #7CE2FE; + --sky-a1: rgba(0, 68, 255, 0.059); + --sky-a10: #A8EEFF; + --sky-a11: rgba(124, 211, 255, 0.937); + --sky-a12: #C2F3FF; + --sky-a2: rgba(17, 113, 251, 0.094); + --sky-a3: rgba(17, 132, 252, 0.2); + --sky-a4: rgba(18, 143, 255, 0.286); + --sky-a5: rgba(28, 157, 253, 0.365); + --sky-a6: rgba(40, 165, 255, 0.447); + --sky-a7: rgba(43, 173, 254, 0.545); + --sky-a8: rgba(29, 178, 254, 0.663); + --sky-a9: rgba(124, 227, 255, 0.996); + --slate-1: #111113; + --slate-10: #777B84; + --slate-11: #B0B4BA; + --slate-12: #EDEEF0; + --slate-2: #18191B; + --slate-3: #212225; + --slate-4: #272A2D; + --slate-5: #2E3135; + --slate-6: #363A3F; + --slate-7: #43484E; + --slate-8: #5A6169; + --slate-9: #696E77; + --slate-a1: rgba(0, 0, 0, 0); + --slate-a10: rgba(229, 237, 253, 0.482); + --slate-a11: rgba(241, 247, 254, 0.71); + --slate-a12: rgba(252, 253, 255, 0.937); + --slate-a2: rgba(216, 244, 246, 0.035); + --slate-a3: rgba(221, 234, 248, 0.078); + --slate-a4: rgba(211, 237, 248, 0.114); + --slate-a5: rgba(217, 237, 254, 0.145); + --slate-a6: rgba(214, 235, 253, 0.188); + --slate-a7: rgba(217, 237, 255, 0.251); + --slate-a8: rgba(217, 237, 255, 0.365); + --slate-a9: rgba(223, 235, 253, 0.428); + --white-a1: rgba(255, 255, 255, 0.05); + --white-a10: rgba(255, 255, 255, 0.8); + --white-a11: rgba(255, 255, 255, 0.9); + --white-a12: rgba(255, 255, 255, 0.95); + --white-a2: rgba(255, 255, 255, 0.1); + --white-a3: rgba(255, 255, 255, 0.15); + --white-a4: rgba(255, 255, 255, 0.2); + --white-a5: rgba(255, 255, 255, 0.3); + --white-a6: rgba(255, 255, 255, 0.4); + --white-a7: rgba(255, 255, 255, 0.5); + --white-a8: rgba(255, 255, 255, 0.6); + --white-a9: rgba(255, 255, 255, 0.7); + --yellow-1: #14120B; + --yellow-10: #FFFF57; + --yellow-11: #F5E147; + --yellow-12: #F6EEB4; + --yellow-2: #1B180F; + --yellow-3: #2D2305; + --yellow-4: #362B00; + --yellow-5: #433500; + --yellow-6: #524202; + --yellow-7: #665417; + --yellow-8: #836A21; + --yellow-9: #FFE629; + --yellow-a1: rgba(209, 81, 0, 0.016); + --yellow-a10: #FFFF57; + --yellow-a11: rgba(254, 233, 73, 0.961); + --yellow-a12: rgba(254, 246, 186, 0.965); + --yellow-a2: rgba(249, 180, 0, 0.043); + --yellow-a3: rgba(255, 170, 0, 0.118); + --yellow-a4: rgba(253, 183, 0, 0.157); + --yellow-a5: rgba(254, 187, 0, 0.212); + --yellow-a6: rgba(254, 196, 0, 0.275); + --yellow-a7: rgba(253, 203, 34, 0.361); + --yellow-a8: rgba(253, 202, 50, 0.482); + --yellow-a9: #FFE629; + --yellow-contrast: #1C2024; + --yellow-indicator: #FFE629; + --yellow-surface: rgba(249, 180, 0, 0.043); + --yellow-track: #FFE629; } -:root, -.light, -.light-theme { - --blue-1: #fafdff; - --blue-2: #f3faff; - --blue-3: #e6f4ff; - --blue-4: #d5edff; - --blue-5: #c3e4ff; - --blue-6: #add7fc; - --blue-7: #91c6f5; - --blue-8: #64b0ee; - --blue-9: #023a5f; - --blue-10: #1b4d73; - --blue-11: #2675af; - --blue-12: #023a5f; - - --blue-a1: #0099ff05; - --blue-a2: #0095ff0c; - --blue-a3: #008fff19; - --blue-a4: #0092ff2a; - --blue-a5: #008dff3c; - --blue-a6: #0083f652; - --blue-a7: #007be86e; - --blue-a8: #007de39b; - --blue-a9: #00385efd; - --blue-a10: #003862e4; - --blue-a11: #005da1d9; - --blue-a12: #00385efd; - - --blue-contrast: #fff; - --blue-surface: #f0f9ffcc; - --blue-indicator: #023a5f; - --blue-track: #023a5f; +[data-token-radius-mode='none'] { + --radius-1: 0px; + --radius-2: 0px; + --radius-3: 0px; + --radius-4: 0px; + --radius-5: 0px; + --radius-6: 0px; + --radius-1-max: 0px; + --radius-2-max: 0px; + --radius-3-max: 0px; + --radius-4-max: 0px; + --radius-5-max: 0px; + --radius-6-max: 0px; } -@supports (color: color(display-p3 1 1 1)) { - @media (color-gamut: p3) { - :root, - .light, - .light-theme { - --blue-1: oklch(99.3% 0.0044 245.2); - --blue-2: oklch(98.1% 0.0103 245.2); - --blue-3: oklch(96% 0.0232 245.2); - --blue-4: oklch(93.7% 0.0389 245.2); - --blue-5: oklch(90.5% 0.0536 245.2); - --blue-6: oklch(86.3% 0.0678 245.2); - --blue-7: oklch(80.8% 0.0864 245.2); - --blue-8: oklch(73.2% 0.1177 245.2); - --blue-9: oklch(33.7% 0.0836 245.2); - --blue-10: oklch(40.6% 0.0836 245.2); - --blue-11: oklch(54.3% 0.1177 245.2); - --blue-12: oklch(33.6% 0.0836 245.2); - - --blue-a1: color(display-p3 0.0235 0.5137 1 / 0.016); - --blue-a2: color(display-p3 0.0196 0.5569 0.9137 / 0.044); - --blue-a3: color(display-p3 0.0118 0.5059 0.9569 / 0.087); - --blue-a4: color(display-p3 0.0078 0.4902 0.949 / 0.146); - --blue-a5: color(display-p3 0.0039 0.4824 0.9451 / 0.212); - --blue-a6: color(display-p3 0.0039 0.451 0.9059 / 0.291); - --blue-a7: color(display-p3 0.0039 0.4157 0.8588 / 0.389); - --blue-a8: color(display-p3 0 0.4118 0.8392 / 0.538); - --blue-a9: color(display-p3 0 0.149 0.302 / 0.914); - --blue-a10: color(display-p3 0 0.1647 0.3333 / 0.84); - --blue-a11: color(display-p3 0 0.2745 0.5608 / 0.757); - --blue-a12: color(display-p3 0 0.149 0.302 / 0.914); - - --blue-contrast: #fff; - --blue-surface: color(display-p3 0.9451 0.9725 1 / 0.8); - --blue-indicator: oklch(33.7% 0.0836 245.2); - --blue-track: oklch(33.7% 0.0836 245.2); - } - } +[data-token-radius-mode='small'] { + --radius-1: 1.5px; + --radius-2: 2px; + --radius-3: 3px; + --radius-4: 4px; + --radius-5: 6px; + --radius-6: 8px; + --radius-1-max: 1.5px; + --radius-2-max: 2px; + --radius-3-max: 3px; + --radius-4-max: 4px; + --radius-5-max: 6px; + --radius-6-max: 8px; } -:root, -.light, -.light-theme { - --yellow-1: #fdfdf9; - --yellow-2: #fbfaef; - --yellow-3: #f9f6c8; - --yellow-4: #f3eead; - --yellow-5: #e8e4a2; - --yellow-6: #d9d594; - --yellow-7: #c8c383; - --yellow-8: #b1ad6d; - --yellow-9: #3b3812; - --yellow-10: #4d4a25; - --yellow-11: #7a7537; - --yellow-12: #403d18; - - --yellow-a1: #aaaa0006; - --yellow-a2: #c0b00010; - --yellow-a3: #e4d60037; - --yellow-a4: #dacb0052; - --yellow-a5: #c0b5005d; - --yellow-a6: #a59b016b; - --yellow-a7: #8e84007c; - --yellow-a8: #77700092; - --yellow-a9: #2c2900ed; - --yellow-a10: #2f2b00da; - --yellow-a11: #564f00c8; - --yellow-a12: #2c2900e7; - - --yellow-contrast: #fff; - --yellow-surface: #faf9ebcc; - --yellow-indicator: #3b3812; - --yellow-track: #3b3812; -} - -@supports (color: color(display-p3 1 1 1)) { - @media (color-gamut: p3) { - :root, - .light, - .light-theme { - --yellow-1: oklch(99.3% 0.0048 104.8); - --yellow-2: oklch(98.4% 0.0153 104.8); - --yellow-3: oklch(96.4% 0.0595 104.8); - --yellow-4: oklch(93.8% 0.0841 104.8); - --yellow-5: oklch(90.6% 0.0841 104.8); - --yellow-6: oklch(86.1% 0.0841 104.8); - --yellow-7: oklch(80.7% 0.0841 104.8); - --yellow-8: oklch(73.6% 0.0841 104.8); - --yellow-9: oklch(33.5% 0.0561 104.8); - --yellow-10: oklch(40.4% 0.0561 104.8); - --yellow-11: oklch(55.3% 0.0841 104.8); - --yellow-12: oklch(35.5% 0.0561 104.8); - - --yellow-a1: color(display-p3 0.6745 0.6745 0.0235 / 0.024); - --yellow-a2: color(display-p3 0.7373 0.6706 0.0039 / 0.059); - --yellow-a3: color(display-p3 0.8627 0.8235 0.0078 / 0.197); - --yellow-a4: color(display-p3 0.8275 0.7765 0.0039 / 0.295); - --yellow-a5: color(display-p3 0.7216 0.6902 0.0039 / 0.338); - --yellow-a6: color(display-p3 0.6118 0.5804 0.0039 / 0.393); - --yellow-a7: color(display-p3 0.5216 0.4902 0.0039 / 0.459); - --yellow-a8: color(display-p3 0.4275 0.4078 0 / 0.542); - --yellow-a9: color(display-p3 0.149 0.1373 0 / 0.906); - --yellow-a10: color(display-p3 0.1608 0.149 0 / 0.836); - --yellow-a11: color(display-p3 0.298 0.2784 0 / 0.75); - --yellow-a12: color(display-p3 0.149 0.1412 0 / 0.887); - - --yellow-contrast: #fff; - --yellow-surface: color(display-p3 0.9804 0.9804 0.9255 / 0.8); - --yellow-indicator: oklch(33.5% 0.0561 104.8); - --yellow-track: oklch(33.5% 0.0561 104.8); - } - } +[data-token-radius-mode='medium'] { + --radius-1: 3px; + --radius-2: 4px; + --radius-3: 6px; + --radius-4: 8px; + --radius-5: 12px; + --radius-6: 16px; + --radius-1-max: 3px; + --radius-2-max: 4px; + --radius-3-max: 6px; + --radius-4-max: 8px; + --radius-5-max: 12px; + --radius-6-max: 16px; } -:root, -.light, -.light-theme { - --red-1: #fffcfb; - --red-2: #fff7f5; - --red-3: #ffeae6; - --red-4: #ffd9d1; - --red-5: #ffcac0; - --red-6: #ffb8ac; - --red-7: #ffa295; - --red-8: #fc8576; - --red-9: #770707; - --red-10: #8c231c; - --red-11: #bb4a3f; - --red-12: #700000; - - --red-a1: #ff400004; - --red-a2: #ff33000a; - --red-a3: #ff290019; - --red-a4: #ff2d002e; - --red-a5: #ff29003f; - --red-a6: #ff250053; - --red-a7: #ff20016a; - --red-a8: #fa1c0089; - --red-a9: #730000f8; - --red-a10: #7e0800e3; - --red-a11: #a50f00c0; - --red-a12: #700000; - - --red-contrast: #fff; - --red-surface: #fff5f3cc; - --red-indicator: #770707; - --red-track: #770707; +[data-token-radius-mode='large'] { + --radius-1: 4.5px; + --radius-2: 6px; + --radius-3: 9px; + --radius-4: 12px; + --radius-5: 18px; + --radius-6: 24px; + --radius-1-max: 4.5px; + --radius-2-max: 6px; + --radius-3-max: 9px; + --radius-4-max: 12px; + --radius-5-max: 18px; + --radius-6-max: 24px; } -@supports (color: color(display-p3 1 1 1)) { - @media (color-gamut: p3) { - :root, - .light, - .light-theme { - --red-1: oklch(99.4% 0.0041 28.35); - --red-2: oklch(98.3% 0.0108 28.35); - --red-3: oklch(95.6% 0.0274 28.35); - --red-4: oklch(92.8% 0.0617 28.35); - --red-5: oklch(89.6% 0.0809 28.35); - --red-6: oklch(85.7% 0.0975 28.35); - --red-7: oklch(80.7% 0.1168 28.35); - --red-8: oklch(74.5% 0.1479 28.35); - --red-9: oklch(36.2% 0.1424 28.35); - --red-10: oklch(42.7% 0.1424 28.35); - --red-11: oklch(55.7% 0.1479 28.35); - --red-12: oklch(33.9% 0.1424 28.35); - - --red-a1: color(display-p3 0.7569 0.2667 0.0235 / 0.016); - --red-a2: color(display-p3 0.9059 0.2196 0.0235 / 0.04); - --red-a3: color(display-p3 0.8353 0.1765 0.0118 / 0.095); - --red-a4: color(display-p3 0.8706 0.1804 0.0039 / 0.177); - --red-a5: color(display-p3 0.8706 0.1686 0.0039 / 0.24); - --red-a6: color(display-p3 0.8627 0.1529 0.0039 / 0.314); - --red-a7: color(display-p3 0.8745 0.1294 0 / 0.4); - --red-a8: color(display-p3 0.8588 0.1216 0 / 0.518); - --red-a9: color(display-p3 0.3882 0.0235 0 / 0.938); - --red-a10: color(display-p3 0.4314 0.0471 0 / 0.867); - --red-a11: color(display-p3 0.5647 0.0667 0 / 0.73); - --red-a12: color(display-p3 0.3765 0.0275 0 / 0.965); - - --red-contrast: #fff; - --red-surface: color(display-p3 1 0.9608 0.9569 / 0.8); - --red-indicator: oklch(36.2% 0.1424 28.35); - --red-track: oklch(36.2% 0.1424 28.35); - } - } +[data-token-radius-mode='full'] { + --radius-1: 6px; + --radius-2: 8px; + --radius-3: 12px; + --radius-4: 16px; + --radius-5: 24px; + --radius-6: 32px; + --radius-1-max: 50%; + --radius-2-max: 50%; + --radius-3-max: 50%; + --radius-4-max: 50%; + --radius-5-max: 50%; + --radius-6-max: 50%; } -:root, -.light, -.light-theme { - --violet-1: #fcfcff; - --violet-2: #f8f8ff; - --violet-3: #f0eeff; - --violet-4: #e6e4ff; - --violet-5: #dbd7ff; - --violet-6: #cdc7ff; - --violet-7: #bbb1ff; - --violet-8: #a694ff; - --violet-9: #40009a; - --violet-10: #5025b0; - --violet-11: #6a3fdd; - --violet-12: #3a0090; - - --violet-a1: #0000ff03; - --violet-a2: #0000ff07; - --violet-a3: #1e00ff11; - --violet-a4: #1300ff1b; - --violet-a5: #1a00ff28; - --violet-a6: #1c00ff38; - --violet-a7: #2100ff4e; - --violet-a8: #2b01ff6b; - --violet-a9: #40009a; - --violet-a10: #3200a3da; - --violet-a11: #3900d2c0; - --violet-a12: #3a0090; - - --violet-contrast: #fff; - --violet-surface: #f6f6ffcc; - --violet-indicator: #40009a; - --violet-track: #40009a; +[data-token-space-scale='90'] { + --space-1: 3.6px; + --space-2: 7.2px; + --space-3: 10.8px; + --space-4: 14.4px; + --space-5: 21.6px; + --space-6: 28.8px; + --space-7: 36px; + --space-8: 43.2px; + --space-9: 57.6px; } -@supports (color: color(display-p3 1 1 1)) { - @media (color-gamut: p3) { - :root, - .light, - .light-theme { - --violet-1: oklch(99.3% 0.007 288.3); - --violet-2: oklch(98.2% 0.0167 288.3); - --violet-3: oklch(95.9% 0.0444 288.3); - --violet-4: oklch(93.3% 0.0708 288.3); - --violet-5: oklch(90.1% 0.0985 288.3); - --violet-6: oklch(86% 0.129 288.3); - --violet-7: oklch(80.4% 0.1696 288.3); - --violet-8: oklch(73.3% 0.2242 288.3); - --violet-9: oklch(35.2% 0.2011 288.3); - --violet-10: oklch(41.8% 0.2011 288.3); - --violet-11: oklch(51.6% 0.2242 288.3); - --violet-12: oklch(32.2% 0.2011 288.3); - - --violet-a1: color(display-p3 0.0235 0.0235 1 / 0.012); - --violet-a2: color(display-p3 0.0235 0.0235 0.8627 / 0.028); - --violet-a3: color(display-p3 0.1255 0.0078 0.9451 / 0.067); - --violet-a4: color(display-p3 0.0784 0.0039 0.9294 / 0.106); - --violet-a5: color(display-p3 0.0784 0.0039 0.9255 / 0.157); - --violet-a6: color(display-p3 0.0941 0.0039 0.9294 / 0.22); - --violet-a7: color(display-p3 0.1059 0.0039 0.9255 / 0.306); - --violet-a8: color(display-p3 0.1333 0.0039 0.9373 / 0.416); - --violet-a9: color(display-p3 0.2078 0 0.5686 / 0.977); - --violet-a10: color(display-p3 0.1608 0 0.6 / 0.848); - --violet-a11: color(display-p3 0.1843 0 0.7804 / 0.746); - --violet-a12: color(display-p3 0.1882 0 0.5333 / 0.981); - - --violet-contrast: #fff; - --violet-surface: color(display-p3 0.9686 0.9686 1 / 0.8); - --violet-indicator: oklch(35.2% 0.2011 288.3); - --violet-track: oklch(35.2% 0.2011 288.3); - } - } +[data-token-space-scale='95'] { + --space-1: 3.8px; + --space-2: 7.6px; + --space-3: 11.4px; + --space-4: 15.2px; + --space-5: 22.8px; + --space-6: 30.4px; + --space-7: 38px; + --space-8: 45.6px; + --space-9: 60.8px; } -:root, -.light, -.light-theme { - --green-1: #fafefa; - --green-2: #f4fbf4; - --green-3: #e3f9e2; - --green-4: #d1f4d0; - --green-5: #bdedbc; - --green-6: #a5e2a4; - --green-7: #91cf90; - --green-8: #78b678; - --green-9: #1e421f; - --green-10: #305531; - --green-11: #407c42; - --green-12: #1c401d; - - --green-a1: #00cc0005; - --green-a2: #00a3000b; - --green-a3: #09cb001d; - --green-a4: #06c4002f; - --green-a5: #04bb0043; - --green-a6: #03ae015b; - --green-a7: #0391006f; - --green-a8: #00760087; - --green-a9: #002901e1; - --green-a10: #002e01cf; - --green-a11: #005003bf; - --green-a12: #002901e3; - - --green-contrast: #fff; - --green-surface: #f1faf1cc; - --green-indicator: #1e421f; - --green-track: #1e421f; +[data-token-space-scale='100'] { + --space-1: 4px; + --space-2: 8px; + --space-3: 12px; + --space-4: 16px; + --space-5: 24px; + --space-6: 32px; + --space-7: 40px; + --space-8: 48px; + --space-9: 64px; } -@supports (color: color(display-p3 1 1 1)) { - @media (color-gamut: p3) { - :root, - .light, - .light-theme { - --green-1: oklch(99.4% 0.0067 144.3); - --green-2: oklch(98.2% 0.0123 144.3); - --green-3: oklch(96% 0.0379 144.3); - --green-4: oklch(93.4% 0.0605 144.3); - --green-5: oklch(90% 0.0827 144.3); - --green-6: oklch(85.6% 0.1053 144.3); - --green-7: oklch(79.7% 0.1086 144.3); - --green-8: oklch(71.8% 0.1086 144.3); - --green-9: oklch(34.2% 0.0724 144.3); - --green-10: oklch(41% 0.0724 144.3); - --green-11: oklch(53.1% 0.1086 144.3); - --green-12: oklch(33.4% 0.0724 144.3); - - --green-a1: color(display-p3 0.2157 0.8039 0.0196 / 0.02); - --green-a2: color(display-p3 0.0235 0.6118 0.0235 / 0.04); - --green-a3: color(display-p3 0.1137 0.7412 0.0039 / 0.106); - --green-a4: color(display-p3 0.1176 0.7294 0.0039 / 0.173); - --green-a5: color(display-p3 0.1176 0.702 0.0039 / 0.248); - --green-a6: color(display-p3 0.098 0.6392 0.0039 / 0.334); - --green-a7: color(display-p3 0.0784 0.5255 0.0039 / 0.412); - --green-a8: color(display-p3 0.0627 0.4196 0 / 0.506); - --green-a9: color(display-p3 0.0196 0.1373 0 / 0.863); - --green-a10: color(display-p3 0.0196 0.1529 0 / 0.793); - --green-a11: color(display-p3 0.0392 0.2784 0 / 0.718); - --green-a12: color(display-p3 0.0196 0.1373 0 / 0.871); - - --green-contrast: #fff; - --green-surface: color(display-p3 0.9569 0.9804 0.9529 / 0.8); - --green-indicator: oklch(34.2% 0.0724 144.3); - --green-track: oklch(34.2% 0.0724 144.3); - } - } +[data-token-space-scale='105'] { + --space-1: 4.2px; + --space-2: 8.4px; + --space-3: 13.8px; + --space-4: 18.4px; + --space-5: 25.2px; + --space-6: 33.6px; + --space-7: 42px; + --space-8: 50.4px; + --space-9: 67.2px; } -:root, -.light, -.light-theme { - --orange-1: #fefcfa; - --orange-2: #fff5ec; - --orange-3: #ffead4; - --orange-4: #ffd9b4; - --orange-5: #ffcb9c; - --orange-6: #ffbc80; - --orange-7: #fda969; - --orange-8: #e99656; - --orange-9: #5b2d00; - --orange-10: #6f3f17; - --orange-11: #b56722; - --orange-12: #5b2d00; - - --orange-a1: #cc660005; - --orange-a2: #ff790013; - --orange-a3: #ff83012b; - --orange-a4: #ff7e014b; - --orange-a5: #ff7a0063; - --orange-a6: #ff79007f; - --orange-a7: #fc6d0096; - --orange-a8: #de6100a9; - --orange-a9: #5b2d00; - --orange-a10: #612c00e8; - --orange-a11: #aa5000dd; - --orange-a12: #5b2d00; - - --orange-contrast: #fff; - --orange-surface: #fff3e7cc; - --orange-indicator: #5b2d00; - --orange-track: #5b2d00; +[data-token-space-scale='110'] { + --space-1: 4.4px; + --space-2: 8.8px; + --space-3: 13.2px; + --space-4: 17.6px; + --space-5: 26.4px; + --space-6: 35.2px; + --space-7: 44px; + --space-8: 52.8px; + --space-9: 70.4px; } - -@supports (color: color(display-p3 1 1 1)) { - @media (color-gamut: p3) { - :root, - .light, - .light-theme { - --orange-1: oklch(99.2% 0.0033 56.99); - --orange-2: oklch(97.9% 0.019 56.99); - --orange-3: oklch(95.8% 0.0456 56.99); - --orange-4: oklch(92% 0.1004 56.99); - --orange-5: oklch(89% 0.1276 56.99); - --orange-6: oklch(85.7% 0.1276 56.99); - --orange-7: oklch(80.5% 0.1276 56.99); - --orange-8: oklch(74.5% 0.1276 56.99); - --orange-9: oklch(35.2% 0.0851 56.99); - --orange-10: oklch(41.8% 0.0851 56.99); - --orange-11: oklch(59.2% 0.1276 56.99); - --orange-12: oklch(35% 0.0851 56.99); - - --orange-a1: color(display-p3 0.8039 0.4118 0.0196 / 0.02); - --orange-a2: color(display-p3 0.8902 0.451 0.0078 / 0.071); - --orange-a3: color(display-p3 0.902 0.502 0.0039 / 0.157); - --orange-a4: color(display-p3 0.9176 0.4745 0.0039 / 0.275); - --orange-a5: color(display-p3 0.9176 0.4667 0.0039 / 0.365); - --orange-a6: color(display-p3 0.9176 0.4588 0.0039 / 0.463); - --orange-a7: color(display-p3 0.898 0.4118 0 / 0.546); - --orange-a8: color(display-p3 0.7843 0.3608 0 / 0.62); - --orange-a9: color(display-p3 0.302 0.1451 0 / 0.953); - --orange-a10: color(display-p3 0.3216 0.149 0 / 0.875); - --orange-a11: color(display-p3 0.5843 0.2784 0 / 0.804); - --orange-a12: color(display-p3 0.302 0.1451 0 / 0.953); - - --orange-contrast: #fff; - --orange-surface: color(display-p3 1 0.9569 0.9137 / 0.8); - --orange-indicator: oklch(35.2% 0.0851 56.99); - --orange-track: oklch(35.2% 0.0851 56.99); - } - } -} */ diff --git a/package.json b/package.json index 5f4bc45..823cc18 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,8 @@ "tsc:stories": "tsc -p tsconfig.stories.json --pretty", "tsc": "npm run tsc:library && npm run tsc:stories", "format": "prettier --write .", - "chromatic": "npx chromatic" + "chromatic": "npx chromatic", + "color-tokens": "node scripts/sync-figma-tokens.js" }, "exports": { ".": { @@ -77,7 +78,7 @@ "@types/react-dom": "^18.3.1", "@vitejs/plugin-react": "5.1.1", "@vitejs/plugin-react-swc": "4.2.0", - "ajv": "8.17.1", + "ajv": "8.18.0", "chromatic": "13.3.4", "classnames": "2.5.1", "date-fns": "4.1.0", @@ -93,13 +94,13 @@ "react": "^18.3.1", "react-day-picker": "9.13.0", "react-dom": "^18.3.1", - "storybook": "10.2.3", + "storybook": "^10.2.13", "typescript": "5.9.3", "typescript-eslint": "8.46.2", "vite": "7.2.4", - "vitest": "4.0.16", "vite-plugin-dts": "4.5.4", - "vite-plugin-lib-inject-css": "2.2.2" + "vite-plugin-lib-inject-css": "2.2.2", + "vitest": "4.0.16" }, "dependencies": { "@radix-ui/react-popover": "1.1.15" diff --git a/scripts/sync-figma-tokens.js b/scripts/sync-figma-tokens.js new file mode 100644 index 0000000..8ead0ea --- /dev/null +++ b/scripts/sync-figma-tokens.js @@ -0,0 +1,500 @@ +#!/usr/bin/env node +import fs from 'node:fs'; +import path from 'node:path'; + +const ROOT = process.env.FIGMA_TOKENS_ROOT || './scripts/tokens'; +const FILES = { + light: path.join(ROOT, 'Light.tokens.json'), + dark: path.join(ROOT, 'Dark.tokens.json'), + radiusModes: path.join(ROOT, 'Radius.tokens.json'), + spaceModes: path.join(ROOT, 'Space.tokens.json'), + theme: path.join(ROOT, 'Theme.tokens.json'), +}; +const OUT = path.join(process.cwd(), './lib/styles/colors.css'); +// Figma exports can emit alpha like 0.999999 for visually opaque colors. +// Treat near-opaque values as fully opaque so output stays canonical (#RRGGBB). +const ALPHA_OPAQUE_THRESHOLD = 0.999; + +const readJson = (filePath) => { + try { + const content = fs.readFileSync(filePath, 'utf8'); + try { + return JSON.parse(content); + } catch (parseError) { + throw new Error( + `Failed to parse JSON from "${filePath}". ` + + 'Ensure the file contains valid JSON exported from Figma. ' + + `Original error: ${parseError.message}`, + ); + } + } catch (err) { + if (err && err.code === 'ENOENT') { + throw new Error( + `Required Figma tokens file not found: "${filePath}". ` + + 'Make sure you have exported tokens from Figma to this path.', + ); + } + throw new Error( + `Failed to read Figma tokens file "${filePath}". ` + + `Original error: ${err.message}`, + ); + } +}; + +const walkTokenLeaves = (obj, pathParts = [], out = []) => { + if (!obj || typeof obj !== 'object') return out; + if ('$type' in obj && '$value' in obj) { + out.push({ + path: pathParts.join('/'), + type: obj.$type, + value: obj.$value, + extensions: obj.$extensions || {}, + }); + return out; + } + for (const [key, value] of Object.entries(obj)) { + if (key === '$extensions') continue; + walkTokenLeaves(value, [...pathParts, key], out); + } + return out; +}; + +const normalizeFigmaRef = (value) => value.replace(/^[{]|[}]$/g, '').replace(/\./g, '/'); + +const toColor = (value) => { + if (typeof value === 'string') return value; + if (value && typeof value === 'object' && typeof value.hex === 'string') { + const hex = value.hex.toUpperCase(); + const alpha = typeof value.alpha === 'number' ? value.alpha : 1; + if (alpha >= ALPHA_OPAQUE_THRESHOLD) return hex; + const r = parseInt(hex.slice(1, 3), 16); + const g = parseInt(hex.slice(3, 5), 16); + const b = parseInt(hex.slice(5, 7), 16); + return `rgba(${r}, ${g}, ${b}, ${alpha.toFixed(3).replace(/0+$/, '').replace(/\.$/, '')})`; + } + throw new Error(`Unsupported color value: ${JSON.stringify(value)}`); +}; + +const parseColorToRgb = (value) => { + if (typeof value !== 'string') return null; + const trimmed = value.trim(); + const hexMatch = trimmed.match(/^#([0-9a-fA-F]{6})$/); + if (hexMatch) { + const hex = hexMatch[1]; + return { + r: parseInt(hex.slice(0, 2), 16), + g: parseInt(hex.slice(2, 4), 16), + b: parseInt(hex.slice(4, 6), 16), + }; + } + const rgbMatch = trimmed.match( + /^rgba?\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)(?:\s*,\s*[0-9.]+\s*)?\)$/ + ); + if (rgbMatch) { + return { + r: Number(rgbMatch[1]), + g: Number(rgbMatch[2]), + b: Number(rgbMatch[3]), + }; + } + return null; +}; + +const chooseContrast = (colorValue, lightContrast, darkContrast) => { + const rgb = parseColorToRgb(colorValue); + if (!rgb) return lightContrast; + const luminance = (0.2126 * rgb.r + 0.7152 * rgb.g + 0.0722 * rgb.b) / 255; + return luminance > 0.5 ? darkContrast : lightContrast; +}; + +const kebab = (value) => + value + .replace(/([a-z0-9])([A-Z])/g, '$1-$2') + .replace(/\s+/g, '-') + .replace(/%/g, '') + .replace(/[^a-zA-Z0-9-]/g, '-') + .replace(/--+/g, '-') + .toLowerCase() + .replace(/^-|-$/g, ''); + +const lightTokens = walkTokenLeaves(readJson(FILES.light)); +const darkTokens = walkTokenLeaves(readJson(FILES.dark)); +const themeTokens = walkTokenLeaves(readJson(FILES.theme)); +const themeTokenByPath = new Map(themeTokens.map((token) => [token.path, token])); +const radiusModes = readJson(FILES.radiusModes); +const spaceModes = readJson(FILES.spaceModes); + +const makeColorMap = (tokens) => { + const map = new Map(); + for (const token of tokens) { + if (token.type !== 'color') continue; + map.set(token.path, toColor(token.value)); + } + return map; +}; + +const lightMap = makeColorMap(lightTokens); +const darkMap = makeColorMap(darkTokens); + +const readModeToken = (collection, mode, key) => { + const token = collection?.[mode]?.[key] ?? (key === '9' ? collection?.[mode]?.['09'] : undefined); + if (!token || typeof token !== 'object' || !('$value' in token)) { + return undefined; + } + return token.$value; +}; + +const resolveThemeColor = (token, fallbackMap) => { + if (typeof token.value === 'string' && token.value.startsWith('{') && token.value.endsWith('}')) { + const targetPath = normalizeFigmaRef(token.value); + const targetToken = themeTokenByPath.get(targetPath); + if (targetToken) { + return resolveThemeColor(targetToken, fallbackMap); + } + } + const aliasName = token.extensions?.['com.figma.aliasData']?.targetVariableName; + if (aliasName && fallbackMap.has(aliasName)) { + return fallbackMap.get(aliasName); + } + return toColor(token.value); +}; + +const collectThemeColors = () => { + const entries = []; + + const push = (pathPrefix, cssPrefix, alpha = false) => { + const prefixParts = pathPrefix.split('/'); + for (const token of themeTokens) { + if (token.type !== 'color') continue; + const tokenParts = token.path.split('/'); + if (tokenParts.length !== prefixParts.length + 1) continue; + if (!prefixParts.every((part, index) => tokenParts[index] === part)) continue; + const suffix = tokenParts[tokenParts.length - 1]; + const numericSuffix = kebab(suffix); + entries.push({ + cssVar: alpha ? `--${cssPrefix}-a${numericSuffix}` : `--${cssPrefix}-${numericSuffix}`, + light: resolveThemeColor(token, lightMap), + dark: resolveThemeColor(token, darkMap), + }); + } + }; + + // Keep accent from Theme A; canonical gray/blue/green/yellow/red/orange + // are sourced directly from the Color scheme exports. + push('Colors/Accent/Accent', 'accent'); + push('Colors/Accent/Accent Alpha', 'accent', true); + + return entries; +}; + +const collectCanonicalSchemePalette = (paletteName, cssPrefix) => { + const entries = []; + for (let i = 1; i <= 12; i += 1) { + const colorPath = `Colors/${paletteName}/${i}`; + const alphaPath = `Colors/${paletteName} Alpha/${i}`; + if (!lightMap.has(colorPath) || !darkMap.has(colorPath)) continue; + entries.push({ + cssVar: `--${cssPrefix}-${i}`, + light: lightMap.get(colorPath), + dark: darkMap.get(colorPath), + }); + if (lightMap.has(alphaPath) && darkMap.has(alphaPath)) { + entries.push({ + cssVar: `--${cssPrefix}-a${i}`, + light: lightMap.get(alphaPath), + dark: darkMap.get(alphaPath), + }); + } + } + return entries; +}; + +const collectSchemePalette = (paletteName) => { + const name = kebab(paletteName); + const full = []; + for (let i = 1; i <= 12; i += 1) { + const colorPath = `Colors/${paletteName}/${i}`; + const alphaPath = `Colors/${paletteName} Alpha/${i}`; + if (!lightMap.has(colorPath) || !darkMap.has(colorPath)) { + continue; + } + full.push({ + cssVar: `--${name}-${i}`, + light: lightMap.get(colorPath), + dark: darkMap.get(colorPath), + }); + if (lightMap.has(alphaPath) && darkMap.has(alphaPath)) { + full.push({ + cssVar: `--${name}-a${i}`, + light: lightMap.get(alphaPath), + dark: darkMap.get(alphaPath), + }); + } + } + return full; +}; + +const buildColorEntries = () => { + const entries = []; + + // Semantic palette vars used by Deep UI components. + entries.push(...collectThemeColors()); + + // Canonical palette variables map directly to the Figma Color scheme export. + entries.push(...collectCanonicalSchemePalette('Gray', 'gray')); + entries.push(...collectCanonicalSchemePalette('Blue', 'blue')); + entries.push(...collectCanonicalSchemePalette('Green', 'green')); + entries.push(...collectCanonicalSchemePalette('Yellow', 'yellow')); + entries.push(...collectCanonicalSchemePalette('Red', 'red')); + entries.push(...collectCanonicalSchemePalette('Orange', 'orange')); + + // Keep full base palettes available to avoid regressions in downstream styles. + const palettes = ['Slate', 'Indigo', 'Sky', 'Green', 'Yellow', 'Red', 'Orange', 'Gray']; + for (const palette of palettes) { + entries.push(...collectSchemePalette(palette)); + } + + // Tokens/Colors semantic values from Theme A. + const tokenMap = new Map( + themeTokens + .filter((token) => token.path.startsWith('Tokens/Colors/') && token.type === 'color') + .map((token) => [token.path.replace('Tokens/Colors/', ''), token]) + ); + + const addTokenColor = (tokenName, cssVarName) => { + const token = tokenMap.get(tokenName); + if (!token) return; + entries.push({ + cssVar: `--${cssVarName}`, + light: resolveThemeColor(token, lightMap), + dark: resolveThemeColor(token, darkMap), + }); + }; + + addTokenColor('page-background', 'color-background'); + addTokenColor('surface', 'color-background-header'); + addTokenColor('text', 'color-text'); + addTokenColor('overlay', 'color-overlay'); + addTokenColor('accent-contrast', 'accent-contrast'); + addTokenColor('accent-surface', 'accent-surface'); + + const whiteContrastToken = tokenMap.get('white-contrast'); + const blackContrastToken = tokenMap.get('black-contrast'); + const whiteContrast = whiteContrastToken + ? { + light: resolveThemeColor(whiteContrastToken, lightMap), + dark: resolveThemeColor(whiteContrastToken, darkMap), + } + : { light: '#FFFFFF', dark: '#FFFFFF' }; + const blackContrast = blackContrastToken + ? { + light: resolveThemeColor(blackContrastToken, lightMap), + dark: resolveThemeColor(blackContrastToken, darkMap), + } + : { light: '#000000', dark: '#000000' }; + + // Overlay alpha ramps from color scheme. + for (let i = 1; i <= 12; i += 1) { + const whitePath = `Overlays/White Alpha/${i}`; + const blackPath = `Overlays/Black Alpha/${i}`; + if (lightMap.has(whitePath) && darkMap.has(whitePath)) { + entries.push({ + cssVar: `--white-a${i}`, + light: lightMap.get(whitePath), + dark: darkMap.get(whitePath), + }); + } + if (lightMap.has(blackPath) && darkMap.has(blackPath)) { + entries.push({ + cssVar: `--black-a${i}`, + light: lightMap.get(blackPath), + dark: darkMap.get(blackPath), + }); + } + } + + // Stable order and dedupe by css var (first entry wins). + const deduped = new Map(); + for (const entry of entries) { + if (!deduped.has(entry.cssVar)) deduped.set(entry.cssVar, entry); + } + + const companionPalettes = ['accent', 'gray', 'blue', 'green', 'yellow', 'red', 'orange']; + for (const palette of companionPalettes) { + const a2 = deduped.get(`--${palette}-a2`); + const nine = deduped.get(`--${palette}-9`); + if (!deduped.has(`--${palette}-contrast`)) { + deduped.set(`--${palette}-contrast`, { + cssVar: `--${palette}-contrast`, + light: chooseContrast(nine?.light, whiteContrast.light, blackContrast.light), + dark: chooseContrast(nine?.dark, whiteContrast.dark, blackContrast.dark), + }); + } + if (!deduped.has(`--${palette}-surface`) && a2) { + deduped.set(`--${palette}-surface`, { + cssVar: `--${palette}-surface`, + light: a2.light, + dark: a2.dark, + }); + } + if (!deduped.has(`--${palette}-indicator`) && nine) { + deduped.set(`--${palette}-indicator`, { + cssVar: `--${palette}-indicator`, + light: nine.light, + dark: nine.dark, + }); + } + if (!deduped.has(`--${palette}-track`) && nine) { + deduped.set(`--${palette}-track`, { + cssVar: `--${palette}-track`, + light: nine.light, + dark: nine.dark, + }); + } + } + + return [...deduped.values()].sort((a, b) => a.cssVar.localeCompare(b.cssVar)); +}; + +const formatNumeric = (value) => { + const numeric = Number(value); + if (!Number.isFinite(numeric)) { + throw new Error(`Expected a numeric token value, received: ${String(value)}`); + } + return Number.isInteger(numeric) ? String(numeric) : String(Number(numeric.toFixed(3))); +}; + +const unitlessNumberPattern = /^[+-]?(\d+(\.\d+)?|\.\d+)$/; + +const measurementToken = (value, unit = 'px') => { + if (typeof value === 'number') { + return `${formatNumeric(value)}${unit}`; + } + if (typeof value === 'string') { + const trimmed = value.trim(); + if (!trimmed) { + throw new Error('Expected a non-empty measurement token string.'); + } + if (unit && unitlessNumberPattern.test(trimmed)) { + return `${formatNumeric(trimmed)}${unit}`; + } + // Keep explicit CSS units/percentages/functions exactly as provided. + return trimmed; + } + throw new Error(`Unsupported measurement token value: ${JSON.stringify(value)}`); +}; + +const collectNonColorTokens = () => { + const lines = []; + + // Radius from explicit radius mode file only. If a token is missing, do not emit + // an override so Radix defaults remain in effect. + for (const key of ['1', '2', '3', '4', '5', '6', '1-max', '2-max', '3-max', '4-max', '5-max', '6-max']) { + const radiusValue = readModeToken(radiusModes, 'Medium', key); + if (radiusValue !== undefined) { + lines.push(` --radius-${kebab(key)}: ${measurementToken(radiusValue)};`); + } + } + + // Spacing from explicit scale file (100% mode as default). + for (const key of ['1', '2', '3', '4', '5', '6', '7', '8', '9']) { + lines.push(` --space-${kebab(key)}: ${measurementToken(readModeToken(spaceModes, '100%', key))};`); + } + + // Typography from Theme A. + for (const token of themeTokens) { + if (token.path.startsWith('Typography/Font size/') && token.type === 'number') { + const suffix = token.path.replace('Typography/Font size/', ''); + lines.push(` --font-size-${kebab(suffix)}: ${measurementToken(token.value)};`); + } + if (token.path.startsWith('Typography/Line height/') && token.type === 'number') { + const suffix = token.path.replace('Typography/Line height/', ''); + lines.push(` --line-height-${kebab(suffix)}: ${measurementToken(token.value)};`); + } + if (token.path.startsWith('Typography/Letter spacing/') && token.type === 'number') { + const suffix = token.path.replace('Typography/Letter spacing/', ''); + lines.push(` --letter-spacing-${kebab(suffix)}: ${measurementToken(token.value, 'px')};`); + } + if (token.path.startsWith('Typography/Font weight/') && (token.type === 'number' || token.type === 'string')) { + const suffix = token.path.replace('Typography/Font weight/', ''); + lines.push(` --font-weight-${kebab(suffix)}: ${measurementToken(token.value, '')};`); + } + if (token.path.startsWith('Typography/Font family/') && token.type === 'string') { + const suffix = token.path.replace('Typography/Font family/', ''); + lines.push(` --font-family-${kebab(suffix)}: ${token.value};`); + } + } + + lines.sort(); + return lines; +}; + +const colorEntries = buildColorEntries(); +const nonColorLines = collectNonColorTokens(); + +const toBlock = (selector, lines) => `${selector} {\n${lines.join('\n')}\n}\n`; + +const lightLines = colorEntries.map((entry) => ` ${entry.cssVar}: ${entry.light};`); +const darkLines = colorEntries.map((entry) => ` ${entry.cssVar}: ${entry.dark};`); + +const radiusModeSelectors = ['None', 'Small', 'Medium', 'Large', 'Full']; +const radiusModeBlocks = radiusModeSelectors + .map((mode) => { + const lines = ['1', '2', '3', '4', '5', '6', '1-max', '2-max', '3-max', '4-max', '5-max', '6-max'] + .map((key) => { + const radiusValue = readModeToken(radiusModes, mode, key); + if (radiusValue === undefined) return null; + return ` --radius-${kebab(key)}: ${measurementToken(radiusValue)};`; + }) + .filter(Boolean); + + if (lines.length === 0) return ''; + return toBlock(`[data-token-radius-mode='${mode.toLowerCase()}']`, lines); + }) + .filter(Boolean) + .join('\n'); + +const spaceScaleSelectors = ['90%', '95%', '100%', '105%', '110%']; +const spaceScaleBlocks = spaceScaleSelectors + .map((scale) => { + const lines = ['1', '2', '3', '4', '5', '6', '7', '8', '9'].map( + (key) => ` --space-${kebab(key)}: ${measurementToken(readModeToken(spaceModes, scale, key))};` + ); + return toBlock(`[data-token-space-scale='${kebab(scale)}']`, lines); + }) + .join('\n'); + +const commentPath = (filePath) => { + const relative = path.relative(ROOT, filePath); + if (relative && !relative.startsWith('..') && !path.isAbsolute(relative)) { + return relative; + } + return path.basename(filePath); +}; + +const css = `/** + * Generated from Figma token exports. + * Source files: + * - ${commentPath(FILES.light)} + * - ${commentPath(FILES.dark)} + * - ${commentPath(FILES.theme)} + * - ${commentPath(FILES.radiusModes)} + * - ${commentPath(FILES.spaceModes)} + * + * Do not edit manually. Re-run: + * node scripts/sync-figma-tokens.js + */ + +:root, +.light, +.light-theme { +${nonColorLines.join('\n')} +} + +${toBlock(':root,\n.light,\n.light-theme', lightLines)} +${toBlock('.dark,\n.dark-theme', darkLines)} +${radiusModeBlocks} +${spaceScaleBlocks}`; + +fs.writeFileSync(OUT, css); +console.log(`Wrote ${OUT} with ${colorEntries.length} color vars and ${nonColorLines.length} non-color vars.`); diff --git a/scripts/tokens/Dark.tokens.json b/scripts/tokens/Dark.tokens.json new file mode 100644 index 0000000..f8ba05f --- /dev/null +++ b/scripts/tokens/Dark.tokens.json @@ -0,0 +1,16155 @@ +{ + "Variables": { + "Misc": { + "white-to-dark": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.06666667014360428, + 0.07450980693101883 + ], + "alpha": 1, + "hex": "#111113" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32718", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:df8f90ca5515faa87e2119f2d3f21bca3094415b/-1:-1", + "targetVariableName": "Colors/Neutral/Neutral/1", + "targetVariableSetId": "VariableCollectionId:30bb878463a6ae8733892f82b140e5c644dcbe6c/-1:-1", + "targetVariableSetName": "Theme ✦" + }, + "com.figma.isOverride": true + } + }, + "white-to-dark-2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.25, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32719", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "dark-to-white": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 1, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32720", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:28952341e8abefdf84c04c1ec4c29219d9a48886/-1:-1", + "targetVariableName": "Colors/Default/white", + "targetVariableSetId": "VariableCollectionId:30bb878463a6ae8733892f82b140e5c644dcbe6c/-1:-1", + "targetVariableSetName": "Theme ✦" + }, + "com.figma.isOverride": true + } + }, + "backdrop": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.75, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32721", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + } + }, + "Effects": { + "translucent": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.11372549086809158, + 0.12941177189350128 + ], + "alpha": 0.699999988079071, + "hex": "#1D1D21" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32722", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "solid": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0941176488995552, + 0.09803921729326248, + 0.10588235408067703 + ], + "alpha": 1, + "hex": "#18191B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32723", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:fc60a3cc7ad7be3c6844a4ff4894a85e7539a4b6/-1:-1", + "targetVariableName": "Colors/Neutral/Neutral/2", + "targetVariableSetId": "VariableCollectionId:30bb878463a6ae8733892f82b140e5c644dcbe6c/-1:-1", + "targetVariableSetName": "Theme ✦" + }, + "com.figma.isOverride": true + } + } + } + }, + "Colors": { + "Gray": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.06666667014360428, + 0.06666667014360428 + ], + "alpha": 1, + "hex": "#111111" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32724", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.09803921729326248, + 0.09803921729326248 + ], + "alpha": 1, + "hex": "#191919" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32725", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.13333334028720856, + 0.13333334028720856, + 0.13333334028720856 + ], + "alpha": 1, + "hex": "#222222" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32726", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16470588743686676, + 0.16470588743686676, + 0.16470588743686676 + ], + "alpha": 1, + "hex": "#2A2A2A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32727", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1921568661928177, + 0.1921568661928177, + 0.1921568661928177 + ], + "alpha": 1, + "hex": "#313131" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32728", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.22745098173618317, + 0.22745098173618317, + 0.22745098173618317 + ], + "alpha": 1, + "hex": "#3A3A3A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32729", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2823529541492462, + 0.2823529541492462, + 0.2823529541492462 + ], + "alpha": 1, + "hex": "#484848" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32730", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3764705955982208, + 0.3764705955982208, + 0.3764705955982208 + ], + "alpha": 1, + "hex": "#606060" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32731", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4313725531101227, + 0.4313725531101227, + 0.4313725531101227 + ], + "alpha": 1, + "hex": "#6E6E6E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32732", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48235294222831726, + 0.48235294222831726, + 0.48235294222831726 + ], + "alpha": 1, + "hex": "#7B7B7B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32733", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7058823704719543, + 0.7058823704719543, + 0.7058823704719543 + ], + "alpha": 1, + "hex": "#B4B4B4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32734", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.9333333373069763, + 0.9333333373069763 + ], + "alpha": 1, + "hex": "#EEEEEE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32735", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Gray Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32736", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.03530000150203705, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32737", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.0706000030040741, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32738", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.10589999705553055, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32739", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.13330000638961792, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32740", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.17249999940395355, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32741", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.2313999980688095, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32742", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.33329999446868896, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32743", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.3921999931335449, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32744", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.4471000134944916, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32745", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.6862999796867371, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32746", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.9294000267982483, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32747", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Mauve": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.06666667014360428, + 0.07450980693101883 + ], + "alpha": 1, + "hex": "#121113" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32748", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10196078568696976, + 0.09803921729326248, + 0.10588235408067703 + ], + "alpha": 1, + "hex": "#1A191B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32749", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.13725490868091583, + 0.13333334028720856, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#232225" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32750", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16862745583057404, + 0.16078431904315948, + 0.1764705926179886 + ], + "alpha": 1, + "hex": "#2B292D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32751", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.19607843458652496, + 0.1882352977991104, + 0.2078431397676468 + ], + "alpha": 1, + "hex": "#323035" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32752", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23529411852359772, + 0.2235294133424759, + 0.24705882370471954 + ], + "alpha": 1, + "hex": "#3C393F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32753", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2862745225429535, + 0.27843138575553894, + 0.30588236451148987 + ], + "alpha": 1, + "hex": "#49474E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32754", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3843137323856354, + 0.37254902720451355, + 0.4117647111415863 + ], + "alpha": 1, + "hex": "#625F69" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32755", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.43529412150382996, + 0.4274509847164154, + 0.47058823704719543 + ], + "alpha": 1, + "hex": "#6F6D78" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32756", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.47843137383461, + 0.5215686559677124 + ], + "alpha": 1, + "hex": "#7C7A85" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32757", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7098039388656616, + 0.6980392336845398, + 0.7372549176216125 + ], + "alpha": 1, + "hex": "#B5B2BC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32758", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.9333333373069763, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#EEEEF0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32759", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Mauve Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32760", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9607843160629272, + 0.95686274766922, + 0.9647058844566345 + ], + "alpha": 0.03530000150203705, + "hex": "#F5F4F6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32761", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.9176470637321472, + 0.9725490212440491 + ], + "alpha": 0.07840000092983246, + "hex": "#EBEAF8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32762", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.8980392217636108, + 0.9725490212440491 + ], + "alpha": 0.1137000024318695, + "hex": "#EEE5F8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32763", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9372549057006836, + 0.9019607901573181, + 0.9960784316062927 + ], + "alpha": 0.14509999752044678, + "hex": "#EFE6FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32764", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.9019607901573181, + 0.9921568632125854 + ], + "alpha": 0.1881999969482422, + "hex": "#F1E6FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32765", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.9137254953384399, + 1 + ], + "alpha": 0.25099998712539673, + "hex": "#EEE9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32766", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.9058823585510254, + 1 + ], + "alpha": 0.36469998955726624, + "hex": "#EEE7FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32767", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9176470637321472, + 0.9019607901573181, + 0.9921568632125854 + ], + "alpha": 0.43140000104904175, + "hex": "#EAE6FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32768", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.9137254953384399, + 0.9921568632125854 + ], + "alpha": 0.486299991607666, + "hex": "#ECE9FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32769", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9607843160629272, + 0.9450980424880981, + 1 + ], + "alpha": 0.7175999879837036, + "hex": "#F5F1FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32770", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9921568632125854, + 1 + ], + "alpha": 0.9373000264167786, + "hex": "#FDFDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32771", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Slate": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.06666667014360428, + 0.07450980693101883 + ], + "alpha": 1, + "hex": "#111113" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32772", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0941176488995552, + 0.09803921729326248, + 0.10588235408067703 + ], + "alpha": 1, + "hex": "#18191B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32773", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12941177189350128, + 0.13333334028720856, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#212225" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32774", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.15294118225574493, + 0.16470588743686676, + 0.1764705926179886 + ], + "alpha": 1, + "hex": "#272A2D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32775", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18039216101169586, + 0.1921568661928177, + 0.2078431397676468 + ], + "alpha": 1, + "hex": "#2E3135" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32776", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21176470816135406, + 0.22745098173618317, + 0.24705882370471954 + ], + "alpha": 1, + "hex": "#363A3F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32777", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.26274511218070984, + 0.2823529541492462, + 0.30588236451148987 + ], + "alpha": 1, + "hex": "#43484E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32778", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3529411852359772, + 0.3803921639919281, + 0.4117647111415863 + ], + "alpha": 1, + "hex": "#5A6169" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32779", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4117647111415863, + 0.4313725531101227, + 0.46666666865348816 + ], + "alpha": 1, + "hex": "#696E77" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32780", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.46666666865348816, + 0.48235294222831726, + 0.5176470875740051 + ], + "alpha": 1, + "hex": "#777B84" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32781", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6901960968971252, + 0.7058823704719543, + 0.729411780834198 + ], + "alpha": 1, + "hex": "#B0B4BA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32782", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.9333333373069763, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#EDEEF0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32783", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Slate Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32784", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8470588326454163, + 0.95686274766922, + 0.9647058844566345 + ], + "alpha": 0.03530000150203705, + "hex": "#D8F4F6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32785", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8666666746139526, + 0.9176470637321472, + 0.9725490212440491 + ], + "alpha": 0.07840000092983246, + "hex": "#DDEAF8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32786", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8274509906768799, + 0.929411768913269, + 0.9725490212440491 + ], + "alpha": 0.1137000024318695, + "hex": "#D3EDF8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32787", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8509804010391235, + 0.929411768913269, + 0.9960784316062927 + ], + "alpha": 0.14509999752044678, + "hex": "#D9EDFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32788", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.9215686321258545, + 0.9921568632125854 + ], + "alpha": 0.1881999969482422, + "hex": "#D6EBFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32789", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8509804010391235, + 0.929411768913269, + 1 + ], + "alpha": 0.25099998712539673, + "hex": "#D9EDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32790", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8509804010391235, + 0.929411768913269, + 1 + ], + "alpha": 0.36469998955726624, + "hex": "#D9EDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32791", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8745098114013672, + 0.9215686321258545, + 0.9921568632125854 + ], + "alpha": 0.42750000953674316, + "hex": "#DFEBFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32792", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.929411768913269, + 0.9921568632125854 + ], + "alpha": 0.48240000009536743, + "hex": "#E5EDFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32793", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.9686274528503418, + 0.9960784316062927 + ], + "alpha": 0.7098000049591064, + "hex": "#F1F7FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32794", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.9921568632125854, + 1 + ], + "alpha": 0.9373000264167786, + "hex": "#FCFDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32795", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sage": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.062745101749897, + 0.07058823853731155, + 0.06666667014360428 + ], + "alpha": 1, + "hex": "#101211" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32796", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09019608050584793, + 0.09803921729326248, + 0.0941176488995552 + ], + "alpha": 1, + "hex": "#171918" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32797", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.13333334028720856, + 0.12941177189350128 + ], + "alpha": 1, + "hex": "#202221" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32798", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.15294118225574493, + 0.16470588743686676, + 0.16078431904315948 + ], + "alpha": 1, + "hex": "#272A29" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32799", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18039216101169586, + 0.1921568661928177, + 0.1882352977991104 + ], + "alpha": 1, + "hex": "#2E3130" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32800", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21568627655506134, + 0.23137255012989044, + 0.2235294133424759 + ], + "alpha": 1, + "hex": "#373B39" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32801", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2666666805744171, + 0.2862745225429535, + 0.27843138575553894 + ], + "alpha": 1, + "hex": "#444947" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32802", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.35686275362968445, + 0.3843137323856354, + 0.37254902720451355 + ], + "alpha": 1, + "hex": "#5B625F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32803", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.38823530077934265, + 0.43921568989753723, + 0.41960784792900085 + ], + "alpha": 1, + "hex": "#63706B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32804", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4431372582912445, + 0.4901960790157318, + 0.4745098054409027 + ], + "alpha": 1, + "hex": "#717D79" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32805", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6784313917160034, + 0.7098039388656616, + 0.6980392336845398 + ], + "alpha": 1, + "hex": "#ADB5B2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32806", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.9333333373069763, + 0.929411768913269 + ], + "alpha": 1, + "hex": "#ECEEED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32807", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sage Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32808", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.9490196108818054, + 0.9450980424880981 + ], + "alpha": 0.03139999881386757, + "hex": "#F0F2F1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32809", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0.9607843160629272, + 0.95686274766922 + ], + "alpha": 0.0706000030040741, + "hex": "#F3F5F4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32810", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.9960784316062927, + 0.9921568632125854 + ], + "alpha": 0.10199999809265137, + "hex": "#F2FEFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32811", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.9843137264251709, + 0.9803921580314636 + ], + "alpha": 0.13330000638961792, + "hex": "#F1FBFA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32812", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.9843137264251709, + 0.95686274766922 + ], + "alpha": 0.17649999260902405, + "hex": "#EDFBF4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32813", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.9882352948188782, + 0.9686274528503418 + ], + "alpha": 0.2353000044822693, + "hex": "#EDFCF7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32814", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.9921568632125854, + 0.9647058844566345 + ], + "alpha": 0.34119999408721924, + "hex": "#EBFDF6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32815", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8745098114013672, + 0.9921568632125854, + 0.9490196108818054 + ], + "alpha": 0.4000000059604645, + "hex": "#DFFDF2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32816", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.9921568632125854, + 0.9647058844566345 + ], + "alpha": 0.45489999651908875, + "hex": "#E5FDF6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32817", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.9960784316062927, + 0.9843137264251709 + ], + "alpha": 0.6901999711990356, + "hex": "#F4FEFB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32818", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 1, + 0.9960784316062927 + ], + "alpha": 0.9294000267982483, + "hex": "#FDFFFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32819", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Olive": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.07058823853731155, + 0.062745101749897 + ], + "alpha": 1, + "hex": "#111210" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32820", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0941176488995552, + 0.09803921729326248, + 0.09019608050584793 + ], + "alpha": 1, + "hex": "#181917" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32821", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12941177189350128, + 0.13333334028720856, + 0.125490203499794 + ], + "alpha": 1, + "hex": "#212220" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32822", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1568627506494522, + 0.16470588743686676, + 0.15294118225574493 + ], + "alpha": 1, + "hex": "#282A27" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32823", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18431372940540314, + 0.1921568661928177, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#2F312E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32824", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21960784494876862, + 0.22745098173618317, + 0.21176470816135406 + ], + "alpha": 1, + "hex": "#383A36" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32825", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2705882489681244, + 0.2823529541492462, + 0.26274511218070984 + ], + "alpha": 1, + "hex": "#454843" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32826", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3607843220233917, + 0.3843137323856354, + 0.35686275362968445 + ], + "alpha": 1, + "hex": "#5C625B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32827", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.40784314274787903, + 0.43921568989753723, + 0.4000000059604645 + ], + "alpha": 1, + "hex": "#687066" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32828", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4627451002597809, + 0.4901960790157318, + 0.45490196347236633 + ], + "alpha": 1, + "hex": "#767D74" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32829", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.686274528503418, + 0.7098039388656616, + 0.6784313917160034 + ], + "alpha": 1, + "hex": "#AFB5AD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32830", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.9333333373069763, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#ECEEEC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32831", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Olive Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32832", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.9490196108818054, + 0.9411764740943909 + ], + "alpha": 0.03139999881386757, + "hex": "#F1F2F0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32833", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.9607843160629272, + 0.9529411792755127 + ], + "alpha": 0.0706000030040741, + "hex": "#F4F5F3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32834", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0.9960784316062927, + 0.9490196108818054 + ], + "alpha": 0.10199999809265137, + "hex": "#F3FEF2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32835", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.9843137264251709, + 0.9450980424880981 + ], + "alpha": 0.13330000638961792, + "hex": "#F2FBF1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32836", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.9803921580314636, + 0.929411768913269 + ], + "alpha": 0.17249999940395355, + "hex": "#F4FAED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32837", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.9882352948188782, + 0.929411768913269 + ], + "alpha": 0.2313999980688095, + "hex": "#F2FCED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32838", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.9921568632125854, + 0.9215686321258545 + ], + "alpha": 0.34119999408721924, + "hex": "#EDFDEB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32839", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.9921568632125854, + 0.9058823585510254 + ], + "alpha": 0.4000000059604645, + "hex": "#EBFDE7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32840", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.9921568632125854, + 0.9254902005195618 + ], + "alpha": 0.45489999651908875, + "hex": "#F0FDEC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32841", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.9960784316062927, + 0.95686274766922 + ], + "alpha": 0.6901999711990356, + "hex": "#F6FEF4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32842", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 1, + 0.9921568632125854 + ], + "alpha": 0.9294000267982483, + "hex": "#FDFFFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32843", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sand": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.06666667014360428, + 0.062745101749897 + ], + "alpha": 1, + "hex": "#111110" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32844", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.09803921729326248, + 0.0941176488995552 + ], + "alpha": 1, + "hex": "#191918" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32845", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.13333334028720856, + 0.13333334028720856, + 0.12941177189350128 + ], + "alpha": 1, + "hex": "#222221" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32846", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16470588743686676, + 0.16470588743686676, + 0.1568627506494522 + ], + "alpha": 1, + "hex": "#2A2A28" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32847", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1921568661928177, + 0.1921568661928177, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#31312E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32848", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23137255012989044, + 0.22745098173618317, + 0.21568627655506134 + ], + "alpha": 1, + "hex": "#3B3A37" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32849", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2862745225429535, + 0.2823529541492462, + 0.2666666805744171 + ], + "alpha": 1, + "hex": "#494844" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32850", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3843137323856354, + 0.3764705955982208, + 0.35686275362968445 + ], + "alpha": 1, + "hex": "#62605B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32851", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.43529412150382996, + 0.4274509847164154, + 0.4000000059604645 + ], + "alpha": 1, + "hex": "#6F6D66" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32852", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.48235294222831726, + 0.45490196347236633 + ], + "alpha": 1, + "hex": "#7C7B74" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32853", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7098039388656616, + 0.7019608020782471, + 0.6784313917160034 + ], + "alpha": 1, + "hex": "#B5B3AD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32854", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.9333333373069763, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#EEEEEC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32855", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sand Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32856", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.95686274766922, + 0.9529411792755127 + ], + "alpha": 0.03530000150203705, + "hex": "#F4F4F3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32857", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.9647058844566345, + 0.9607843160629272 + ], + "alpha": 0.07450000196695328, + "hex": "#F6F6F5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32858", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9960784316062927, + 0.9529411792755127 + ], + "alpha": 0.10589999705553055, + "hex": "#FEFEF3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32859", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9843137264251709, + 0.9215686321258545 + ], + "alpha": 0.13729999959468842, + "hex": "#FBFBEB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32860", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9803921580314636, + 0.929411768913269 + ], + "alpha": 0.17649999260902405, + "hex": "#FFFAED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32861", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9843137264251709, + 0.929411768913269 + ], + "alpha": 0.2353000044822693, + "hex": "#FFFBED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32862", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9764705896377563, + 0.9215686321258545 + ], + "alpha": 0.34119999408721924, + "hex": "#FFF9EB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32863", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9803921580314636, + 0.9137254953384399 + ], + "alpha": 0.3961000144481659, + "hex": "#FFFAE9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32864", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9921568632125854, + 0.9333333373069763 + ], + "alpha": 0.45100000500679016, + "hex": "#FFFDEE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32865", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9882352948188782, + 0.95686274766922 + ], + "alpha": 0.6901999711990356, + "hex": "#FFFCF4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32866", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 0.9921568632125854 + ], + "alpha": 0.9294000267982483, + "hex": "#FFFFFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32867", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Gold": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.07058823853731155, + 0.06666667014360428 + ], + "alpha": 1, + "hex": "#121211" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32868", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10588235408067703, + 0.10196078568696976, + 0.09019608050584793 + ], + "alpha": 1, + "hex": "#1B1A17" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32869", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1411764770746231, + 0.13725490868091583, + 0.12156862765550613 + ], + "alpha": 1, + "hex": "#24231F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32870", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1764705926179886, + 0.16862745583057404, + 0.14901961386203766 + ], + "alpha": 1, + "hex": "#2D2B26" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32871", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21960784494876862, + 0.2078431397676468, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#38352E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32872", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2666666805744171, + 0.250980406999588, + 0.2235294133424759 + ], + "alpha": 1, + "hex": "#444039" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32873", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3294117748737335, + 0.30980393290519714, + 0.27450981736183167 + ], + "alpha": 1, + "hex": "#544F46" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32874", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4117647111415863, + 0.3843137323856354, + 0.33725491166114807 + ], + "alpha": 1, + "hex": "#696256" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32875", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5921568870544434, + 0.5137255191802979, + 0.3960784375667572 + ], + "alpha": 1, + "hex": "#978365" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32876", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6392157077789307, + 0.5647059082984924, + 0.45098039507865906 + ], + "alpha": 1, + "hex": "#A39073" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32877", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7960784435272217, + 0.7254902124404907, + 0.6235294342041016 + ], + "alpha": 1, + "hex": "#CBB99F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32878", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9098039269447327, + 0.886274516582489, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#E8E2D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32879", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Gold Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5686274766921997, + 0.5686274766921997, + 0.06666667014360428 + ], + "alpha": 0.007799999788403511, + "hex": "#919111" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32880", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.886274516582489, + 0.615686297416687 + ], + "alpha": 0.04309999942779541, + "hex": "#F9E29D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32881", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0.9254902005195618, + 0.7333333492279053 + ], + "alpha": 0.08240000158548355, + "hex": "#F8ECBB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32882", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9333333373069763, + 0.7686274647712708 + ], + "alpha": 0.11760000139474869, + "hex": "#FFEEC4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32883", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9254902005195618, + 0.7607843279838562 + ], + "alpha": 0.1647000014781952, + "hex": "#FEECC2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32884", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9215686321258545, + 0.7960784435272217 + ], + "alpha": 0.21570000052452087, + "hex": "#FEEBCB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32885", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.929411768913269, + 0.8039215803146362 + ], + "alpha": 0.2824000120162964, + "hex": "#FFEDCD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32886", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9176470637321472, + 0.7921568751335144 + ], + "alpha": 0.3725000023841858, + "hex": "#FDEACA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32887", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8588235378265381, + 0.6509804129600525 + ], + "alpha": 0.5647000074386597, + "hex": "#FFDBA6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32888", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.8745098114013672, + 0.6901960968971252 + ], + "alpha": 0.6157000064849854, + "hex": "#FEDFB0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32889", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9058823585510254, + 0.7764706015586853 + ], + "alpha": 0.7843000292778015, + "hex": "#FEE7C6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32890", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9686274528503418, + 0.929411768913269 + ], + "alpha": 0.9059000015258789, + "hex": "#FEF7ED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32891", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Bronze": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0.06666667014360428, + 0.062745101749897 + ], + "alpha": 1, + "hex": "#141110" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32892", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.09803921729326248, + 0.09019608050584793 + ], + "alpha": 1, + "hex": "#1C1917" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32893", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.14901961386203766, + 0.13333334028720856, + 0.125490203499794 + ], + "alpha": 1, + "hex": "#262220" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32894", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.16470588743686676, + 0.15294118225574493 + ], + "alpha": 1, + "hex": "#302A27" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32895", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23137255012989044, + 0.20000000298023224, + 0.1882352977991104 + ], + "alpha": 1, + "hex": "#3B3330" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32896", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2862745225429535, + 0.24313725531101227, + 0.22745098173618317 + ], + "alpha": 1, + "hex": "#493E3A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32897", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3529411852359772, + 0.2980392277240753, + 0.27843138575553894 + ], + "alpha": 1, + "hex": "#5A4C47" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32898", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.43529412150382996, + 0.37254902720451355, + 0.3450980484485626 + ], + "alpha": 1, + "hex": "#6F5F58" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32899", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6313725709915161, + 0.501960813999176, + 0.4470588266849518 + ], + "alpha": 1, + "hex": "#A18072" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32900", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6823529601097107, + 0.5490196347236633, + 0.4941176474094391 + ], + "alpha": 1, + "hex": "#AE8C7E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32901", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8313725590705872, + 0.7019608020782471, + 0.6470588445663452 + ], + "alpha": 1, + "hex": "#D4B3A5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32902", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.8784313797950745, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#EDE0D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32903", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Bronze Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.06666667014360428, + 0 + ], + "alpha": 0.015699999406933784, + "hex": "#D11100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32904", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.7372549176216125, + 0.5686274766921997 + ], + "alpha": 0.0471000000834465, + "hex": "#FBBC91" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32905", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9803921580314636, + 0.8078431487083435, + 0.7215686440467834 + ], + "alpha": 0.09019999951124191, + "hex": "#FACEB8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32906", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9803921580314636, + 0.8039215803146362, + 0.7137255072593689 + ], + "alpha": 0.13330000638961792, + "hex": "#FACDB6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32907", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8235294222831726, + 0.7568627595901489 + ], + "alpha": 0.17649999260902405, + "hex": "#FFD2C1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32908", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8196078538894653, + 0.7529411911964417 + ], + "alpha": 0.2353000044822693, + "hex": "#FFD1C0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32909", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.8156862854957581, + 0.7529411911964417 + ], + "alpha": 0.30979999899864197, + "hex": "#FDD0C0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32910", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8392156958580017, + 0.772549033164978 + ], + "alpha": 0.3961000144481659, + "hex": "#FFD6C5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32911", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.7803921699523926, + 0.6901960968971252 + ], + "alpha": 0.6078000068664551, + "hex": "#FEC7B0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32912", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.7921568751335144, + 0.7098039388656616 + ], + "alpha": 0.6626999974250793, + "hex": "#FECAB5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32913", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.843137264251709, + 0.7764706015586853 + ], + "alpha": 0.819599986076355, + "hex": "#FFD7C6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32914", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9450980424880981, + 0.9137254953384399 + ], + "alpha": 0.9254999756813049, + "hex": "#FFF1E9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32915", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Brown": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.06666667014360428, + 0.05882352963089943 + ], + "alpha": 1, + "hex": "#12110F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32916", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.0941176488995552, + 0.08627451211214066 + ], + "alpha": 1, + "hex": "#1C1816" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32917", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1568627506494522, + 0.12941177189350128, + 0.11372549086809158 + ], + "alpha": 1, + "hex": "#28211D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32918", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.19607843458652496, + 0.16078431904315948, + 0.13333334028720856 + ], + "alpha": 1, + "hex": "#322922" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32919", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.24313725531101227, + 0.1921568661928177, + 0.1568627506494522 + ], + "alpha": 1, + "hex": "#3E3128" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32920", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3019607961177826, + 0.23529411852359772, + 0.18431372940540314 + ], + "alpha": 1, + "hex": "#4D3C2F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32921", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3803921639919281, + 0.29019609093666077, + 0.2235294133424759 + ], + "alpha": 1, + "hex": "#614A39" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32922", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.37254902720451355, + 0.27450981736183167 + ], + "alpha": 1, + "hex": "#7C5F46" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32923", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6784313917160034, + 0.49803921580314636, + 0.3450980484485626 + ], + "alpha": 1, + "hex": "#AD7F58" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32924", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7215686440467834, + 0.5490196347236633, + 0.40392157435417175 + ], + "alpha": 1, + "hex": "#B88C67" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32925", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8588235378265381, + 0.7098039388656616, + 0.5803921818733215 + ], + "alpha": 1, + "hex": "#DBB594" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32926", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.8823529481887817, + 0.7921568751335144 + ], + "alpha": 1, + "hex": "#F2E1CA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32927", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Brown Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5686274766921997, + 0.06666667014360428, + 0 + ], + "alpha": 0.007799999788403511, + "hex": "#911100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32928", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.6509804129600525, + 0.48627451062202454 + ], + "alpha": 0.0471000000834465, + "hex": "#FBA67C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32929", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.7098039388656616, + 0.5490196347236633 + ], + "alpha": 0.09799999743700027, + "hex": "#FCB58C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32930", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.7333333492279053, + 0.5411764979362488 + ], + "alpha": 0.1412000060081482, + "hex": "#FBBB8A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32931", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.7215686440467834, + 0.5372549295425415 + ], + "alpha": 0.19220000505447388, + "hex": "#FCB889" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32932", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.729411780834198, + 0.529411792755127 + ], + "alpha": 0.2549000084400177, + "hex": "#FDBA87" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32933", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7333333492279053, + 0.5333333611488342 + ], + "alpha": 0.33730000257492065, + "hex": "#FFBB88" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32934", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7450980544090271, + 0.529411792755127 + ], + "alpha": 0.45100000500679016, + "hex": "#FFBE87" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32935", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.7215686440467834, + 0.4901960790157318 + ], + "alpha": 0.6588000059127808, + "hex": "#FEB87D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32936", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7568627595901489, + 0.5490196347236633 + ], + "alpha": 0.7020000219345093, + "hex": "#FFC18C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32937", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.8196078538894653, + 0.6666666865348816 + ], + "alpha": 0.8510000109672546, + "hex": "#FED1AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32938", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9254902005195618, + 0.8313725590705872 + ], + "alpha": 0.9490000009536743, + "hex": "#FEECD4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32939", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Yellow": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0.07058823853731155, + 0.04313725605607033 + ], + "alpha": 1, + "hex": "#14120B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32940", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10588235408067703, + 0.0941176488995552, + 0.05882352963089943 + ], + "alpha": 1, + "hex": "#1B180F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32941", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1764705926179886, + 0.13725490868091583, + 0.019607843831181526 + ], + "alpha": 1, + "hex": "#2D2305" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32942", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21176470816135406, + 0.16862745583057404, + 0 + ], + "alpha": 1, + "hex": "#362B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32943", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.26274511218070984, + 0.2078431397676468, + 0 + ], + "alpha": 1, + "hex": "#433500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32944", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32156863808631897, + 0.25882354378700256, + 0.007843137718737125 + ], + "alpha": 1, + "hex": "#524202" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32945", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4000000059604645, + 0.3294117748737335, + 0.09019608050584793 + ], + "alpha": 1, + "hex": "#665417" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32946", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5137255191802979, + 0.4156862795352936, + 0.12941177189350128 + ], + "alpha": 1, + "hex": "#836A21" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32947", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9019607901573181, + 0.16078431904315948 + ], + "alpha": 1, + "hex": "#FFE629" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32948", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 0.34117648005485535 + ], + "alpha": 1, + "hex": "#FFFF57" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32949", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9607843160629272, + 0.8823529481887817, + 0.27843138575553894 + ], + "alpha": 1, + "hex": "#F5E147" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32950", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.9333333373069763, + 0.7058823704719543 + ], + "alpha": 1, + "hex": "#F6EEB4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32951", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Yellow Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.3176470696926117, + 0 + ], + "alpha": 0.015699999406933784, + "hex": "#D15100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32952", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.7058823704719543, + 0 + ], + "alpha": 0.04309999942779541, + "hex": "#F9B400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32953", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.6666666865348816, + 0 + ], + "alpha": 0.11760000139474869, + "hex": "#FFAA00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32954", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.7176470756530762, + 0 + ], + "alpha": 0.15690000355243683, + "hex": "#FDB700" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32955", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.7333333492279053, + 0 + ], + "alpha": 0.2117999941110611, + "hex": "#FEBB00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32956", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.7686274647712708, + 0 + ], + "alpha": 0.2745000123977661, + "hex": "#FEC400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32957", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.7960784435272217, + 0.13333334028720856 + ], + "alpha": 0.36079999804496765, + "hex": "#FDCB22" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32958", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.7921568751335144, + 0.19607843458652496 + ], + "alpha": 0.48240000009536743, + "hex": "#FDCA32" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32959", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9019607901573181, + 0.16078431904315948 + ], + "alpha": 1, + "hex": "#FFE629" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32960", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 0.34117648005485535 + ], + "alpha": 1, + "hex": "#FFFF57" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32961", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9137254953384399, + 0.2862745225429535 + ], + "alpha": 0.9607999920845032, + "hex": "#FEE949" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32962", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9647058844566345, + 0.729411780834198 + ], + "alpha": 0.9646999835968018, + "hex": "#FEF6BA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32963", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Amber": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.08627451211214066, + 0.07058823853731155, + 0.0470588244497776 + ], + "alpha": 1, + "hex": "#16120C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32964", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.0941176488995552, + 0.05882352963089943 + ], + "alpha": 1, + "hex": "#1D180F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32965", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.125490203499794, + 0.0313725508749485 + ], + "alpha": 1, + "hex": "#302008" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32966", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.24705882370471954, + 0.15294118225574493, + 0 + ], + "alpha": 1, + "hex": "#3F2700" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32967", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3019607961177826, + 0.1882352977991104, + 0 + ], + "alpha": 1, + "hex": "#4D3000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32968", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3607843220233917, + 0.239215686917305, + 0.019607843831181526 + ], + "alpha": 1, + "hex": "#5C3D05" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32969", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4431372582912445, + 0.30980393290519714, + 0.09803921729326248 + ], + "alpha": 1, + "hex": "#714F19" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32970", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5607843399047852, + 0.3921568691730499, + 0.1411764770746231 + ], + "alpha": 1, + "hex": "#8F6424" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32971", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.772549033164978, + 0.239215686917305 + ], + "alpha": 1, + "hex": "#FFC53D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32972", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8392156958580017, + 0.03921568766236305 + ], + "alpha": 1, + "hex": "#FFD60A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32973", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7921568751335144, + 0.08627451211214066 + ], + "alpha": 1, + "hex": "#FFCA16" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32974", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9056333303451538, + 0.7020000219345093 + ], + "alpha": 1, + "hex": "#FFE7B3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32975", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Amber Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9019607901573181, + 0.23529411852359772, + 0 + ], + "alpha": 0.023499999195337296, + "hex": "#E63C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32976", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.6078431606292725, + 0 + ], + "alpha": 0.050999999046325684, + "hex": "#FD9B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32977", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9803921580314636, + 0.5098039507865906, + 0 + ], + "alpha": 0.13330000638961792, + "hex": "#FA8200" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32978", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.5098039507865906, + 0 + ], + "alpha": 0.19609999656677246, + "hex": "#FC8200" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32979", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.545098066329956, + 0 + ], + "alpha": 0.2549000084400177, + "hex": "#FD8B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32980", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.6078431606292725, + 0 + ], + "alpha": 0.3176000118255615, + "hex": "#FD9B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32981", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.6705882549285889, + 0.14509804546833038 + ], + "alpha": 0.40389999747276306, + "hex": "#FFAB25" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32982", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.6823529601097107, + 0.2078431397676468 + ], + "alpha": 0.5293999910354614, + "hex": "#FFAE35" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32983", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.772549033164978, + 0.239215686917305 + ], + "alpha": 1, + "hex": "#FFC53D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32984", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8392156958580017, + 0.03921568766236305 + ], + "alpha": 1, + "hex": "#FFD60A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32985", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7921568751335144, + 0.08627451211214066 + ], + "alpha": 1, + "hex": "#FFCA16" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32986", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9056333303451538, + 0.7020000219345093 + ], + "alpha": 1, + "hex": "#FFE7B3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32987", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Orange": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09019608050584793, + 0.07058823853731155, + 0.054901961237192154 + ], + "alpha": 1, + "hex": "#17120E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32988", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11764705926179886, + 0.08627451211214066, + 0.05882352963089943 + ], + "alpha": 1, + "hex": "#1E160F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32989", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20000000298023224, + 0.11764705926179886, + 0.04313725605607033 + ], + "alpha": 1, + "hex": "#331E0B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32990", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27450981736183167, + 0.12941177189350128, + 0 + ], + "alpha": 1, + "hex": "#462100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32991", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.33725491166114807, + 0.1568627506494522, + 0 + ], + "alpha": 1, + "hex": "#562800" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32992", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4000000059604645, + 0.2078431397676468, + 0.0470588244497776 + ], + "alpha": 1, + "hex": "#66350C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32993", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4941176474094391, + 0.2705882489681244, + 0.11372549086809158 + ], + "alpha": 1, + "hex": "#7E451D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32994", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6392157077789307, + 0.3450980484485626, + 0.16078431904315948 + ], + "alpha": 1, + "hex": "#A35829" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32995", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9686274528503418, + 0.41960784792900085, + 0.08235294371843338 + ], + "alpha": 1, + "hex": "#F76B15" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32996", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.501960813999176, + 0.12156862765550613 + ], + "alpha": 1, + "hex": "#FF801F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32997", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.6274510025978088, + 0.34117648005485535 + ], + "alpha": 1, + "hex": "#FFA057" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32998", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8784313797950745, + 0.7607843279838562 + ], + "alpha": 1, + "hex": "#FFE0C2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32999", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Orange Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.21176470816135406, + 0 + ], + "alpha": 0.027499999850988388, + "hex": "#EC3600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33000", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.4274509847164154, + 0 + ], + "alpha": 0.05490000173449516, + "hex": "#FE6D00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33001", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.4156862795352936, + 0 + ], + "alpha": 0.14509999752044678, + "hex": "#FB6A00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33002", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.3490196168422699, + 0 + ], + "alpha": 0.22349999845027924, + "hex": "#FF5900" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33003", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.3803921639919281, + 0 + ], + "alpha": 0.29019999504089355, + "hex": "#FF6100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33004", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.4588235318660736, + 0.01568627543747425 + ], + "alpha": 0.36079999804496765, + "hex": "#FD7504" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33005", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5137255191802979, + 0.1725490242242813 + ], + "alpha": 0.45879998803138733, + "hex": "#FF832C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33006", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.5176470875740051, + 0.21960784494876862 + ], + "alpha": 0.6157000064849854, + "hex": "#FE8438" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33007", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.4274509847164154, + 0.08235294371843338 + ], + "alpha": 0.9685999751091003, + "hex": "#FE6D15" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33008", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.501960813999176, + 0.12156862765550613 + ], + "alpha": 1, + "hex": "#FF801F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33009", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.6274510025978088, + 0.34117648005485535 + ], + "alpha": 1, + "hex": "#FFA057" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33010", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8784313797950745, + 0.7607843279838562 + ], + "alpha": 1, + "hex": "#FFE0C2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33011", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Tomato": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0941176488995552, + 0.06666667014360428, + 0.06666667014360428 + ], + "alpha": 1, + "hex": "#181111" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33012", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0.08235294371843338, + 0.07450980693101883 + ], + "alpha": 1, + "hex": "#1F1513" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33013", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2235294133424759, + 0.09019608050584793, + 0.0784313753247261 + ], + "alpha": 1, + "hex": "#391714" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33014", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.30588236451148987, + 0.08235294371843338, + 0.06666667014360428 + ], + "alpha": 1, + "hex": "#4E1511" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33015", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3686274588108063, + 0.10980392247438431, + 0.08627451211214066 + ], + "alpha": 1, + "hex": "#5E1C16" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33016", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4313725531101227, + 0.16078431904315948, + 0.125490203499794 + ], + "alpha": 1, + "hex": "#6E2920" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33017", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5215686559677124, + 0.22745098173618317, + 0.1764705926179886 + ], + "alpha": 1, + "hex": "#853A2D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33018", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6745098233222961, + 0.3019607961177826, + 0.2235294133424759 + ], + "alpha": 1, + "hex": "#AC4D39" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33019", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.3019607961177826, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#E54D2E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33020", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.3803921639919281, + 0.25882354378700256 + ], + "alpha": 1, + "hex": "#EC6142" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33021", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5921568870544434, + 0.4901960790157318 + ], + "alpha": 1, + "hex": "#FF977D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33022", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.8274509906768799, + 0.7960784435272217 + ], + "alpha": 1, + "hex": "#FBD3CB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33023", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Tomato Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.07058823853731155, + 0.07058823853731155 + ], + "alpha": 0.03139999881386757, + "hex": "#F11212" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33024", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.3333333432674408, + 0.20000000298023224 + ], + "alpha": 0.058800000697374344, + "hex": "#FF5533" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33025", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.2078431397676468, + 0.13725490868091583 + ], + "alpha": 0.16859999299049377, + "hex": "#FF3523" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33026", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.125490203499794, + 0.06666667014360428 + ], + "alpha": 0.2587999999523163, + "hex": "#FD2011" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33027", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.20000000298023224, + 0.12941177189350128 + ], + "alpha": 0.3255000114440918, + "hex": "#FE3321" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33028", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.30980393290519714, + 0.21960784494876862 + ], + "alpha": 0.3921999931335449, + "hex": "#FF4F38" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33029", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.3921568691730499, + 0.29019609093666077 + ], + "alpha": 0.490200012922287, + "hex": "#FD644A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33030", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.4274509847164154, + 0.30588236451148987 + ], + "alpha": 0.6549000144004822, + "hex": "#FE6D4E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33031", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.3294117748737335, + 0.1921568661928177 + ], + "alpha": 0.89410001039505, + "hex": "#FE5431" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33032", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.40784314274787903, + 0.27843138575553894 + ], + "alpha": 0.9215999841690063, + "hex": "#FF6847" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33033", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5921568870544434, + 0.4901960790157318 + ], + "alpha": 1, + "hex": "#FF977D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33034", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8392156958580017, + 0.8078431487083435 + ], + "alpha": 0.9843000173568726, + "hex": "#FFD6CE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33035", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Red": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.06666667014360428, + 0.06666667014360428 + ], + "alpha": 1, + "hex": "#191111" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33036", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.07450980693101883, + 0.0784313753247261 + ], + "alpha": 1, + "hex": "#201314" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33037", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23137255012989044, + 0.07058823853731155, + 0.09803921729326248 + ], + "alpha": 1, + "hex": "#3B1219" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33038", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3137255012989044, + 0.05882352963089943, + 0.10980392247438431 + ], + "alpha": 1, + "hex": "#500F1C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33039", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3803921639919281, + 0.08627451211214066, + 0.13725490868091583 + ], + "alpha": 1, + "hex": "#611623" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33040", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4470588266849518, + 0.13725490868091583, + 0.1764705926179886 + ], + "alpha": 1, + "hex": "#72232D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33041", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5490196347236633, + 0.20000000298023224, + 0.22745098173618317 + ], + "alpha": 1, + "hex": "#8C333A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33042", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7098039388656616, + 0.2705882489681244, + 0.2823529541492462 + ], + "alpha": 1, + "hex": "#B54548" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33043", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.2823529541492462, + 0.3019607961177826 + ], + "alpha": 1, + "hex": "#E5484D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33044", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.364705890417099, + 0.3686274588108063 + ], + "alpha": 1, + "hex": "#EC5D5E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33045", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5843137502670288, + 0.572549045085907 + ], + "alpha": 1, + "hex": "#FF9592" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33046", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8196078538894653, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#FFD1D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33047", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Red Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.07058823853731155, + 0.07058823853731155 + ], + "alpha": 0.03530000150203705, + "hex": "#F41212" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33048", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.18431372940540314, + 0.24313725531101227 + ], + "alpha": 0.06669999659061432, + "hex": "#F22F3E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33049", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.09019608050584793, + 0.24705882370471954 + ], + "alpha": 0.17649999260902405, + "hex": "#FF173F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33050", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.03921568766236305, + 0.23137255012989044 + ], + "alpha": 0.26669999957084656, + "hex": "#FE0A3B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33051", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.125490203499794, + 0.27843138575553894 + ], + "alpha": 0.33730000257492065, + "hex": "#FF2047" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33052", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.24313725531101227, + 0.33725491166114807 + ], + "alpha": 0.40779998898506165, + "hex": "#FF3E56" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33053", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.32549020648002625, + 0.3803921639919281 + ], + "alpha": 0.5175999999046326, + "hex": "#FF5361" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33054", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.364705890417099, + 0.3803921639919281 + ], + "alpha": 0.6901999711990356, + "hex": "#FF5D61" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33055", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.30588236451148987, + 0.3294117748737335 + ], + "alpha": 0.89410001039505, + "hex": "#FE4E54" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33056", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.3921568691730499, + 0.3960784375667572 + ], + "alpha": 0.9215999841690063, + "hex": "#FF6465" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33057", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5843137502670288, + 0.572549045085907 + ], + "alpha": 1, + "hex": "#FF9592" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33058", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8196078538894653, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#FFD1D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33059", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Ruby": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.06666667014360428, + 0.07450980693101883 + ], + "alpha": 1, + "hex": "#191113" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33060", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11764705926179886, + 0.08235294371843338, + 0.09019608050584793 + ], + "alpha": 1, + "hex": "#1E1517" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33061", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.22745098173618317, + 0.0784313753247261, + 0.11764705926179886 + ], + "alpha": 1, + "hex": "#3A141E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33062", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.30588236451148987, + 0.07450980693101883, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#4E1325" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33063", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3686274588108063, + 0.10196078568696976, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#5E1A2E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33064", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.43529412150382996, + 0.14509804546833038, + 0.2235294133424759 + ], + "alpha": 1, + "hex": "#6F2539" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33065", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5333333611488342, + 0.20392157137393951, + 0.27843138575553894 + ], + "alpha": 1, + "hex": "#883447" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33066", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7019608020782471, + 0.2666666805744171, + 0.3529411852359772 + ], + "alpha": 1, + "hex": "#B3445A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33067", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.27450981736183167, + 0.4000000059604645 + ], + "alpha": 1, + "hex": "#E54666" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33068", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.3529411852359772, + 0.4470588266849518 + ], + "alpha": 1, + "hex": "#EC5A72" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33069", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5803921818733215, + 0.615686297416687 + ], + "alpha": 1, + "hex": "#FF949D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33070", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.8235294222831726, + 0.8823529481887817 + ], + "alpha": 1, + "hex": "#FED2E1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33071", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Ruby Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.07058823853731155, + 0.29019609093666077 + ], + "alpha": 0.03530000150203705, + "hex": "#F4124A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33072", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.3529411852359772, + 0.49803921580314636 + ], + "alpha": 0.05490000173449516, + "hex": "#FE5A7F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33073", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.13725490868091583, + 0.364705890417099 + ], + "alpha": 0.17249999940395355, + "hex": "#FF235D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33074", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.09803921729326248, + 0.3686274588108063 + ], + "alpha": 0.2587999999523163, + "hex": "#FD195E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33075", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.1764705926179886, + 0.41960784792900085 + ], + "alpha": 0.3255000114440918, + "hex": "#FE2D6B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33076", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.2666666805744171, + 0.4627451002597809 + ], + "alpha": 0.3961000144481659, + "hex": "#FF4476" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33077", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.34117648005485535, + 0.4901960790157318 + ], + "alpha": 0.5019999742507935, + "hex": "#FF577D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33078", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.3607843220233917, + 0.48627451062202454 + ], + "alpha": 0.6823999881744385, + "hex": "#FF5C7C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33079", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.2980392277240753, + 0.43921568989753723 + ], + "alpha": 0.89410001039505, + "hex": "#FE4C70" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33080", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.3803921639919281, + 0.48235294222831726 + ], + "alpha": 0.9215999841690063, + "hex": "#FF617B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33081", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5803921818733215, + 0.615686297416687 + ], + "alpha": 1, + "hex": "#FF949D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33082", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8274509906768799, + 0.886274516582489 + ], + "alpha": 0.9961000084877014, + "hex": "#FFD3E2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33083", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Crimson": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.06666667014360428, + 0.0784313753247261 + ], + "alpha": 1, + "hex": "#191114" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33084", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.07450980693101883, + 0.0941176488995552 + ], + "alpha": 1, + "hex": "#201318" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33085", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21960784494876862, + 0.08235294371843338, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#381525" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33086", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3019607961177826, + 0.07058823853731155, + 0.18431372940540314 + ], + "alpha": 1, + "hex": "#4D122F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33087", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3607843220233917, + 0.0941176488995552, + 0.2235294133424759 + ], + "alpha": 1, + "hex": "#5C1839" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33088", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4274509847164154, + 0.14509804546833038, + 0.2705882489681244 + ], + "alpha": 1, + "hex": "#6D2545" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33089", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.529411792755127, + 0.20000000298023224, + 0.33725491166114807 + ], + "alpha": 1, + "hex": "#873356" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33090", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6901960968971252, + 0.26274511218070984, + 0.4313725531101227 + ], + "alpha": 1, + "hex": "#B0436E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33091", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9137254953384399, + 0.239215686917305, + 0.5098039507865906 + ], + "alpha": 1, + "hex": "#E93D82" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33092", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.3176470696926117, + 0.5411764979362488 + ], + "alpha": 1, + "hex": "#EE518A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33093", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.572549045085907, + 0.6784313917160034 + ], + "alpha": 1, + "hex": "#FF92AD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33094", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.8274509906768799, + 0.9098039269447327 + ], + "alpha": 1, + "hex": "#FDD3E8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33095", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Crimson Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.07058823853731155, + 0.40392157435417175 + ], + "alpha": 0.03530000150203705, + "hex": "#F41267" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33096", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.18431372940540314, + 0.47843137383461 + ], + "alpha": 0.06669999659061432, + "hex": "#F22F7A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33097", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.16470588743686676, + 0.545098066329956 + ], + "alpha": 0.1647000014781952, + "hex": "#FE2A8B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33098", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.08235294371843338, + 0.529411792755127 + ], + "alpha": 0.2549000084400177, + "hex": "#FD1587" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33099", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.15294118225574493, + 0.5607843399047852 + ], + "alpha": 0.3176000118255615, + "hex": "#FD278F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33100", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.2705882489681244, + 0.5921568870544434 + ], + "alpha": 0.3882000148296356, + "hex": "#FE4597" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33101", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.3333333432674408, + 0.6078431606292725 + ], + "alpha": 0.49799999594688416, + "hex": "#FD559B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33102", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.35686275362968445, + 0.6078431606292725 + ], + "alpha": 0.6705999970436096, + "hex": "#FE5B9B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33103", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.2549019753932953, + 0.5529412031173706 + ], + "alpha": 0.9097999930381775, + "hex": "#FE418D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33104", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.33725491166114807, + 0.5764706134796143 + ], + "alpha": 0.9294000267982483, + "hex": "#FF5693" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33105", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.572549045085907, + 0.6784313917160034 + ], + "alpha": 1, + "hex": "#FF92AD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33106", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8352941274642944, + 0.9176470637321472 + ], + "alpha": 0.9922000169754028, + "hex": "#FFD5EA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33107", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Pink": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.06666667014360428, + 0.09019608050584793 + ], + "alpha": 1, + "hex": "#191117" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33108", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12941177189350128, + 0.07058823853731155, + 0.11372549086809158 + ], + "alpha": 1, + "hex": "#21121D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33109", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21568627655506134, + 0.09019608050584793, + 0.18431372940540314 + ], + "alpha": 1, + "hex": "#37172F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33110", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.29411765933036804, + 0.0784313753247261, + 0.239215686917305 + ], + "alpha": 1, + "hex": "#4B143D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33111", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3490196168422699, + 0.10980392247438431, + 0.27843138575553894 + ], + "alpha": 1, + "hex": "#591C47" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33112", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4117647111415863, + 0.16078431904315948, + 0.3333333432674408 + ], + "alpha": 1, + "hex": "#692955" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33113", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5137255191802979, + 0.21960784494876862, + 0.4117647111415863 + ], + "alpha": 1, + "hex": "#833869" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33114", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.658823549747467, + 0.2823529541492462, + 0.5215686559677124 + ], + "alpha": 1, + "hex": "#A84885" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33115", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.250980406999588, + 0.6235294342041016 + ], + "alpha": 1, + "hex": "#D6409F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33116", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8705882430076599, + 0.3176470696926117, + 0.658823549747467 + ], + "alpha": 1, + "hex": "#DE51A8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33117", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5529412031173706, + 0.800000011920929 + ], + "alpha": 1, + "hex": "#FF8DCC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33118", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.8196078538894653, + 0.9176470637321472 + ], + "alpha": 1, + "hex": "#FDD1EA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33119", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Pink Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.07058823853731155, + 0.7372549176216125 + ], + "alpha": 0.03530000150203705, + "hex": "#F412BC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33120", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.125490203499794, + 0.7333333492279053 + ], + "alpha": 0.0706000030040741, + "hex": "#F420BB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33121", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.21568627655506134, + 0.800000011920929 + ], + "alpha": 0.1607999950647354, + "hex": "#FE37CC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33122", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.11764705926179886, + 0.7686274647712708 + ], + "alpha": 0.24709999561309814, + "hex": "#FC1EC4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33123", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.2078431397676468, + 0.7607843279838562 + ], + "alpha": 0.3059000074863434, + "hex": "#FD35C2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33124", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.3176470696926117, + 0.7803921699523926 + ], + "alpha": 0.3725000023841858, + "hex": "#FD51C7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33125", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.3843137323856354, + 0.7843137383460999 + ], + "alpha": 0.48240000009536743, + "hex": "#FD62C8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33126", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.40784314274787903, + 0.7843137383460999 + ], + "alpha": 0.6352999806404114, + "hex": "#FF68C8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33127", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.2862745225429535, + 0.7372549176216125 + ], + "alpha": 0.8313999772071838, + "hex": "#FE49BC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33128", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.3607843220233917, + 0.7529411911964417 + ], + "alpha": 0.8626999855041504, + "hex": "#FF5CC0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33129", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5529412031173706, + 0.800000011920929 + ], + "alpha": 1, + "hex": "#FF8DCC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33130", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8274509906768799, + 0.9254902005195618 + ], + "alpha": 0.9922000169754028, + "hex": "#FFD3EC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33131", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Plum": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0941176488995552, + 0.06666667014360428, + 0.0941176488995552 + ], + "alpha": 1, + "hex": "#181118" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33132", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.07450980693101883, + 0.125490203499794 + ], + "alpha": 1, + "hex": "#201320" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33133", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2078431397676468, + 0.10196078568696976, + 0.2078431397676468 + ], + "alpha": 1, + "hex": "#351A35" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33134", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2705882489681244, + 0.11372549086809158, + 0.27843138575553894 + ], + "alpha": 1, + "hex": "#451D47" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33135", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3176470696926117, + 0.1411764770746231, + 0.3294117748737335 + ], + "alpha": 1, + "hex": "#512454" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33136", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3686274588108063, + 0.1882352977991104, + 0.3803921639919281 + ], + "alpha": 1, + "hex": "#5E3061" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33137", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.45098039507865906, + 0.250980406999588, + 0.4745098054409027 + ], + "alpha": 1, + "hex": "#734079" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33138", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.572549045085907, + 0.3294117748737335, + 0.6117647290229797 + ], + "alpha": 1, + "hex": "#92549C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33139", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.29019609093666077, + 0.729411780834198 + ], + "alpha": 1, + "hex": "#AB4ABA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33140", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7137255072593689, + 0.3450980484485626, + 0.7686274647712708 + ], + "alpha": 1, + "hex": "#B658C4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33141", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9058823585510254, + 0.5882353186607361, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#E796F3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33142", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.8313725590705872, + 0.95686274766922 + ], + "alpha": 1, + "hex": "#F4D4F4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33143", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Plum Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.07058823853731155, + 0.9450980424880981 + ], + "alpha": 0.03139999881386757, + "hex": "#F112F1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33144", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.18431372940540314, + 0.9490196108818054 + ], + "alpha": 0.06669999659061432, + "hex": "#F22FF2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33145", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.2980392277240753, + 0.9921568632125854 + ], + "alpha": 0.15289999544620514, + "hex": "#FD4CFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33146", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.27450981736183167, + 1 + ], + "alpha": 0.22750000655651093, + "hex": "#F646FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33147", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.3333333432674408, + 1 + ], + "alpha": 0.2824000120162964, + "hex": "#F455FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33148", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.4274509847164154, + 1 + ], + "alpha": 0.33730000257492065, + "hex": "#F66DFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33149", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.48627451062202454, + 0.9921568632125854 + ], + "alpha": 0.4392000138759613, + "hex": "#F07CFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33150", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.5176470875740051, + 1 + ], + "alpha": 0.5842999815940857, + "hex": "#EE84FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33151", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9137254953384399, + 0.3803921639919281, + 0.9960784316062927 + ], + "alpha": 0.713699996471405, + "hex": "#E961FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33152", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.43921568989753723, + 1 + ], + "alpha": 0.7529000043869019, + "hex": "#ED70FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33153", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.6117647290229797, + 0.9960784316062927 + ], + "alpha": 0.9528999924659729, + "hex": "#F19CFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33154", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.8666666746139526, + 0.9960784316062927 + ], + "alpha": 0.9569000005722046, + "hex": "#FEDDFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33155", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Purple": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0941176488995552, + 0.06666667014360428, + 0.10588235408067703 + ], + "alpha": 1, + "hex": "#18111B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33156", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11764705926179886, + 0.08235294371843338, + 0.13725490868091583 + ], + "alpha": 1, + "hex": "#1E1523" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33157", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.10980392247438431, + 0.23137255012989044 + ], + "alpha": 1, + "hex": "#301C3B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33158", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.239215686917305, + 0.13333334028720856, + 0.30588236451148987 + ], + "alpha": 1, + "hex": "#3D224E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33159", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2823529541492462, + 0.16078431904315948, + 0.3607843220233917 + ], + "alpha": 1, + "hex": "#48295C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33160", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3294117748737335, + 0.20392157137393951, + 0.41960784792900085 + ], + "alpha": 1, + "hex": "#54346B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33161", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4000000059604645, + 0.25882354378700256, + 0.5098039507865906 + ], + "alpha": 1, + "hex": "#664282" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33162", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5176470875740051, + 0.34117648005485535, + 0.6666666865348816 + ], + "alpha": 1, + "hex": "#8457AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33163", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5568627715110779, + 0.30588236451148987, + 0.7764706015586853 + ], + "alpha": 1, + "hex": "#8E4EC6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33164", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6039215922355652, + 0.3607843220233917, + 0.8156862854957581 + ], + "alpha": 1, + "hex": "#9A5CD0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33165", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.615686297416687, + 1 + ], + "alpha": 1, + "hex": "#D19DFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33166", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.8509804010391235, + 0.9803921580314636 + ], + "alpha": 1, + "hex": "#ECD9FA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33167", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Purple Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7058823704719543, + 0.07058823853731155, + 0.9764705896377563 + ], + "alpha": 0.04309999942779541, + "hex": "#B412F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33168", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7176470756530762, + 0.2666666805744171, + 0.9686274528503418 + ], + "alpha": 0.07840000092983246, + "hex": "#B744F7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33169", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7568627595901489, + 0.3137255012989044, + 1 + ], + "alpha": 0.17649999260902405, + "hex": "#C150FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33170", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7333333492279053, + 0.32549020648002625, + 0.9921568632125854 + ], + "alpha": 0.2587999999523163, + "hex": "#BB53FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33171", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7450980544090271, + 0.3607843220233917, + 0.9921568632125854 + ], + "alpha": 0.3176000118255615, + "hex": "#BE5CFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33172", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7568627595901489, + 0.4274509847164154, + 0.9921568632125854 + ], + "alpha": 0.38040000200271606, + "hex": "#C16DFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33173", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7647058963775635, + 0.47058823704719543, + 0.9921568632125854 + ], + "alpha": 0.47839999198913574, + "hex": "#C378FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33174", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7686274647712708, + 0.4941176474094391, + 1 + ], + "alpha": 0.6431000232696533, + "hex": "#C47EFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33175", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7137255072593689, + 0.3803921639919281, + 1 + ], + "alpha": 0.7608000040054321, + "hex": "#B661FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33176", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7372549176216125, + 0.43529412150382996, + 1 + ], + "alpha": 0.8039000034332275, + "hex": "#BC6FFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33177", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.615686297416687, + 1 + ], + "alpha": 1, + "hex": "#D19DFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33178", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.8666666746139526, + 1 + ], + "alpha": 0.980400025844574, + "hex": "#F1DDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33179", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Violet": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0.07058823853731155, + 0.12156862765550613 + ], + "alpha": 1, + "hex": "#14121F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33180", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10588235408067703, + 0.08235294371843338, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#1B1525" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33181", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16078431904315948, + 0.12156862765550613, + 0.26274511218070984 + ], + "alpha": 1, + "hex": "#291F43" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33182", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20000000298023224, + 0.14509804546833038, + 0.35686275362968445 + ], + "alpha": 1, + "hex": "#33255B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33183", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23529411852359772, + 0.18039216101169586, + 0.4117647111415863 + ], + "alpha": 1, + "hex": "#3C2E69" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33184", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27843138575553894, + 0.21960784494876862, + 0.4627451002597809 + ], + "alpha": 1, + "hex": "#473876" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33185", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.33725491166114807, + 0.27450981736183167, + 0.545098066329956 + ], + "alpha": 1, + "hex": "#56468B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33186", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4117647111415863, + 0.3450980484485626, + 0.6784313917160034 + ], + "alpha": 1, + "hex": "#6958AD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33187", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4313725531101227, + 0.33725491166114807, + 0.8117647171020508 + ], + "alpha": 1, + "hex": "#6E56CF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33188", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4901960790157318, + 0.4000000059604645, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#7D66D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33189", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.729411780834198, + 0.6549019813537598, + 1 + ], + "alpha": 1, + "hex": "#BAA7FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33190", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.886274516582489, + 0.8666666746139526, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#E2DDFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33191", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Violet Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2666666805744171, + 0.13333334028720856, + 1 + ], + "alpha": 0.058800000697374344, + "hex": "#4422FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33192", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5215686559677124, + 0.24705882370471954, + 0.9764705896377563 + ], + "alpha": 0.08630000054836273, + "hex": "#853FF9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33193", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5137255191802979, + 0.3294117748737335, + 0.9960784316062927 + ], + "alpha": 0.2117999941110611, + "hex": "#8354FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33194", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4901960790157318, + 0.3176470696926117, + 0.9921568632125854 + ], + "alpha": 0.31369999051094055, + "hex": "#7D51FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33195", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5176470875740051, + 0.37254902720451355, + 0.9921568632125854 + ], + "alpha": 0.3725000023841858, + "hex": "#845FFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33196", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5607843399047852, + 0.42352941632270813, + 0.9921568632125854 + ], + "alpha": 0.42750000953674316, + "hex": "#8F6CFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33197", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5960784554481506, + 0.4745098054409027, + 1 + ], + "alpha": 0.513700008392334, + "hex": "#9879FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33198", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5921568870544434, + 0.4901960790157318, + 0.9960784316062927 + ], + "alpha": 0.6588000059127808, + "hex": "#977DFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33199", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5254902243614197, + 0.40784314274787903, + 1 + ], + "alpha": 0.800000011920929, + "hex": "#8668FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33200", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5686274766921997, + 0.4627451002597809, + 0.9960784316062927 + ], + "alpha": 0.8431000113487244, + "hex": "#9176FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33201", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.729411780834198, + 0.6549019813537598, + 1 + ], + "alpha": 1, + "hex": "#BAA7FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33202", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8901960849761963, + 0.8705882430076599, + 1 + ], + "alpha": 0.9961000084877014, + "hex": "#E3DEFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33203", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Iris": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07450980693101883, + 0.07450980693101883, + 0.11764705926179886 + ], + "alpha": 1, + "hex": "#13131E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33204", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09019608050584793, + 0.08627451211214066, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#171625" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33205", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.13333334028720856, + 0.2823529541492462 + ], + "alpha": 1, + "hex": "#202248" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33206", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.14901961386203766, + 0.16470588743686676, + 0.3960784375667572 + ], + "alpha": 1, + "hex": "#262A65" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33207", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.20000000298023224, + 0.45490196347236633 + ], + "alpha": 1, + "hex": "#303374" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33208", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.239215686917305, + 0.24313725531101227, + 0.5098039507865906 + ], + "alpha": 1, + "hex": "#3D3E82" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33209", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.29019609093666077, + 0.29019609093666077, + 0.5843137502670288 + ], + "alpha": 1, + "hex": "#4A4A95" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33210", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3490196168422699, + 0.3450980484485626, + 0.6941176652908325 + ], + "alpha": 1, + "hex": "#5958B1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33211", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.35686275362968445, + 0.35686275362968445, + 0.8392156958580017 + ], + "alpha": 1, + "hex": "#5B5BD6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33212", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4313725531101227, + 0.4156862795352936, + 0.8705882430076599 + ], + "alpha": 1, + "hex": "#6E6ADE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33213", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6941176652908325, + 0.6627451181411743, + 1 + ], + "alpha": 1, + "hex": "#B1A9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33214", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0.8745098114013672, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#E0DFFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33215", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Iris Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21176470816135406, + 0.21176470816135406, + 0.9960784316062927 + ], + "alpha": 0.05490000173449516, + "hex": "#3636FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33216", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.33725491166114807, + 0.29411765933036804, + 0.9764705896377563 + ], + "alpha": 0.08630000054836273, + "hex": "#564BF9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33217", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32156863808631897, + 0.35686275362968445, + 1 + ], + "alpha": 0.2313999980688095, + "hex": "#525BFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33218", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3019607961177826, + 0.3450980484485626, + 1 + ], + "alpha": 0.3528999984264374, + "hex": "#4D58FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33219", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.35686275362968445, + 0.3843137323856354, + 0.9921568632125854 + ], + "alpha": 0.4196000099182129, + "hex": "#5B62FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33220", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4274509847164154, + 0.43529412150382996, + 0.9921568632125854 + ], + "alpha": 0.47839999198913574, + "hex": "#6D6FFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33221", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.46666666865348816, + 0.46666666865348816, + 0.9960784316062927 + ], + "alpha": 0.5569000244140625, + "hex": "#7777FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33222", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48235294222831726, + 0.47843137383461, + 0.9960784316062927 + ], + "alpha": 0.6744999885559082, + "hex": "#7B7AFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33223", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4156862795352936, + 0.4156862795352936, + 0.9960784316062927 + ], + "alpha": 0.8313999772071838, + "hex": "#6A6AFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33224", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4901960790157318, + 0.4745098054409027, + 1 + ], + "alpha": 0.8626999855041504, + "hex": "#7D79FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33225", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6941176652908325, + 0.6627451181411743, + 1 + ], + "alpha": 1, + "hex": "#B1A9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33226", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8823529481887817, + 0.8784313797950745, + 1 + ], + "alpha": 0.9961000084877014, + "hex": "#E1E0FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33227", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Indigo": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.07450980693101883, + 0.12156862765550613 + ], + "alpha": 1, + "hex": "#11131F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33228", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0.09019608050584793, + 0.14901961386203766 + ], + "alpha": 1, + "hex": "#141726" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33229", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0941176488995552, + 0.1411764770746231, + 0.2862745225429535 + ], + "alpha": 1, + "hex": "#182449" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33230", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.18039216101169586, + 0.3843137323856354 + ], + "alpha": 1, + "hex": "#1D2E62" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33231", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.14509804546833038, + 0.2235294133424759, + 0.45490196347236633 + ], + "alpha": 1, + "hex": "#253974" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33232", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.26274511218070984, + 0.5176470875740051 + ], + "alpha": 1, + "hex": "#304384" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33233", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.22745098173618317, + 0.30980393290519714, + 0.5921568870544434 + ], + "alpha": 1, + "hex": "#3A4F97" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33234", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.26274511218070984, + 0.364705890417099, + 0.6941176652908325 + ], + "alpha": 1, + "hex": "#435DB1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33235", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.24313725531101227, + 0.38823530077934265, + 0.8666666746139526 + ], + "alpha": 1, + "hex": "#3E63DD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33236", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3294117748737335, + 0.4470588266849518, + 0.8941176533699036 + ], + "alpha": 1, + "hex": "#5472E4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33237", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6196078658103943, + 0.6941176652908325, + 1 + ], + "alpha": 1, + "hex": "#9EB1FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33238", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.8823529481887817, + 1 + ], + "alpha": 1, + "hex": "#D6E1FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33239", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Indigo Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.20000000298023224, + 1 + ], + "alpha": 0.058800000697374344, + "hex": "#1133FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33240", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20000000298023224, + 0.3294117748737335, + 0.9803921580314636 + ], + "alpha": 0.09019999951124191, + "hex": "#3354FA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33241", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18431372940540314, + 0.3843137323856354, + 1 + ], + "alpha": 0.2353000044822693, + "hex": "#2F62FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33242", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2078431397676468, + 0.4000000059604645, + 1 + ], + "alpha": 0.34119999408721924, + "hex": "#3566FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33243", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2549019753932953, + 0.4431372582912445, + 0.9921568632125854 + ], + "alpha": 0.4196000099182129, + "hex": "#4171FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33244", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3176470696926117, + 0.47058823704719543, + 0.9921568632125854 + ], + "alpha": 0.486299991607666, + "hex": "#5178FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33245", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3529411852359772, + 0.49803921580314636, + 1 + ], + "alpha": 0.5647000074386597, + "hex": "#5A7FFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33246", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.35686275362968445, + 0.5058823823928833, + 0.9960784316062927 + ], + "alpha": 0.6744999885559082, + "hex": "#5B81FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33247", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27450981736183167, + 0.4431372582912445, + 1 + ], + "alpha": 0.8587999939918518, + "hex": "#4671FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33248", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3607843220233917, + 0.4941176474094391, + 0.9960784316062927 + ], + "alpha": 0.8902000188827515, + "hex": "#5C7EFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33249", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6196078658103943, + 0.6941176652908325, + 1 + ], + "alpha": 1, + "hex": "#9EB1FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33250", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.8823529481887817, + 1 + ], + "alpha": 1, + "hex": "#D6E1FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33251", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Blue": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.08235294371843338, + 0.125490203499794 + ], + "alpha": 1, + "hex": "#0D1520" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33252", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.09803921729326248, + 0.15294118225574493 + ], + "alpha": 1, + "hex": "#111927" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33253", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.1568627506494522, + 0.27843138575553894 + ], + "alpha": 1, + "hex": "#0D2847" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33254", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.20000000298023224, + 0.3843137323856354 + ], + "alpha": 1, + "hex": "#003362" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33255", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.250980406999588, + 0.45490196347236633 + ], + "alpha": 1, + "hex": "#004074" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33256", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.062745101749897, + 0.3019607961177826, + 0.529411792755127 + ], + "alpha": 1, + "hex": "#104D87" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33257", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.364705890417099, + 0.6196078658103943 + ], + "alpha": 1, + "hex": "#205D9E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33258", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1568627506494522, + 0.43921568989753723, + 0.7411764860153198 + ], + "alpha": 1, + "hex": "#2870BD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33259", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5647059082984924, + 1 + ], + "alpha": 1, + "hex": "#0090FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33260", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23137255012989044, + 0.6196078658103943, + 1 + ], + "alpha": 1, + "hex": "#3B9EFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33261", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.43921568989753723, + 0.7215686440467834, + 1 + ], + "alpha": 1, + "hex": "#70B8FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33262", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.9019607901573181, + 1 + ], + "alpha": 1, + "hex": "#C2E6FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33263", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Blue Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.3019607961177826, + 0.9490196108818054 + ], + "alpha": 0.06669999659061432, + "hex": "#004DF2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33264", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.4000000059604645, + 0.9843137264251709 + ], + "alpha": 0.0940999984741211, + "hex": "#1166FB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33265", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.46666666865348816, + 1 + ], + "alpha": 0.22750000655651093, + "hex": "#0077FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33266", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.4588235318660736, + 1 + ], + "alpha": 0.34119999408721924, + "hex": "#0075FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33267", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5058823823928833, + 0.9921568632125854 + ], + "alpha": 0.4196000099182129, + "hex": "#0081FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33268", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05882352963089943, + 0.5372549295425415, + 0.9921568632125854 + ], + "alpha": 0.49799999594688416, + "hex": "#0F89FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33269", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16470588743686676, + 0.5686274766921997, + 0.9960784316062927 + ], + "alpha": 0.5960999727249146, + "hex": "#2A91FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33270", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.5803921818733215, + 0.9960784316062927 + ], + "alpha": 0.7254999876022339, + "hex": "#3094FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33271", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5647059082984924, + 1 + ], + "alpha": 1, + "hex": "#0090FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33272", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23137255012989044, + 0.6196078658103943, + 1 + ], + "alpha": 1, + "hex": "#3B9EFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33273", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.43921568989753723, + 0.7215686440467834, + 1 + ], + "alpha": 1, + "hex": "#70B8FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33274", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.9019607901573181, + 1 + ], + "alpha": 1, + "hex": "#C2E6FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33275", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Cyan": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.04313725605607033, + 0.08627451211214066, + 0.10196078568696976 + ], + "alpha": 1, + "hex": "#0B161A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33276", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.062745101749897, + 0.10588235408067703, + 0.125490203499794 + ], + "alpha": 1, + "hex": "#101B20" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33277", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0313725508749485, + 0.1725490242242813, + 0.21176470816135406 + ], + "alpha": 1, + "hex": "#082C36" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33278", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.21960784494876862, + 0.2823529541492462 + ], + "alpha": 1, + "hex": "#003848" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33279", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.2705882489681244, + 0.3450980484485626 + ], + "alpha": 1, + "hex": "#004558" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33280", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.01568627543747425, + 0.3294117748737335, + 0.40784314274787903 + ], + "alpha": 1, + "hex": "#045468" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33281", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.40392157435417175, + 0.4941176474094391 + ], + "alpha": 1, + "hex": "#12677E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33282", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.501960813999176, + 0.6117647290229797 + ], + "alpha": 1, + "hex": "#11809C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33283", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6352941393852234, + 0.7803921699523926 + ], + "alpha": 1, + "hex": "#00A2C7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33284", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.13725490868091583, + 0.686274528503418, + 0.8156862854957581 + ], + "alpha": 1, + "hex": "#23AFD0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33285", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2980392277240753, + 0.800000011920929, + 0.9019607901573181 + ], + "alpha": 1, + "hex": "#4CCCE6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33286", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7137255072593689, + 0.9254902005195618, + 0.9686274528503418 + ], + "alpha": 1, + "hex": "#B6ECF7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33287", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Cyan Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5686274766921997, + 0.9686274528503418 + ], + "alpha": 0.03920000046491623, + "hex": "#0091F7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33288", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.007843137718737125, + 0.6549019813537598, + 0.9490196108818054 + ], + "alpha": 0.06669999659061432, + "hex": "#02A7F2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33289", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7450980544090271, + 0.9921568632125854 + ], + "alpha": 0.15690000355243683, + "hex": "#00BEFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33290", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.729411780834198, + 1 + ], + "alpha": 0.2313999980688095, + "hex": "#00BAFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33291", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7450980544090271, + 0.9921568632125854 + ], + "alpha": 0.3019999861717224, + "hex": "#00BEFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33292", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7803921699523926, + 0.9921568632125854 + ], + "alpha": 0.3686000108718872, + "hex": "#00C7FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33293", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0.8039215803146362, + 1 + ], + "alpha": 0.45879998803138733, + "hex": "#14CDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33294", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.8117647171020508, + 1 + ], + "alpha": 0.5842999815940857, + "hex": "#11CFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33295", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8117647171020508, + 1 + ], + "alpha": 0.7646999955177307, + "hex": "#00CFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33296", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1568627506494522, + 0.8392156958580017, + 1 + ], + "alpha": 0.8039000034332275, + "hex": "#28D6FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33297", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32156863808631897, + 0.8823529481887817, + 0.9960784316062927 + ], + "alpha": 0.8980000019073486, + "hex": "#52E1FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33298", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7333333492279053, + 0.9529411792755127, + 0.9960784316062927 + ], + "alpha": 0.9685999751091003, + "hex": "#BBF3FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33299", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Teal": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.08235294371843338, + 0.0784313753247261 + ], + "alpha": 1, + "hex": "#0D1514" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33300", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.10980392247438431, + 0.10588235408067703 + ], + "alpha": 1, + "hex": "#111C1B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33301", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.1764705926179886, + 0.16470588743686676 + ], + "alpha": 1, + "hex": "#0D2D2A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33302", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.007843137718737125, + 0.23137255012989044, + 0.21568627655506134 + ], + "alpha": 1, + "hex": "#023B37" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33303", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0313725508749485, + 0.2823529541492462, + 0.26274511218070984 + ], + "alpha": 1, + "hex": "#084843" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33304", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0.34117648005485535, + 0.3137255012989044 + ], + "alpha": 1, + "hex": "#145750" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33305", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.4117647111415863, + 0.3803921639919281 + ], + "alpha": 1, + "hex": "#1C6961" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33306", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.4941176474094391, + 0.45098039507865906 + ], + "alpha": 1, + "hex": "#207E73" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33307", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.6470588445663452, + 0.5803921818733215 + ], + "alpha": 1, + "hex": "#12A594" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33308", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.054901961237192154, + 0.7019608020782471, + 0.6196078658103943 + ], + "alpha": 1, + "hex": "#0EB39E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33309", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.04313725605607033, + 0.8470588326454163, + 0.7137255072593689 + ], + "alpha": 1, + "hex": "#0BD8B6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33310", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6784313917160034, + 0.9411764740943909, + 0.8666666746139526 + ], + "alpha": 1, + "hex": "#ADF0DD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33311", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Teal Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8705882430076599, + 0.6705882549285889 + ], + "alpha": 0.019600000232458115, + "hex": "#00DEAB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33312", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.9843137264251709, + 0.9019607901573181 + ], + "alpha": 0.0471000000834465, + "hex": "#12FBE6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33313", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 1, + 0.9019607901573181 + ], + "alpha": 0.11760000139474869, + "hex": "#00FFE6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33314", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 1, + 0.9137254953384399 + ], + "alpha": 0.17649999260902405, + "hex": "#00FFE9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33315", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 1, + 0.9176470637321472 + ], + "alpha": 0.2313999980688095, + "hex": "#00FFEA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33316", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 1, + 0.9098039269447327 + ], + "alpha": 0.29409998655319214, + "hex": "#1CFFE8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33317", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18039216101169586, + 0.9921568632125854, + 0.9098039269447327 + ], + "alpha": 0.3725000023841858, + "hex": "#2EFDE8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33318", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.19607843458652496, + 1, + 0.9058823585510254 + ], + "alpha": 0.45879998803138733, + "hex": "#32FFE7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33319", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07450980693101883, + 1, + 0.8941176533699036 + ], + "alpha": 0.6234999895095825, + "hex": "#13FFE4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33320", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 1, + 0.8784313797950745 + ], + "alpha": 0.6823999881744385, + "hex": "#0DFFE0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33321", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.03921568766236305, + 0.9960784316062927, + 0.8352941274642944 + ], + "alpha": 0.8392000198364258, + "hex": "#0AFED5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33322", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7215686440467834, + 1, + 0.9215686321258545 + ], + "alpha": 0.9373000264167786, + "hex": "#B8FFEB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33323", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Jade": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.08235294371843338, + 0.07058823853731155 + ], + "alpha": 1, + "hex": "#0D1512" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33324", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.10980392247438431, + 0.0941176488995552 + ], + "alpha": 1, + "hex": "#121C18" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33325", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05882352963089943, + 0.18039216101169586, + 0.13333334028720856 + ], + "alpha": 1, + "hex": "#0F2E22" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33326", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.04313725605607033, + 0.23137255012989044, + 0.1725490242242813 + ], + "alpha": 1, + "hex": "#0B3B2C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33327", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.2823529541492462, + 0.21568627655506134 + ], + "alpha": 1, + "hex": "#114837" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33328", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10588235408067703, + 0.34117648005485535, + 0.2705882489681244 + ], + "alpha": 1, + "hex": "#1B5745" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33329", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1411764770746231, + 0.40784314274787903, + 0.3294117748737335 + ], + "alpha": 1, + "hex": "#246854" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33330", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16470588743686676, + 0.4941176474094391, + 0.40784314274787903 + ], + "alpha": 1, + "hex": "#2A7E68" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33331", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16078431904315948, + 0.6392157077789307, + 0.5137255191802979 + ], + "alpha": 1, + "hex": "#29A383" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33332", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.15294118225574493, + 0.6901960968971252, + 0.545098066329956 + ], + "alpha": 1, + "hex": "#27B08B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33333", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0.8470588326454163, + 0.6431372761726379 + ], + "alpha": 1, + "hex": "#1FD8A4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33334", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6784313917160034, + 0.9411764740943909, + 0.8313725590705872 + ], + "alpha": 1, + "hex": "#ADF0D4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33335", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Jade Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8705882430076599, + 0.2705882489681244 + ], + "alpha": 0.019600000232458115, + "hex": "#00DE45" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33336", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.15294118225574493, + 0.9843137264251709, + 0.6509804129600525 + ], + "alpha": 0.0471000000834465, + "hex": "#27FBA6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33337", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.007843137718737125, + 0.9764705896377563, + 0.6000000238418579 + ], + "alpha": 0.12549999356269836, + "hex": "#02F999" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33338", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 1, + 0.6666666865348816 + ], + "alpha": 0.17649999260902405, + "hex": "#00FFAA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33339", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 1, + 0.7137255072593689 + ], + "alpha": 0.2313999980688095, + "hex": "#11FFB6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33340", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20392157137393951, + 1, + 0.7607843279838562 + ], + "alpha": 0.29409998655319214, + "hex": "#34FFC2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33341", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2705882489681244, + 0.9921568632125854, + 0.7803921699523926 + ], + "alpha": 0.3686000108718872, + "hex": "#45FDC7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33342", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2823529541492462, + 1, + 0.8117647171020508 + ], + "alpha": 0.45879998803138733, + "hex": "#48FFCF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33343", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21960784494876862, + 0.9960784316062927, + 0.7921568751335144 + ], + "alpha": 0.6157000064849854, + "hex": "#38FECA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33344", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1921568661928177, + 0.9960784316062927, + 0.7803921699523926 + ], + "alpha": 0.6705999970436096, + "hex": "#31FEC7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33345", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12941177189350128, + 0.9960784316062927, + 0.7529411911964417 + ], + "alpha": 0.8392000198364258, + "hex": "#21FEC0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33346", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7215686440467834, + 1, + 0.8823529481887817 + ], + "alpha": 0.9373000264167786, + "hex": "#B8FFE1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33347", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Green": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.054901961237192154, + 0.08235294371843338, + 0.07058823853731155 + ], + "alpha": 1, + "hex": "#0E1512" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33348", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.10588235408067703, + 0.09019608050584793 + ], + "alpha": 1, + "hex": "#121B17" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33349", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07450980693101883, + 0.1764705926179886, + 0.12941177189350128 + ], + "alpha": 1, + "hex": "#132D21" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33350", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.23137255012989044, + 0.16078431904315948 + ], + "alpha": 1, + "hex": "#113B29" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33351", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09019608050584793, + 0.2862745225429535, + 0.20000000298023224 + ], + "alpha": 1, + "hex": "#174933" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33352", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.34117648005485535, + 0.24313725531101227 + ], + "alpha": 1, + "hex": "#20573E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33353", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1568627506494522, + 0.40784314274787903, + 0.29019609093666077 + ], + "alpha": 1, + "hex": "#28684A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33354", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18431372940540314, + 0.48627451062202454, + 0.34117648005485535 + ], + "alpha": 1, + "hex": "#2F7C57" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33355", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.6431372761726379, + 0.42352941632270813 + ], + "alpha": 1, + "hex": "#30A46C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33356", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20000000298023224, + 0.6901960968971252, + 0.45490196347236633 + ], + "alpha": 1, + "hex": "#33B074" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33357", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.239215686917305, + 0.8392156958580017, + 0.5490196347236633 + ], + "alpha": 1, + "hex": "#3DD68C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33358", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6941176652908325, + 0.9450980424880981, + 0.7960784435272217 + ], + "alpha": 1, + "hex": "#B1F1CB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33359", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Green Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8705882430076599, + 0.2705882489681244 + ], + "alpha": 0.019600000232458115, + "hex": "#00DE45" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33360", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16078431904315948, + 0.9764705896377563, + 0.615686297416687 + ], + "alpha": 0.04309999942779541, + "hex": "#29F99D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33361", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.13333334028720856, + 1, + 0.6000000238418579 + ], + "alpha": 0.11760000139474869, + "hex": "#22FF99" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33362", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 1, + 0.6000000238418579 + ], + "alpha": 0.17649999260902405, + "hex": "#11FF99" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33363", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16862745583057404, + 1, + 0.6352941393852234 + ], + "alpha": 0.2353000044822693, + "hex": "#2BFFA2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33364", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2666666805744171, + 1, + 0.6666666865348816 + ], + "alpha": 0.29409998655319214, + "hex": "#44FFAA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33365", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3137255012989044, + 0.9921568632125854, + 0.6745098233222961 + ], + "alpha": 0.3686000108718872, + "hex": "#50FDAC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33366", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3294117748737335, + 1, + 0.6784313917160034 + ], + "alpha": 0.45100000500679016, + "hex": "#54FFAD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33367", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2666666805744171, + 1, + 0.6431372761726379 + ], + "alpha": 0.6195999979972839, + "hex": "#44FFA4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33368", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.26274511218070984, + 0.9960784316062927, + 0.6431372761726379 + ], + "alpha": 0.6705999970436096, + "hex": "#43FEA4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33369", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27450981736183167, + 0.9960784316062927, + 0.6470588445663452 + ], + "alpha": 0.8313999772071838, + "hex": "#46FEA5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33370", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7333333492279053, + 1, + 0.843137264251709 + ], + "alpha": 0.9412000179290771, + "hex": "#BBFFD7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33371", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Grass": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.054901961237192154, + 0.08235294371843338, + 0.06666667014360428 + ], + "alpha": 1, + "hex": "#0E1511" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33372", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0.10196078568696976, + 0.08235294371843338 + ], + "alpha": 1, + "hex": "#141A15" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33373", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10588235408067703, + 0.16470588743686676, + 0.11764705926179886 + ], + "alpha": 1, + "hex": "#1B2A1E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33374", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.22745098173618317, + 0.1411764770746231 + ], + "alpha": 1, + "hex": "#1D3A24" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33375", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.14509804546833038, + 0.2823529541492462, + 0.1764705926179886 + ], + "alpha": 1, + "hex": "#25482D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33376", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1764705926179886, + 0.34117648005485535, + 0.21176470816135406 + ], + "alpha": 1, + "hex": "#2D5736" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33377", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21176470816135406, + 0.40392157435417175, + 0.250980406999588 + ], + "alpha": 1, + "hex": "#366740" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33378", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.24313725531101227, + 0.4745098054409027, + 0.2862745225429535 + ], + "alpha": 1, + "hex": "#3E7949" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33379", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27450981736183167, + 0.6549019813537598, + 0.3450980484485626 + ], + "alpha": 1, + "hex": "#46A758" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33380", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32549020648002625, + 0.7019608020782471, + 0.3960784375667572 + ], + "alpha": 1, + "hex": "#53B365" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33381", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4431372582912445, + 0.8156862854957581, + 0.5137255191802979 + ], + "alpha": 1, + "hex": "#71D083" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33382", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.9411764740943909, + 0.7607843279838562 + ], + "alpha": 1, + "hex": "#C2F0C2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33383", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Grass Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8705882430076599, + 0.07058823853731155 + ], + "alpha": 0.019600000232458115, + "hex": "#00DE12" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33384", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3686274588108063, + 0.9686274528503418, + 0.47058823704719543 + ], + "alpha": 0.03920000046491623, + "hex": "#5EF778" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33385", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.43921568989753723, + 0.9960784316062927, + 0.5490196347236633 + ], + "alpha": 0.10589999705553055, + "hex": "#70FE8C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33386", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.34117648005485535, + 1, + 0.501960813999176 + ], + "alpha": 0.17249999940395355, + "hex": "#57FF80" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33387", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.40784314274787903, + 1, + 0.545098066329956 + ], + "alpha": 0.2313999980688095, + "hex": "#68FF8B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33388", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4431372582912445, + 1, + 0.5607843399047852 + ], + "alpha": 0.29409998655319214, + "hex": "#71FF8F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33389", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.46666666865348816, + 0.9921568632125854, + 0.572549045085907 + ], + "alpha": 0.36469998955726624, + "hex": "#77FD92" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33390", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.46666666865348816, + 0.9921568632125854, + 0.5647059082984924 + ], + "alpha": 0.4392000138759613, + "hex": "#77FD90" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33391", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3960784375667572, + 1, + 0.5098039507865906 + ], + "alpha": 0.6313999891281128, + "hex": "#65FF82" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33392", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4470588266849518, + 1, + 0.5529412031173706 + ], + "alpha": 0.6823999881744385, + "hex": "#72FF8D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33393", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5372549295425415, + 1, + 0.6235294342041016 + ], + "alpha": 0.8039000034332275, + "hex": "#89FF9F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33394", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8078431487083435, + 1, + 0.8078431487083435 + ], + "alpha": 0.9373000264167786, + "hex": "#CEFFCE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33395", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Lime": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.07450980693101883, + 0.0470588244497776 + ], + "alpha": 1, + "hex": "#11130C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33396", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.08235294371843338, + 0.10196078568696976, + 0.062745101749897 + ], + "alpha": 1, + "hex": "#151A10" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33397", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0.16078431904315948, + 0.09019608050584793 + ], + "alpha": 1, + "hex": "#1F2917" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33398", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16078431904315948, + 0.21568627655506134, + 0.11372549086809158 + ], + "alpha": 1, + "hex": "#29371D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33399", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20000000298023224, + 0.2666666805744171, + 0.13725490868091583 + ], + "alpha": 1, + "hex": "#334423" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33400", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.239215686917305, + 0.32156863808631897, + 0.16470588743686676 + ], + "alpha": 1, + "hex": "#3D522A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33401", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2862745225429535, + 0.3843137323856354, + 0.1921568661928177 + ], + "alpha": 1, + "hex": "#496231" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33402", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.34117648005485535, + 0.4588235318660736, + 0.21960784494876862 + ], + "alpha": 1, + "hex": "#577538" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33403", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7411764860153198, + 0.9333333373069763, + 0.38823530077934265 + ], + "alpha": 1, + "hex": "#BDEE63" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33404", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8313725590705872, + 1, + 0.43921568989753723 + ], + "alpha": 1, + "hex": "#D4FF70" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33405", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7411764860153198, + 0.8980392217636108, + 0.42352941632270813 + ], + "alpha": 1, + "hex": "#BDE56C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33406", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8901960849761963, + 0.9686274528503418, + 0.729411780834198 + ], + "alpha": 1, + "hex": "#E3F7BA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33407", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Lime Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.7333333492279053, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#11BB00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33408", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.47058823704719543, + 0.9686274528503418, + 0 + ], + "alpha": 0.03920000046491623, + "hex": "#78F700" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33409", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6078431606292725, + 0.9921568632125854, + 0.2980392277240753 + ], + "alpha": 0.10199999809265137, + "hex": "#9BFD4C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33410", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6549019813537598, + 0.9960784316062927, + 0.3607843220233917 + ], + "alpha": 0.1607999950647354, + "hex": "#A7FE5C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33411", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.686274528503418, + 0.9960784316062927, + 0.3960784375667572 + ], + "alpha": 0.21570000052452087, + "hex": "#AFFE65" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33412", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6980392336845398, + 0.9960784316062927, + 0.4274509847164154 + ], + "alpha": 0.2745000123977661, + "hex": "#B2FE6D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33413", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7137255072593689, + 1, + 0.43529412150382996 + ], + "alpha": 0.34119999408721924, + "hex": "#B6FF6F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33414", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7137255072593689, + 0.9921568632125854, + 0.4274509847164154 + ], + "alpha": 0.4235000014305115, + "hex": "#B6FD6D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33415", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7921568751335144, + 1, + 0.4117647111415863 + ], + "alpha": 0.9294000267982483, + "hex": "#CAFF69" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33416", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8313725590705872, + 1, + 0.43921568989753723 + ], + "alpha": 1, + "hex": "#D4FF70" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33417", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.9960784316062927, + 0.46666666865348816 + ], + "alpha": 0.89410001039505, + "hex": "#D1FE77" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33418", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9137254953384399, + 0.9960784316062927, + 0.7490196228027344 + ], + "alpha": 0.9685999751091003, + "hex": "#E9FEBF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33419", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Mint": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.054901961237192154, + 0.08235294371843338, + 0.08235294371843338 + ], + "alpha": 1, + "hex": "#0E1515" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33420", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05882352963089943, + 0.10588235408067703, + 0.10588235408067703 + ], + "alpha": 1, + "hex": "#0F1B1B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33421", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.03529411926865578, + 0.1725490242242813, + 0.16862745583057404 + ], + "alpha": 1, + "hex": "#092C2B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33422", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.22745098173618317, + 0.21960784494876862 + ], + "alpha": 1, + "hex": "#003A38" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33423", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.27843138575553894, + 0.2666666805744171 + ], + "alpha": 1, + "hex": "#004744" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33424", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.062745101749897, + 0.33725491166114807, + 0.3137255012989044 + ], + "alpha": 1, + "hex": "#105650" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33425", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11764705926179886, + 0.40784314274787903, + 0.37254902720451355 + ], + "alpha": 1, + "hex": "#1E685F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33426", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.15294118225574493, + 0.49803921580314636, + 0.43921568989753723 + ], + "alpha": 1, + "hex": "#277F70" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33427", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5254902243614197, + 0.9176470637321472, + 0.8313725590705872 + ], + "alpha": 1, + "hex": "#86EAD4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33428", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.658823549747467, + 0.9607843160629272, + 0.8980392217636108 + ], + "alpha": 1, + "hex": "#A8F5E5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33429", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3450980484485626, + 0.8352941274642944, + 0.729411780834198 + ], + "alpha": 1, + "hex": "#58D5BA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33430", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7686274647712708, + 0.9607843160629272, + 0.8823529481887817 + ], + "alpha": 1, + "hex": "#C4F5E1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33431", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Mint Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8705882430076599, + 0.8705882430076599 + ], + "alpha": 0.019600000232458115, + "hex": "#00DEDE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33432", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.9764705896377563, + 0.9764705896377563 + ], + "alpha": 0.04309999942779541, + "hex": "#00F9F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33433", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 1, + 0.9647058844566345 + ], + "alpha": 0.1137000024318695, + "hex": "#00FFF6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33434", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 1, + 0.95686274766922 + ], + "alpha": 0.17249999940395355, + "hex": "#00FFF4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33435", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 1, + 0.9490196108818054 + ], + "alpha": 0.22750000655651093, + "hex": "#00FFF2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33436", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.054901961237192154, + 1, + 0.9215686321258545 + ], + "alpha": 0.29019999504089355, + "hex": "#0EFFEB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33437", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20392157137393951, + 0.9921568632125854, + 0.8980392217636108 + ], + "alpha": 0.3686000108718872, + "hex": "#34FDE5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33438", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2549019753932953, + 1, + 0.8745098114013672 + ], + "alpha": 0.4627000093460083, + "hex": "#41FFDF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33439", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.572549045085907, + 1, + 0.9058823585510254 + ], + "alpha": 0.9136999845504761, + "hex": "#92FFE7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33440", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6823529601097107, + 0.9960784316062927, + 0.929411768913269 + ], + "alpha": 0.9607999920845032, + "hex": "#AEFEED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33441", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.40392157435417175, + 1, + 0.8705882430076599 + ], + "alpha": 0.8234999775886536, + "hex": "#67FFDE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33442", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7960784435272217, + 0.9960784316062927, + 0.9137254953384399 + ], + "alpha": 0.9607999920845032, + "hex": "#CBFEE9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33443", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sky": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.0784313753247261, + 0.12156862765550613 + ], + "alpha": 1, + "hex": "#0D141F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33444", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.10196078568696976, + 0.15294118225574493 + ], + "alpha": 1, + "hex": "#111A27" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33445", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.1568627506494522, + 0.250980406999588 + ], + "alpha": 1, + "hex": "#112840" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33446", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.2078431397676468, + 0.3333333432674408 + ], + "alpha": 1, + "hex": "#113555" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33447", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.08235294371843338, + 0.2666666805744171, + 0.40392157435417175 + ], + "alpha": 1, + "hex": "#154467" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33448", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10588235408067703, + 0.32549020648002625, + 0.48235294222831726 + ], + "alpha": 1, + "hex": "#1B537B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33449", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0.4000000059604645, + 0.572549045085907 + ], + "alpha": 1, + "hex": "#1F6692" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33450", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.48627451062202454, + 0.6823529601097107 + ], + "alpha": 1, + "hex": "#197CAE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33451", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.886274516582489, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#7CE2FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33452", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.658823549747467, + 0.9333333373069763, + 1 + ], + "alpha": 1, + "hex": "#A8EEFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33453", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4588235318660736, + 0.7803921699523926, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#75C7F0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33454", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.9529411792755127, + 1 + ], + "alpha": 1, + "hex": "#C2F3FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33455", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sky Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.2666666805744171, + 1 + ], + "alpha": 0.058800000697374344, + "hex": "#0044FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33456", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.4431372582912445, + 0.9843137264251709 + ], + "alpha": 0.0940999984741211, + "hex": "#1171FB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33457", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.5176470875740051, + 0.9882352948188782 + ], + "alpha": 0.20000000298023224, + "hex": "#1184FC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33458", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.5607843399047852, + 1 + ], + "alpha": 0.28630000352859497, + "hex": "#128FFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33459", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.615686297416687, + 0.9921568632125854 + ], + "alpha": 0.36469998955726624, + "hex": "#1C9DFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33460", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1568627506494522, + 0.6470588445663452, + 1 + ], + "alpha": 0.4471000134944916, + "hex": "#28A5FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33461", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16862745583057404, + 0.6784313917160034, + 0.9960784316062927 + ], + "alpha": 0.5450999736785889, + "hex": "#2BADFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33462", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.6980392336845398, + 0.9960784316062927 + ], + "alpha": 0.6626999974250793, + "hex": "#1DB2FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33463", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.8901960849761963, + 1 + ], + "alpha": 0.9961000084877014, + "hex": "#7CE3FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33464", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.658823549747467, + 0.9333333373069763, + 1 + ], + "alpha": 1, + "hex": "#A8EEFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33465", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.8274509906768799, + 1 + ], + "alpha": 0.9373000264167786, + "hex": "#7CD3FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33466", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.9529411792755127, + 1 + ], + "alpha": 1, + "hex": "#C2F3FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33467", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Custom": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.06666667014360428, + 0.07450980693101883 + ], + "alpha": 1, + "hex": "#111113" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33468", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.09803921729326248, + 0.10588235408067703 + ], + "alpha": 1, + "hex": "#19191B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33469", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.13333334028720856, + 0.13725490868091583, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#222325" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33470", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16078431904315948, + 0.16470588743686676, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#292A2E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33471", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.1921568661928177, + 0.21176470816135406 + ], + "alpha": 1, + "hex": "#303136" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33472", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2235294133424759, + 0.22745098173618317, + 0.250980406999588 + ], + "alpha": 1, + "hex": "#393A40" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33473", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27450981736183167, + 0.2823529541492462, + 0.30980393290519714 + ], + "alpha": 1, + "hex": "#46484F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33474", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.37254902720451355, + 0.3764705955982208, + 0.4156862795352936 + ], + "alpha": 1, + "hex": "#5F606A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33475", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.42352941632270813, + 0.4313725531101227, + 0.4745098054409027 + ], + "alpha": 1, + "hex": "#6C6E79" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33476", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.37254902720451355, + 0.3803921639919281, + 0.41960784792900085 + ], + "alpha": 1, + "hex": "#5F616B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33477", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6980392336845398, + 0.7019608020782471, + 0.7411764860153198 + ], + "alpha": 1, + "hex": "#B2B3BD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33478", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.9333333373069763, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#EEEEF0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33479", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Custom Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.06666667014360428, + 0.06666667014360428, + 0.7333333492279053 + ], + "alpha": 0.011800000444054604, + "hex": "#1111BB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33480", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7960784435272217, + 0.7960784435272217, + 0.9764705896377563 + ], + "alpha": 0.04309999942779541, + "hex": "#CBCBF9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33481", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.886274516582489, + 0.9764705896377563 + ], + "alpha": 0.08630000054836273, + "hex": "#D6E2F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33482", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.8509804010391235, + 0.9764705896377563 + ], + "alpha": 0.12549999356269836, + "hex": "#D1D9F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33483", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.843137264251709, + 0.8666666746139526, + 0.9921568632125854 + ], + "alpha": 0.15690000355243683, + "hex": "#D7DDFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33484", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8509804010391235, + 0.8705882430076599, + 0.9882352948188782 + ], + "alpha": 0.20000000298023224, + "hex": "#D9DEFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33485", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8549019694328308, + 0.886274516582489, + 0.9921568632125854 + ], + "alpha": 0.26269999146461487, + "hex": "#DAE2FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33486", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0.8901960849761963, + 0.9921568632125854 + ], + "alpha": 0.3765000104904175, + "hex": "#E0E3FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33487", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0.8941176533699036, + 0.9921568632125854 + ], + "alpha": 0.4392000138759613, + "hex": "#E0E4FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33488", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8705882430076599, + 0.8901960849761963, + 0.9921568632125854 + ], + "alpha": 0.38040000200271606, + "hex": "#DEE3FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33489", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9372549057006836, + 0.9411764740943909, + 0.9960784316062927 + ], + "alpha": 0.7254999876022339, + "hex": "#EFF0FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33490", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9921568632125854, + 1 + ], + "alpha": 0.9373000264167786, + "hex": "#FDFDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33491", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + } + }, + "Overlays": { + "Black Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.05000000074505806, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33492", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.10000000149011612, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33493", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.15000000596046448, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33494", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.20000000298023224, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33495", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.30000001192092896, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33496", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.4000000059604645, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33497", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.5, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33498", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.6000000238418579, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33499", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.699999988079071, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33500", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.800000011920929, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33501", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.8999999761581421, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33502", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.949999988079071, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33503", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + } + }, + "White Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.05000000074505806, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33504", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.10000000149011612, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33505", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.15000000596046448, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33506", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.20000000298023224, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33507", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.30000001192092896, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33508", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.4000000059604645, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33509", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.5, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33510", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.6000000238418579, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33511", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.699999988079071, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33512", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.800000011920929, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33513", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.8999999761581421, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33514", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.949999988079071, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33515", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + } + } + }, + "$extensions": { + "com.figma.modeName": "Dark" + } +} \ No newline at end of file diff --git a/scripts/tokens/Light.tokens.json b/scripts/tokens/Light.tokens.json new file mode 100644 index 0000000..494945e --- /dev/null +++ b/scripts/tokens/Light.tokens.json @@ -0,0 +1,16161 @@ +{ + "Variables": { + "Misc": { + "white-to-dark": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 1, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32718", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:28952341e8abefdf84c04c1ec4c29219d9a48886/-1:-1", + "targetVariableName": "Colors/Default/white", + "targetVariableSetId": "VariableCollectionId:30bb878463a6ae8733892f82b140e5c644dcbe6c/-1:-1", + "targetVariableSetName": "Theme ✦" + }, + "com.figma.isOverride": true + } + }, + "white-to-dark-2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.8999999761581421, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32719", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "dark-to-white": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.125490203499794, + 0.1411764770746231 + ], + "alpha": 1, + "hex": "#1C2024" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32720", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:34522b751402151ea54cdb37930d2691161b14b9/-1:-1", + "targetVariableName": "Colors/Neutral/Neutral/12", + "targetVariableSetId": "VariableCollectionId:30bb878463a6ae8733892f82b140e5c644dcbe6c/-1:-1", + "targetVariableSetName": "Theme ✦" + }, + "com.figma.isOverride": true + } + }, + "backdrop": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0313725508749485, + 0.1882352977991104 + ], + "alpha": 0.2745000123977661, + "hex": "#000830" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32721", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1d65b885bbe934c92ec2a580cec76091f0e0516a/-1:-1", + "targetVariableName": "Colors/Neutral/Neutral Alpha/8", + "targetVariableSetId": "VariableCollectionId:30bb878463a6ae8733892f82b140e5c644dcbe6c/-1:-1", + "targetVariableSetName": "Theme ✦" + }, + "com.figma.isOverride": true + } + } + }, + "Effects": { + "translucent": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.800000011920929, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32722", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "solid": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 1, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32723", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:28952341e8abefdf84c04c1ec4c29219d9a48886/-1:-1", + "targetVariableName": "Colors/Default/white", + "targetVariableSetId": "VariableCollectionId:30bb878463a6ae8733892f82b140e5c644dcbe6c/-1:-1", + "targetVariableSetName": "Theme ✦" + }, + "com.figma.isOverride": true + } + } + } + }, + "Colors": { + "Gray": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.9882352948188782, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FCFCFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32724", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.9764705896377563, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#F9F9F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32725", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.9411764740943909, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#F0F0F0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32726", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9098039269447327, + 0.9098039269447327, + 0.9098039269447327 + ], + "alpha": 1, + "hex": "#E8E8E8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32727", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0.8784313797950745, + 0.8784313797950745 + ], + "alpha": 1, + "hex": "#E0E0E0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32728", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8509804010391235, + 0.8509804010391235, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#D9D9D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32729", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8078431487083435, + 0.8078431487083435, + 0.8078431487083435 + ], + "alpha": 1, + "hex": "#CECECE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32730", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7333333492279053, + 0.7333333492279053, + 0.7333333492279053 + ], + "alpha": 1, + "hex": "#BBBBBB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32731", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5529412031173706, + 0.5529412031173706, + 0.5529412031173706 + ], + "alpha": 1, + "hex": "#8D8D8D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32732", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5137255191802979, + 0.5137255191802979, + 0.5137255191802979 + ], + "alpha": 1, + "hex": "#838383" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32733", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3921568691730499, + 0.3921568691730499, + 0.3921568691730499 + ], + "alpha": 1, + "hex": "#646464" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32734", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.125490203499794, + 0.125490203499794 + ], + "alpha": 1, + "hex": "#202020" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32735", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Gray Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32736", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.023499999195337296, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32737", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.058800000697374344, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32738", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.09019999951124191, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32739", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.12160000205039978, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32740", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.14900000393390656, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32741", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.19220000505447388, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32742", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.26669999957084656, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32743", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.4471000134944916, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32744", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.486299991607666, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32745", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.6078000068664551, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32746", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.8744999766349792, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32747", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Mauve": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9882352948188782, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#FDFCFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32748", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9803921580314636, + 0.9764705896377563, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#FAF9FB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32749", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.9372549057006836, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#F2EFF3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32750", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9176470637321472, + 0.9058823585510254, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#EAE7EC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32751", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8901960849761963, + 0.8745098114013672, + 0.9019607901573181 + ], + "alpha": 1, + "hex": "#E3DFE6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32752", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8588235378265381, + 0.8470588326454163, + 0.8784313797950745 + ], + "alpha": 1, + "hex": "#DBD8E0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32753", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8156862854957581, + 0.8039215803146362, + 0.843137264251709 + ], + "alpha": 1, + "hex": "#D0CDD7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32754", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7372549176216125, + 0.729411780834198, + 0.7803921699523926 + ], + "alpha": 1, + "hex": "#BCBAC7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32755", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5568627715110779, + 0.5490196347236633, + 0.6000000238418579 + ], + "alpha": 1, + "hex": "#8E8C99" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32756", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5176470875740051, + 0.5098039507865906, + 0.5568627715110779 + ], + "alpha": 1, + "hex": "#84828E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32757", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3960784375667572, + 0.38823530077934265, + 0.4274509847164154 + ], + "alpha": 1, + "hex": "#65636D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32758", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12941177189350128, + 0.12156862765550613, + 0.14901961386203766 + ], + "alpha": 1, + "hex": "#211F26" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32759", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Mauve Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0, + 0.3333333432674408 + ], + "alpha": 0.011800000444054604, + "hex": "#550055" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32760", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16862745583057404, + 0, + 0.3333333432674408 + ], + "alpha": 0.023499999195337296, + "hex": "#2B0055" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32761", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0, + 0.250980406999588 + ], + "alpha": 0.06270000338554382, + "hex": "#300040" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32762", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0, + 0.21176470816135406 + ], + "alpha": 0.0940999984741211, + "hex": "#200036" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32763", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0, + 0.21960784494876862 + ], + "alpha": 0.12549999356269836, + "hex": "#200038" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32764", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0, + 0.2078431397676468 + ], + "alpha": 0.15289999544620514, + "hex": "#140035" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32765", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.062745101749897, + 0, + 0.20000000298023224 + ], + "alpha": 0.19609999656677246, + "hex": "#100033" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32766", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0313725508749485, + 0, + 0.1921568661928177 + ], + "alpha": 0.27059999108314514, + "hex": "#080031" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32767", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.019607843831181526, + 0, + 0.11372549086809158 + ], + "alpha": 0.45100000500679016, + "hex": "#05001D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32768", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.019607843831181526, + 0, + 0.09803921729326248 + ], + "alpha": 0.490200012922287, + "hex": "#050019" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32769", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.01568627543747425, + 0, + 0.06666667014360428 + ], + "alpha": 0.6118000149726868, + "hex": "#040011" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32770", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.007843137718737125, + 0, + 0.0313725508749485 + ], + "alpha": 0.8784000277519226, + "hex": "#020008" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32771", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Slate": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.9882352948188782, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#FCFCFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32772", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.9764705896377563, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#F9F9FB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32773", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.9411764740943909, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#F0F0F3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32774", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9098039269447327, + 0.9098039269447327, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#E8E8EC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32775", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0.8823529481887817, + 0.9019607901573181 + ], + "alpha": 1, + "hex": "#E0E1E6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32776", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8509804010391235, + 0.8509804010391235, + 0.8784313797950745 + ], + "alpha": 1, + "hex": "#D9D9E0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32777", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8039215803146362, + 0.8078431487083435, + 0.8392156958580017 + ], + "alpha": 1, + "hex": "#CDCED6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32778", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7254902124404907, + 0.7333333492279053, + 0.7764706015586853 + ], + "alpha": 1, + "hex": "#B9BBC6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32779", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.545098066329956, + 0.5529412031173706, + 0.5960784554481506 + ], + "alpha": 1, + "hex": "#8B8D98" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32780", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.501960813999176, + 0.5137255191802979, + 0.5529412031173706 + ], + "alpha": 1, + "hex": "#80838D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32781", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3764705955982208, + 0.3921568691730499, + 0.42352941632270813 + ], + "alpha": 1, + "hex": "#60646C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32782", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.125490203499794, + 0.1411764770746231 + ], + "alpha": 1, + "hex": "#1C2024" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32783", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Slate Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.3333333432674408 + ], + "alpha": 0.011800000444054604, + "hex": "#000055" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32784", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.3333333432674408 + ], + "alpha": 0.023499999195337296, + "hex": "#000055" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32785", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.20000000298023224 + ], + "alpha": 0.058800000697374344, + "hex": "#000033" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32786", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.1764705926179886 + ], + "alpha": 0.09019999951124191, + "hex": "#00002D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32787", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.03529411926865578, + 0.19607843458652496 + ], + "alpha": 0.12160000205039978, + "hex": "#000932" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32788", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.18431372940540314 + ], + "alpha": 0.14900000393390656, + "hex": "#00002F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32789", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0235294122248888, + 0.18039216101169586 + ], + "alpha": 0.19609999656677246, + "hex": "#00062E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32790", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0313725508749485, + 0.1882352977991104 + ], + "alpha": 0.2745000123977661, + "hex": "#000830" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32791", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.019607843831181526, + 0.11372549086809158 + ], + "alpha": 0.45489999651908875, + "hex": "#00051D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32792", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.027450980618596077, + 0.10588235408067703 + ], + "alpha": 0.49799999594688416, + "hex": "#00071B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32793", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.027450980618596077, + 0.0784313753247261 + ], + "alpha": 0.6234999895095825, + "hex": "#000714" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32794", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.019607843831181526, + 0.03529411926865578 + ], + "alpha": 0.8902000188827515, + "hex": "#000509" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32795", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sage": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9921568632125854, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FBFDFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32796", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9686274528503418, + 0.9764705896377563, + 0.9725490212440491 + ], + "alpha": 1, + "hex": "#F7F9F8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32797", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.9450980424880981, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#EEF1F0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32798", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9019607901573181, + 0.9137254953384399, + 0.9098039269447327 + ], + "alpha": 1, + "hex": "#E6E9E8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32799", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8745098114013672, + 0.886274516582489, + 0.8784313797950745 + ], + "alpha": 1, + "hex": "#DFE2E0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32800", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.843137264251709, + 0.8549019694328308, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#D7DAD9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32801", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7960784435272217, + 0.8117647171020508, + 0.8039215803146362 + ], + "alpha": 1, + "hex": "#CBCFCD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32802", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7215686440467834, + 0.7372549176216125, + 0.729411780834198 + ], + "alpha": 1, + "hex": "#B8BCBA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32803", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5254902243614197, + 0.5568627715110779, + 0.545098066329956 + ], + "alpha": 1, + "hex": "#868E8B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32804", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.5176470875740051, + 0.5058823823928833 + ], + "alpha": 1, + "hex": "#7C8481" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32805", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.37254902720451355, + 0.3960784375667572, + 0.38823530077934265 + ], + "alpha": 1, + "hex": "#5F6563" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32806", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10196078568696976, + 0.12941177189350128, + 0.11764705926179886 + ], + "alpha": 1, + "hex": "#1A211E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32807", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sage Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.501960813999176, + 0.250980406999588 + ], + "alpha": 0.015699999406933784, + "hex": "#008040" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32808", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.250980406999588, + 0.125490203499794 + ], + "alpha": 0.03139999881386757, + "hex": "#004020" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32809", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.1764705926179886, + 0.11764705926179886 + ], + "alpha": 0.06669999659061432, + "hex": "#002D1E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32810", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.12156862765550613, + 0.08235294371843338 + ], + "alpha": 0.09799999743700027, + "hex": "#001F15" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32811", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0941176488995552, + 0.0313725508749485 + ], + "alpha": 0.12549999356269836, + "hex": "#001808" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32812", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0784313753247261, + 0.05098039284348488 + ], + "alpha": 0.15690000355243683, + "hex": "#00140D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32813", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0784313753247261, + 0.03921568766236305 + ], + "alpha": 0.20389999449253082, + "hex": "#00140A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32814", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.05882352963089943, + 0.0313725508749485 + ], + "alpha": 0.2784000039100647, + "hex": "#000F08" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32815", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.06666667014360428, + 0.04313725605607033 + ], + "alpha": 0.47450000047683716, + "hex": "#00110B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32816", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.062745101749897, + 0.03921568766236305 + ], + "alpha": 0.513700008392334, + "hex": "#00100A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32817", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.03921568766236305, + 0.027450980618596077 + ], + "alpha": 0.6274999976158142, + "hex": "#000A07" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32818", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0313725508749485, + 0.019607843831181526 + ], + "alpha": 0.8980000019073486, + "hex": "#000805" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32819", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Olive": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.9921568632125854, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FCFDFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32820", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0.9803921580314636, + 0.9725490212440491 + ], + "alpha": 1, + "hex": "#F8FAF8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32821", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9372549057006836, + 0.9450980424880981, + 0.9372549057006836 + ], + "alpha": 1, + "hex": "#EFF1EF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32822", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9058823585510254, + 0.9137254953384399, + 0.9058823585510254 + ], + "alpha": 1, + "hex": "#E7E9E7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32823", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8745098114013672, + 0.886274516582489, + 0.8745098114013672 + ], + "alpha": 1, + "hex": "#DFE2DF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32824", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.843137264251709, + 0.8549019694328308, + 0.843137264251709 + ], + "alpha": 1, + "hex": "#D7DAD7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32825", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.800000011920929, + 0.8117647171020508, + 0.800000011920929 + ], + "alpha": 1, + "hex": "#CCCFCC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32826", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7254902124404907, + 0.7372549176216125, + 0.7215686440467834 + ], + "alpha": 1, + "hex": "#B9BCB8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32827", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5372549295425415, + 0.5568627715110779, + 0.529411792755127 + ], + "alpha": 1, + "hex": "#898E87" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32828", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.49803921580314636, + 0.5176470875740051, + 0.4901960790157318 + ], + "alpha": 1, + "hex": "#7F847D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32829", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3764705955982208, + 0.3960784375667572, + 0.37254902720451355 + ], + "alpha": 1, + "hex": "#60655F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32830", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.12941177189350128, + 0.10980392247438431 + ], + "alpha": 1, + "hex": "#1D211C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32831", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Olive Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.3333333432674408, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#005500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32832", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.2862745225429535, + 0 + ], + "alpha": 0.027499999850988388, + "hex": "#004900" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32833", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.125490203499794, + 0 + ], + "alpha": 0.06270000338554382, + "hex": "#002000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32834", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.08627451211214066, + 0 + ], + "alpha": 0.0940999984741211, + "hex": "#001600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32835", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0941176488995552, + 0 + ], + "alpha": 0.12549999356269836, + "hex": "#001800" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32836", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0784313753247261, + 0 + ], + "alpha": 0.15690000355243683, + "hex": "#001400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32837", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.05882352963089943, + 0 + ], + "alpha": 0.20000000298023224, + "hex": "#000F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32838", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.01568627543747425, + 0.05882352963089943, + 0 + ], + "alpha": 0.2784000039100647, + "hex": "#040F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32839", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.019607843831181526, + 0.05882352963089943, + 0 + ], + "alpha": 0.4706000089645386, + "hex": "#050F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32840", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.01568627543747425, + 0.054901961237192154, + 0 + ], + "alpha": 0.5098000168800354, + "hex": "#040E00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32841", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.007843137718737125, + 0.03921568766236305, + 0 + ], + "alpha": 0.6274999976158142, + "hex": "#020A00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32842", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.003921568859368563, + 0.0235294122248888, + 0 + ], + "alpha": 0.8902000188827515, + "hex": "#010600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32843", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sand": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9921568632125854, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FDFDFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32844", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.9764705896377563, + 0.9725490212440491 + ], + "alpha": 1, + "hex": "#F9F9F8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32845", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.9411764740943909, + 0.9372549057006836 + ], + "alpha": 1, + "hex": "#F1F0EF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32846", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9137254953384399, + 0.9098039269447327, + 0.9019607901573181 + ], + "alpha": 1, + "hex": "#E9E8E6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32847", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.886274516582489, + 0.8823529481887817, + 0.8705882430076599 + ], + "alpha": 1, + "hex": "#E2E1DE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32848", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8549019694328308, + 0.8509804010391235, + 0.8392156958580017 + ], + "alpha": 1, + "hex": "#DAD9D6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32849", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8117647171020508, + 0.8078431487083435, + 0.7921568751335144 + ], + "alpha": 1, + "hex": "#CFCECA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32850", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7372549176216125, + 0.7333333492279053, + 0.7098039388656616 + ], + "alpha": 1, + "hex": "#BCBBB5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32851", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5529412031173706, + 0.5529412031173706, + 0.5254902243614197 + ], + "alpha": 1, + "hex": "#8D8D86" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32852", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5098039507865906, + 0.5098039507865906, + 0.48627451062202454 + ], + "alpha": 1, + "hex": "#82827C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32853", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.38823530077934265, + 0.38823530077934265, + 0.3686274588108063 + ], + "alpha": 1, + "hex": "#63635E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32854", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12941177189350128, + 0.125490203499794, + 0.10980392247438431 + ], + "alpha": 1, + "hex": "#21201C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32855", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sand Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0.3333333432674408, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#555500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32856", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.14509804546833038, + 0.14509804546833038, + 0 + ], + "alpha": 0.027499999850988388, + "hex": "#252500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32857", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.062745101749897, + 0 + ], + "alpha": 0.06270000338554382, + "hex": "#201000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32858", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0.08235294371843338, + 0 + ], + "alpha": 0.09799999743700027, + "hex": "#1F1500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32859", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0.0941176488995552, + 0 + ], + "alpha": 0.12939999997615814, + "hex": "#1F1800" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32860", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.07450980693101883, + 0 + ], + "alpha": 0.1607999950647354, + "hex": "#191300" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32861", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.0784313753247261, + 0 + ], + "alpha": 0.2078000009059906, + "hex": "#191400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32862", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.08235294371843338, + 0.003921568859368563 + ], + "alpha": 0.29019999504089355, + "hex": "#191501" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32863", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05882352963089943, + 0.05882352963089943, + 0 + ], + "alpha": 0.47450000047683716, + "hex": "#0F0F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32864", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0470588244497776, + 0.0470588244497776, + 0 + ], + "alpha": 0.513700008392334, + "hex": "#0C0C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32865", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0313725508749485, + 0.0313725508749485, + 0 + ], + "alpha": 0.6313999891281128, + "hex": "#080800" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32866", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0235294122248888, + 0.019607843831181526, + 0 + ], + "alpha": 0.8902000188827515, + "hex": "#060500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32867", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Gold": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9921568632125854, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FDFDFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32868", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9803921580314636, + 0.9764705896377563, + 0.9490196108818054 + ], + "alpha": 1, + "hex": "#FAF9F2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32869", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.9411764740943909, + 0.9058823585510254 + ], + "alpha": 1, + "hex": "#F2F0E7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32870", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9176470637321472, + 0.9019607901573181, + 0.8588235378265381 + ], + "alpha": 1, + "hex": "#EAE6DB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32871", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8823529481887817, + 0.8627451062202454, + 0.8117647171020508 + ], + "alpha": 1, + "hex": "#E1DCCF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32872", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8470588326454163, + 0.8156862854957581, + 0.7490196228027344 + ], + "alpha": 1, + "hex": "#D8D0BF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32873", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7960784435272217, + 0.7529411911964417, + 0.6666666865348816 + ], + "alpha": 1, + "hex": "#CBC0AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32874", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7254902124404907, + 0.658823549747467, + 0.5529412031173706 + ], + "alpha": 1, + "hex": "#B9A88D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32875", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5921568870544434, + 0.5137255191802979, + 0.3960784375667572 + ], + "alpha": 1, + "hex": "#978365" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32876", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5490196347236633, + 0.47843137383461, + 0.3686274588108063 + ], + "alpha": 1, + "hex": "#8C7A5E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32877", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4431372582912445, + 0.3843137323856354, + 0.29411765933036804 + ], + "alpha": 1, + "hex": "#71624B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32878", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23137255012989044, + 0.2078431397676468, + 0.16862745583057404 + ], + "alpha": 1, + "hex": "#3B352B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32879", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Gold Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0.3333333432674408, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#555500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32880", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.615686297416687, + 0.5411764979362488, + 0 + ], + "alpha": 0.050999999046325684, + "hex": "#9D8A00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32881", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4588235318660736, + 0.3764705955982208, + 0 + ], + "alpha": 0.0940999984741211, + "hex": "#756000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32882", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.41960784792900085, + 0.30588236451148987, + 0 + ], + "alpha": 0.1412000060081482, + "hex": "#6B4E00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32883", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3764705955982208, + 0.27450981736183167, + 0 + ], + "alpha": 0.1881999969482422, + "hex": "#604600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32884", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3921568691730499, + 0.2666666805744171, + 0 + ], + "alpha": 0.25099998712539673, + "hex": "#644400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32885", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.38823530077934265, + 0.25882354378700256, + 0 + ], + "alpha": 0.33329999446868896, + "hex": "#634200" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32886", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.38823530077934265, + 0.239215686917305, + 0 + ], + "alpha": 0.4471000134944916, + "hex": "#633D00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32887", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32549020648002625, + 0.19607843458652496, + 0 + ], + "alpha": 0.6039000153541565, + "hex": "#533200" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32888", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2862745225429535, + 0.1764705926179886, + 0 + ], + "alpha": 0.6313999891281128, + "hex": "#492D00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32889", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21176470816135406, + 0.12941177189350128, + 0 + ], + "alpha": 0.7059000134468079, + "hex": "#362100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32890", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07450980693101883, + 0.0470588244497776, + 0 + ], + "alpha": 0.8313999772071838, + "hex": "#130C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32891", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Bronze": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9882352948188782, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FDFCFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32892", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9686274528503418, + 0.9607843160629272 + ], + "alpha": 1, + "hex": "#FDF7F5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32893", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.929411768913269, + 0.9176470637321472 + ], + "alpha": 1, + "hex": "#F6EDEA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32894", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9372549057006836, + 0.8941176533699036, + 0.8745098114013672 + ], + "alpha": 1, + "hex": "#EFE4DF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32895", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9058823585510254, + 0.8509804010391235, + 0.8274509906768799 + ], + "alpha": 1, + "hex": "#E7D9D3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32896", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8745098114013672, + 0.8039215803146362, + 0.772549033164978 + ], + "alpha": 1, + "hex": "#DFCDC5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32897", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8274509906768799, + 0.7372549176216125, + 0.7019608020782471 + ], + "alpha": 1, + "hex": "#D3BCB3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32898", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.6431372761726379, + 0.6000000238418579 + ], + "alpha": 1, + "hex": "#C2A499" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32899", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6313725709915161, + 0.501960813999176, + 0.4470588266849518 + ], + "alpha": 1, + "hex": "#A18072" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32900", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5843137502670288, + 0.45490196347236633, + 0.40784314274787903 + ], + "alpha": 1, + "hex": "#957468" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32901", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4901960790157318, + 0.3686274588108063, + 0.3294117748737335 + ], + "alpha": 1, + "hex": "#7D5E54" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32902", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.26274511218070984, + 0.1882352977991104, + 0.16862745583057404 + ], + "alpha": 1, + "hex": "#43302B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32903", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Bronze Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#550000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32904", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.800000011920929, + 0.20000000298023224, + 0 + ], + "alpha": 0.03920000046491623, + "hex": "#CC3300" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32905", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.572549045085907, + 0.14509804546833038, + 0 + ], + "alpha": 0.08240000158548355, + "hex": "#922500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32906", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.501960813999176, + 0.1568627506494522, + 0 + ], + "alpha": 0.12549999356269836, + "hex": "#802800" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32907", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.45490196347236633, + 0.13725490868091583, + 0 + ], + "alpha": 0.17249999940395355, + "hex": "#742300" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32908", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.45098039507865906, + 0.1411764770746231, + 0 + ], + "alpha": 0.22750000655651093, + "hex": "#732400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32909", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.42352941632270813, + 0.12156862765550613, + 0 + ], + "alpha": 0.2980000078678131, + "hex": "#6C1F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32910", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.40392157435417175, + 0.10980392247438431, + 0 + ], + "alpha": 0.4000000059604645, + "hex": "#671C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32911", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0.10196078568696976, + 0 + ], + "alpha": 0.5529000163078308, + "hex": "#551A00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32912", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2980392277240753, + 0.08235294371843338, + 0 + ], + "alpha": 0.592199981212616, + "hex": "#4C1500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32913", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.239215686917305, + 0.05882352963089943, + 0 + ], + "alpha": 0.6705999970436096, + "hex": "#3D0F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32914", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.0235294122248888, + 0 + ], + "alpha": 0.8313999772071838, + "hex": "#1D0600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32915", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Brown": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9921568632125854, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FEFDFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32916", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.9764705896377563, + 0.9647058844566345 + ], + "alpha": 1, + "hex": "#FCF9F6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32917", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.9333333373069763, + 0.9058823585510254 + ], + "alpha": 1, + "hex": "#F6EEE7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32918", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.8941176533699036, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#F0E4D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32919", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.8549019694328308, + 0.7921568751335144 + ], + "alpha": 1, + "hex": "#EBDACA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32920", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8941176533699036, + 0.8039215803146362, + 0.7176470756530762 + ], + "alpha": 1, + "hex": "#E4CDB7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32921", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8627451062202454, + 0.7372549176216125, + 0.6235294342041016 + ], + "alpha": 1, + "hex": "#DCBC9F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32922", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8078431487083435, + 0.6392157077789307, + 0.4941176474094391 + ], + "alpha": 1, + "hex": "#CEA37E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32923", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6784313917160034, + 0.49803921580314636, + 0.3450980484485626 + ], + "alpha": 1, + "hex": "#AD7F58" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32924", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6274510025978088, + 0.4588235318660736, + 0.32549020648002625 + ], + "alpha": 1, + "hex": "#A07553" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32925", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5058823823928833, + 0.3686274588108063, + 0.27450981736183167 + ], + "alpha": 1, + "hex": "#815E46" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32926", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.24313725531101227, + 0.20000000298023224, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#3E332E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32927", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Brown Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6666666865348816, + 0.3333333432674408, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#AA5500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32928", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6666666865348816, + 0.3333333432674408, + 0 + ], + "alpha": 0.03530000150203705, + "hex": "#AA5500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32929", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6274510025978088, + 0.29411765933036804, + 0 + ], + "alpha": 0.0940999984741211, + "hex": "#A04B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32930", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6078431606292725, + 0.29019609093666077, + 0 + ], + "alpha": 0.14900000393390656, + "hex": "#9B4A00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32931", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6235294342041016, + 0.3019607961177826, + 0 + ], + "alpha": 0.2078000009059906, + "hex": "#9F4D00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32932", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6274510025978088, + 0.30588236451148987, + 0 + ], + "alpha": 0.2824000120162964, + "hex": "#A04E00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32933", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6392157077789307, + 0.30588236451148987, + 0 + ], + "alpha": 0.3765000104904175, + "hex": "#A34E00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32934", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6235294342041016, + 0.29019609093666077, + 0 + ], + "alpha": 0.5059000253677368, + "hex": "#9F4A00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32935", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5098039507865906, + 0.23529411852359772, + 0 + ], + "alpha": 0.6549000144004822, + "hex": "#823C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32936", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4470588266849518, + 0.20000000298023224, + 0 + ], + "alpha": 0.6744999885559082, + "hex": "#723300" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32937", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32156863808631897, + 0.12941177189350128, + 0 + ], + "alpha": 0.7254999876022339, + "hex": "#522100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32938", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0784313753247261, + 0.0235294122248888, + 0 + ], + "alpha": 0.819599986076355, + "hex": "#140600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32939", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Yellow": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9921568632125854, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#FDFDF9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32940", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9882352948188782, + 0.9137254953384399 + ], + "alpha": 1, + "hex": "#FEFCE9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32941", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9803921580314636, + 0.7215686440467834 + ], + "alpha": 1, + "hex": "#FFFAB8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32942", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9529411792755127, + 0.5803921818733215 + ], + "alpha": 1, + "hex": "#FFF394" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32943", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9058823585510254, + 0.43921568989753723 + ], + "alpha": 1, + "hex": "#FFE770" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32944", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0.843137264251709, + 0.40784314274787903 + ], + "alpha": 1, + "hex": "#F3D768" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32945", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8941176533699036, + 0.7803921699523926, + 0.40392157435417175 + ], + "alpha": 1, + "hex": "#E4C767" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32946", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8352941274642944, + 0.6823529601097107, + 0.2235294133424759 + ], + "alpha": 1, + "hex": "#D5AE39" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32947", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9019607901573181, + 0.16078431904315948 + ], + "alpha": 1, + "hex": "#FFE629" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32948", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8627451062202454, + 0 + ], + "alpha": 1, + "hex": "#FFDC00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32949", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6196078658103943, + 0.42352941632270813, + 0 + ], + "alpha": 1, + "hex": "#9E6C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32950", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27843138575553894, + 0.23137255012989044, + 0.12156862765550613 + ], + "alpha": 1, + "hex": "#473B1F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32951", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Yellow Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6666666865348816, + 0.6666666865348816, + 0 + ], + "alpha": 0.023499999195337296, + "hex": "#AAAA00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32952", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.8666666746139526, + 0 + ], + "alpha": 0.08630000054836273, + "hex": "#F4DD00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32953", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9333333373069763, + 0 + ], + "alpha": 0.2784000039100647, + "hex": "#FFEE00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32954", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8901960849761963, + 0.003921568859368563 + ], + "alpha": 0.4196000099182129, + "hex": "#FFE301" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32955", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8352941274642944, + 0 + ], + "alpha": 0.5608000159263611, + "hex": "#FFD500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32956", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.7372549176216125, + 0 + ], + "alpha": 0.592199981212616, + "hex": "#EBBC00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32957", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8235294222831726, + 0.6313725709915161, + 0 + ], + "alpha": 0.5960999727249146, + "hex": "#D2A100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32958", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7882353067398071, + 0.5921568870544434, + 0 + ], + "alpha": 0.7764999866485596, + "hex": "#C99700" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32959", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8823529481887817, + 0 + ], + "alpha": 0.8392000198364258, + "hex": "#FFE100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32960", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8627451062202454, + 0 + ], + "alpha": 1, + "hex": "#FFDC00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32961", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6196078658103943, + 0.42352941632270813, + 0 + ], + "alpha": 1, + "hex": "#9E6C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32962", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18039216101169586, + 0.125490203499794, + 0 + ], + "alpha": 0.8784000277519226, + "hex": "#2E2000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32963", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Amber": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9921568632125854, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#FEFDFB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32964", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9843137264251709, + 0.9137254953384399 + ], + "alpha": 1, + "hex": "#FEFBE9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32965", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9686274528503418, + 0.7607843279838562 + ], + "alpha": 1, + "hex": "#FFF7C2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32966", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9333333373069763, + 0.6117647290229797 + ], + "alpha": 1, + "hex": "#FFEE9C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32967", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.8980392217636108, + 0.46666666865348816 + ], + "alpha": 1, + "hex": "#FBE577" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32968", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0.8392156958580017, + 0.45098039507865906 + ], + "alpha": 1, + "hex": "#F3D673" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32969", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9137254953384399, + 0.7568627595901489, + 0.3843137323856354 + ], + "alpha": 1, + "hex": "#E9C162" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32970", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.886274516582489, + 0.6392157077789307, + 0.21176470816135406 + ], + "alpha": 1, + "hex": "#E2A336" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32971", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.772549033164978, + 0.239215686917305 + ], + "alpha": 1, + "hex": "#FFC53D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32972", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.729411780834198, + 0.0941176488995552 + ], + "alpha": 1, + "hex": "#FFBA18" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32973", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.3921568691730499, + 0 + ], + "alpha": 1, + "hex": "#AB6400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32974", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.30980393290519714, + 0.20392157137393951, + 0.13333334028720856 + ], + "alpha": 1, + "hex": "#4F3422" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32975", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Amber Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7529411911964417, + 0.501960813999176, + 0 + ], + "alpha": 0.015699999406933784, + "hex": "#C08000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32976", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.8196078538894653, + 0 + ], + "alpha": 0.08630000054836273, + "hex": "#F4D100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32977", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8705882430076599, + 0 + ], + "alpha": 0.23919999599456787, + "hex": "#FFDE00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32978", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8313725590705872, + 0 + ], + "alpha": 0.3882000148296356, + "hex": "#FFD400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32979", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0.8117647171020508, + 0 + ], + "alpha": 0.53329998254776, + "hex": "#F8CF00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32980", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9176470637321472, + 0.7098039388656616, + 0 + ], + "alpha": 0.5490000247955322, + "hex": "#EAB500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32981", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8627451062202454, + 0.6078431606292725, + 0 + ], + "alpha": 0.6157000064849854, + "hex": "#DC9B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32982", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8549019694328308, + 0.5411764979362488, + 0 + ], + "alpha": 0.7882000207901001, + "hex": "#DA8A00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32983", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7019608020782471, + 0 + ], + "alpha": 0.7608000040054321, + "hex": "#FFB300" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32984", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7019608020782471, + 0 + ], + "alpha": 0.9059000015258789, + "hex": "#FFB300" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32985", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.3921568691730499, + 0 + ], + "alpha": 1, + "hex": "#AB6400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32986", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20392157137393951, + 0.08235294371843338, + 0 + ], + "alpha": 0.8666999936103821, + "hex": "#341500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32987", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Orange": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9882352948188782, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#FEFCFB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32988", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9607843160629272, + 0.9215686321258545 + ], + "alpha": 1, + "hex": "#FFF5EB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32989", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9137254953384399, + 0.8235294222831726 + ], + "alpha": 1, + "hex": "#FFE9D2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32990", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8509804010391235, + 0.7058823704719543 + ], + "alpha": 1, + "hex": "#FFD9B4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32991", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7960784435272217, + 0.615686297416687 + ], + "alpha": 1, + "hex": "#FFCB9D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32992", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7372549176216125, + 0.5058823823928833 + ], + "alpha": 1, + "hex": "#FFBC81" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32993", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.6431372761726379, + 0.33725491166114807 + ], + "alpha": 1, + "hex": "#FFA456" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32994", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.5411764979362488, + 0.09803921729326248 + ], + "alpha": 1, + "hex": "#FD8A19" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32995", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.5098039507865906, + 0 + ], + "alpha": 1, + "hex": "#F48200" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32996", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9058823585510254, + 0.4627451002597809, + 0 + ], + "alpha": 1, + "hex": "#E77600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32997", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7686274647712708, + 0.3607843220233917, + 0 + ], + "alpha": 1, + "hex": "#C45C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32998", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3450980484485626, + 0.1764705926179886, + 0.11372549086809158 + ], + "alpha": 1, + "hex": "#582D1D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:32999", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Orange Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7529411911964417, + 0.250980406999588, + 0 + ], + "alpha": 0.015699999406933784, + "hex": "#C04000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33000", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5568627715110779, + 0 + ], + "alpha": 0.0706000030040741, + "hex": "#FF8E00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33001", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.6117647290229797, + 0 + ], + "alpha": 0.1607999950647354, + "hex": "#FF9C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33002", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5686274766921997, + 0.003921568859368563 + ], + "alpha": 0.29019999504089355, + "hex": "#FF9101" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33003", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.545098066329956, + 0 + ], + "alpha": 0.3961000144481659, + "hex": "#FF8B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33004", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.5058823823928833, + 0 + ], + "alpha": 0.490200012922287, + "hex": "#FF8100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33005", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.42352941632270813, + 0 + ], + "alpha": 0.5490000247955322, + "hex": "#ED6C00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33006", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8901960849761963, + 0.37254902720451355, + 0 + ], + "alpha": 0.666700005531311, + "hex": "#E35F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33007", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.3686274588108063, + 0 + ], + "alpha": 0.9175999760627747, + "hex": "#F65E00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33008", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9372549057006836, + 0.37254902720451355, + 0 + ], + "alpha": 1, + "hex": "#EF5F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33009", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.800000011920929, + 0.30588236451148987, + 0 + ], + "alpha": 0.7730000019073486, + "hex": "#CC4E00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33010", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.26274511218070984, + 0.07058823853731155, + 0 + ], + "alpha": 0.8863000273704529, + "hex": "#431200" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33011", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Tomato": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9882352948188782, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FFFCFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33012", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9725490212440491, + 0.9686274528503418 + ], + "alpha": 1, + "hex": "#FFF8F7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33013", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9215686321258545, + 0.9058823585510254 + ], + "alpha": 1, + "hex": "#FEEBE7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33014", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8627451062202454, + 0.8274509906768799 + ], + "alpha": 1, + "hex": "#FFDCD3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33015", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8039215803146362, + 0.7607843279838562 + ], + "alpha": 1, + "hex": "#FFCDC2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33016", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.7411764860153198, + 0.686274528503418 + ], + "alpha": 1, + "hex": "#FDBDAF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33017", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9607843160629272, + 0.658823549747467, + 0.5960784554481506 + ], + "alpha": 1, + "hex": "#F5A898" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33018", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9254902005195618, + 0.5568627715110779, + 0.48235294222831726 + ], + "alpha": 1, + "hex": "#EC8E7B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33019", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.3019607961177826, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#E54D2E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33020", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8666666746139526, + 0.2666666805744171, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#DD4425" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33021", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.20392157137393951, + 0.08235294371843338 + ], + "alpha": 1, + "hex": "#D13415" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33022", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3607843220233917, + 0.15294118225574493, + 0.12156862765550613 + ], + "alpha": 1, + "hex": "#5C271F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33023", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Tomato Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#FF0000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33024", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.125490203499794, + 0 + ], + "alpha": 0.03139999881386757, + "hex": "#FF2000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33025", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9607843160629272, + 0.16862745583057404, + 0 + ], + "alpha": 0.0940999984741211, + "hex": "#F52B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33026", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.2078431397676468, + 0 + ], + "alpha": 0.17249999940395355, + "hex": "#FF3500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33027", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.18039216101169586, + 0 + ], + "alpha": 0.23919999599456787, + "hex": "#FF2E00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33028", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.1764705926179886, + 0 + ], + "alpha": 0.31369999051094055, + "hex": "#F92D00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33029", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9058823585510254, + 0.1568627506494522, + 0 + ], + "alpha": 0.40389999747276306, + "hex": "#E72800" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33030", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8588235378265381, + 0.14509804546833038, + 0 + ], + "alpha": 0.5175999999046326, + "hex": "#DB2500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33031", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8745098114013672, + 0.14901961386203766, + 0 + ], + "alpha": 0.819599986076355, + "hex": "#DF2600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33032", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.843137264251709, + 0.1411764770746231, + 0 + ], + "alpha": 0.8549000024795532, + "hex": "#D72400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33033", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8039215803146362, + 0.13333334028720856, + 0 + ], + "alpha": 0.9175999760627747, + "hex": "#CD2200" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33034", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27450981736183167, + 0.03529411926865578, + 0 + ], + "alpha": 0.8784000277519226, + "hex": "#460900" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33035", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Red": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9882352948188782, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FFFCFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33036", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9686274528503418, + 0.9686274528503418 + ], + "alpha": 1, + "hex": "#FFF7F7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33037", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9215686321258545, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#FEEBEC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33038", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8588235378265381, + 0.8627451062202454 + ], + "alpha": 1, + "hex": "#FFDBDC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33039", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8039215803146362, + 0.8078431487083435 + ], + "alpha": 1, + "hex": "#FFCDCE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33040", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.7411764860153198, + 0.7450980544090271 + ], + "alpha": 1, + "hex": "#FDBDBE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33041", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.6627451181411743, + 0.6666666865348816 + ], + "alpha": 1, + "hex": "#F4A9AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33042", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.5568627715110779, + 0.5647059082984924 + ], + "alpha": 1, + "hex": "#EB8E90" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33043", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.2823529541492462, + 0.3019607961177826 + ], + "alpha": 1, + "hex": "#E5484D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33044", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8627451062202454, + 0.24313725531101227, + 0.25882354378700256 + ], + "alpha": 1, + "hex": "#DC3E42" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33045", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8078431487083435, + 0.1725490242242813, + 0.1921568661928177 + ], + "alpha": 1, + "hex": "#CE2C31" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33046", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3921568691730499, + 0.09019608050584793, + 0.13725490868091583 + ], + "alpha": 1, + "hex": "#641723" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33047", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Red Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#FF0000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33048", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0 + ], + "alpha": 0.03139999881386757, + "hex": "#FF0000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33049", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0, + 0.05098039284348488 + ], + "alpha": 0.07840000092983246, + "hex": "#F3000D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33050", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.0313725508749485 + ], + "alpha": 0.1412000060081482, + "hex": "#FF0008" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33051", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.0235294122248888 + ], + "alpha": 0.19609999656677246, + "hex": "#FF0006" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33052", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0, + 0.01568627543747425 + ], + "alpha": 0.2587999999523163, + "hex": "#F80004" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33053", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8745098114013672, + 0, + 0.0117647061124444 + ], + "alpha": 0.33730000257492065, + "hex": "#DF0003" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33054", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8235294222831726, + 0, + 0.019607843831181526 + ], + "alpha": 0.4431000053882599, + "hex": "#D20005" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33055", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8588235378265381, + 0, + 0.027450980618596077 + ], + "alpha": 0.7175999879837036, + "hex": "#DB0007" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33056", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0, + 0.019607843831181526 + ], + "alpha": 0.7569000124931335, + "hex": "#D10005" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33057", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7686274647712708, + 0, + 0.0235294122248888 + ], + "alpha": 0.8274999856948853, + "hex": "#C40006" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33058", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0, + 0.05098039284348488 + ], + "alpha": 0.9097999930381775, + "hex": "#55000D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33059", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Ruby": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9882352948188782, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#FFFCFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33060", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9686274528503418, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#FFF7F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33061", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9372549057006836, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#FEEFF3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33062", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8627451062202454, + 0.8823529481887817 + ], + "alpha": 1, + "hex": "#FFDCE1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33063", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8078431487083435, + 0.8392156958580017 + ], + "alpha": 1, + "hex": "#FFCED6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33064", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0.7490196228027344, + 0.7843137383460999 + ], + "alpha": 1, + "hex": "#F8BFC8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33065", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9372549057006836, + 0.6745098233222961, + 0.7215686440467834 + ], + "alpha": 1, + "hex": "#EFACB8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33066", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.572549045085907, + 0.6392157077789307 + ], + "alpha": 1, + "hex": "#E592A3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33067", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.27450981736183167, + 0.4000000059604645 + ], + "alpha": 1, + "hex": "#E54666" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33068", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8627451062202454, + 0.23137255012989044, + 0.364705890417099 + ], + "alpha": 1, + "hex": "#DC3B5D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33069", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7921568751335144, + 0.1411764770746231, + 0.3019607961177826 + ], + "alpha": 1, + "hex": "#CA244D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33070", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3921568691730499, + 0.09019608050584793, + 0.16862745583057404 + ], + "alpha": 1, + "hex": "#64172B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33071", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Ruby Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.3333333432674408 + ], + "alpha": 0.011800000444054604, + "hex": "#FF0055" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33072", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.125490203499794 + ], + "alpha": 0.03139999881386757, + "hex": "#FF0020" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33073", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0, + 0.14509804546833038 + ], + "alpha": 0.08240000158548355, + "hex": "#F30025" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33074", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.14509804546833038 + ], + "alpha": 0.13729999959468842, + "hex": "#FF0025" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33075", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.16470588743686676 + ], + "alpha": 0.19220000505447388, + "hex": "#FF002A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33076", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8941176533699036, + 0, + 0.1411764770746231 + ], + "alpha": 0.25099998712539673, + "hex": "#E40024" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33077", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8078431487083435, + 0, + 0.14509804546833038 + ], + "alpha": 0.3255000114440918, + "hex": "#CE0025" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33078", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7647058963775635, + 0, + 0.1568627506494522 + ], + "alpha": 0.42750000953674316, + "hex": "#C30028" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33079", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8588235378265381, + 0, + 0.1725490242242813 + ], + "alpha": 0.7254999876022339, + "hex": "#DB002C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33080", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8235294222831726, + 0, + 0.1725490242242813 + ], + "alpha": 0.7685999870300293, + "hex": "#D2002C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33081", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7568627595901489, + 0, + 0.1882352977991104 + ], + "alpha": 0.8587999939918518, + "hex": "#C10030" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33082", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0, + 0.08627451211214066 + ], + "alpha": 0.9097999930381775, + "hex": "#550016" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33083", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Crimson": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9882352948188782, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#FFFCFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33084", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9686274528503418, + 0.9686274528503418 + ], + "alpha": 1, + "hex": "#FFF7F7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33085", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9215686321258545, + 0.9176470637321472 + ], + "alpha": 1, + "hex": "#FFEBEA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33086", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8627451062202454, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#FFDCD9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33087", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8039215803146362, + 0.7921568751335144 + ], + "alpha": 1, + "hex": "#FFCDCA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33088", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.7411764860153198, + 0.7254902124404907 + ], + "alpha": 1, + "hex": "#FEBDB9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33089", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9607843160629272, + 0.6627451181411743, + 0.6470588445663452 + ], + "alpha": 1, + "hex": "#F5A9A5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33090", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.5607843399047852, + 0.545098066329956 + ], + "alpha": 1, + "hex": "#EB8F8B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33091", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.2823529541492462, + 0.3019607961177826 + ], + "alpha": 1, + "hex": "#E5484D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33092", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.843137264251709, + 0.21960784494876862, + 0.250980406999588 + ], + "alpha": 1, + "hex": "#D73840" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33093", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.800000011920929, + 0.18039216101169586, + 0.2235294133424759 + ], + "alpha": 1, + "hex": "#CC2E39" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33094", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3921568691730499, + 0.0941176488995552, + 0.10588235408067703 + ], + "alpha": 1, + "hex": "#64181B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33095", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Crimson Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.3333333432674408 + ], + "alpha": 0.011800000444054604, + "hex": "#FF0055" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33096", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0, + 0.250980406999588 + ], + "alpha": 0.03139999881386757, + "hex": "#E00040" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33097", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.32156863808631897 + ], + "alpha": 0.08630000054836273, + "hex": "#FF0052" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33098", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0, + 0.3176470696926117 + ], + "alpha": 0.13729999959468842, + "hex": "#F80051" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33099", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0, + 0.30980393290519714 + ], + "alpha": 0.19220000505447388, + "hex": "#E5004F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33100", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8156862854957581, + 0, + 0.29411765933036804 + ], + "alpha": 0.2549000084400177, + "hex": "#D0004B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33101", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7490196228027344, + 0, + 0.27843138575553894 + ], + "alpha": 0.3255000114440918, + "hex": "#BF0047" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33102", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7137255072593689, + 0, + 0.29019609093666077 + ], + "alpha": 0.4235000014305115, + "hex": "#B6004A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33103", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.886274516582489, + 0, + 0.35686275362968445 + ], + "alpha": 0.7608000040054321, + "hex": "#E2005B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33104", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.843137264251709, + 0, + 0.33725491166114807 + ], + "alpha": 0.7961000204086304, + "hex": "#D70056" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33105", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7686274647712708, + 0, + 0.30980393290519714 + ], + "alpha": 0.8863000273704529, + "hex": "#C4004F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33106", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32549020648002625, + 0, + 0.14901961386203766 + ], + "alpha": 0.9136999845504761, + "hex": "#530026" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33107", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Pink": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9882352948188782, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#FFFCFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33108", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9686274528503418, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#FEF7FB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33109", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9137254953384399, + 0.9607843160629272 + ], + "alpha": 1, + "hex": "#FEE9F5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33110", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.8627451062202454, + 0.9372549057006836 + ], + "alpha": 1, + "hex": "#FBDCEF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33111", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9647058844566345, + 0.8078431487083435, + 0.9058823585510254 + ], + "alpha": 1, + "hex": "#F6CEE7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33112", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9372549057006836, + 0.7490196228027344, + 0.8666666746139526 + ], + "alpha": 1, + "hex": "#EFBFDD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33113", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9058823585510254, + 0.6745098233222961, + 0.8156862854957581 + ], + "alpha": 1, + "hex": "#E7ACD0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33114", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8666666746139526, + 0.5764706134796143, + 0.7607843279838562 + ], + "alpha": 1, + "hex": "#DD93C2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33115", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.250980406999588, + 0.6235294342041016 + ], + "alpha": 1, + "hex": "#D6409F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33116", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8117647171020508, + 0.21960784494876862, + 0.5921568870544434 + ], + "alpha": 1, + "hex": "#CF3897" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33117", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.16078431904315948, + 0.5411764979362488 + ], + "alpha": 1, + "hex": "#C2298A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33118", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3960784375667572, + 0.07058823853731155, + 0.2862745225429535 + ], + "alpha": 1, + "hex": "#651249" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33119", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Pink Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.6666666865348816 + ], + "alpha": 0.011800000444054604, + "hex": "#FF00AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33120", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0, + 0.501960813999176 + ], + "alpha": 0.03139999881386757, + "hex": "#E00080" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33121", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0, + 0.5490196347236633 + ], + "alpha": 0.08630000054836273, + "hex": "#F4008C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33122", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.886274516582489, + 0, + 0.545098066329956 + ], + "alpha": 0.13729999959468842, + "hex": "#E2008B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33123", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0, + 0.5137255191802979 + ], + "alpha": 0.19220000505447388, + "hex": "#D10083" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33124", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7529411911964417, + 0, + 0.47058823704719543 + ], + "alpha": 0.25099998712539673, + "hex": "#C00078" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33125", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7137255072593689, + 0, + 0.43529412150382996 + ], + "alpha": 0.3255000114440918, + "hex": "#B6006F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33126", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.686274528503418, + 0, + 0.43529412150382996 + ], + "alpha": 0.4235000014305115, + "hex": "#AF006F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33127", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7843137383460999, + 0, + 0.49803921580314636 + ], + "alpha": 0.7490000128746033, + "hex": "#C8007F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33128", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0, + 0.47843137383461 + ], + "alpha": 0.7803999781608582, + "hex": "#C2007A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33129", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7137255072593689, + 0, + 0.45490196347236633 + ], + "alpha": 0.8392000198364258, + "hex": "#B60074" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33130", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3490196168422699, + 0, + 0.23137255012989044 + ], + "alpha": 0.9294000267982483, + "hex": "#59003B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33131", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Plum": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9882352948188782, + 1 + ], + "alpha": 1, + "hex": "#FEFCFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33132", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9686274528503418, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#FDF7FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33133", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9215686321258545, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#FBEBFB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33134", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9686274528503418, + 0.8705882430076599, + 0.9725490212440491 + ], + "alpha": 1, + "hex": "#F7DEF8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33135", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.8196078538894653, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#F2D1F3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33136", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9137254953384399, + 0.7607843279838562, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#E9C2EC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33137", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8705882430076599, + 0.6784313917160034, + 0.8901960849761963 + ], + "alpha": 1, + "hex": "#DEADE3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33138", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8117647171020508, + 0.5686274766921997, + 0.8470588326454163 + ], + "alpha": 1, + "hex": "#CF91D8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33139", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.29019609093666077, + 0.729411780834198 + ], + "alpha": 1, + "hex": "#AB4ABA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33140", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6313725709915161, + 0.2666666805744171, + 0.686274528503418 + ], + "alpha": 1, + "hex": "#A144AF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33141", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5843137502670288, + 0.24313725531101227, + 0.6392157077789307 + ], + "alpha": 1, + "hex": "#953EA3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33142", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32549020648002625, + 0.09803921729326248, + 0.364705890417099 + ], + "alpha": 1, + "hex": "#53195D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33143", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Plum Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6666666865348816, + 0, + 1 + ], + "alpha": 0.011800000444054604, + "hex": "#AA00FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33144", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7529411911964417, + 0, + 0.7529411911964417 + ], + "alpha": 0.03139999881386757, + "hex": "#C000C0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33145", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.800000011920929, + 0, + 0.800000011920929 + ], + "alpha": 0.07840000092983246, + "hex": "#CC00CC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33146", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0, + 0.7882353067398071 + ], + "alpha": 0.12939999997615814, + "hex": "#C200C9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33147", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7176470756530762, + 0, + 0.7411764860153198 + ], + "alpha": 0.18039999902248383, + "hex": "#B700BD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33148", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6431372761726379, + 0, + 0.6901960968971252 + ], + "alpha": 0.23919999599456787, + "hex": "#A400B0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33149", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6000000238418579, + 0, + 0.658823549747467 + ], + "alpha": 0.3215999901294708, + "hex": "#9900A8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33150", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5647059082984924, + 0, + 0.6470588445663452 + ], + "alpha": 0.43140000104904175, + "hex": "#9000A5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33151", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5372549295425415, + 0, + 0.6196078658103943 + ], + "alpha": 0.7098000049591064, + "hex": "#89009E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33152", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.49803921580314636, + 0, + 0.572549045085907 + ], + "alpha": 0.733299970626831, + "hex": "#7F0092" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33153", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.45098039507865906, + 0, + 0.5254902243614197 + ], + "alpha": 0.7569000124931335, + "hex": "#730086" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33154", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.250980406999588, + 0, + 0.29411765933036804 + ], + "alpha": 0.9020000100135803, + "hex": "#40004B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33155", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Purple": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9882352948188782, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#FEFCFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33156", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9686274528503418, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#FBF7FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33157", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9686274528503418, + 0.929411768913269, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#F7EDFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33158", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.886274516582489, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#F2E2FC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33159", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9176470637321472, + 0.8352941274642944, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#EAD5F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33160", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0.7686274647712708, + 0.95686274766922 + ], + "alpha": 1, + "hex": "#E0C4F4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33161", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.686274528503418, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#D1AFEC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33162", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7450980544090271, + 0.5764706134796143, + 0.8941176533699036 + ], + "alpha": 1, + "hex": "#BE93E4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33163", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5568627715110779, + 0.30588236451148987, + 0.7764706015586853 + ], + "alpha": 1, + "hex": "#8E4EC6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33164", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5137255191802979, + 0.27843138575553894, + 0.7254902124404907 + ], + "alpha": 1, + "hex": "#8347B9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33165", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5058823823928833, + 0.2705882489681244, + 0.7098039388656616 + ], + "alpha": 1, + "hex": "#8145B5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33166", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.250980406999588, + 0.125490203499794, + 0.3764705955982208 + ], + "alpha": 1, + "hex": "#402060" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33167", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Purple Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6666666865348816, + 0, + 0.6666666865348816 + ], + "alpha": 0.011800000444054604, + "hex": "#AA00AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33168", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.501960813999176, + 0, + 0.8784313797950745 + ], + "alpha": 0.03139999881386757, + "hex": "#8000E0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33169", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5568627715110779, + 0, + 0.9450980424880981 + ], + "alpha": 0.0706000030040741, + "hex": "#8E00F1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33170", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5529412031173706, + 0, + 0.8980392217636108 + ], + "alpha": 0.1137000024318695, + "hex": "#8D00E5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33171", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.501960813999176, + 0, + 0.8588235378265381 + ], + "alpha": 0.1647000014781952, + "hex": "#8000DB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33172", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.47843137383461, + 0.003921568859368563, + 0.8156862854957581 + ], + "alpha": 0.2313999980688095, + "hex": "#7A01D0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33173", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4274509847164154, + 0, + 0.7647058963775635 + ], + "alpha": 0.31369999051094055, + "hex": "#6D00C3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33174", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4000000059604645, + 0, + 0.7529411911964417 + ], + "alpha": 0.4235000014305115, + "hex": "#6600C0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33175", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3607843220233917, + 0, + 0.6784313917160034 + ], + "alpha": 0.694100022315979, + "hex": "#5C00AD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33176", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32549020648002625, + 0, + 0.6196078658103943 + ], + "alpha": 0.7215999960899353, + "hex": "#53009E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33177", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32156863808631897, + 0, + 0.6039215922355652 + ], + "alpha": 0.7293999791145325, + "hex": "#52009A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33178", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.14509804546833038, + 0, + 0.2862745225429535 + ], + "alpha": 0.8744999766349792, + "hex": "#250049" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33179", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Violet": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9882352948188782, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#FDFCFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33180", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9803921580314636, + 0.9725490212440491, + 1 + ], + "alpha": 1, + "hex": "#FAF8FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33181", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.9411764740943909, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#F4F0FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33182", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.8941176533699036, + 1 + ], + "alpha": 1, + "hex": "#EBE4FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33183", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8823529481887817, + 0.8509804010391235, + 1 + ], + "alpha": 1, + "hex": "#E1D9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33184", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8313725590705872, + 0.7921568751335144, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#D4CAFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33185", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.7098039388656616, + 0.9607843160629272 + ], + "alpha": 1, + "hex": "#C2B5F5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33186", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6666666865348816, + 0.6000000238418579, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#AA99EC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33187", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4313725531101227, + 0.33725491166114807, + 0.8117647171020508 + ], + "alpha": 1, + "hex": "#6E56CF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33188", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3960784375667572, + 0.3019607961177826, + 0.7686274647712708 + ], + "alpha": 1, + "hex": "#654DC4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33189", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3960784375667572, + 0.3137255012989044, + 0.7254902124404907 + ], + "alpha": 1, + "hex": "#6550B9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33190", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18431372940540314, + 0.14901961386203766, + 0.37254902720451355 + ], + "alpha": 1, + "hex": "#2F265F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33191", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Violet Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0, + 0.6666666865348816 + ], + "alpha": 0.011800000444054604, + "hex": "#5500AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33192", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2862745225429535, + 0, + 1 + ], + "alpha": 0.027499999850988388, + "hex": "#4900FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33193", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2666666805744171, + 0, + 0.9333333373069763 + ], + "alpha": 0.058800000697374344, + "hex": "#4400EE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33194", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.26274511218070984, + 0, + 1 + ], + "alpha": 0.10589999705553055, + "hex": "#4300FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33195", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21176470816135406, + 0, + 1 + ], + "alpha": 0.14900000393390656, + "hex": "#3600FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33196", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1921568661928177, + 0, + 0.9843137264251709 + ], + "alpha": 0.2078000009059906, + "hex": "#3100FB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33197", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1764705926179886, + 0.003921568859368563, + 0.8666666746139526 + ], + "alpha": 0.29019999504089355, + "hex": "#2D01DD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33198", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16862745583057404, + 0, + 0.8156862854957581 + ], + "alpha": 0.4000000059604645, + "hex": "#2B00D0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33199", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1411764770746231, + 0, + 0.7176470756530762 + ], + "alpha": 0.6626999974250793, + "hex": "#2400B7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33200", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.13725490868091583, + 0, + 0.6705882549285889 + ], + "alpha": 0.6980000138282776, + "hex": "#2300AB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33201", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0, + 0.6000000238418579 + ], + "alpha": 0.6862999796867371, + "hex": "#1F0099" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33202", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.04313725605607033, + 0, + 0.26274511218070984 + ], + "alpha": 0.8510000109672546, + "hex": "#0B0043" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33203", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Iris": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9921568632125854, + 1 + ], + "alpha": 1, + "hex": "#FDFDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33204", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0.9725490212440491, + 1 + ], + "alpha": 1, + "hex": "#F8F8FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33205", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.9450980424880981, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#F0F1FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33206", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9019607901573181, + 0.9058823585510254, + 1 + ], + "alpha": 1, + "hex": "#E6E7FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33207", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8549019694328308, + 0.8627451062202454, + 1 + ], + "alpha": 1, + "hex": "#DADCFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33208", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7960784435272217, + 0.8039215803146362, + 1 + ], + "alpha": 1, + "hex": "#CBCDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33209", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7215686440467834, + 0.729411780834198, + 0.9725490212440491 + ], + "alpha": 1, + "hex": "#B8BAF8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33210", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6078431606292725, + 0.6196078658103943, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#9B9EF0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33211", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.35686275362968445, + 0.35686275362968445, + 0.8392156958580017 + ], + "alpha": 1, + "hex": "#5B5BD6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33212", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3176470696926117, + 0.3176470696926117, + 0.8039215803146362 + ], + "alpha": 1, + "hex": "#5151CD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33213", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.34117648005485535, + 0.32549020648002625, + 0.7764706015586853 + ], + "alpha": 1, + "hex": "#5753C6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33214", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.15294118225574493, + 0.16078431904315948, + 0.3843137323856354 + ], + "alpha": 1, + "hex": "#272962" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33215", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Iris Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 1 + ], + "alpha": 0.007799999788403511, + "hex": "#0000FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33216", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 1 + ], + "alpha": 0.027499999850988388, + "hex": "#0000FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33217", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.06666667014360428, + 0.9333333373069763 + ], + "alpha": 0.058800000697374344, + "hex": "#0011EE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33218", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.04313725605607033, + 1 + ], + "alpha": 0.09799999743700027, + "hex": "#000BFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33219", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.054901961237192154, + 1 + ], + "alpha": 0.14509999752044678, + "hex": "#000EFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33220", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.03921568766236305, + 1 + ], + "alpha": 0.20389999449253082, + "hex": "#000AFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33221", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0313725508749485, + 0.9019607901573181 + ], + "alpha": 0.2784000039100647, + "hex": "#0008E6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33222", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0313725508749485, + 0.8509804010391235 + ], + "alpha": 0.3921999931335449, + "hex": "#0008D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33223", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.7529411911964417 + ], + "alpha": 0.6431000232696533, + "hex": "#0000C0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33224", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.7137255072593689 + ], + "alpha": 0.6823999881744385, + "hex": "#0000B6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33225", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.0235294122248888, + 0, + 0.6705882549285889 + ], + "alpha": 0.6744999885559082, + "hex": "#0600AB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33226", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.007843137718737125, + 0.27450981736183167 + ], + "alpha": 0.847100019454956, + "hex": "#000246" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33227", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Indigo": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9921568632125854, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#FDFDFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33228", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9686274528503418, + 0.9764705896377563, + 1 + ], + "alpha": 1, + "hex": "#F7F9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33229", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.9490196108818054, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#EDF2FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33230", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8823529481887817, + 0.9137254953384399, + 1 + ], + "alpha": 1, + "hex": "#E1E9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33231", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8235294222831726, + 0.8705882430076599, + 1 + ], + "alpha": 1, + "hex": "#D2DEFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33232", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7568627595901489, + 0.8156862854957581, + 1 + ], + "alpha": 1, + "hex": "#C1D0FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33233", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.7411764860153198, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#ABBDF9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33234", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5529412031173706, + 0.6431372761726379, + 0.9372549057006836 + ], + "alpha": 1, + "hex": "#8DA4EF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33235", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.24313725531101227, + 0.38823530077934265, + 0.8666666746139526 + ], + "alpha": 1, + "hex": "#3E63DD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33236", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20000000298023224, + 0.3450980484485626, + 0.8313725590705872 + ], + "alpha": 1, + "hex": "#3358D4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33237", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.22745098173618317, + 0.35686275362968445, + 0.7803921699523926 + ], + "alpha": 1, + "hex": "#3A5BC7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33238", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0.1764705926179886, + 0.3607843220233917 + ], + "alpha": 1, + "hex": "#1F2D5C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33239", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Indigo Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.501960813999176 + ], + "alpha": 0.007799999788403511, + "hex": "#000080" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33240", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.250980406999588, + 1 + ], + "alpha": 0.03139999881386757, + "hex": "#0040FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33241", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.27843138575553894, + 0.9450980424880981 + ], + "alpha": 0.0706000030040741, + "hex": "#0047F1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33242", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.2666666805744171, + 1 + ], + "alpha": 0.11760000139474869, + "hex": "#0044FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33243", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.2666666805744171, + 1 + ], + "alpha": 0.17649999260902405, + "hex": "#0044FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33244", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.24313725531101227, + 1 + ], + "alpha": 0.24310000240802765, + "hex": "#003EFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33245", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.21568627655506134, + 0.929411768913269 + ], + "alpha": 0.3294000029563904, + "hex": "#0037ED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33246", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.20392157137393951, + 0.8627451062202454 + ], + "alpha": 0.4471000134944916, + "hex": "#0034DC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33247", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.1921568661928177, + 0.8235294222831726 + ], + "alpha": 0.7569000124931335, + "hex": "#0031D2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33248", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.18039216101169586, + 0.7882353067398071 + ], + "alpha": 0.800000011920929, + "hex": "#002EC9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33249", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.16862745583057404, + 0.7176470756530762 + ], + "alpha": 0.7724999785423279, + "hex": "#002BB7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33250", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.062745101749897, + 0.27450981736183167 + ], + "alpha": 0.8784000277519226, + "hex": "#001046" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33251", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Blue": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9921568632125854, + 1 + ], + "alpha": 1, + "hex": "#FBFDFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33252", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9607843160629272, + 0.9764705896377563, + 1 + ], + "alpha": 1, + "hex": "#F5F9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33253", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9176470637321472, + 0.9529411792755127, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#EAF3FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33254", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8588235378265381, + 0.9254902005195618, + 1 + ], + "alpha": 1, + "hex": "#DBECFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33255", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7960784435272217, + 0.886274516582489, + 1 + ], + "alpha": 1, + "hex": "#CBE2FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33256", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7215686440467834, + 0.8352941274642944, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#B8D5F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33257", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6196078658103943, + 0.7686274647712708, + 0.9490196108818054 + ], + "alpha": 1, + "hex": "#9EC4F2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33258", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4745098054409027, + 0.6745098233222961, + 0.9176470637321472 + ], + "alpha": 1, + "hex": "#79ACEA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33259", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.26274511218070984, + 0.5843137502670288, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#4395F3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33260", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.23529411852359772, + 0.5372549295425415, + 0.8823529481887817 + ], + "alpha": 1, + "hex": "#3C89E1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33261", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11764705926179886, + 0.45098039507865906, + 0.8039215803146362 + ], + "alpha": 1, + "hex": "#1E73CD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33262", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07450980693101883, + 0.2078431397676468, + 0.35686275362968445 + ], + "alpha": 1, + "hex": "#13355B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33263", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Blue Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.501960813999176, + 1 + ], + "alpha": 0.015699999406933784, + "hex": "#0080FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33264", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5490196347236633, + 1 + ], + "alpha": 0.04309999942779541, + "hex": "#008CFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33265", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5607843399047852, + 0.9607843160629272 + ], + "alpha": 0.09799999743700027, + "hex": "#008FF5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33266", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6196078658103943, + 1 + ], + "alpha": 0.1647000014781952, + "hex": "#009EFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33267", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5764706134796143, + 1 + ], + "alpha": 0.23919999599456787, + "hex": "#0093FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33268", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5333333611488342, + 0.9647058844566345 + ], + "alpha": 0.3255000114440918, + "hex": "#0088F6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33269", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5137255191802979, + 0.9215686321258545 + ], + "alpha": 0.4431000053882599, + "hex": "#0083EB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33270", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5176470875740051, + 0.9019607901573181 + ], + "alpha": 0.6313999891281128, + "hex": "#0084E6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33271", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5647059082984924, + 1 + ], + "alpha": 1, + "hex": "#0090FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33272", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5254902243614197, + 0.9411764740943909 + ], + "alpha": 0.980400025844574, + "hex": "#0086F0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33273", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.4274509847164154, + 0.7960784435272217 + ], + "alpha": 0.9490000009536743, + "hex": "#006DCB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33274", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.35686275362968445, + 0.3607843220233917, + 0.364705890417099 + ], + "alpha": 0.9333000183105469, + "hex": "#5B5C5D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33275", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Cyan": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9803921580314636, + 0.9921568632125854, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#FAFDFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33276", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.9803921580314636, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#F2FAFB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33277", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8705882430076599, + 0.9686274528503418, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#DEF7F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33278", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7921568751335144, + 0.9450980424880981, + 0.9647058844566345 + ], + "alpha": 1, + "hex": "#CAF1F6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33279", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7098039388656616, + 0.9137254953384399, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#B5E9F0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33280", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.615686297416687, + 0.8666666746139526, + 0.9058823585510254 + ], + "alpha": 1, + "hex": "#9DDDE7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33281", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4901960790157318, + 0.8078431487083435, + 0.8627451062202454 + ], + "alpha": 1, + "hex": "#7DCEDC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33282", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.239215686917305, + 0.7254902124404907, + 0.8117647171020508 + ], + "alpha": 1, + "hex": "#3DB9CF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33283", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6352941393852234, + 0.7803921699523926 + ], + "alpha": 1, + "hex": "#00A2C7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33284", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.027450980618596077, + 0.5921568870544434, + 0.7254902124404907 + ], + "alpha": 1, + "hex": "#0797B9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33285", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.062745101749897, + 0.4901960790157318, + 0.5960784554481506 + ], + "alpha": 1, + "hex": "#107D98" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33286", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.23529411852359772, + 0.2823529541492462 + ], + "alpha": 1, + "hex": "#0D3C48" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33287", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Cyan Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6000000238418579, + 0.800000011920929 + ], + "alpha": 0.019600000232458115, + "hex": "#0099CC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33288", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.615686297416687, + 0.6941176652908325 + ], + "alpha": 0.050999999046325684, + "hex": "#009DB1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33289", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7607843279838562, + 0.8196078538894653 + ], + "alpha": 0.12939999997615814, + "hex": "#00C2D1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33290", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7372549176216125, + 0.8313725590705872 + ], + "alpha": 0.2078000009059906, + "hex": "#00BCD4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33291", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.003921568859368563, + 0.7058823704719543, + 0.800000011920929 + ], + "alpha": 0.29019999504089355, + "hex": "#01B4CC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33292", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6549019813537598, + 0.7568627595901489 + ], + "alpha": 0.38429999351501465, + "hex": "#00A7C1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33293", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6235294342041016, + 0.7333333492279053 + ], + "alpha": 0.5098000168800354, + "hex": "#009FBB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33294", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6392157077789307, + 0.7529411911964417 + ], + "alpha": 0.7608000040054321, + "hex": "#00A3C0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33295", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6352941393852234, + 0.7803921699523926 + ], + "alpha": 1, + "hex": "#00A2C7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33296", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5803921818733215, + 0.7176470756530762 + ], + "alpha": 0.9725000262260437, + "hex": "#0094B7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33297", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.45490196347236633, + 0.5686274766921997 + ], + "alpha": 0.9373000264167786, + "hex": "#007491" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33298", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.19607843458652496, + 0.24313725531101227 + ], + "alpha": 0.9490000009536743, + "hex": "#00323E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33299", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Teal": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9803921580314636, + 0.9960784316062927, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#FAFEFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33300", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0.9843137264251709, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#F3FBF9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33301", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0.9725490212440491, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#E0F8F3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33302", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.800000011920929, + 0.9529411792755127, + 0.9176470637321472 + ], + "alpha": 1, + "hex": "#CCF3EA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33303", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7215686440467834, + 0.9176470637321472, + 0.8784313797950745 + ], + "alpha": 1, + "hex": "#B8EAE0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33304", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6313725709915161, + 0.8705882430076599, + 0.8235294222831726 + ], + "alpha": 1, + "hex": "#A1DED2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33305", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5137255191802979, + 0.8039215803146362, + 0.7568627595901489 + ], + "alpha": 1, + "hex": "#83CDC1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33306", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.32549020648002625, + 0.7254902124404907, + 0.6705882549285889 + ], + "alpha": 1, + "hex": "#53B9AB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33307", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.07058823853731155, + 0.6470588445663452, + 0.5803921818733215 + ], + "alpha": 1, + "hex": "#12A594" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33308", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.6078431606292725, + 0.5411764979362488 + ], + "alpha": 1, + "hex": "#0D9B8A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33309", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5215686559677124, + 0.45098039507865906 + ], + "alpha": 1, + "hex": "#008573" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33310", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.05098039284348488, + 0.239215686917305, + 0.21960784494876862 + ], + "alpha": 1, + "hex": "#0D3D38" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33311", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Teal Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.800000011920929, + 0.6000000238418579 + ], + "alpha": 0.019600000232458115, + "hex": "#00CC99" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33312", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6666666865348816, + 0.501960813999176 + ], + "alpha": 0.0471000000834465, + "hex": "#00AA80" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33313", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7764706015586853, + 0.615686297416687 + ], + "alpha": 0.12160000205039978, + "hex": "#00C69D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33314", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7647058963775635, + 0.5882353186607361 + ], + "alpha": 0.20000000298023224, + "hex": "#00C396" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33315", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7058823704719543, + 0.5647059082984924 + ], + "alpha": 0.2784000039100647, + "hex": "#00B490" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33316", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6509804129600525, + 0.5215686559677124 + ], + "alpha": 0.3686000108718872, + "hex": "#00A685" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33317", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6000000238418579, + 0.501960813999176 + ], + "alpha": 0.486299991607666, + "hex": "#009980" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33318", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5921568870544434, + 0.5137255191802979 + ], + "alpha": 0.6744999885559082, + "hex": "#009783" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33319", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6196078658103943, + 0.5490196347236633 + ], + "alpha": 0.9294000267982483, + "hex": "#009E8C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33320", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5882353186607361, + 0.5176470875740051 + ], + "alpha": 0.9490000009536743, + "hex": "#009684" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33321", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5215686559677124, + 0.45098039507865906 + ], + "alpha": 1, + "hex": "#008573" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33322", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.20000000298023224, + 0.1764705926179886 + ], + "alpha": 0.9490000009536743, + "hex": "#00332D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33323", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Jade": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9960784316062927, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#FBFEFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33324", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.9843137264251709, + 0.9686274528503418 + ], + "alpha": 1, + "hex": "#F4FBF7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33325", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9019607901573181, + 0.9686274528503418, + 0.929411768913269 + ], + "alpha": 1, + "hex": "#E6F7ED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33326", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.9450980424880981, + 0.8901960849761963 + ], + "alpha": 1, + "hex": "#D6F1E3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33327", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7647058963775635, + 0.9137254953384399, + 0.843137264251709 + ], + "alpha": 1, + "hex": "#C3E9D7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33328", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6745098233222961, + 0.8705882430076599, + 0.7843137383460999 + ], + "alpha": 1, + "hex": "#ACDEC8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33329", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.545098066329956, + 0.8078431487083435, + 0.7137255072593689 + ], + "alpha": 1, + "hex": "#8BCEB6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33330", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.33725491166114807, + 0.729411780834198, + 0.6235294342041016 + ], + "alpha": 1, + "hex": "#56BA9F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33331", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16078431904315948, + 0.6392157077789307, + 0.5137255191802979 + ], + "alpha": 1, + "hex": "#29A383" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33332", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.14901961386203766, + 0.6000000238418579, + 0.48235294222831726 + ], + "alpha": 1, + "hex": "#26997B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33333", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.5137255191802979, + 0.40784314274787903 + ], + "alpha": 1, + "hex": "#208368" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33334", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.23137255012989044, + 0.1921568661928177 + ], + "alpha": 1, + "hex": "#1D3B31" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33335", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Jade Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7529411911964417, + 0.501960813999176 + ], + "alpha": 0.015699999406933784, + "hex": "#00C080" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33336", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6392157077789307, + 0.27450981736183167 + ], + "alpha": 0.04309999942779541, + "hex": "#00A346" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33337", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6823529601097107, + 0.2823529541492462 + ], + "alpha": 0.09799999743700027, + "hex": "#00AE48" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33338", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.658823549747467, + 0.3176470696926117 + ], + "alpha": 0.1607999950647354, + "hex": "#00A851" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33339", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6352941393852234, + 0.3333333432674408 + ], + "alpha": 0.2353000044822693, + "hex": "#00A255" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33340", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6039215922355652, + 0.34117648005485535 + ], + "alpha": 0.3255000114440918, + "hex": "#009A57" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33341", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5803921818733215, + 0.37254902720451355 + ], + "alpha": 0.45489999651908875, + "hex": "#00945F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33342", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5921568870544434, + 0.4313725531101227 + ], + "alpha": 0.6626999974250793, + "hex": "#00976E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33343", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5686274766921997, + 0.41960784792900085 + ], + "alpha": 0.8392000198364258, + "hex": "#00916B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33344", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.529411792755127, + 0.3921568691730499 + ], + "alpha": 0.8510000109672546, + "hex": "#008764" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33345", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.4431372582912445, + 0.32156863808631897 + ], + "alpha": 0.8744999766349792, + "hex": "#007152" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33346", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.13333334028720856, + 0.09019608050584793 + ], + "alpha": 0.8863000273704529, + "hex": "#002217" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33347", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Green": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9960784316062927, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FBFEFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33348", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.9843137264251709, + 0.9647058844566345 + ], + "alpha": 1, + "hex": "#F4FBF6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33349", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9019607901573181, + 0.9647058844566345, + 0.9215686321258545 + ], + "alpha": 1, + "hex": "#E6F6EB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33350", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.9450980424880981, + 0.8745098114013672 + ], + "alpha": 1, + "hex": "#D6F1DF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33351", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7686274647712708, + 0.9098039269447327, + 0.8196078538894653 + ], + "alpha": 1, + "hex": "#C4E8D1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33352", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6784313917160034, + 0.8666666746139526, + 0.7529411911964417 + ], + "alpha": 1, + "hex": "#ADDDC0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33353", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5568627715110779, + 0.8078431487083435, + 0.6666666865348816 + ], + "alpha": 1, + "hex": "#8ECEAA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33354", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.35686275362968445, + 0.7254902124404907, + 0.545098066329956 + ], + "alpha": 1, + "hex": "#5BB98B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33355", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.6431372761726379, + 0.42352941632270813 + ], + "alpha": 1, + "hex": "#30A46C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33356", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16862745583057404, + 0.6039215922355652, + 0.4000000059604645 + ], + "alpha": 1, + "hex": "#2B9A66" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33357", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12941177189350128, + 0.5137255191802979, + 0.3450980484485626 + ], + "alpha": 1, + "hex": "#218358" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33358", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.23137255012989044, + 0.1764705926179886 + ], + "alpha": 1, + "hex": "#193B2D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33359", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Green Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7529411911964417, + 0.250980406999588 + ], + "alpha": 0.015699999406933784, + "hex": "#00C040" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33360", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6392157077789307, + 0.18431372940540314 + ], + "alpha": 0.04309999942779541, + "hex": "#00A32F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33361", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6431372761726379, + 0.20000000298023224 + ], + "alpha": 0.09799999743700027, + "hex": "#00A433" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33362", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.658823549747467, + 0.21960784494876862 + ], + "alpha": 0.1607999950647354, + "hex": "#00A838" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33363", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.003921568859368563, + 0.6117647290229797, + 0.2235294133424759 + ], + "alpha": 0.2313999980688095, + "hex": "#019C39" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33364", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5882353186607361, + 0.23529411852359772 + ], + "alpha": 0.3215999901294708, + "hex": "#00963C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33365", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5686274766921997, + 0.250980406999588 + ], + "alpha": 0.4431000053882599, + "hex": "#009140" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33366", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.572549045085907, + 0.29411765933036804 + ], + "alpha": 0.6431000232696533, + "hex": "#00924B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33367", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5607843399047852, + 0.29019609093666077 + ], + "alpha": 0.8118000030517578, + "hex": "#008F4A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33368", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5254902243614197, + 0.27843138575553894 + ], + "alpha": 0.8313999772071838, + "hex": "#008647" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33369", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.4431372582912445, + 0.24705882370471954 + ], + "alpha": 0.8705999851226807, + "hex": "#00713F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33370", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.00007400000322377309, + 0.14792600274085999, + 0.08674587309360504 + ], + "alpha": 0.9020000100135803, + "hex": "#002616" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33371", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Grass": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9960784316062927, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#FBFEFB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33372", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9607843160629272, + 0.9843137264251709, + 0.9607843160629272 + ], + "alpha": 1, + "hex": "#F5FBF5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33373", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9137254953384399, + 0.9647058844566345, + 0.9137254953384399 + ], + "alpha": 1, + "hex": "#E9F6E9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33374", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8549019694328308, + 0.9450980424880981, + 0.8588235378265381 + ], + "alpha": 1, + "hex": "#DAF1DB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33375", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7882353067398071, + 0.9098039269447327, + 0.7921568751335144 + ], + "alpha": 1, + "hex": "#C9E8CA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33376", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6980392336845398, + 0.8666666746139526, + 0.7098039388656616 + ], + "alpha": 1, + "hex": "#B2DDB5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33377", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5803921818733215, + 0.8078431487083435, + 0.6039215922355652 + ], + "alpha": 1, + "hex": "#94CE9A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33378", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3960784375667572, + 0.729411780834198, + 0.45490196347236633 + ], + "alpha": 1, + "hex": "#65BA74" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33379", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.27450981736183167, + 0.6549019813537598, + 0.3450980484485626 + ], + "alpha": 1, + "hex": "#46A758" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33380", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.24313725531101227, + 0.6078431606292725, + 0.30980393290519714 + ], + "alpha": 1, + "hex": "#3E9B4F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33381", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16470588743686676, + 0.4941176474094391, + 0.23137255012989044 + ], + "alpha": 1, + "hex": "#2A7E3B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33382", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.23529411852359772, + 0.14509804546833038 + ], + "alpha": 1, + "hex": "#203C25" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33383", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Grass Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7529411911964417, + 0 + ], + "alpha": 0.015699999406933784, + "hex": "#00C000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33384", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6000000238418579, + 0 + ], + "alpha": 0.03920000046491623, + "hex": "#009900" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33385", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5921568870544434, + 0 + ], + "alpha": 0.08630000054836273, + "hex": "#009700" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33386", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6235294342041016, + 0.027450980618596077 + ], + "alpha": 0.14509999752044678, + "hex": "#009F07" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33387", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5764706134796143, + 0.019607843831181526 + ], + "alpha": 0.2117999941110611, + "hex": "#009305" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33388", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5607843399047852, + 0.03921568766236305 + ], + "alpha": 0.3019999861717224, + "hex": "#008F0A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33389", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.003921568859368563, + 0.545098066329956, + 0.05882352963089943 + ], + "alpha": 0.4196000099182129, + "hex": "#018B0F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33390", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5529412031173706, + 0.09803921729326248 + ], + "alpha": 0.6039000153541565, + "hex": "#008D19" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33391", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5254902243614197, + 0.09803921729326248 + ], + "alpha": 0.7254999876022339, + "hex": "#008619" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33392", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.48235294222831726, + 0.09019608050584793 + ], + "alpha": 0.7569000124931335, + "hex": "#007B17" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33393", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.3960784375667572, + 0.0784313753247261 + ], + "alpha": 0.8353000283241272, + "hex": "#006514" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33394", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.125490203499794, + 0.0235294122248888 + ], + "alpha": 0.8744999766349792, + "hex": "#002006" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33395", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Lime": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.9921568632125854, + 0.9803921580314636 + ], + "alpha": 1, + "hex": "#FCFDFA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33396", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0.9803921580314636, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#F8FAF3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33397", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9333333373069763, + 0.9647058844566345, + 0.8392156958580017 + ], + "alpha": 1, + "hex": "#EEF6D6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33398", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.886274516582489, + 0.9411764740943909, + 0.7411764860153198 + ], + "alpha": 1, + "hex": "#E2F0BD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33399", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8274509906768799, + 0.9058823585510254, + 0.6509804129600525 + ], + "alpha": 1, + "hex": "#D3E7A6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33400", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7607843279838562, + 0.8549019694328308, + 0.5686274766921997 + ], + "alpha": 1, + "hex": "#C2DA91" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33401", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.7882353067398071, + 0.47058823704719543 + ], + "alpha": 1, + "hex": "#ABC978" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33402", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5529412031173706, + 0.7137255072593689, + 0.3294117748737335 + ], + "alpha": 1, + "hex": "#8DB654" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33403", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7411764860153198, + 0.9333333373069763, + 0.38823530077934265 + ], + "alpha": 1, + "hex": "#BDEE63" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33404", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6901960968971252, + 0.9019607901573181, + 0.2980392277240753 + ], + "alpha": 1, + "hex": "#B0E64C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33405", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3607843220233917, + 0.48627451062202454, + 0.18431372940540314 + ], + "alpha": 1, + "hex": "#5C7C2F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33406", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21568627655506134, + 0.250980406999588, + 0.10980392247438431 + ], + "alpha": 1, + "hex": "#37401C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33407", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Lime Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4000000059604645, + 0.6000000238418579, + 0 + ], + "alpha": 0.019600000232458115, + "hex": "#669900" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33408", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.41960784792900085, + 0.5843137502670288, + 0 + ], + "alpha": 0.0471000000834465, + "hex": "#6B9500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33409", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5882353186607361, + 0.7843137383460999, + 0 + ], + "alpha": 0.1607999950647354, + "hex": "#96C800" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33410", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5607843399047852, + 0.7764706015586853, + 0 + ], + "alpha": 0.2587999999523163, + "hex": "#8FC600" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33411", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5058823823928833, + 0.7333333492279053, + 0 + ], + "alpha": 0.3490000069141388, + "hex": "#81BB00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33412", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4470588266849518, + 0.6666666865348816, + 0 + ], + "alpha": 0.43140000104904175, + "hex": "#72AA00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33413", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3803921639919281, + 0.6000000238418579, + 0 + ], + "alpha": 0.5293999910354614, + "hex": "#619900" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33414", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0.572549045085907, + 0 + ], + "alpha": 0.6705999970436096, + "hex": "#559200" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33415", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5764706134796143, + 0.8941176533699036, + 0 + ], + "alpha": 0.6118000149726868, + "hex": "#93E400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33416", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5607843399047852, + 0.8627451062202454, + 0 + ], + "alpha": 0.7020000219345093, + "hex": "#8FDC00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33417", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.21568627655506134, + 0.37254902720451355, + 0 + ], + "alpha": 0.8156999945640564, + "hex": "#375F00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33418", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11764705926179886, + 0.16078431904315948, + 0 + ], + "alpha": 0.8902000188827515, + "hex": "#1E2900" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33419", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Mint": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.9960784316062927, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#F9FEFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33420", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9490196108818054, + 0.9843137264251709, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#F2FBF9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33421", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8666666746139526, + 0.9764705896377563, + 0.9490196108818054 + ], + "alpha": 1, + "hex": "#DDF9F2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33422", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7843137383460999, + 0.95686274766922, + 0.9137254953384399 + ], + "alpha": 1, + "hex": "#C8F4E9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33423", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7019608020782471, + 0.9254902005195618, + 0.8705882430076599 + ], + "alpha": 1, + "hex": "#B3ECDE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33424", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6117647290229797, + 0.8784313797950745, + 0.8156862854957581 + ], + "alpha": 1, + "hex": "#9CE0D0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33425", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4941176474094391, + 0.8117647171020508, + 0.7411764860153198 + ], + "alpha": 1, + "hex": "#7ECFBD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33426", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.2980392277240753, + 0.7333333492279053, + 0.6470588445663452 + ], + "alpha": 1, + "hex": "#4CBBA5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33427", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5254902243614197, + 0.9176470637321472, + 0.8313725590705872 + ], + "alpha": 1, + "hex": "#86EAD4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33428", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.4901960790157318, + 0.8784313797950745, + 0.7960784435272217 + ], + "alpha": 1, + "hex": "#7DE0CB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33429", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.007843137718737125, + 0.47058823704719543, + 0.3921568691730499 + ], + "alpha": 1, + "hex": "#027864" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33430", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.08627451211214066, + 0.26274511218070984, + 0.23529411852359772 + ], + "alpha": 1, + "hex": "#16433C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33431", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Mint Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8352941274642944, + 0.6666666865348816 + ], + "alpha": 0.023499999195337296, + "hex": "#00D5AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33432", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6941176652908325, + 0.5411764979362488 + ], + "alpha": 0.050999999046325684, + "hex": "#00B18A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33433", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8235294222831726, + 0.6196078658103943 + ], + "alpha": 0.13330000638961792, + "hex": "#00D29E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33434", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.800000011920929, + 0.6000000238418579 + ], + "alpha": 0.21570000052452087, + "hex": "#00CC99" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33435", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7529411911964417, + 0.5686274766921997 + ], + "alpha": 0.2980000078678131, + "hex": "#00C091" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33436", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6901960968971252, + 0.5254902243614197 + ], + "alpha": 0.3882000148296356, + "hex": "#00B086" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33437", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6313725709915161, + 0.4901960790157318 + ], + "alpha": 0.5059000253677368, + "hex": "#00A17D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33438", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6196078658103943, + 0.49803921580314636 + ], + "alpha": 0.7020000219345093, + "hex": "#009E7F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33439", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8274509906768799, + 0.6470588445663452 + ], + "alpha": 0.47450000047683716, + "hex": "#00D3A5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33440", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7647058963775635, + 0.6000000238418579 + ], + "alpha": 0.5098000168800354, + "hex": "#00C399" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33441", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.46666666865348816, + 0.38823530077934265 + ], + "alpha": 0.9922000169754028, + "hex": "#007763" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33442", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.1921568661928177, + 0.16470588743686676 + ], + "alpha": 0.9136999845504761, + "hex": "#00312A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33443", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sky": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.9960784316062927, + 1 + ], + "alpha": 1, + "hex": "#F9FEFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33444", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.9803921580314636, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#F1FAFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33445", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8823529481887817, + 0.9647058844566345, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#E1F6FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33446", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.9411764740943909, + 0.9803921580314636 + ], + "alpha": 1, + "hex": "#D1F0FA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33447", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7450980544090271, + 0.9058823585510254, + 0.9607843160629272 + ], + "alpha": 1, + "hex": "#BEE7F5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33448", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6627451181411743, + 0.8549019694328308, + 0.929411768913269 + ], + "alpha": 1, + "hex": "#A9DAED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33449", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5529412031173706, + 0.7921568751335144, + 0.8901960849761963 + ], + "alpha": 1, + "hex": "#8DCAE3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33450", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3764705955982208, + 0.7019608020782471, + 0.843137264251709 + ], + "alpha": 1, + "hex": "#60B3D7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33451", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.886274516582489, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#7CE2FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33452", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.45490196347236633, + 0.8549019694328308, + 0.9725490212440491 + ], + "alpha": 1, + "hex": "#74DAF8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33453", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.45490196347236633, + 0.6196078658103943 + ], + "alpha": 1, + "hex": "#00749E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33454", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.24313725531101227, + 0.33725491166114807 + ], + "alpha": 1, + "hex": "#1D3E56" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33455", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Sky Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8352941274642944, + 1 + ], + "alpha": 0.023499999195337296, + "hex": "#00D5FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33456", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6431372761726379, + 0.8588235378265381 + ], + "alpha": 0.05490000173449516, + "hex": "#00A4DB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33457", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7019608020782471, + 0.9333333373069763 + ], + "alpha": 0.11760000139474869, + "hex": "#00B3EE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33458", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6745098233222961, + 0.8941176533699036 + ], + "alpha": 0.18039999902248383, + "hex": "#00ACE4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33459", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6313725709915161, + 0.8470588326454163 + ], + "alpha": 0.2549000084400177, + "hex": "#00A1D8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33460", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.572549045085907, + 0.7921568751335144 + ], + "alpha": 0.33730000257492065, + "hex": "#0092CA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33461", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5372549295425415, + 0.7568627595901489 + ], + "alpha": 0.4471000134944916, + "hex": "#0089C1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33462", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5215686559677124, + 0.7490196228027344 + ], + "alpha": 0.6234999895095825, + "hex": "#0085BF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33463", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7803921699523926, + 0.9960784316062927 + ], + "alpha": 0.513700008392334, + "hex": "#00C7FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33464", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7372549176216125, + 0.9529411792755127 + ], + "alpha": 0.5450999736785889, + "hex": "#00BCF3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33465", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.45490196347236633, + 0.6196078658103943 + ], + "alpha": 1, + "hex": "#00749E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33466", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.14509804546833038, + 0.250980406999588 + ], + "alpha": 0.8863000273704529, + "hex": "#002540" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33467", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Custom": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.9882352948188782, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FCFCFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33468", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.9764705896377563, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#F9F9F9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33469", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.9411764740943909, + 0.9411764740943909 + ], + "alpha": 1, + "hex": "#F0F0F0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33470", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9098039269447327, + 0.9098039269447327, + 0.9098039269447327 + ], + "alpha": 1, + "hex": "#E8E8E8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33471", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8823529481887817, + 0.8823529481887817, + 0.8823529481887817 + ], + "alpha": 1, + "hex": "#E1E1E1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33472", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8509804010391235, + 0.8509804010391235, + 0.8509804010391235 + ], + "alpha": 1, + "hex": "#D9D9D9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33473", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8078431487083435, + 0.8078431487083435, + 0.8078431487083435 + ], + "alpha": 1, + "hex": "#CECECE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33474", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7333333492279053, + 0.7333333492279053, + 0.7333333492279053 + ], + "alpha": 1, + "hex": "#BBBBBB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33475", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 1, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33476", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.18039216101169586, + 0.18039216101169586, + 0.18039216101169586 + ], + "alpha": 1, + "hex": "#2E2E2E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33477", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3921568691730499, + 0.3921568691730499, + 0.3921568691730499 + ], + "alpha": 1, + "hex": "#646464" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33478", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.125490203499794, + 0.125490203499794, + 0.125490203499794 + ], + "alpha": 1, + "hex": "#202020" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33479", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Custom Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33480", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.023499999195337296, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33481", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.058800000697374344, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33482", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.09019999951124191, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33483", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.11760000139474869, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33484", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.14900000393390656, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33485", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.19220000505447388, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33486", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.26669999957084656, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33487", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 1, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33488", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.819599986076355, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33489", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.6078000068664551, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33490", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.8744999766349792, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33491", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + } + }, + "Overlays": { + "Black Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.05000000074505806, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33492", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.10000000149011612, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33493", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.15000000596046448, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33494", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.20000000298023224, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33495", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.30000001192092896, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33496", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.4000000059604645, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33497", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.5, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33498", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.6000000238418579, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33499", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.699999988079071, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33500", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.800000011920929, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33501", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.8999999761581421, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33502", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0 + ], + "alpha": 0.949999988079071, + "hex": "#000000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33503", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + } + }, + "White Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.05000000074505806, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33504", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.10000000149011612, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33505", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.15000000596046448, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33506", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.20000000298023224, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33507", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.30000001192092896, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33508", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.4000000059604645, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33509", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.5, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33510", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.6000000238418579, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33511", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.699999988079071, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33512", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.800000011920929, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33513", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.8999999761581421, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33514", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.949999988079071, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33515", + "com.figma.scopes": [ + "ALL_FILLS", + "EFFECT_COLOR" + ], + "com.figma.isOverride": true + } + } + } + }, + "$extensions": { + "com.figma.modeName": "Light" + } +} \ No newline at end of file diff --git a/scripts/tokens/Radius.tokens.json b/scripts/tokens/Radius.tokens.json new file mode 100644 index 0000000..8cfe3f9 --- /dev/null +++ b/scripts/tokens/Radius.tokens.json @@ -0,0 +1,735 @@ +{ + "None": { + "1": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33517", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33518", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33519", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33520", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33521", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33522", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "1-max": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33523", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2-max": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33524", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3-max": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33525", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4-max": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33526", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5-max": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33527", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6-max": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33528", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Small": { + "1": { + "$type": "number", + "$value": 1.5, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33529", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 2, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33530", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 3, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33531", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 4, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33532", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33533", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33534", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "1-max": { + "$type": "number", + "$value": 1.5, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33535", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2-max": { + "$type": "number", + "$value": 2, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33536", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3-max": { + "$type": "number", + "$value": 3, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33537", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4-max": { + "$type": "number", + "$value": 4, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33538", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5-max": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33539", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6-max": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33540", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Medium": { + "1": { + "$type": "number", + "$value": 3, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33541", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 4, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33542", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33543", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33544", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33545", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33546", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "1-max": { + "$type": "number", + "$value": 3, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33547", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2-max": { + "$type": "number", + "$value": 4, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33548", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3-max": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33549", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4-max": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33550", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5-max": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33551", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6-max": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33552", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Large": { + "1": { + "$type": "number", + "$value": 4.5, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33553", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33554", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 9, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33555", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33556", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 18, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33557", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 24, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33558", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "1-max": { + "$type": "number", + "$value": 4.5, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33559", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2-max": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33560", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3-max": { + "$type": "number", + "$value": 9, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33561", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4-max": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33562", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5-max": { + "$type": "number", + "$value": 18, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33563", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6-max": { + "$type": "number", + "$value": 24, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33564", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Full": { + "1": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33565", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33566", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33567", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33568", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 24, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33569", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 32, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33570", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "1-max": { + "$type": "string", + "$value": "50%", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33571", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2-max": { + "$type": "string", + "$value": "50%", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33572", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3-max": { + "$type": "string", + "$value": "50%", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33573", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4-max": { + "$type": "string", + "$value": "50%", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33574", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5-max": { + "$type": "string", + "$value": "50%", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33575", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6-max": { + "$type": "string", + "$value": "50%", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33576", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "$extensions": { + "com.figma.modeName": "Mode 1" + } +} \ No newline at end of file diff --git a/scripts/tokens/Space.tokens.json b/scripts/tokens/Space.tokens.json new file mode 100644 index 0000000..0a5182b --- /dev/null +++ b/scripts/tokens/Space.tokens.json @@ -0,0 +1,555 @@ +{ + "90%": { + "1": { + "$type": "number", + "$value": 3.5999999046325684, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33578", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 7.199999809265137, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33579", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 10.800000190734863, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33580", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 14.399999618530273, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33581", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 21.600000381469727, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33582", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 28.799999237060547, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33583", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": 36, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33584", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": 43.20000076293945, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33585", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "number", + "$value": 57.599998474121094, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33586", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "95%": { + "1": { + "$type": "number", + "$value": 3.799999952316284, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33587", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 7.599999904632568, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33588", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 11.399999618530273, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33589", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 15.199999809265137, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33590", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 22.799999237060547, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33591", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 30.399999618530273, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33592", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": 38, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33593", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": 45.599998474121094, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33594", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "09": { + "$type": "number", + "$value": 60.79999923706055, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33595", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "100%": { + "1": { + "$type": "number", + "$value": 4, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33596", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33597", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33598", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33599", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 24, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33600", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 32, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33601", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": 40, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33602", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": 48, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33603", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "number", + "$value": 64, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33604", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "105%": { + "1": { + "$type": "number", + "$value": 4.199999809265137, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33605", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 8.399999618530273, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33606", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 13.800000190734863, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33607", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 18.399999618530273, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33608", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 25.200000762939453, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33609", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 33.599998474121094, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33610", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": 42, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33611", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": 50.400001525878906, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33612", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "number", + "$value": 67.19999694824219, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33613", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "110%": { + "1": { + "$type": "number", + "$value": 4.400000095367432, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33614", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 8.800000190734863, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33615", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 13.199999809265137, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33616", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 17.600000381469727, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33617", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 26.399999618530273, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33618", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 35.20000076293945, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33619", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": 44, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33620", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": 52.79999923706055, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33621", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "number", + "$value": 70.4000015258789, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33622", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "$extensions": { + "com.figma.modeName": "Mode 1" + } +} \ No newline at end of file diff --git a/scripts/tokens/Theme.tokens.json b/scripts/tokens/Theme.tokens.json new file mode 100644 index 0000000..fa95414 --- /dev/null +++ b/scripts/tokens/Theme.tokens.json @@ -0,0 +1,4970 @@ +{ + "Colors": { + "Default": { + "white": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 1, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33624", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "black": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.125490203499794, + 0.1411764770746231 + ], + "alpha": 1, + "hex": "#1C2024" + }, + "$description": "Based on Slate 12", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33625", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Accent": { + "Accent": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.9921568632125854, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#FDFDFE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33626", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:ad14fb726b72fb1ca4f3aee07fe6e1c61d195021/-1:-1", + "targetVariableName": "Colors/Indigo/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9686274528503418, + 0.9764705896377563, + 1 + ], + "alpha": 1, + "hex": "#F7F9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33627", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:f22c2ed0abae14fb26865ce4d374130dd6d73550/-1:-1", + "targetVariableName": "Colors/Indigo/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.929411768913269, + 0.9490196108818054, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#EDF2FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33628", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:7fe14a38a20a54e8fe1489cf20138cab79d0e10e/-1:-1", + "targetVariableName": "Colors/Indigo/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8823529481887817, + 0.9137254953384399, + 1 + ], + "alpha": 1, + "hex": "#E1E9FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33629", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:839d3dd7da48f3f114b4f3544549516720b1eea6/-1:-1", + "targetVariableName": "Colors/Indigo/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8235294222831726, + 0.8705882430076599, + 1 + ], + "alpha": 1, + "hex": "#D2DEFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33630", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:8bc1ae3d2504be4d1216b4ee5b6f0894a093cbb8/-1:-1", + "targetVariableName": "Colors/Indigo/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7568627595901489, + 0.8156862854957581, + 1 + ], + "alpha": 1, + "hex": "#C1D0FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33631", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:42cb50f3ad1cc37ed259d27beb3bc28558c077e9/-1:-1", + "targetVariableName": "Colors/Indigo/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.7411764860153198, + 0.9764705896377563 + ], + "alpha": 1, + "hex": "#ABBDF9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33632", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:5d9d1787e19bd3674ccbff3b4b0a57162346d1e5/-1:-1", + "targetVariableName": "Colors/Indigo/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5529412031173706, + 0.6431372761726379, + 0.9372549057006836 + ], + "alpha": 1, + "hex": "#8DA4EF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33633", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:c6f23a7c99470e7b0641998f5bb34fe1770b3f4c/-1:-1", + "targetVariableName": "Colors/Indigo/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.24313725531101227, + 0.38823530077934265, + 0.8666666746139526 + ], + "alpha": 1, + "hex": "#3E63DD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33634", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:06e6e12371d72ba5fe486b5903891ae6839fa01f/-1:-1", + "targetVariableName": "Colors/Indigo/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20000000298023224, + 0.3450980484485626, + 0.8313725590705872 + ], + "alpha": 1, + "hex": "#3358D4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33635", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:82bda5f68f38eeec623b627cc21cece41bb379c2/-1:-1", + "targetVariableName": "Colors/Indigo/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.22745098173618317, + 0.35686275362968445, + 0.7803921699523926 + ], + "alpha": 1, + "hex": "#3A5BC7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33636", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:deeb1cceed059b1470909548211666042dbd4687/-1:-1", + "targetVariableName": "Colors/Indigo/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12156862765550613, + 0.1764705926179886, + 0.3607843220233917 + ], + "alpha": 1, + "hex": "#1F2D5C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33637", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:7e04fc31be35d68dcc5380ad9853ac3f7ff6441c/-1:-1", + "targetVariableName": "Colors/Indigo/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Accent Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.501960813999176 + ], + "alpha": 0.007799999788403511, + "hex": "#000080" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33638", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:852227430f8f9b096dd148dea6eed04efe0ea141/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.250980406999588, + 1 + ], + "alpha": 0.03139999881386757, + "hex": "#0040FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33639", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:62ed7a88e72803865e58ecd4f4ed1802b6fda26c/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.27843138575553894, + 0.9450980424880981 + ], + "alpha": 0.0706000030040741, + "hex": "#0047F1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33640", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:286f66126e50624c731838e01e32322ac54086a7/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.2666666805744171, + 1 + ], + "alpha": 0.11760000139474869, + "hex": "#0044FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33641", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:72afc6ecfd810e1e99676ef47c2499171179361d/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.2666666805744171, + 1 + ], + "alpha": 0.17649999260902405, + "hex": "#0044FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33642", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:31ea8026dd74c1dd1de2c5e33921dab046887719/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.24313725531101227, + 1 + ], + "alpha": 0.24310000240802765, + "hex": "#003EFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33643", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:48495aef258ad1bb8e54a40d63c7a7c18ee0e41a/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.21568627655506134, + 0.929411768913269 + ], + "alpha": 0.3294000029563904, + "hex": "#0037ED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33644", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:3b479f35cdf7b27b95dc61a67947de4a678edd6e/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.20392157137393951, + 0.8627451062202454 + ], + "alpha": 0.4471000134944916, + "hex": "#0034DC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33645", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:786434ff1b3c7932538f50fdb3e539c9da24d532/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.1921568661928177, + 0.8235294222831726 + ], + "alpha": 0.7569000124931335, + "hex": "#0031D2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33646", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:3a0bc920f067dd07fa74b37af11a0fe11a5e265b/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.18039216101169586, + 0.7882353067398071 + ], + "alpha": 0.800000011920929, + "hex": "#002EC9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33647", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:d8466e133fac2ca580540ce564c58a5c8ffd0877/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.16862745583057404, + 0.7176470756530762 + ], + "alpha": 0.7724999785423279, + "hex": "#002BB7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33648", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4c504b6b8b0a3511b89687540f81c0019a644608/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.062745101749897, + 0.27450981736183167 + ], + "alpha": 0.8784000277519226, + "hex": "#001046" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33649", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b5a85eeea9d7755c17df50192d29c18c83b588e7/-1:-1", + "targetVariableName": "Colors/Indigo Alpha/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + } + }, + "Neutral": { + "Neutral": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9882352948188782, + 0.9882352948188782, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#FCFCFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33650", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1e94d70b3bd281453431c5d9aa3a7572a923d63d/-1:-1", + "targetVariableName": "Colors/Slate/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.9764705896377563, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#F9F9FB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33651", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:9cc530ce3e344ee2e06f84065f6a31d627383beb/-1:-1", + "targetVariableName": "Colors/Slate/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9411764740943909, + 0.9411764740943909, + 0.9529411792755127 + ], + "alpha": 1, + "hex": "#F0F0F3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33652", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4e524638172fd66500afb42c8850682522aee9be/-1:-1", + "targetVariableName": "Colors/Slate/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9098039269447327, + 0.9098039269447327, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#E8E8EC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33653", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:2ba84a4c37060c665c848aafd7af39c60297ed16/-1:-1", + "targetVariableName": "Colors/Slate/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8784313797950745, + 0.8823529481887817, + 0.9019607901573181 + ], + "alpha": 1, + "hex": "#E0E1E6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33654", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1215d3ac0cff64419b9d5b06c4788aa6424f8b08/-1:-1", + "targetVariableName": "Colors/Slate/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8509804010391235, + 0.8509804010391235, + 0.8784313797950745 + ], + "alpha": 1, + "hex": "#D9D9E0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33655", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4223989069dd28ca376a80dd533bffb692469dae/-1:-1", + "targetVariableName": "Colors/Slate/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8039215803146362, + 0.8078431487083435, + 0.8392156958580017 + ], + "alpha": 1, + "hex": "#CDCED6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33656", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:2fe14cc4badd01dcb568c1c0b1290abc7aff7ec9/-1:-1", + "targetVariableName": "Colors/Slate/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7254902124404907, + 0.7333333492279053, + 0.7764706015586853 + ], + "alpha": 1, + "hex": "#B9BBC6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33657", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:2d42e38264a26a0395ef2c7137a6d89b837c6a90/-1:-1", + "targetVariableName": "Colors/Slate/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.545098066329956, + 0.5529412031173706, + 0.5960784554481506 + ], + "alpha": 1, + "hex": "#8B8D98" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33658", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:cfa74a2620024ff09cf5443fb9778471faaf0e4f/-1:-1", + "targetVariableName": "Colors/Slate/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.501960813999176, + 0.5137255191802979, + 0.5529412031173706 + ], + "alpha": 1, + "hex": "#80838D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33659", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:ea1970ed2600bc00136ba5db7229bb61c32275d1/-1:-1", + "targetVariableName": "Colors/Slate/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3764705955982208, + 0.3921568691730499, + 0.42352941632270813 + ], + "alpha": 1, + "hex": "#60646C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33660", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:a2216278c317ae0f5077341ddc6ac6b4d28ac61e/-1:-1", + "targetVariableName": "Colors/Slate/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.125490203499794, + 0.1411764770746231 + ], + "alpha": 1, + "hex": "#1C2024" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33661", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:0c9f294f643ff38ffae939954d569d19aa1c59be/-1:-1", + "targetVariableName": "Colors/Slate/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Neutral Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.3333333432674408 + ], + "alpha": 0.011800000444054604, + "hex": "#000055" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33662", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:ed4ed94089ff6209c93503305c8c2af6e93b3bd3/-1:-1", + "targetVariableName": "Colors/Slate Alpha/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.3333333432674408 + ], + "alpha": 0.023499999195337296, + "hex": "#000055" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33663", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:71d6f282264234f9e758a2089dcf521727b744c8/-1:-1", + "targetVariableName": "Colors/Slate Alpha/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.20000000298023224 + ], + "alpha": 0.058800000697374344, + "hex": "#000033" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33664", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:40ccfcc744eedf44a2421653baa274e0cf656be7/-1:-1", + "targetVariableName": "Colors/Slate Alpha/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.1764705926179886 + ], + "alpha": 0.09019999951124191, + "hex": "#00002D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33665", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:0966f8c046afd1985733b1c17a542226c1bc45d3/-1:-1", + "targetVariableName": "Colors/Slate Alpha/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.03529411926865578, + 0.19607843458652496 + ], + "alpha": 0.12160000205039978, + "hex": "#000932" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33666", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:d0a51f31f6078219f3f38e78a232207d98d43344/-1:-1", + "targetVariableName": "Colors/Slate Alpha/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0, + 0.18431372940540314 + ], + "alpha": 0.14900000393390656, + "hex": "#00002F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33667", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:67b0b96dafe6cf26fbef7c9c1a44c3360ba2c504/-1:-1", + "targetVariableName": "Colors/Slate Alpha/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0235294122248888, + 0.18039216101169586 + ], + "alpha": 0.19609999656677246, + "hex": "#00062E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33668", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:a8901ef0810b7e82571a2cb85af01078986647c2/-1:-1", + "targetVariableName": "Colors/Slate Alpha/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0313725508749485, + 0.1882352977991104 + ], + "alpha": 0.2745000123977661, + "hex": "#000830" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33669", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:397800ebf8de1d8e46948eb58bdad594e55d9827/-1:-1", + "targetVariableName": "Colors/Slate Alpha/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.019607843831181526, + 0.11372549086809158 + ], + "alpha": 0.45489999651908875, + "hex": "#00051D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33670", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:fe3a40cef84bd8103107223aa47eff21d319dabf/-1:-1", + "targetVariableName": "Colors/Slate Alpha/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.027450980618596077, + 0.10588235408067703 + ], + "alpha": 0.49799999594688416, + "hex": "#00071B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33671", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:c5c7a2c22a835d88adcb712cce1756f1a7d4fdaa/-1:-1", + "targetVariableName": "Colors/Slate Alpha/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.027450980618596077, + 0.0784313753247261 + ], + "alpha": 0.6234999895095825, + "hex": "#000714" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33672", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:5c200ee97b826433b2766f4286b2795324730908/-1:-1", + "targetVariableName": "Colors/Slate Alpha/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.019607843831181526, + 0.03529411926865578 + ], + "alpha": 0.8902000188827515, + "hex": "#000509" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33673", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:948130d802e51401b73adf5cf6a8600b851f10c8/-1:-1", + "targetVariableName": "Colors/Slate Alpha/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + } + }, + "Semantic": { + "Error": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9882352948188782, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FFFCFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33674", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1bfd7cb1b41c5448ec5d10d3c0305641ef54b98c/-1:-1", + "targetVariableName": "Colors/Red/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9686274528503418, + 0.9686274528503418 + ], + "alpha": 1, + "hex": "#FFF7F7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33675", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:e7248063a13dce44ba9b765dabe0eeb0ff31bb85/-1:-1", + "targetVariableName": "Colors/Red/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9215686321258545, + 0.9254902005195618 + ], + "alpha": 1, + "hex": "#FEEBEC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33676", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b9277a10e91b5bce195d93fa7a9e8c3e0ead0b7a/-1:-1", + "targetVariableName": "Colors/Red/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8588235378265381, + 0.8627451062202454 + ], + "alpha": 1, + "hex": "#FFDBDC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33677", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:5704a2590c23a743ecd8fe82e6f4d48e5ffb440a/-1:-1", + "targetVariableName": "Colors/Red/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8039215803146362, + 0.8078431487083435 + ], + "alpha": 1, + "hex": "#FFCDCE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33678", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:89fb5eab64c90a01292ff407fd76dee0e665cc1f/-1:-1", + "targetVariableName": "Colors/Red/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9921568632125854, + 0.7411764860153198, + 0.7450980544090271 + ], + "alpha": 1, + "hex": "#FDBDBE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33679", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:ba62d160b93a255e453cd2190013888d14ced45e/-1:-1", + "targetVariableName": "Colors/Red/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.6627451181411743, + 0.6666666865348816 + ], + "alpha": 1, + "hex": "#F4A9AA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33680", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:8b1b0fb0ccf5157264383a50f62f8f8120fd8f41/-1:-1", + "targetVariableName": "Colors/Red/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9215686321258545, + 0.5568627715110779, + 0.5647059082984924 + ], + "alpha": 1, + "hex": "#EB8E90" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33681", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:e65d1484dc23acd36f56873ac40b8f7f31d72d9e/-1:-1", + "targetVariableName": "Colors/Red/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8980392217636108, + 0.2823529541492462, + 0.3019607961177826 + ], + "alpha": 1, + "hex": "#E5484D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33682", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:5f59709ddf21cda32340b6e12d71b4fbe8644c94/-1:-1", + "targetVariableName": "Colors/Red/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8627451062202454, + 0.24313725531101227, + 0.25882354378700256 + ], + "alpha": 1, + "hex": "#DC3E42" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33683", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4c48bf2f90748b349d7071f7460b835c77fed581/-1:-1", + "targetVariableName": "Colors/Red/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8078431487083435, + 0.1725490242242813, + 0.1921568661928177 + ], + "alpha": 1, + "hex": "#CE2C31" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33684", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4e153f7c17ae6963c000171af228b6f4ee14b4d3/-1:-1", + "targetVariableName": "Colors/Red/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3921568691730499, + 0.09019608050584793, + 0.13725490868091583 + ], + "alpha": 1, + "hex": "#641723" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33685", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:80073858ae1c47e83bb599e932217236519dbb8b/-1:-1", + "targetVariableName": "Colors/Red/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Error Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0 + ], + "alpha": 0.011800000444054604, + "hex": "#FF0000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33686", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:aa30039dbe3419cd8374209718fc8a9c7b8ba6be/-1:-1", + "targetVariableName": "Colors/Red Alpha/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0 + ], + "alpha": 0.03139999881386757, + "hex": "#FF0000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33687", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b5543aca4b5446188512b5525d95a7f76483c3a9/-1:-1", + "targetVariableName": "Colors/Red Alpha/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0, + 0.05098039284348488 + ], + "alpha": 0.07840000092983246, + "hex": "#F3000D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33688", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4b50ee05b60c6173be99c3ec793a5ba9f1825ae2/-1:-1", + "targetVariableName": "Colors/Red Alpha/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.0313725508749485 + ], + "alpha": 0.1412000060081482, + "hex": "#FF0008" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33689", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:8963c657e8dbbf4fdfcfc464defcfb4b5865c2b9/-1:-1", + "targetVariableName": "Colors/Red Alpha/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0, + 0.0235294122248888 + ], + "alpha": 0.19609999656677246, + "hex": "#FF0006" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33690", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:2186924afdbd6181cd1fa0ab650a2bf961b1d1a9/-1:-1", + "targetVariableName": "Colors/Red Alpha/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0, + 0.01568627543747425 + ], + "alpha": 0.2587999999523163, + "hex": "#F80004" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33691", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:795a3ed2b89f696122335d1c6add8510bcef1c38/-1:-1", + "targetVariableName": "Colors/Red Alpha/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8745098114013672, + 0, + 0.0117647061124444 + ], + "alpha": 0.33730000257492065, + "hex": "#DF0003" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33692", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:f3ef189d8157be9e3d0265861121c73b1de9ef7d/-1:-1", + "targetVariableName": "Colors/Red Alpha/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8235294222831726, + 0, + 0.019607843831181526 + ], + "alpha": 0.4431000053882599, + "hex": "#D20005" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33693", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:8db2145300dfed3540f8f0b02bb44565e286a34a/-1:-1", + "targetVariableName": "Colors/Red Alpha/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8588235378265381, + 0, + 0.027450980618596077 + ], + "alpha": 0.7175999879837036, + "hex": "#DB0007" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33694", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b48f6cc67a1eafae0a245c456267559a00b5004c/-1:-1", + "targetVariableName": "Colors/Red Alpha/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0, + 0.019607843831181526 + ], + "alpha": 0.7569000124931335, + "hex": "#D10005" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33695", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:789687e01486545512b87bde7fb32bf5bdf7e362/-1:-1", + "targetVariableName": "Colors/Red Alpha/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7686274647712708, + 0, + 0.0235294122248888 + ], + "alpha": 0.8274999856948853, + "hex": "#C40006" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33696", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:f95d368b95b236ee5cdc39309b0dd2ca089caf77/-1:-1", + "targetVariableName": "Colors/Red Alpha/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3333333432674408, + 0, + 0.05098039284348488 + ], + "alpha": 0.9097999930381775, + "hex": "#55000D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33697", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:52210bbf76a8c2e0a83bd3e8e359713250e7b7a4/-1:-1", + "targetVariableName": "Colors/Red Alpha/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Success": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.9960784316062927, + 0.9882352948188782 + ], + "alpha": 1, + "hex": "#FBFEFC" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33698", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:8c177a8a6394a77679edea72b6a4a9a33c51377e/-1:-1", + "targetVariableName": "Colors/Green/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.9843137264251709, + 0.9647058844566345 + ], + "alpha": 1, + "hex": "#F4FBF6" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33699", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:baa9d5d08a6445f5052ab2d22e4d3e955084fd15/-1:-1", + "targetVariableName": "Colors/Green/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9019607901573181, + 0.9647058844566345, + 0.9215686321258545 + ], + "alpha": 1, + "hex": "#E6F6EB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33700", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:590b7eb04aa822b9735ff1a8de9c07e46e312ace/-1:-1", + "targetVariableName": "Colors/Green/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8392156958580017, + 0.9450980424880981, + 0.8745098114013672 + ], + "alpha": 1, + "hex": "#D6F1DF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33701", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:162132bd2916907c97737bc7de9c5acf4e0a97df/-1:-1", + "targetVariableName": "Colors/Green/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7686274647712708, + 0.9098039269447327, + 0.8196078538894653 + ], + "alpha": 1, + "hex": "#C4E8D1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33702", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:482e943bd3eaa1f11f7e216aa631d041cb92cdc1/-1:-1", + "targetVariableName": "Colors/Green/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6784313917160034, + 0.8666666746139526, + 0.7529411911964417 + ], + "alpha": 1, + "hex": "#ADDDC0" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33703", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:5862a756bd893f0e60d3d6085f843f181fd702d0/-1:-1", + "targetVariableName": "Colors/Green/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5568627715110779, + 0.8078431487083435, + 0.6666666865348816 + ], + "alpha": 1, + "hex": "#8ECEAA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33704", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:ade52a70ae374435b3a77c620c5905fb0027f8d7/-1:-1", + "targetVariableName": "Colors/Green/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.35686275362968445, + 0.7254902124404907, + 0.545098066329956 + ], + "alpha": 1, + "hex": "#5BB98B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33705", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:51135a7007fda9b58f1f5ed8ca25372705356419/-1:-1", + "targetVariableName": "Colors/Green/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.1882352977991104, + 0.6431372761726379, + 0.42352941632270813 + ], + "alpha": 1, + "hex": "#30A46C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33706", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:081f9fbe33f36e6adb0c5fed9c20b675880d7f84/-1:-1", + "targetVariableName": "Colors/Green/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.16862745583057404, + 0.6039215922355652, + 0.4000000059604645 + ], + "alpha": 1, + "hex": "#2B9A66" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33707", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:9bbf44e8d0e8a6cda24fa559590f9dbf3ee974f4/-1:-1", + "targetVariableName": "Colors/Green/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.12941177189350128, + 0.5137255191802979, + 0.3450980484485626 + ], + "alpha": 1, + "hex": "#218358" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33708", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:44600ec33afa3d437d0356e703bf31babecc073f/-1:-1", + "targetVariableName": "Colors/Green/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.09803921729326248, + 0.23137255012989044, + 0.1764705926179886 + ], + "alpha": 1, + "hex": "#193B2D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33709", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:df7a899194bf171289bbe58fbc690bea099ffefb/-1:-1", + "targetVariableName": "Colors/Green/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Success Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7529411911964417, + 0.250980406999588 + ], + "alpha": 0.015699999406933784, + "hex": "#00C040" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33710", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:5bda5dc84ef54b54cf4110d6a8267dd2cda20412/-1:-1", + "targetVariableName": "Colors/Green Alpha/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6392157077789307, + 0.18431372940540314 + ], + "alpha": 0.04309999942779541, + "hex": "#00A32F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33711", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:59df4caab77c7ede869d5f438ee232f2939bd808/-1:-1", + "targetVariableName": "Colors/Green Alpha/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6431372761726379, + 0.20000000298023224 + ], + "alpha": 0.09799999743700027, + "hex": "#00A433" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33712", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:dfae96a1c965e6a2a977c720f20c7a70290fed34/-1:-1", + "targetVariableName": "Colors/Green Alpha/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.658823549747467, + 0.21960784494876862 + ], + "alpha": 0.1607999950647354, + "hex": "#00A838" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33713", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:0f2eed3976eead30351da9bcc8af589081583df7/-1:-1", + "targetVariableName": "Colors/Green Alpha/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.003921568859368563, + 0.6117647290229797, + 0.2235294133424759 + ], + "alpha": 0.2313999980688095, + "hex": "#019C39" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33714", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:71388fab1562262d80181b86485670d44ee33b50/-1:-1", + "targetVariableName": "Colors/Green Alpha/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5882353186607361, + 0.23529411852359772 + ], + "alpha": 0.3215999901294708, + "hex": "#00963C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33715", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:0aea12708b8db6b972aa341a8a2d3502a8bbe696/-1:-1", + "targetVariableName": "Colors/Green Alpha/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5686274766921997, + 0.250980406999588 + ], + "alpha": 0.4431000053882599, + "hex": "#009140" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33716", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4e881688e6e529d91c94e12d807f687eb089a988/-1:-1", + "targetVariableName": "Colors/Green Alpha/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.572549045085907, + 0.29411765933036804 + ], + "alpha": 0.6431000232696533, + "hex": "#00924B" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33717", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1d839edd56807854ef64d666fd0eeaf3bd1c4595/-1:-1", + "targetVariableName": "Colors/Green Alpha/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5607843399047852, + 0.29019609093666077 + ], + "alpha": 0.8118000030517578, + "hex": "#008F4A" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33718", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:ec3fe67f48a269960a04c7559d75c506e21a0bd0/-1:-1", + "targetVariableName": "Colors/Green Alpha/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5254902243614197, + 0.27843138575553894 + ], + "alpha": 0.8313999772071838, + "hex": "#008647" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33719", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:5f283c74b5e329c5dce147887321c0351db48dfd/-1:-1", + "targetVariableName": "Colors/Green Alpha/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.4431372582912445, + 0.24705882370471954 + ], + "alpha": 0.8705999851226807, + "hex": "#00713F" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33720", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1a8ac280065a7f5ca9fcd7ac262b024733f1f8ce/-1:-1", + "targetVariableName": "Colors/Green Alpha/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.00007400000322377309, + 0.14792600274085999, + 0.08674587309360504 + ], + "alpha": 0.9020000100135803, + "hex": "#002616" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33721", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:fd22b43932af3a3384de4c064e8ed8cd02ac0d09/-1:-1", + "targetVariableName": "Colors/Green Alpha/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Warning": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9921568632125854, + 0.9843137264251709 + ], + "alpha": 1, + "hex": "#FEFDFB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33722", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1725a4cb1e7b4f05500895a13d9678f94dc8aaaa/-1:-1", + "targetVariableName": "Colors/Amber/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9960784316062927, + 0.9843137264251709, + 0.9137254953384399 + ], + "alpha": 1, + "hex": "#FEFBE9" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33723", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:caf36284fddf8b91283e371f106d65d9d13903c1/-1:-1", + "targetVariableName": "Colors/Amber/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9686274528503418, + 0.7607843279838562 + ], + "alpha": 1, + "hex": "#FFF7C2" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33724", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1117a6fbfb85c98dda418d5ee7b0c2d32efd6de0/-1:-1", + "targetVariableName": "Colors/Amber/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.9333333373069763, + 0.6117647290229797 + ], + "alpha": 1, + "hex": "#FFEE9C" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33725", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:89af8f942b28cdc5e94e7f30c186ba4ec68eba35/-1:-1", + "targetVariableName": "Colors/Amber/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9843137264251709, + 0.8980392217636108, + 0.46666666865348816 + ], + "alpha": 1, + "hex": "#FBE577" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33726", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:f51d235ef0b6725272f006c009d824aaa7af349f/-1:-1", + "targetVariableName": "Colors/Amber/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9529411792755127, + 0.8392156958580017, + 0.45098039507865906 + ], + "alpha": 1, + "hex": "#F3D673" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33727", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:01b8eed74d14b10889dda1e14223d014914e0a06/-1:-1", + "targetVariableName": "Colors/Amber/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9137254953384399, + 0.7568627595901489, + 0.3843137323856354 + ], + "alpha": 1, + "hex": "#E9C162" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33728", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:289daf4c2021da2f59f61b25be6b6fe305789b0a/-1:-1", + "targetVariableName": "Colors/Amber/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.886274516582489, + 0.6392157077789307, + 0.21176470816135406 + ], + "alpha": 1, + "hex": "#E2A336" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33729", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:c49776f9a55cff6a1412475578ff931f42668092/-1:-1", + "targetVariableName": "Colors/Amber/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.772549033164978, + 0.239215686917305 + ], + "alpha": 1, + "hex": "#FFC53D" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33730", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:915f58421396719a08a8b6f011119c9e2ed957b7/-1:-1", + "targetVariableName": "Colors/Amber/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.729411780834198, + 0.0941176488995552 + ], + "alpha": 1, + "hex": "#FFBA18" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33731", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:d571d0847a3f81b4b11e2ba0a7c2c78522ad6293/-1:-1", + "targetVariableName": "Colors/Amber/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.3921568691730499, + 0 + ], + "alpha": 1, + "hex": "#AB6400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33732", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:c39ee16af1a96c5ee937c5ecba8b70aac0ed321d/-1:-1", + "targetVariableName": "Colors/Amber/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.30980393290519714, + 0.20392157137393951, + 0.13333334028720856 + ], + "alpha": 1, + "hex": "#4F3422" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33733", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:be3e52cc5f00570f9a587cb8292fb23437f5dee9/-1:-1", + "targetVariableName": "Colors/Amber/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Warning Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7529411911964417, + 0.501960813999176, + 0 + ], + "alpha": 0.015699999406933784, + "hex": "#C08000" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33734", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:3e8a36a05371d15f93444a5ca3c77683d15cc334/-1:-1", + "targetVariableName": "Colors/Amber Alpha/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.95686274766922, + 0.8196078538894653, + 0 + ], + "alpha": 0.08630000054836273, + "hex": "#F4D100" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33735", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:ddf7afbeca0f5d4613fb38dfc4c55c6c3dda9cee/-1:-1", + "targetVariableName": "Colors/Amber Alpha/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8705882430076599, + 0 + ], + "alpha": 0.23919999599456787, + "hex": "#FFDE00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33736", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:2f774e42b044d48102aad6caa8413a1ec5bcf782/-1:-1", + "targetVariableName": "Colors/Amber Alpha/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.8313725590705872, + 0 + ], + "alpha": 0.3882000148296356, + "hex": "#FFD400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33737", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:04ac30f5add300a3e3522a5d95890cdc15251a55/-1:-1", + "targetVariableName": "Colors/Amber Alpha/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9725490212440491, + 0.8117647171020508, + 0 + ], + "alpha": 0.53329998254776, + "hex": "#F8CF00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33738", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:8b5589aefc29643edfbe9d236434e4c9a5ec2266/-1:-1", + "targetVariableName": "Colors/Amber Alpha/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9176470637321472, + 0.7098039388656616, + 0 + ], + "alpha": 0.5490000247955322, + "hex": "#EAB500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33739", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:81e37a6fb700efa5e29fec4c9b68f3f2e0ccac96/-1:-1", + "targetVariableName": "Colors/Amber Alpha/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8627451062202454, + 0.6078431606292725, + 0 + ], + "alpha": 0.6157000064849854, + "hex": "#DC9B00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33740", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:e98efc27202e55fffc8f3a928009be148a06512e/-1:-1", + "targetVariableName": "Colors/Amber Alpha/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8549019694328308, + 0.5411764979362488, + 0 + ], + "alpha": 0.7882000207901001, + "hex": "#DA8A00" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33741", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:a2ed259faad29bd6e699983d569bd8cf8c1f0a7d/-1:-1", + "targetVariableName": "Colors/Amber Alpha/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7019608020782471, + 0 + ], + "alpha": 0.7608000040054321, + "hex": "#FFB300" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33742", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:fb868366fb34c72423b92c6dc053bb1e1ec97003/-1:-1", + "targetVariableName": "Colors/Amber Alpha/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 0.7019608020782471, + 0 + ], + "alpha": 0.9059000015258789, + "hex": "#FFB300" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33743", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:a09dc96da624ba6c761db039f0db34f4e14c0e8b/-1:-1", + "targetVariableName": "Colors/Amber Alpha/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6705882549285889, + 0.3921568691730499, + 0 + ], + "alpha": 1, + "hex": "#AB6400" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33744", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b3ae2e5aa24516fb73e21666cbc4720f5f933916/-1:-1", + "targetVariableName": "Colors/Amber Alpha/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.20392157137393951, + 0.08235294371843338, + 0 + ], + "alpha": 0.8666999936103821, + "hex": "#341500" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33745", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1b06af5ea682b5d1391a368174fe18c1aefef3de/-1:-1", + "targetVariableName": "Colors/Amber Alpha/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Info": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9764705896377563, + 0.9960784316062927, + 1 + ], + "alpha": 1, + "hex": "#F9FEFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33746", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:a9c45f415d4fc1d9f184455e32329771426a9a43/-1:-1", + "targetVariableName": "Colors/Sky/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.9450980424880981, + 0.9803921580314636, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#F1FAFD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33747", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:8106bb39566c576f13c71e361b99ace33ff462b0/-1:-1", + "targetVariableName": "Colors/Sky/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8823529481887817, + 0.9647058844566345, + 0.9921568632125854 + ], + "alpha": 1, + "hex": "#E1F6FD" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33748", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:e77922e8fe86f6cd3d7056a2aa77167f063b4962/-1:-1", + "targetVariableName": "Colors/Sky/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.8196078538894653, + 0.9411764740943909, + 0.9803921580314636 + ], + "alpha": 1, + "hex": "#D1F0FA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33749", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4df24541d747bd8c27653cba654ec9e79eebc41d/-1:-1", + "targetVariableName": "Colors/Sky/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.7450980544090271, + 0.9058823585510254, + 0.9607843160629272 + ], + "alpha": 1, + "hex": "#BEE7F5" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33750", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4be5a55477d435c0544456ad47bff612c14799de/-1:-1", + "targetVariableName": "Colors/Sky/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.6627451181411743, + 0.8549019694328308, + 0.929411768913269 + ], + "alpha": 1, + "hex": "#A9DAED" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33751", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:e69b78fc1427f2c6c49b81167a9b1e85ea8bc84e/-1:-1", + "targetVariableName": "Colors/Sky/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.5529412031173706, + 0.7921568751335144, + 0.8901960849761963 + ], + "alpha": 1, + "hex": "#8DCAE3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33752", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:9f047683bb8e590fc65b60b095a0ddf5515a91f5/-1:-1", + "targetVariableName": "Colors/Sky/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.3764705955982208, + 0.7019608020782471, + 0.843137264251709 + ], + "alpha": 1, + "hex": "#60B3D7" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33753", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1d7b69d2aa0a65930a9f267c61795025110642a5/-1:-1", + "targetVariableName": "Colors/Sky/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.48627451062202454, + 0.886274516582489, + 0.9960784316062927 + ], + "alpha": 1, + "hex": "#7CE2FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33754", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1cbf44b7def4f64b1c11570a215eeb7e4f9ff996/-1:-1", + "targetVariableName": "Colors/Sky/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.45490196347236633, + 0.8549019694328308, + 0.9725490212440491 + ], + "alpha": 1, + "hex": "#74DAF8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33755", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b989f59f66cff16382f4a8cd616301b31af3414b/-1:-1", + "targetVariableName": "Colors/Sky/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.45490196347236633, + 0.6196078658103943 + ], + "alpha": 1, + "hex": "#00749E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33756", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:aa44cf10a4fd3ca217108656bd1148ce53c655a2/-1:-1", + "targetVariableName": "Colors/Sky/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.11372549086809158, + 0.24313725531101227, + 0.33725491166114807 + ], + "alpha": 1, + "hex": "#1D3E56" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33757", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:a1d43a9a5a39f2b929f6358d1544de16b88b8742/-1:-1", + "targetVariableName": "Colors/Sky/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Info Alpha": { + "1": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.8352941274642944, + 1 + ], + "alpha": 0.023499999195337296, + "hex": "#00D5FF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33758", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1b39060e0d3f38604270f047e744282a72f55b2a/-1:-1", + "targetVariableName": "Colors/Sky Alpha/1", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6431372761726379, + 0.8588235378265381 + ], + "alpha": 0.05490000173449516, + "hex": "#00A4DB" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33759", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b46646bbe33d7239198a7ec4af07f892bf3737ac/-1:-1", + "targetVariableName": "Colors/Sky Alpha/2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7019608020782471, + 0.9333333373069763 + ], + "alpha": 0.11760000139474869, + "hex": "#00B3EE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33760", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:8dcc7028254b159848e469af732854d98f170d39/-1:-1", + "targetVariableName": "Colors/Sky Alpha/3", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6745098233222961, + 0.8941176533699036 + ], + "alpha": 0.18039999902248383, + "hex": "#00ACE4" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33761", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:7d104877d03035cf72e3d18df82b7ab3143e53a1/-1:-1", + "targetVariableName": "Colors/Sky Alpha/4", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.6313725709915161, + 0.8470588326454163 + ], + "alpha": 0.2549000084400177, + "hex": "#00A1D8" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33762", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:826b6183ffb9459a39d88d69476413c264bcca02/-1:-1", + "targetVariableName": "Colors/Sky Alpha/5", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.572549045085907, + 0.7921568751335144 + ], + "alpha": 0.33730000257492065, + "hex": "#0092CA" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33763", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:aaf6a7aa118708df8752fa8b25ed7fb91ae2a23b/-1:-1", + "targetVariableName": "Colors/Sky Alpha/6", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5372549295425415, + 0.7568627595901489 + ], + "alpha": 0.4471000134944916, + "hex": "#0089C1" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33764", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:f47e41c8769124b9fb131531570ba4b773581b37/-1:-1", + "targetVariableName": "Colors/Sky Alpha/7", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.5215686559677124, + 0.7490196228027344 + ], + "alpha": 0.6234999895095825, + "hex": "#0085BF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33765", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b03fc33f496aca02490cfda0d719f2c19300b2e8/-1:-1", + "targetVariableName": "Colors/Sky Alpha/8", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7803921699523926, + 0.9960784316062927 + ], + "alpha": 0.513700008392334, + "hex": "#00C7FE" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33766", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:eb563d038c36d7ff610f23e8d65cea1ae36a6025/-1:-1", + "targetVariableName": "Colors/Sky Alpha/9", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "10": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.7372549176216125, + 0.9529411792755127 + ], + "alpha": 0.5450999736785889, + "hex": "#00BCF3" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33767", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b915b1e3c542ca31dff75461f5bcab90f60ca425/-1:-1", + "targetVariableName": "Colors/Sky Alpha/10", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "11": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.45490196347236633, + 0.6196078658103943 + ], + "alpha": 1, + "hex": "#00749E" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33768", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:af309b2f3a47f1c834d108e4586bae81190c0935/-1:-1", + "targetVariableName": "Colors/Sky Alpha/11", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "12": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.14509804546833038, + 0.250980406999588 + ], + "alpha": 0.8863000273704529, + "hex": "#002540" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33769", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4321cffbc702534da7a4fd9606851a1024bbd4cb/-1:-1", + "targetVariableName": "Colors/Sky Alpha/12", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + } + } + }, + "Typography": { + "Font family": { + "text": { + "$type": "string", + "$value": "SF Pro", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33770", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.type": "string", + "com.figma.isOverride": true + } + }, + "code": { + "$type": "string", + "$value": "Menlo", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33771", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.type": "string", + "com.figma.isOverride": true + } + }, + "emphasis": { + "$type": "string", + "$value": "Times New Roman", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33772", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.type": "string", + "com.figma.isOverride": true + } + }, + "quote": { + "$type": "string", + "$value": "Times New Roman", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33773", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.type": "string", + "com.figma.isOverride": true + } + } + }, + "Font weight": { + "light": { + "$type": "string", + "$value": "Light", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33774", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.type": "string", + "com.figma.isOverride": true + } + }, + "regular": { + "$type": "string", + "$value": "Regular", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33775", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.type": "string", + "com.figma.isOverride": true + } + }, + "medium": { + "$type": "string", + "$value": "Medium", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33776", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.type": "string", + "com.figma.isOverride": true + } + }, + "bold": { + "$type": "string", + "$value": "Bold", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33777", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.type": "string", + "com.figma.isOverride": true + } + } + }, + "Font size": { + "1": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33778", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 14, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33779", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33780", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 18, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33781", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 20, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33782", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 24, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33783", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": 28, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33784", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": 35, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33785", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "number", + "$value": 60, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33786", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Letter spacing": { + "1": { + "$type": "number", + "$value": 0.03999999910593033, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33787", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33788", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 0, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33789", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": -0.03999999910593033, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33790", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": -0.07999999821186066, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33791", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": -0.10000000149011612, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33792", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": -0.11999999731779099, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33793", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": -0.1599999964237213, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33794", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "number", + "$value": -0.4000000059604645, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33795", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + }, + "Line height": { + "1": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33796", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 20, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33797", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 24, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33798", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 26, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33799", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 28, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33800", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 30, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33801", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": 36, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33802", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": 40, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33803", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "9": { + "$type": "number", + "$value": 60, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33804", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + } + } + }, + "Spacing": { + "1": { + "$type": "number", + "$value": 4, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33805", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:10fe2ccca40644649aa7b603a84a37596d713304/-1:-1", + "targetVariableName": "100%/1", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33806", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b401abc62f1e95304cc3692b99053d91b572ab80/-1:-1", + "targetVariableName": "100%/2", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33807", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:55386cfe9c13982efecf5747f378c86f4e429f28/-1:-1", + "targetVariableName": "100%/3", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33808", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:1d74bc5dba6a740c2c83e90a7b1f992c10c822d7/-1:-1", + "targetVariableName": "100%/4", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 24, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33809", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:0ec5a017d5e3ff972c712adc1f0e4fd669625b29/-1:-1", + "targetVariableName": "100%/5", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 32, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33810", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:a71f7e7573e3d1998df41cd2310036764906417d/-1:-1", + "targetVariableName": "100%/6", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + }, + "7": { + "$type": "number", + "$value": 40, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33811", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:b999bb049a1e15955934798bf32b250dc54cca03/-1:-1", + "targetVariableName": "100%/7", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + }, + "8": { + "$type": "number", + "$value": 48, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33812", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:03ab2a4efcb894cf467f6445ab0f7f0d9d9e9ab4/-1:-1", + "targetVariableName": "100%/8", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + }, + "9": { + "$type": "number", + "$value": 64, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33813", + "com.figma.scopes": [ + "WIDTH_HEIGHT", + "GAP" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:d3bdab299a0adc2e276dc8f0260ea237bb3e337e/-1:-1", + "targetVariableName": "100%/9", + "targetVariableSetId": "VariableCollectionId:aca33ede93b6ad536fe38b1e90d2c8806acdf607/-1:-1", + "targetVariableSetName": "Scaling" + }, + "com.figma.isOverride": true + } + } + }, + "Radius": { + "1": { + "$type": "number", + "$value": 3, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33814", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:86d8ed2088e771ade5e1390e5749fed2c4d10bf6/-1:-1", + "targetVariableName": "Medium/1", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "2": { + "$type": "number", + "$value": 4, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33815", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:0b572a212785e585326dbc93911d0535f7fb2394/-1:-1", + "targetVariableName": "Medium/2", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "3": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33816", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:308b2bddc30bc0b4c39d31df8f1c13226abf1326/-1:-1", + "targetVariableName": "Medium/3", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "4": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33817", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:415a2aa0ec9dc4509fa948b4a00b4462b7904c0c/-1:-1", + "targetVariableName": "Medium/4", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "5": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33818", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:f02983e671bc92b5675903af99cd3229badcc57d/-1:-1", + "targetVariableName": "Medium/5", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "6": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33819", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:019d1df26413806463480a12a772728367fc24de/-1:-1", + "targetVariableName": "Medium/6", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "1-max": { + "$type": "number", + "$value": 3, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33820", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:d41348f7373354e45e3c838953bf8c8a31163210/-1:-1", + "targetVariableName": "Medium/1-max", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "2-max": { + "$type": "number", + "$value": 4, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33821", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:fc4bca3e8cef51df3d140fbedc051f4f44b4b3a3/-1:-1", + "targetVariableName": "Medium/2-max", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "3-max": { + "$type": "number", + "$value": 6, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33822", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:fb338bd6c919cdcccf4ec5fce409811cd1f5a90d/-1:-1", + "targetVariableName": "Medium/3-max", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "4-max": { + "$type": "number", + "$value": 8, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33823", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:2d6cd13f59d24b49f43ff76c0c553551e28d390a/-1:-1", + "targetVariableName": "Medium/4-max", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "5-max": { + "$type": "number", + "$value": 12, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33824", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:4577a177ab322a9c916e81e7cf3a97a903a62939/-1:-1", + "targetVariableName": "Medium/5-max", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "6-max": { + "$type": "number", + "$value": 16, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33825", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:004dd5e3aa3dae3728fe1ddeac6ec8f32a46c8ca/-1:-1", + "targetVariableName": "Medium/6-max", + "targetVariableSetId": "VariableCollectionId:012dc7e5c203899a12fe5eeae6bd2d279ef82a32/-1:-1", + "targetVariableSetName": "Radius" + }, + "com.figma.isOverride": true + } + }, + "full": { + "$type": "number", + "$value": 9999, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33826", + "com.figma.scopes": [ + "CORNER_RADIUS" + ], + "com.figma.isOverride": true + } + } + }, + "Panel": { + "default": { + "$type": "color", + "$value": "{Panel.translucent}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33827", + "com.figma.scopes": [ + "FRAME_FILL", + "SHAPE_FILL" + ], + "com.figma.isOverride": true + } + }, + "solid": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 1, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33828", + "com.figma.scopes": [ + "FRAME_FILL", + "SHAPE_FILL" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:c9e0b68a43fd55bbf75446dd50e203a58561e8c1/-1:-1", + "targetVariableName": "Variables/Effects/solid", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "translucent": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.800000011920929, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33829", + "com.figma.scopes": [ + "FRAME_FILL", + "SHAPE_FILL" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:88027e3fbf70563487f29b6551b0a4a5b5b312a7/-1:-1", + "targetVariableName": "Variables/Effects/translucent", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Tokens": { + "Colors": { + "page-background": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 1, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33830", + "com.figma.scopes": [ + "FRAME_FILL", + "SHAPE_FILL" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:913879877c7f0e2a174593292668dfa16a215762/-1:-1", + "targetVariableName": "Variables/Misc/white-to-dark", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "surface": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 1, + 1, + 1 + ], + "alpha": 0.8999999761581421, + "hex": "#FFFFFF" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33831", + "com.figma.scopes": [ + "FRAME_FILL", + "SHAPE_FILL" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:a86133e08b5a945d68bc9531bc6a75bd3d7f46c4/-1:-1", + "targetVariableName": "Variables/Misc/white-to-dark-2", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "accent-surface": { + "$type": "color", + "$value": "{Colors.Accent.Accent Alpha.2}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33832", + "com.figma.scopes": [ + "FRAME_FILL", + "SHAPE_FILL" + ], + "com.figma.isOverride": true + } + }, + "overlay": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0, + 0.0313725508749485, + 0.1882352977991104 + ], + "alpha": 0.2745000123977661, + "hex": "#000830" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33833", + "com.figma.scopes": [ + "FRAME_FILL", + "SHAPE_FILL" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:7a0d9e1fbedc35d914c69a26b5a7046e4fb1ac66/-1:-1", + "targetVariableName": "Variables/Misc/backdrop", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + }, + "accent-contrast": { + "$type": "color", + "$value": "{Tokens.Colors.white-contrast}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33834", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "white-contrast": { + "$type": "color", + "$value": "{Colors.Default.white}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33835", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "black-contrast": { + "$type": "color", + "$value": "{Colors.Default.black}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33836", + "com.figma.scopes": [ + "ALL_SCOPES" + ], + "com.figma.isOverride": true + } + }, + "text": { + "$type": "color", + "$value": { + "colorSpace": "srgb", + "components": [ + 0.10980392247438431, + 0.125490203499794, + 0.1411764770746231 + ], + "alpha": 1, + "hex": "#1C2024" + }, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33837", + "com.figma.scopes": [ + "TEXT_FILL" + ], + "com.figma.aliasData": { + "targetVariableId": "VariableID:93dcfba19bd15093aa432037ccbbe26480704b42/-1:-1", + "targetVariableName": "Variables/Misc/dark-to-white", + "targetVariableSetId": "VariableCollectionId:e47e42e878c5b3f00d7de6c3a984aa8548955b46/-1:-1", + "targetVariableSetName": "Color scheme" + }, + "com.figma.isOverride": true + } + } + }, + "Space": { + "button-height-1": { + "$type": "number", + "$value": "{Spacing.5}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33838", + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "button-height-2": { + "$type": "number", + "$value": "{Spacing.6}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33839", + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "button-height-3": { + "$type": "number", + "$value": "{Spacing.7}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33840", + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "button-height-4": { + "$type": "number", + "$value": "{Spacing.8}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33841", + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "menu-item-height-1": { + "$type": "number", + "$value": "{Spacing.5}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33842", + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "menu-item-height-2": { + "$type": "number", + "$value": "{Spacing.6}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33843", + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "table-cell-min-height-1": { + "$type": "number", + "$value": 36, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33844", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "table-cell-min-height-2": { + "$type": "number", + "$value": 44, + "$extensions": { + "com.figma.variableId": "VariableID:2816:33845", + "com.figma.hiddenFromPublishing": true, + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "table-cell-min-height-3": { + "$type": "number", + "$value": "{Spacing.8}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33846", + "com.figma.scopes": [ + "WIDTH_HEIGHT" + ], + "com.figma.isOverride": true + } + }, + "table-cell-padding-1": { + "$type": "number", + "$value": "{Spacing.2}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33847", + "com.figma.scopes": [ + "GAP" + ], + "com.figma.isOverride": true + } + }, + "table-cell-padding-2": { + "$type": "number", + "$value": "{Spacing.3}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33848", + "com.figma.scopes": [ + "GAP" + ], + "com.figma.isOverride": true + } + }, + "table-cell-padding-3": { + "$type": "number", + "$value": "{Spacing.4}", + "$extensions": { + "com.figma.variableId": "VariableID:2816:33849", + "com.figma.scopes": [ + "GAP" + ], + "com.figma.isOverride": true + } + } + } + }, + "$extensions": { + "com.figma.modeName": "Theme A" + } +} \ No newline at end of file