From cb7f84f83ee063788337d729f5ab59d777ece71f Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Sat, 29 Jun 2024 18:17:43 -0700 Subject: [PATCH 01/11] Fix Passkey button color in light theme --- .../auth/account-recovery/passkey/RecoverWithPasskey.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/app/features/auth/account-recovery/passkey/RecoverWithPasskey.tsx b/packages/app/features/auth/account-recovery/passkey/RecoverWithPasskey.tsx index 8806161fc..0aaf7a612 100644 --- a/packages/app/features/auth/account-recovery/passkey/RecoverWithPasskey.tsx +++ b/packages/app/features/auth/account-recovery/passkey/RecoverWithPasskey.tsx @@ -42,12 +42,13 @@ export default function RecoverWithPasskey(props: Props) { onPress={onPress} width="50%" theme={'green_ghost'} - boc="$borderColor" + boc="$background" + $theme-light={{ boc: '$color12' }} bw={1} br="$4" testID="account-recovery-passkey-btn" > - PASSKEY + PASSKEY ) } From 84b540df39f0f6dc5fc2e2208d35ec035fa55e9d Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Fri, 28 Jun 2024 02:38:37 -0700 Subject: [PATCH 02/11] Make Avatars linkable to profile --- packages/app/components/layout/MainLayout.tsx | 6 +- .../app/components/sidebar/HomeSideBar.tsx | 5 +- .../__snapshots__/screen.test.tsx.snap | 230 ++++---- packages/app/features/account/screen.tsx | 10 +- .../app/features/activity/ActivityAvatar.tsx | 9 +- .../__snapshots__/screen.test.tsx.snap | 552 ++++++++++-------- .../__snapshots__/TokenDetails.test.tsx.snap | 142 +++-- .../send/__snapshots__/screen.test.tsx.snap | 222 +++---- packages/app/features/send/confirm/screen.tsx | 5 +- packages/ui/src/components/LinkableAvatar.tsx | 20 + packages/ui/src/components/SubmitButton.tsx | 2 +- packages/ui/src/components/index.ts | 1 + 12 files changed, 679 insertions(+), 525 deletions(-) create mode 100644 packages/ui/src/components/LinkableAvatar.tsx diff --git a/packages/app/components/layout/MainLayout.tsx b/packages/app/components/layout/MainLayout.tsx index bc700f9ee..696425f6f 100644 --- a/packages/app/components/layout/MainLayout.tsx +++ b/packages/app/components/layout/MainLayout.tsx @@ -1,4 +1,4 @@ -import { Avatar, Link, ScrollView, Spinner, XStack, YStack } from '@my/ui' +import { Avatar, Link, ScrollView, Spinner, XStack, YStack, LinkableAvatar } from '@my/ui' import { LinearGradient } from '@tamagui/linear-gradient' import { IconQr } from 'app/components/icons' import { useUser } from 'app/utils/useUser' @@ -20,7 +20,7 @@ const MainLayout = ({ - + {avatar_url ? ( ) : ( @@ -28,7 +28,7 @@ const MainLayout = ({ )} - + diff --git a/packages/app/components/sidebar/HomeSideBar.tsx b/packages/app/components/sidebar/HomeSideBar.tsx index afc1d22f7..5857beea1 100644 --- a/packages/app/components/sidebar/HomeSideBar.tsx +++ b/packages/app/components/sidebar/HomeSideBar.tsx @@ -10,6 +10,7 @@ import { XStack, YStack, useMedia, + LinkableAvatar, type YStackProps, } from '@my/ui' import { baseMainnet } from '@my/wagmi/chains' @@ -81,12 +82,12 @@ const HomeBottomSheet = () => { return ( - + - +

{profile?.name ?? `#${profile?.send_id}`}

diff --git a/packages/app/features/account/__snapshots__/screen.test.tsx.snap b/packages/app/features/account/__snapshots__/screen.test.tsx.snap index d72d90075..1abee6eef 100644 --- a/packages/app/features/account/__snapshots__/screen.test.tsx.snap +++ b/packages/app/features/account/__snapshots__/screen.test.tsx.snap @@ -49,133 +49,151 @@ exports[`AccountScreen renders the account screen: AccountScreen 1`] = ` } > - - - - - - - + + + - - - + tintColor="#86AE80" + vbHeight={20} + vbWidth={20} + width={256} + > + + + + + + + - + - + diff --git a/packages/app/features/activity/ActivityAvatar.tsx b/packages/app/features/activity/ActivityAvatar.tsx index e835438c6..ed2e4b74e 100644 --- a/packages/app/features/activity/ActivityAvatar.tsx +++ b/packages/app/features/activity/ActivityAvatar.tsx @@ -1,13 +1,14 @@ -import { Avatar } from '@my/ui' +import { LinkableAvatar, Avatar } from '@my/ui' import { counterpart } from 'app/utils/activity' import { isSendAccountTransfersEvent, type Activity } from 'app/utils/zod/activity' export function ActivityAvatar({ activity }: { activity: Activity }) { const user = counterpart(activity) const { from_user } = activity + if (user) { return ( - + @@ -18,12 +19,14 @@ export function ActivityAvatar({ activity }: { activity: Activity }) { /> - + ) } + if (isSendAccountTransfersEvent(activity)) { // is transfer, but an unknown user const address = from_user?.id ? activity.data.t : activity.data.f + return ( - - - - + + + + > + + + + - + - - - - + + + + + + + - + - - - - + + + + + + + - + - - - - + + + + > + + + + - + - - - - + + + + + + + - + - - - - - - - + + + - - - + tintColor="#86AE80" + vbHeight={20} + vbWidth={20} + width={48} + > + + + + + + + - + - + {profile?.name} diff --git a/packages/ui/src/components/LinkableAvatar.tsx b/packages/ui/src/components/LinkableAvatar.tsx new file mode 100644 index 000000000..92d8945ab --- /dev/null +++ b/packages/ui/src/components/LinkableAvatar.tsx @@ -0,0 +1,20 @@ +import { type AvatarProps, Avatar as AvatarOg } from 'tamagui' +import { Link, type LinkProps } from './Link' + +export const LinkableAvatar = ({ + href = '', + replace, + scroll, + shallow, + prefetch, + locale, + children, + ...props +}: { children: React.ReactNode } & LinkProps & AvatarProps) => { + const linkProps = { href, replace, scroll, shallow, prefetch, locale } + return ( + + {children} + + ) +} diff --git a/packages/ui/src/components/SubmitButton.tsx b/packages/ui/src/components/SubmitButton.tsx index 355ae833d..fc3f864f9 100644 --- a/packages/ui/src/components/SubmitButton.tsx +++ b/packages/ui/src/components/SubmitButton.tsx @@ -27,7 +27,7 @@ export const SubmitButton = ({ children, theme = 'green', ...props }: ButtonProp {isSubmitting ? ( Date: Sat, 29 Jun 2024 18:52:15 -0700 Subject: [PATCH 03/11] Make Deposit and Send button same size --- .../app/features/deposit/DepositPopover.tsx | 16 ++----- packages/app/features/home/screen.tsx | 42 +++++++++++-------- 2 files changed, 28 insertions(+), 30 deletions(-) diff --git a/packages/app/features/deposit/DepositPopover.tsx b/packages/app/features/deposit/DepositPopover.tsx index ba13557e6..03a52be93 100644 --- a/packages/app/features/deposit/DepositPopover.tsx +++ b/packages/app/features/deposit/DepositPopover.tsx @@ -1,14 +1,4 @@ -import { - Button, - XStack, - YStack, - Adapt, - Popover, - type PopoverProps, - useMedia, - ButtonText, - Theme, -} from '@my/ui' +import { Button, XStack, YStack, Adapt, Popover, type PopoverProps, useMedia, Theme } from '@my/ui' import { IconClose, IconDeposit } from 'app/components/icons' import { DepositWelcome } from './screen' @@ -28,9 +18,9 @@ export function DepositPopover(props: PopoverProps) { + ) : ( + submit()} + theme="green" + > + {hasSaved ? ( + + + + ) : ( + SAVE + )} + + )} + )} > diff --git a/packages/app/features/account/components/uploadProfileImage/screen.tsx b/packages/app/features/account/components/uploadProfileImage/screen.tsx index b6b47deb4..97a94fa89 100644 --- a/packages/app/features/account/components/uploadProfileImage/screen.tsx +++ b/packages/app/features/account/components/uploadProfileImage/screen.tsx @@ -1,4 +1,4 @@ -import { SizableText, YStack } from '@my/ui' +import { SizableText, Spinner, YStack } from '@my/ui' import { IconRefresh } from 'app/components/icons' import { Camera } from '@tamagui/lucide-icons' import { useSupabase } from 'app/utils/supabase/useSupabase' @@ -19,6 +19,7 @@ export const UploadAvatar = forwardRef(function UploadAvatar( const { user, profile, updateProfile } = useUser() const supabase = useSupabase() const [errMsg, setErrMsg] = useState('') + const [isUploading, setIsUploading] = useState(false) useImperativeHandle(ref, () => ({ pickImage })) @@ -63,6 +64,7 @@ export const UploadAvatar = forwardRef(function UploadAvatar( // console.error('ArrayBuffer is null') return null } + setIsUploading(true) const result = await supabase.storage .from('avatars') .upload(`${user.id}/${Number(new Date())}.jpeg`, res, { @@ -71,10 +73,12 @@ export const UploadAvatar = forwardRef(function UploadAvatar( }) if (result.error) { setErrMsg(result.error.message) + setIsUploading(false) return // console.log(result.error) // throw new Error(result.error.message) } + const publicUrlRes = await supabase.storage .from('avatars') .getPublicUrl(result.data.path.replace('avatars/', '')) @@ -87,6 +91,8 @@ export const UploadAvatar = forwardRef(function UploadAvatar( setErrMsg(update_error.message) return } + setIsUploading(false) + await updateProfile() } @@ -121,11 +127,16 @@ export const UploadAvatar = forwardRef(function UploadAvatar( bottom={0} /> - {profile?.avatar_url ? ( - - ) : ( - - )} + {(() => { + switch (true) { + case isUploading: + return + case !!profile?.avatar_url: + return + default: + return + } + })()}
diff --git a/packages/app/features/account/settings/SettingsLinks.tsx b/packages/app/features/account/settings/SettingsLinks.tsx index 1a3cf6ff6..1e231f3b2 100644 --- a/packages/app/features/account/settings/SettingsLinks.tsx +++ b/packages/app/features/account/settings/SettingsLinks.tsx @@ -13,7 +13,7 @@ export function SettingsLinks(): JSX.Element { href: '/account/settings/personal-info', }, { - text: 'Notification', + text: 'Notifications', href: '/account/settings/notification', disabled: true, }, @@ -27,14 +27,14 @@ export function SettingsLinks(): JSX.Element { href: '/account/settings/privacy', disabled: true, }, - { - text: 'Support', - href: '/account/settings/support', - }, { text: 'Backup', href: '/account/settings/backup', }, + { + text: 'Support', + href: '/account/settings/support', + }, ] return ( <> diff --git a/packages/app/features/account/settings/layout.web.tsx b/packages/app/features/account/settings/layout.web.tsx index 4fcbc88dc..274d4f047 100644 --- a/packages/app/features/account/settings/layout.web.tsx +++ b/packages/app/features/account/settings/layout.web.tsx @@ -16,7 +16,6 @@ export const SettingsLayout = ({ children }: SettingsLayoutProps) => { return ( - + diff --git a/packages/ui/src/themes/componentThemeDefinitions.tsx b/packages/ui/src/themes/componentThemeDefinitions.tsx index 93bbe8ca6..20c099027 100644 --- a/packages/ui/src/themes/componentThemeDefinitions.tsx +++ b/packages/ui/src/themes/componentThemeDefinitions.tsx @@ -59,7 +59,7 @@ export const componentThemeDefinitions = { }, Switch: { - mask: 'soften2', + mask: 'soften', ...maskOptions.component, }, @@ -122,12 +122,12 @@ export const componentThemeDefinitions = { TextArea: [ { parent: 'light', - mask: 'strengthenButSoftenBorder', + mask: 'soften', ...maskOptions.component, }, { parent: 'dark', - mask: 'softenBorder', + mask: 'soften', ...maskOptions.component, }, ], diff --git a/packages/ui/src/themes/theme-generated.ts b/packages/ui/src/themes/theme-generated.ts index f8a3a931a..bd42a9e0b 100644 --- a/packages/ui/src/themes/theme-generated.ts +++ b/packages/ui/src/themes/theme-generated.ts @@ -450,14 +450,15 @@ const n21 = t([[13, 3],[14, 0],[15, 3],[16, 0],[17, 0],[19, 2],[20, 0],[21, 2],[ export const light_active = n21 export const light_Separator = n21 export const light_alt1_Checkbox = n21 -export const light_alt1_Switch = n21 export const light_alt1_SliderTrack = n21 export const light_alt2_Card = n21 export const light_alt2_Button = n21 +export const light_alt2_Switch = n21 export const light_alt2_DrawerFrame = n21 export const light_alt2_Progress = n21 export const light_alt2_TooltipArrow = n21 export const light_alt2_Input = n21 +export const light_alt2_TextArea = n21 export const light_alt2_Surface = n21 const n22 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 1],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) @@ -475,14 +476,15 @@ const n25 = t([[13, 11],[14, 4],[15, 11],[16, 4],[17, 5],[19, 4],[20, 5],[21, 4] export const dark_active = n25 export const dark_Separator = n25 export const dark_alt1_Checkbox = n25 -export const dark_alt1_Switch = n25 export const dark_alt1_SliderTrack = n25 export const dark_alt2_Card = n25 export const dark_alt2_Button = n25 +export const dark_alt2_Switch = n25 export const dark_alt2_DrawerFrame = n25 export const dark_alt2_Progress = n25 export const dark_alt2_TooltipArrow = n25 export const dark_alt2_Input = n25 +export const dark_alt2_TextArea = n25 export const dark_alt2_Surface = n25 export const dark_active_ListItem = n25 const n26 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 9],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) @@ -501,14 +503,15 @@ const n29 = t([[13, 15],[14, 16],[15, 15],[16, 16],[17, 17],[19, 21],[20, 20],[2 export const light_yellow_active = n29 export const light_yellow_Separator = n29 export const light_yellow_alt1_Checkbox = n29 -export const light_yellow_alt1_Switch = n29 export const light_yellow_alt1_SliderTrack = n29 export const light_yellow_alt2_Card = n29 export const light_yellow_alt2_Button = n29 +export const light_yellow_alt2_Switch = n29 export const light_yellow_alt2_DrawerFrame = n29 export const light_yellow_alt2_Progress = n29 export const light_yellow_alt2_TooltipArrow = n29 export const light_yellow_alt2_Input = n29 +export const light_yellow_alt2_TextArea = n29 export const light_yellow_alt2_Surface = n29 const n30 = t([[13, 12],[14, 12],[15, 12],[16, 12],[17, 13],[19, 5],[20, 5],[21, 5],[22, 5],[24, 15],[25, 16],[26, 15],[27, 15],[28, 18]]) @@ -526,14 +529,15 @@ const n33 = t([[13, 25],[14, 23],[15, 25],[16, 23],[17, 0],[19, 25],[20, 24],[21 export const light_green_active = n33 export const light_green_Separator = n33 export const light_green_alt1_Checkbox = n33 -export const light_green_alt1_Switch = n33 export const light_green_alt1_SliderTrack = n33 export const light_green_alt2_Card = n33 export const light_green_alt2_Button = n33 +export const light_green_alt2_Switch = n33 export const light_green_alt2_DrawerFrame = n33 export const light_green_alt2_Progress = n33 export const light_green_alt2_TooltipArrow = n33 export const light_green_alt2_Input = n33 +export const light_green_alt2_TextArea = n33 export const light_green_alt2_Surface = n33 const n34 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 23],[19, 5],[20, 5],[21, 5],[22, 5],[24, 25],[25, 23],[26, 25],[27, 25],[28, 0]]) @@ -551,14 +555,15 @@ const n37 = t([[13, 29],[14, 30],[15, 29],[16, 30],[17, 31],[19, 35],[20, 34],[2 export const light_red_active = n37 export const light_red_Separator = n37 export const light_red_alt1_Checkbox = n37 -export const light_red_alt1_Switch = n37 export const light_red_alt1_SliderTrack = n37 export const light_red_alt2_Card = n37 export const light_red_alt2_Button = n37 +export const light_red_alt2_Switch = n37 export const light_red_alt2_DrawerFrame = n37 export const light_red_alt2_Progress = n37 export const light_red_alt2_TooltipArrow = n37 export const light_red_alt2_Input = n37 +export const light_red_alt2_TextArea = n37 export const light_red_alt2_Surface = n37 const n38 = t([[13, 26],[14, 26],[15, 26],[16, 26],[17, 27],[19, 5],[20, 5],[21, 5],[22, 5],[24, 29],[25, 30],[26, 29],[27, 29],[28, 32]]) @@ -576,14 +581,15 @@ const n41 = t([[13, 40],[14, 41],[15, 40],[16, 41],[17, 42],[19, 45],[20, 44],[2 export const dark_yellow_active = n41 export const dark_yellow_Separator = n41 export const dark_yellow_alt1_Checkbox = n41 -export const dark_yellow_alt1_Switch = n41 export const dark_yellow_alt1_SliderTrack = n41 export const dark_yellow_alt2_Card = n41 export const dark_yellow_alt2_Button = n41 +export const dark_yellow_alt2_Switch = n41 export const dark_yellow_alt2_DrawerFrame = n41 export const dark_yellow_alt2_Progress = n41 export const dark_yellow_alt2_TooltipArrow = n41 export const dark_yellow_alt2_Input = n41 +export const dark_yellow_alt2_TextArea = n41 export const dark_yellow_alt2_Surface = n41 export const dark_yellow_active_ListItem = n41 const n42 = t([[13, 37],[14, 37],[15, 37],[16, 37],[17, 38],[19, 0],[20, 0],[21, 0],[22, 0],[24, 37],[25, 43],[26, 43],[27, 43],[28, 43]]) @@ -602,13 +608,14 @@ const n45 = t([[13, 48],[14, 23],[15, 48],[16, 23],[17, 5],[19, 23],[20, 24],[21 export const dark_green_active = n45 export const dark_green_Separator = n45 export const dark_green_alt1_Checkbox = n45 -export const dark_green_alt1_Switch = n45 export const dark_green_alt1_SliderTrack = n45 export const dark_green_alt2_Card = n45 +export const dark_green_alt2_Switch = n45 export const dark_green_alt2_DrawerFrame = n45 export const dark_green_alt2_Progress = n45 export const dark_green_alt2_TooltipArrow = n45 export const dark_green_alt2_Input = n45 +export const dark_green_alt2_TextArea = n45 export const dark_green_alt2_Surface = n45 export const dark_green_active_ListItem = n45 const n46 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 47],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) @@ -627,14 +634,15 @@ const n49 = t([[13, 52],[14, 53],[15, 52],[16, 53],[17, 54],[19, 57],[20, 56],[2 export const dark_red_active = n49 export const dark_red_Separator = n49 export const dark_red_alt1_Checkbox = n49 -export const dark_red_alt1_Switch = n49 export const dark_red_alt1_SliderTrack = n49 export const dark_red_alt2_Card = n49 export const dark_red_alt2_Button = n49 +export const dark_red_alt2_Switch = n49 export const dark_red_alt2_DrawerFrame = n49 export const dark_red_alt2_Progress = n49 export const dark_red_alt2_TooltipArrow = n49 export const dark_red_alt2_Input = n49 +export const dark_red_alt2_TextArea = n49 export const dark_red_alt2_Surface = n49 export const dark_red_active_ListItem = n49 const n50 = t([[13, 49],[14, 49],[15, 49],[16, 49],[17, 50],[19, 0],[20, 0],[21, 0],[22, 0],[24, 49],[25, 55],[26, 55],[27, 55],[28, 55]]) @@ -647,10 +655,12 @@ const n51 = t([[15, 1],[16, 2],[17, 3],[19, 1],[20, 4],[21, 1],[22, 4],[24, 1],[ export const light_ghost_alt1 = n51 export const light_ghost_Card = n51 export const light_ghost_Button = n51 +export const light_ghost_Switch = n51 export const light_ghost_DrawerFrame = n51 export const light_ghost_Progress = n51 export const light_ghost_TooltipArrow = n51 export const light_ghost_Input = n51 +export const light_ghost_TextArea = n51 export const light_ghost_Surface = n51 export const light_ghost_alt2_ListItem = n51 export const light_ghost_alt2_TooltipContent = n51 @@ -658,14 +668,15 @@ const n52 = t([[15, 2],[16, 3],[17, 0],[19, 2],[20, 2],[21, 2],[22, 2],[24, 2],[ export const light_ghost_alt2 = n52 export const light_ghost_Checkbox = n52 -export const light_ghost_Switch = n52 export const light_ghost_SliderTrack = n52 export const light_ghost_alt1_Card = n52 export const light_ghost_alt1_Button = n52 +export const light_ghost_alt1_Switch = n52 export const light_ghost_alt1_DrawerFrame = n52 export const light_ghost_alt1_Progress = n52 export const light_ghost_alt1_TooltipArrow = n52 export const light_ghost_alt1_Input = n52 +export const light_ghost_alt1_TextArea = n52 export const light_ghost_alt1_Surface = n52 export const light_ghost_active_ListItem = n52 export const light_ghost_active_TooltipContent = n52 @@ -674,14 +685,15 @@ const n53 = t([[15, 3],[16, 0],[17, 0],[19, 3],[20, 0],[21, 3],[22, 0],[24, 3],[ export const light_ghost_active = n53 export const light_ghost_Separator = n53 export const light_ghost_alt1_Checkbox = n53 -export const light_ghost_alt1_Switch = n53 export const light_ghost_alt1_SliderTrack = n53 export const light_ghost_alt2_Card = n53 export const light_ghost_alt2_Button = n53 +export const light_ghost_alt2_Switch = n53 export const light_ghost_alt2_DrawerFrame = n53 export const light_ghost_alt2_Progress = n53 export const light_ghost_alt2_TooltipArrow = n53 export const light_ghost_alt2_Input = n53 +export const light_ghost_alt2_TextArea = n53 export const light_ghost_alt2_Surface = n53 const n54 = t([[15, 0],[16, 0],[17, 1],[19, 0],[20, 5],[21, 0],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) @@ -693,10 +705,12 @@ const n55 = t([[15, 9],[16, 10],[17, 11],[19, 9],[20, 3],[21, 9],[22, 3],[24, 9] export const dark_ghost_alt1 = n55 export const dark_ghost_Card = n55 export const dark_ghost_Button = n55 +export const dark_ghost_Switch = n55 export const dark_ghost_DrawerFrame = n55 export const dark_ghost_Progress = n55 export const dark_ghost_TooltipArrow = n55 export const dark_ghost_Input = n55 +export const dark_ghost_TextArea = n55 export const dark_ghost_Surface = n55 export const dark_ghost_alt1_ListItem = n55 export const dark_ghost_alt2_TooltipContent = n55 @@ -704,14 +718,15 @@ const n56 = t([[15, 10],[16, 11],[17, 4],[19, 10],[20, 4],[21, 10],[22, 4],[24, export const dark_ghost_alt2 = n56 export const dark_ghost_Checkbox = n56 -export const dark_ghost_Switch = n56 export const dark_ghost_SliderTrack = n56 export const dark_ghost_alt1_Card = n56 export const dark_ghost_alt1_Button = n56 +export const dark_ghost_alt1_Switch = n56 export const dark_ghost_alt1_DrawerFrame = n56 export const dark_ghost_alt1_Progress = n56 export const dark_ghost_alt1_TooltipArrow = n56 export const dark_ghost_alt1_Input = n56 +export const dark_ghost_alt1_TextArea = n56 export const dark_ghost_alt1_Surface = n56 export const dark_ghost_alt2_ListItem = n56 export const dark_ghost_active_TooltipContent = n56 @@ -720,14 +735,15 @@ const n57 = t([[15, 11],[16, 4],[17, 5],[19, 11],[20, 5],[21, 11],[22, 5],[24, 1 export const dark_ghost_active = n57 export const dark_ghost_Separator = n57 export const dark_ghost_alt1_Checkbox = n57 -export const dark_ghost_alt1_Switch = n57 export const dark_ghost_alt1_SliderTrack = n57 export const dark_ghost_alt2_Card = n57 export const dark_ghost_alt2_Button = n57 +export const dark_ghost_alt2_Switch = n57 export const dark_ghost_alt2_DrawerFrame = n57 export const dark_ghost_alt2_Progress = n57 export const dark_ghost_alt2_TooltipArrow = n57 export const dark_ghost_alt2_Input = n57 +export const dark_ghost_alt2_TextArea = n57 export const dark_ghost_alt2_Surface = n57 export const dark_ghost_active_ListItem = n57 const n58 = t([[15, 5],[16, 5],[17, 9],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) @@ -740,10 +756,12 @@ const n59 = t([[15, 13],[16, 14],[17, 15],[19, 17],[20, 22],[21, 13],[22, 22],[2 export const light_yellow_ghost_alt1 = n59 export const light_yellow_ghost_Card = n59 export const light_yellow_ghost_Button = n59 +export const light_yellow_ghost_Switch = n59 export const light_yellow_ghost_DrawerFrame = n59 export const light_yellow_ghost_Progress = n59 export const light_yellow_ghost_TooltipArrow = n59 export const light_yellow_ghost_Input = n59 +export const light_yellow_ghost_TextArea = n59 export const light_yellow_ghost_Surface = n59 export const light_yellow_ghost_alt2_ListItem = n59 export const light_yellow_ghost_alt2_TooltipContent = n59 @@ -751,14 +769,15 @@ const n60 = t([[15, 14],[16, 15],[17, 16],[19, 18],[20, 21],[21, 14],[22, 21],[2 export const light_yellow_ghost_alt2 = n60 export const light_yellow_ghost_Checkbox = n60 -export const light_yellow_ghost_Switch = n60 export const light_yellow_ghost_SliderTrack = n60 export const light_yellow_ghost_alt1_Card = n60 export const light_yellow_ghost_alt1_Button = n60 +export const light_yellow_ghost_alt1_Switch = n60 export const light_yellow_ghost_alt1_DrawerFrame = n60 export const light_yellow_ghost_alt1_Progress = n60 export const light_yellow_ghost_alt1_TooltipArrow = n60 export const light_yellow_ghost_alt1_Input = n60 +export const light_yellow_ghost_alt1_TextArea = n60 export const light_yellow_ghost_alt1_Surface = n60 export const light_yellow_ghost_active_ListItem = n60 export const light_yellow_ghost_active_TooltipContent = n60 @@ -767,14 +786,15 @@ const n61 = t([[15, 15],[16, 16],[17, 17],[19, 19],[20, 20],[21, 15],[22, 20],[2 export const light_yellow_ghost_active = n61 export const light_yellow_ghost_Separator = n61 export const light_yellow_ghost_alt1_Checkbox = n61 -export const light_yellow_ghost_alt1_Switch = n61 export const light_yellow_ghost_alt1_SliderTrack = n61 export const light_yellow_ghost_alt2_Card = n61 export const light_yellow_ghost_alt2_Button = n61 +export const light_yellow_ghost_alt2_Switch = n61 export const light_yellow_ghost_alt2_DrawerFrame = n61 export const light_yellow_ghost_alt2_Progress = n61 export const light_yellow_ghost_alt2_TooltipArrow = n61 export const light_yellow_ghost_alt2_Input = n61 +export const light_yellow_ghost_alt2_TextArea = n61 export const light_yellow_ghost_alt2_Surface = n61 const n62 = t([[15, 12],[16, 12],[17, 13],[19, 15],[20, 5],[21, 12],[22, 5],[24, 15],[25, 16],[26, 15],[27, 15],[28, 18]]) @@ -786,10 +806,12 @@ const n63 = t([[15, 23],[16, 24],[17, 25],[19, 0],[20, 5],[21, 23],[22, 5],[24, export const light_green_ghost_alt1 = n63 export const light_green_ghost_Card = n63 export const light_green_ghost_Button = n63 +export const light_green_ghost_Switch = n63 export const light_green_ghost_DrawerFrame = n63 export const light_green_ghost_Progress = n63 export const light_green_ghost_TooltipArrow = n63 export const light_green_ghost_Input = n63 +export const light_green_ghost_TextArea = n63 export const light_green_ghost_Surface = n63 export const light_green_ghost_alt2_ListItem = n63 export const light_green_ghost_alt2_TooltipContent = n63 @@ -797,14 +819,15 @@ const n64 = t([[15, 24],[16, 25],[17, 23],[19, 0],[20, 25],[21, 24],[22, 25],[24 export const light_green_ghost_alt2 = n64 export const light_green_ghost_Checkbox = n64 -export const light_green_ghost_Switch = n64 export const light_green_ghost_SliderTrack = n64 export const light_green_ghost_alt1_Card = n64 export const light_green_ghost_alt1_Button = n64 +export const light_green_ghost_alt1_Switch = n64 export const light_green_ghost_alt1_DrawerFrame = n64 export const light_green_ghost_alt1_Progress = n64 export const light_green_ghost_alt1_TooltipArrow = n64 export const light_green_ghost_alt1_Input = n64 +export const light_green_ghost_alt1_TextArea = n64 export const light_green_ghost_alt1_Surface = n64 export const light_green_ghost_active_ListItem = n64 export const light_green_ghost_active_TooltipContent = n64 @@ -813,14 +836,15 @@ const n65 = t([[15, 25],[16, 23],[17, 0],[19, 23],[20, 24],[21, 25],[22, 24],[24 export const light_green_ghost_active = n65 export const light_green_ghost_Separator = n65 export const light_green_ghost_alt1_Checkbox = n65 -export const light_green_ghost_alt1_Switch = n65 export const light_green_ghost_alt1_SliderTrack = n65 export const light_green_ghost_alt2_Card = n65 export const light_green_ghost_alt2_Button = n65 +export const light_green_ghost_alt2_Switch = n65 export const light_green_ghost_alt2_DrawerFrame = n65 export const light_green_ghost_alt2_Progress = n65 export const light_green_ghost_alt2_TooltipArrow = n65 export const light_green_ghost_alt2_Input = n65 +export const light_green_ghost_alt2_TextArea = n65 export const light_green_ghost_alt2_Surface = n65 const n66 = t([[15, 0],[16, 0],[17, 23],[19, 25],[20, 5],[21, 0],[22, 5],[24, 25],[25, 23],[26, 25],[27, 25],[28, 0]]) @@ -832,10 +856,12 @@ const n67 = t([[15, 27],[16, 28],[17, 29],[19, 31],[20, 36],[21, 27],[22, 36],[2 export const light_red_ghost_alt1 = n67 export const light_red_ghost_Card = n67 export const light_red_ghost_Button = n67 +export const light_red_ghost_Switch = n67 export const light_red_ghost_DrawerFrame = n67 export const light_red_ghost_Progress = n67 export const light_red_ghost_TooltipArrow = n67 export const light_red_ghost_Input = n67 +export const light_red_ghost_TextArea = n67 export const light_red_ghost_Surface = n67 export const light_red_ghost_alt2_ListItem = n67 export const light_red_ghost_alt2_TooltipContent = n67 @@ -843,14 +869,15 @@ const n68 = t([[15, 28],[16, 29],[17, 30],[19, 32],[20, 35],[21, 28],[22, 35],[2 export const light_red_ghost_alt2 = n68 export const light_red_ghost_Checkbox = n68 -export const light_red_ghost_Switch = n68 export const light_red_ghost_SliderTrack = n68 export const light_red_ghost_alt1_Card = n68 export const light_red_ghost_alt1_Button = n68 +export const light_red_ghost_alt1_Switch = n68 export const light_red_ghost_alt1_DrawerFrame = n68 export const light_red_ghost_alt1_Progress = n68 export const light_red_ghost_alt1_TooltipArrow = n68 export const light_red_ghost_alt1_Input = n68 +export const light_red_ghost_alt1_TextArea = n68 export const light_red_ghost_alt1_Surface = n68 export const light_red_ghost_active_ListItem = n68 export const light_red_ghost_active_TooltipContent = n68 @@ -859,14 +886,15 @@ const n69 = t([[15, 29],[16, 30],[17, 31],[19, 33],[20, 34],[21, 29],[22, 34],[2 export const light_red_ghost_active = n69 export const light_red_ghost_Separator = n69 export const light_red_ghost_alt1_Checkbox = n69 -export const light_red_ghost_alt1_Switch = n69 export const light_red_ghost_alt1_SliderTrack = n69 export const light_red_ghost_alt2_Card = n69 export const light_red_ghost_alt2_Button = n69 +export const light_red_ghost_alt2_Switch = n69 export const light_red_ghost_alt2_DrawerFrame = n69 export const light_red_ghost_alt2_Progress = n69 export const light_red_ghost_alt2_TooltipArrow = n69 export const light_red_ghost_alt2_Input = n69 +export const light_red_ghost_alt2_TextArea = n69 export const light_red_ghost_alt2_Surface = n69 const n70 = t([[15, 26],[16, 26],[17, 27],[19, 29],[20, 5],[21, 26],[22, 5],[24, 29],[25, 30],[26, 29],[27, 29],[28, 32]]) @@ -878,10 +906,12 @@ const n71 = t([[15, 38],[16, 39],[17, 40],[19, 38],[20, 46],[21, 38],[22, 46],[2 export const dark_yellow_ghost_alt1 = n71 export const dark_yellow_ghost_Card = n71 export const dark_yellow_ghost_Button = n71 +export const dark_yellow_ghost_Switch = n71 export const dark_yellow_ghost_DrawerFrame = n71 export const dark_yellow_ghost_Progress = n71 export const dark_yellow_ghost_TooltipArrow = n71 export const dark_yellow_ghost_Input = n71 +export const dark_yellow_ghost_TextArea = n71 export const dark_yellow_ghost_Surface = n71 export const dark_yellow_ghost_alt1_ListItem = n71 export const dark_yellow_ghost_alt2_TooltipContent = n71 @@ -889,14 +919,15 @@ const n72 = t([[15, 39],[16, 40],[17, 41],[19, 39],[20, 45],[21, 39],[22, 45],[2 export const dark_yellow_ghost_alt2 = n72 export const dark_yellow_ghost_Checkbox = n72 -export const dark_yellow_ghost_Switch = n72 export const dark_yellow_ghost_SliderTrack = n72 export const dark_yellow_ghost_alt1_Card = n72 export const dark_yellow_ghost_alt1_Button = n72 +export const dark_yellow_ghost_alt1_Switch = n72 export const dark_yellow_ghost_alt1_DrawerFrame = n72 export const dark_yellow_ghost_alt1_Progress = n72 export const dark_yellow_ghost_alt1_TooltipArrow = n72 export const dark_yellow_ghost_alt1_Input = n72 +export const dark_yellow_ghost_alt1_TextArea = n72 export const dark_yellow_ghost_alt1_Surface = n72 export const dark_yellow_ghost_alt2_ListItem = n72 export const dark_yellow_ghost_active_TooltipContent = n72 @@ -905,14 +936,15 @@ const n73 = t([[15, 40],[16, 41],[17, 42],[19, 40],[20, 44],[21, 40],[22, 44],[2 export const dark_yellow_ghost_active = n73 export const dark_yellow_ghost_Separator = n73 export const dark_yellow_ghost_alt1_Checkbox = n73 -export const dark_yellow_ghost_alt1_Switch = n73 export const dark_yellow_ghost_alt1_SliderTrack = n73 export const dark_yellow_ghost_alt2_Card = n73 export const dark_yellow_ghost_alt2_Button = n73 +export const dark_yellow_ghost_alt2_Switch = n73 export const dark_yellow_ghost_alt2_DrawerFrame = n73 export const dark_yellow_ghost_alt2_Progress = n73 export const dark_yellow_ghost_alt2_TooltipArrow = n73 export const dark_yellow_ghost_alt2_Input = n73 +export const dark_yellow_ghost_alt2_TextArea = n73 export const dark_yellow_ghost_alt2_Surface = n73 export const dark_yellow_ghost_active_ListItem = n73 const n74 = t([[15, 37],[16, 37],[17, 38],[19, 37],[20, 0],[21, 37],[22, 0],[24, 37],[25, 43],[26, 43],[27, 43],[28, 43]]) @@ -924,10 +956,12 @@ const n75 = t([[15, 47],[16, 24],[17, 48],[19, 47],[20, 0],[21, 47],[22, 0],[24, export const dark_green_ghost_alt1 = n75 export const dark_green_ghost_Card = n75 +export const dark_green_ghost_Switch = n75 export const dark_green_ghost_DrawerFrame = n75 export const dark_green_ghost_Progress = n75 export const dark_green_ghost_TooltipArrow = n75 export const dark_green_ghost_Input = n75 +export const dark_green_ghost_TextArea = n75 export const dark_green_ghost_Surface = n75 export const dark_green_ghost_alt1_ListItem = n75 export const dark_green_ghost_alt2_TooltipContent = n75 @@ -935,13 +969,14 @@ const n76 = t([[15, 24],[16, 48],[17, 23],[19, 24],[20, 23],[21, 24],[22, 23],[2 export const dark_green_ghost_alt2 = n76 export const dark_green_ghost_Checkbox = n76 -export const dark_green_ghost_Switch = n76 export const dark_green_ghost_SliderTrack = n76 export const dark_green_ghost_alt1_Card = n76 +export const dark_green_ghost_alt1_Switch = n76 export const dark_green_ghost_alt1_DrawerFrame = n76 export const dark_green_ghost_alt1_Progress = n76 export const dark_green_ghost_alt1_TooltipArrow = n76 export const dark_green_ghost_alt1_Input = n76 +export const dark_green_ghost_alt1_TextArea = n76 export const dark_green_ghost_alt1_Surface = n76 export const dark_green_ghost_alt2_ListItem = n76 export const dark_green_ghost_active_TooltipContent = n76 @@ -950,13 +985,14 @@ const n77 = t([[15, 48],[16, 23],[17, 5],[19, 48],[20, 24],[21, 48],[22, 24],[24 export const dark_green_ghost_active = n77 export const dark_green_ghost_Separator = n77 export const dark_green_ghost_alt1_Checkbox = n77 -export const dark_green_ghost_alt1_Switch = n77 export const dark_green_ghost_alt1_SliderTrack = n77 export const dark_green_ghost_alt2_Card = n77 +export const dark_green_ghost_alt2_Switch = n77 export const dark_green_ghost_alt2_DrawerFrame = n77 export const dark_green_ghost_alt2_Progress = n77 export const dark_green_ghost_alt2_TooltipArrow = n77 export const dark_green_ghost_alt2_Input = n77 +export const dark_green_ghost_alt2_TextArea = n77 export const dark_green_ghost_alt2_Surface = n77 export const dark_green_ghost_active_ListItem = n77 const n78 = t([[15, 5],[16, 5],[17, 47],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) @@ -969,10 +1005,12 @@ const n79 = t([[15, 50],[16, 51],[17, 52],[19, 50],[20, 58],[21, 50],[22, 58],[2 export const dark_red_ghost_alt1 = n79 export const dark_red_ghost_Card = n79 export const dark_red_ghost_Button = n79 +export const dark_red_ghost_Switch = n79 export const dark_red_ghost_DrawerFrame = n79 export const dark_red_ghost_Progress = n79 export const dark_red_ghost_TooltipArrow = n79 export const dark_red_ghost_Input = n79 +export const dark_red_ghost_TextArea = n79 export const dark_red_ghost_Surface = n79 export const dark_red_ghost_alt1_ListItem = n79 export const dark_red_ghost_alt2_TooltipContent = n79 @@ -980,14 +1018,15 @@ const n80 = t([[15, 51],[16, 52],[17, 53],[19, 51],[20, 57],[21, 51],[22, 57],[2 export const dark_red_ghost_alt2 = n80 export const dark_red_ghost_Checkbox = n80 -export const dark_red_ghost_Switch = n80 export const dark_red_ghost_SliderTrack = n80 export const dark_red_ghost_alt1_Card = n80 export const dark_red_ghost_alt1_Button = n80 +export const dark_red_ghost_alt1_Switch = n80 export const dark_red_ghost_alt1_DrawerFrame = n80 export const dark_red_ghost_alt1_Progress = n80 export const dark_red_ghost_alt1_TooltipArrow = n80 export const dark_red_ghost_alt1_Input = n80 +export const dark_red_ghost_alt1_TextArea = n80 export const dark_red_ghost_alt1_Surface = n80 export const dark_red_ghost_alt2_ListItem = n80 export const dark_red_ghost_active_TooltipContent = n80 @@ -996,14 +1035,15 @@ const n81 = t([[15, 52],[16, 53],[17, 54],[19, 52],[20, 56],[21, 52],[22, 56],[2 export const dark_red_ghost_active = n81 export const dark_red_ghost_Separator = n81 export const dark_red_ghost_alt1_Checkbox = n81 -export const dark_red_ghost_alt1_Switch = n81 export const dark_red_ghost_alt1_SliderTrack = n81 export const dark_red_ghost_alt2_Card = n81 export const dark_red_ghost_alt2_Button = n81 +export const dark_red_ghost_alt2_Switch = n81 export const dark_red_ghost_alt2_DrawerFrame = n81 export const dark_red_ghost_alt2_Progress = n81 export const dark_red_ghost_alt2_TooltipArrow = n81 export const dark_red_ghost_alt2_Input = n81 +export const dark_red_ghost_alt2_TextArea = n81 export const dark_red_ghost_alt2_Surface = n81 export const dark_red_ghost_active_ListItem = n81 const n82 = t([[15, 49],[16, 49],[17, 50],[19, 49],[20, 0],[21, 49],[22, 0],[24, 49],[25, 55],[26, 55],[27, 55],[28, 55]]) @@ -1015,24 +1055,27 @@ const n83 = t([[13, 1],[14, 2],[15, 1],[16, 2],[17, 3],[19, 5],[20, 4],[21, 5],[ export const light_Card = n83 export const light_Button = n83 +export const light_Switch = n83 export const light_DrawerFrame = n83 export const light_Progress = n83 export const light_TooltipArrow = n83 export const light_Input = n83 +export const light_TextArea = n83 export const light_Surface = n83 export const light_alt2_ListItem = n83 export const light_alt2_TooltipContent = n83 const n84 = t([[13, 2],[14, 3],[15, 2],[16, 3],[17, 0],[19, 4],[20, 2],[21, 4],[22, 2],[24, 2],[25, 2],[26, 2],[27, 2],[28, 2]]) export const light_Checkbox = n84 -export const light_Switch = n84 export const light_SliderTrack = n84 export const light_alt1_Card = n84 export const light_alt1_Button = n84 +export const light_alt1_Switch = n84 export const light_alt1_DrawerFrame = n84 export const light_alt1_Progress = n84 export const light_alt1_TooltipArrow = n84 export const light_alt1_Input = n84 +export const light_alt1_TextArea = n84 export const light_alt1_Surface = n84 export const light_active_ListItem = n84 export const light_active_TooltipContent = n84 @@ -1057,1797 +1100,1594 @@ export const light_SliderThumb = n87 export const light_Tooltip = n87 export const light_ProgressIndicator = n87 export const light_alt2_SwitchThumb = n87 -const n88 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 1],[19, 5],[20, 5],[21, 5],[22, 5],[24, 1],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_TextArea = n88 -const n89 = t([[13, 5],[14, 9],[15, 5],[16, 9],[17, 10],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ListItem = n89 -const n90 = t([[13, 9],[14, 10],[15, 9],[16, 10],[17, 11],[19, 0],[20, 3],[21, 0],[22, 3],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_Card = n90 -export const dark_Button = n90 -export const dark_DrawerFrame = n90 -export const dark_Progress = n90 -export const dark_TooltipArrow = n90 -export const dark_Input = n90 -export const dark_Surface = n90 -export const dark_alt1_ListItem = n90 -export const dark_alt2_TooltipContent = n90 -const n91 = t([[13, 10],[14, 11],[15, 10],[16, 11],[17, 4],[19, 3],[20, 4],[21, 3],[22, 4],[24, 10],[25, 4],[26, 4],[27, 4],[28, 4]]) - -export const dark_Checkbox = n91 -export const dark_Switch = n91 -export const dark_SliderTrack = n91 -export const dark_alt1_Card = n91 -export const dark_alt1_Button = n91 -export const dark_alt1_DrawerFrame = n91 -export const dark_alt1_Progress = n91 -export const dark_alt1_TooltipArrow = n91 -export const dark_alt1_Input = n91 -export const dark_alt1_Surface = n91 -export const dark_alt2_ListItem = n91 -export const dark_active_TooltipContent = n91 -const n92 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 5],[20, 5],[21, 5],[22, 5],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_SwitchThumb = n92 -export const dark_alt1_SwitchThumb = n92 -export const dark_dim_SwitchThumb = n92 -export const dark_dim_SliderThumb = n92 -export const dark_dim_Tooltip = n92 -export const dark_dim_ProgressIndicator = n92 -export const dark_green_alt1_SwitchThumb = n92 -export const dark_green_dim_SliderThumb = n92 -export const dark_green_dim_Tooltip = n92 -export const dark_green_dim_ProgressIndicator = n92 -const n93 = t([[13, 0],[14, 3],[15, 0],[16, 3],[17, 4],[18, 61],[19, 9],[20, 10],[21, 9],[22, 10],[23, 61],[24, 0],[25, 4],[26, 4],[27, 4],[28, 4]]) - -export const dark_SliderTrackActive = n93 -export const dark_alt1_SliderThumb = n93 -export const dark_alt1_Tooltip = n93 -export const dark_alt1_ProgressIndicator = n93 -export const dark_active_SwitchThumb = n93 -const n94 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 3],[18, 61],[19, 5],[20, 9],[21, 5],[22, 9],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_SliderThumb = n94 -export const dark_Tooltip = n94 -export const dark_ProgressIndicator = n94 -export const dark_alt2_SwitchThumb = n94 -const n95 = t([[13, 5],[14, 9],[15, 5],[16, 9],[17, 10],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_TextArea = n95 -const n96 = t([[13, 13],[14, 14],[15, 13],[16, 14],[17, 15],[19, 5],[20, 22],[21, 5],[22, 22],[24, 17],[25, 18],[26, 17],[27, 17],[28, 20]]) - -export const light_yellow_Card = n96 -export const light_yellow_Button = n96 -export const light_yellow_DrawerFrame = n96 -export const light_yellow_Progress = n96 -export const light_yellow_TooltipArrow = n96 -export const light_yellow_Input = n96 -export const light_yellow_Surface = n96 -export const light_yellow_alt2_ListItem = n96 -export const light_yellow_alt2_TooltipContent = n96 -const n97 = t([[13, 14],[14, 15],[15, 14],[16, 15],[17, 16],[19, 22],[20, 21],[21, 22],[22, 21],[24, 18],[25, 19],[26, 18],[27, 18],[28, 21]]) - -export const light_yellow_Checkbox = n97 -export const light_yellow_Switch = n97 -export const light_yellow_SliderTrack = n97 -export const light_yellow_alt1_Card = n97 -export const light_yellow_alt1_Button = n97 -export const light_yellow_alt1_DrawerFrame = n97 -export const light_yellow_alt1_Progress = n97 -export const light_yellow_alt1_TooltipArrow = n97 -export const light_yellow_alt1_Input = n97 -export const light_yellow_alt1_Surface = n97 -export const light_yellow_active_ListItem = n97 -export const light_yellow_active_TooltipContent = n97 -const n98 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[18, 61],[19, 12],[20, 12],[21, 12],[22, 12],[23, 61],[24, 22],[25, 21],[26, 22],[27, 22],[28, 19]]) - -export const light_yellow_SwitchThumb = n98 -const n99 = t([[13, 5],[14, 22],[15, 5],[16, 22],[17, 21],[18, 61],[19, 13],[20, 14],[21, 13],[22, 14],[23, 61],[24, 19],[25, 18],[26, 19],[27, 19],[28, 16]]) - -export const light_yellow_SliderTrackActive = n99 -export const light_yellow_alt1_SliderThumb = n99 -export const light_yellow_alt1_Tooltip = n99 -export const light_yellow_alt1_ProgressIndicator = n99 -export const light_yellow_active_SwitchThumb = n99 -const n100 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 22],[18, 61],[19, 12],[20, 13],[21, 12],[22, 13],[23, 61],[24, 20],[25, 19],[26, 20],[27, 20],[28, 17]]) - -export const light_yellow_SliderThumb = n100 -export const light_yellow_Tooltip = n100 -export const light_yellow_ProgressIndicator = n100 -export const light_yellow_alt2_SwitchThumb = n100 -const n101 = t([[13, 12],[14, 12],[15, 12],[16, 12],[17, 13],[19, 5],[20, 5],[21, 5],[22, 5],[24, 17],[25, 18],[26, 17],[27, 17],[28, 18]]) - -export const light_yellow_TextArea = n101 -const n102 = t([[13, 23],[14, 24],[15, 23],[16, 24],[17, 25],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 24]]) - -export const light_green_Card = n102 -export const light_green_Button = n102 -export const light_green_DrawerFrame = n102 -export const light_green_Progress = n102 -export const light_green_TooltipArrow = n102 -export const light_green_Input = n102 -export const light_green_Surface = n102 -export const light_green_alt2_ListItem = n102 -export const light_green_alt2_TooltipContent = n102 -const n103 = t([[13, 24],[14, 25],[15, 24],[16, 25],[17, 23],[19, 5],[20, 25],[21, 5],[22, 25],[24, 0],[25, 23],[26, 0],[27, 0],[28, 25]]) - -export const light_green_Checkbox = n103 -export const light_green_Switch = n103 -export const light_green_SliderTrack = n103 -export const light_green_alt1_Card = n103 -export const light_green_alt1_Button = n103 -export const light_green_alt1_DrawerFrame = n103 -export const light_green_alt1_Progress = n103 -export const light_green_alt1_TooltipArrow = n103 -export const light_green_alt1_Input = n103 -export const light_green_alt1_Surface = n103 -export const light_green_active_ListItem = n103 -export const light_green_active_TooltipContent = n103 -const n104 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[18, 61],[19, 0],[20, 0],[21, 0],[22, 0],[23, 61],[24, 5],[25, 25],[26, 5],[27, 5],[28, 23]]) - -export const light_green_SwitchThumb = n104 -const n105 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 25],[18, 61],[19, 23],[20, 24],[21, 23],[22, 24],[23, 61],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) - -export const light_green_SliderTrackActive = n105 -export const light_green_alt1_SliderThumb = n105 -export const light_green_alt1_Tooltip = n105 -export const light_green_alt1_ProgressIndicator = n105 -export const light_green_active_SwitchThumb = n105 -const n106 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[18, 61],[19, 0],[20, 23],[21, 0],[22, 23],[23, 61],[24, 24],[25, 23],[26, 24],[27, 24],[28, 0]]) - -export const light_green_SliderThumb = n106 -export const light_green_Tooltip = n106 -export const light_green_ProgressIndicator = n106 -export const light_green_alt2_SwitchThumb = n106 -const n107 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 23],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_green_TextArea = n107 -const n108 = t([[13, 27],[14, 28],[15, 27],[16, 28],[17, 29],[19, 5],[20, 36],[21, 5],[22, 36],[24, 31],[25, 32],[26, 31],[27, 31],[28, 34]]) - -export const light_red_Card = n108 -export const light_red_Button = n108 -export const light_red_DrawerFrame = n108 -export const light_red_Progress = n108 -export const light_red_TooltipArrow = n108 -export const light_red_Input = n108 -export const light_red_Surface = n108 -export const light_red_alt2_ListItem = n108 -export const light_red_alt2_TooltipContent = n108 -const n109 = t([[13, 28],[14, 29],[15, 28],[16, 29],[17, 30],[19, 36],[20, 35],[21, 36],[22, 35],[24, 32],[25, 33],[26, 32],[27, 32],[28, 35]]) - -export const light_red_Checkbox = n109 -export const light_red_Switch = n109 -export const light_red_SliderTrack = n109 -export const light_red_alt1_Card = n109 -export const light_red_alt1_Button = n109 -export const light_red_alt1_DrawerFrame = n109 -export const light_red_alt1_Progress = n109 -export const light_red_alt1_TooltipArrow = n109 -export const light_red_alt1_Input = n109 -export const light_red_alt1_Surface = n109 -export const light_red_active_ListItem = n109 -export const light_red_active_TooltipContent = n109 -const n110 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[18, 61],[19, 26],[20, 26],[21, 26],[22, 26],[23, 61],[24, 36],[25, 35],[26, 36],[27, 36],[28, 33]]) - -export const light_red_SwitchThumb = n110 -const n111 = t([[13, 5],[14, 36],[15, 5],[16, 36],[17, 35],[18, 61],[19, 27],[20, 28],[21, 27],[22, 28],[23, 61],[24, 33],[25, 32],[26, 33],[27, 33],[28, 30]]) - -export const light_red_SliderTrackActive = n111 -export const light_red_alt1_SliderThumb = n111 -export const light_red_alt1_Tooltip = n111 -export const light_red_alt1_ProgressIndicator = n111 -export const light_red_active_SwitchThumb = n111 -const n112 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 36],[18, 61],[19, 26],[20, 27],[21, 26],[22, 27],[23, 61],[24, 34],[25, 33],[26, 34],[27, 34],[28, 31]]) - -export const light_red_SliderThumb = n112 -export const light_red_Tooltip = n112 -export const light_red_ProgressIndicator = n112 -export const light_red_alt2_SwitchThumb = n112 -const n113 = t([[13, 26],[14, 26],[15, 26],[16, 26],[17, 27],[19, 5],[20, 5],[21, 5],[22, 5],[24, 31],[25, 32],[26, 31],[27, 31],[28, 32]]) - -export const light_red_TextArea = n113 -const n114 = t([[13, 37],[14, 38],[15, 37],[16, 38],[17, 39],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 37],[25, 19],[26, 19],[27, 19],[28, 19]]) - -export const dark_yellow_ListItem = n114 -const n115 = t([[13, 38],[14, 39],[15, 38],[16, 39],[17, 40],[19, 0],[20, 46],[21, 0],[22, 46],[24, 38],[25, 44],[26, 44],[27, 44],[28, 44]]) - -export const dark_yellow_Card = n115 -export const dark_yellow_Button = n115 -export const dark_yellow_DrawerFrame = n115 -export const dark_yellow_Progress = n115 -export const dark_yellow_TooltipArrow = n115 -export const dark_yellow_Input = n115 -export const dark_yellow_Surface = n115 -export const dark_yellow_alt1_ListItem = n115 -export const dark_yellow_alt2_TooltipContent = n115 -const n116 = t([[13, 39],[14, 40],[15, 39],[16, 40],[17, 41],[19, 46],[20, 45],[21, 46],[22, 45],[24, 39],[25, 45],[26, 45],[27, 45],[28, 45]]) - -export const dark_yellow_Checkbox = n116 -export const dark_yellow_Switch = n116 -export const dark_yellow_SliderTrack = n116 -export const dark_yellow_alt1_Card = n116 -export const dark_yellow_alt1_Button = n116 -export const dark_yellow_alt1_DrawerFrame = n116 -export const dark_yellow_alt1_Progress = n116 -export const dark_yellow_alt1_TooltipArrow = n116 -export const dark_yellow_alt1_Input = n116 -export const dark_yellow_alt1_Surface = n116 -export const dark_yellow_alt2_ListItem = n116 -export const dark_yellow_active_TooltipContent = n116 -const n117 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 37],[20, 37],[21, 37],[22, 37],[23, 61],[24, 0],[25, 19],[26, 19],[27, 19],[28, 19]]) - -export const dark_yellow_SwitchThumb = n117 -const n118 = t([[13, 0],[14, 46],[15, 0],[16, 46],[17, 45],[18, 61],[19, 38],[20, 39],[21, 38],[22, 39],[23, 61],[24, 0],[25, 41],[26, 41],[27, 41],[28, 41]]) - -export const dark_yellow_SliderTrackActive = n118 -export const dark_yellow_alt1_SliderThumb = n118 -export const dark_yellow_alt1_Tooltip = n118 -export const dark_yellow_alt1_ProgressIndicator = n118 -export const dark_yellow_active_SwitchThumb = n118 -const n119 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 46],[18, 61],[19, 37],[20, 38],[21, 37],[22, 38],[23, 61],[24, 0],[25, 42],[26, 42],[27, 42],[28, 42]]) - -export const dark_yellow_SliderThumb = n119 -export const dark_yellow_Tooltip = n119 -export const dark_yellow_ProgressIndicator = n119 -export const dark_yellow_alt2_SwitchThumb = n119 -const n120 = t([[13, 37],[14, 38],[15, 37],[16, 38],[17, 39],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 38],[25, 44],[26, 44],[27, 44],[28, 19]]) - -export const dark_yellow_TextArea = n120 -const n121 = t([[13, 5],[14, 47],[15, 5],[16, 47],[17, 24],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 5],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_green_ListItem = n121 -const n122 = t([[13, 47],[14, 24],[15, 47],[16, 24],[17, 48],[19, 0],[20, 0],[21, 0],[22, 0],[24, 47],[25, 24],[26, 24],[27, 24],[28, 24]]) - -export const dark_green_Card = n122 -export const dark_green_DrawerFrame = n122 -export const dark_green_Progress = n122 -export const dark_green_TooltipArrow = n122 -export const dark_green_Input = n122 -export const dark_green_Surface = n122 -export const dark_green_alt1_ListItem = n122 -export const dark_green_alt2_TooltipContent = n122 -const n123 = t([[13, 23],[14, 24],[15, 23],[16, 24],[17, 10],[18, 61],[19, 48],[20, 23],[21, 48],[22, 23],[23, 61],[24, 23],[25, 24],[26, 24],[27, 24],[28, 24]]) - -export const dark_green_Button = n123 -export const dark_green_alt2_SliderTrackActive = n123 -export const dark_green_active_SliderThumb = n123 -export const dark_green_active_Tooltip = n123 -export const dark_green_active_ProgressIndicator = n123 -const n124 = t([[13, 24],[14, 48],[15, 24],[16, 48],[17, 23],[19, 0],[20, 23],[21, 0],[22, 23],[24, 24],[25, 23],[26, 23],[27, 23],[28, 23]]) - -export const dark_green_Checkbox = n124 -export const dark_green_Switch = n124 -export const dark_green_SliderTrack = n124 -export const dark_green_alt1_Card = n124 -export const dark_green_alt1_DrawerFrame = n124 -export const dark_green_alt1_Progress = n124 -export const dark_green_alt1_TooltipArrow = n124 -export const dark_green_alt1_Input = n124 -export const dark_green_alt1_Surface = n124 -export const dark_green_alt2_ListItem = n124 -export const dark_green_active_TooltipContent = n124 -const n125 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 5],[20, 5],[21, 5],[22, 5],[23, 61],[24, 0],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_green_SwitchThumb = n125 -const n126 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 23],[18, 61],[19, 47],[20, 24],[21, 47],[22, 24],[23, 61],[24, 0],[25, 23],[26, 23],[27, 23],[28, 23]]) - -export const dark_green_SliderTrackActive = n126 -export const dark_green_alt1_SliderThumb = n126 -export const dark_green_alt1_Tooltip = n126 -export const dark_green_alt1_ProgressIndicator = n126 -export const dark_green_active_SwitchThumb = n126 -const n127 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 5],[20, 47],[21, 5],[22, 47],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_green_SliderThumb = n127 -export const dark_green_Tooltip = n127 -export const dark_green_ProgressIndicator = n127 -export const dark_green_alt2_SwitchThumb = n127 -const n128 = t([[13, 5],[14, 47],[15, 5],[16, 47],[17, 24],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 47],[25, 24],[26, 24],[27, 24],[28, 10]]) - -export const dark_green_TextArea = n128 -const n129 = t([[13, 49],[14, 50],[15, 49],[16, 50],[17, 51],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 49],[25, 33],[26, 33],[27, 33],[28, 33]]) - -export const dark_red_ListItem = n129 -const n130 = t([[13, 50],[14, 51],[15, 50],[16, 51],[17, 52],[19, 0],[20, 58],[21, 0],[22, 58],[24, 50],[25, 56],[26, 56],[27, 56],[28, 56]]) - -export const dark_red_Card = n130 -export const dark_red_Button = n130 -export const dark_red_DrawerFrame = n130 -export const dark_red_Progress = n130 -export const dark_red_TooltipArrow = n130 -export const dark_red_Input = n130 -export const dark_red_Surface = n130 -export const dark_red_alt1_ListItem = n130 -export const dark_red_alt2_TooltipContent = n130 -const n131 = t([[13, 51],[14, 52],[15, 51],[16, 52],[17, 53],[19, 58],[20, 57],[21, 58],[22, 57],[24, 51],[25, 57],[26, 57],[27, 57],[28, 57]]) - -export const dark_red_Checkbox = n131 -export const dark_red_Switch = n131 -export const dark_red_SliderTrack = n131 -export const dark_red_alt1_Card = n131 -export const dark_red_alt1_Button = n131 -export const dark_red_alt1_DrawerFrame = n131 -export const dark_red_alt1_Progress = n131 -export const dark_red_alt1_TooltipArrow = n131 -export const dark_red_alt1_Input = n131 -export const dark_red_alt1_Surface = n131 -export const dark_red_alt2_ListItem = n131 -export const dark_red_active_TooltipContent = n131 -const n132 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 49],[20, 49],[21, 49],[22, 49],[23, 61],[24, 0],[25, 33],[26, 33],[27, 33],[28, 33]]) - -export const dark_red_SwitchThumb = n132 -const n133 = t([[13, 0],[14, 58],[15, 0],[16, 58],[17, 57],[18, 61],[19, 50],[20, 51],[21, 50],[22, 51],[23, 61],[24, 0],[25, 53],[26, 53],[27, 53],[28, 53]]) - -export const dark_red_SliderTrackActive = n133 -export const dark_red_alt1_SliderThumb = n133 -export const dark_red_alt1_Tooltip = n133 -export const dark_red_alt1_ProgressIndicator = n133 -export const dark_red_active_SwitchThumb = n133 -const n134 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 58],[18, 61],[19, 49],[20, 50],[21, 49],[22, 50],[23, 61],[24, 0],[25, 54],[26, 54],[27, 54],[28, 54]]) - -export const dark_red_SliderThumb = n134 -export const dark_red_Tooltip = n134 -export const dark_red_ProgressIndicator = n134 -export const dark_red_alt2_SwitchThumb = n134 -const n135 = t([[13, 49],[14, 50],[15, 49],[16, 50],[17, 51],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 50],[25, 56],[26, 56],[27, 56],[28, 33]]) - -export const dark_red_TextArea = n135 -const n136 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 5],[20, 0],[21, 5],[22, 0],[23, 61],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_SwitchThumb = n136 -export const light_ghost_alt1_SwitchThumb = n136 -export const light_ghost_dim_SwitchThumb = n136 -export const light_ghost_dim_SliderThumb = n136 -export const light_ghost_dim_Tooltip = n136 -export const light_ghost_dim_ProgressIndicator = n136 -const n137 = t([[13, 61],[14, 61],[15, 5],[16, 4],[17, 2],[18, 61],[19, 5],[20, 2],[21, 5],[22, 2],[23, 61],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_SliderTrackActive = n137 -export const light_ghost_alt1_SliderThumb = n137 -export const light_ghost_alt1_Tooltip = n137 -export const light_ghost_alt1_ProgressIndicator = n137 -export const light_ghost_active_SwitchThumb = n137 -const n138 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 4],[18, 61],[19, 5],[20, 1],[21, 5],[22, 1],[23, 61],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_SliderThumb = n138 -export const light_ghost_Tooltip = n138 -export const light_ghost_ProgressIndicator = n138 -export const light_ghost_alt2_SwitchThumb = n138 -export const light_ghost_dim_SliderTrackActive = n138 -const n139 = t([[15, 0],[16, 0],[17, 1],[19, 0],[20, 5],[21, 0],[22, 5],[24, 1],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_TextArea = n139 -const n140 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 5],[21, 0],[22, 5],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ghost_SwitchThumb = n140 -export const dark_ghost_alt1_SwitchThumb = n140 -export const dark_ghost_dim_SwitchThumb = n140 -export const dark_ghost_dim_SliderThumb = n140 -export const dark_ghost_dim_Tooltip = n140 -export const dark_ghost_dim_ProgressIndicator = n140 -export const dark_green_ghost_alt1_SwitchThumb = n140 -export const dark_green_ghost_dim_SliderThumb = n140 -export const dark_green_ghost_dim_Tooltip = n140 -export const dark_green_ghost_dim_ProgressIndicator = n140 -const n141 = t([[13, 61],[14, 61],[15, 0],[16, 3],[17, 4],[18, 61],[19, 0],[20, 10],[21, 0],[22, 10],[23, 61],[24, 0],[25, 4],[26, 4],[27, 4],[28, 4]]) - -export const dark_ghost_SliderTrackActive = n141 -export const dark_ghost_alt1_SliderThumb = n141 -export const dark_ghost_alt1_Tooltip = n141 -export const dark_ghost_alt1_ProgressIndicator = n141 -export const dark_ghost_active_SwitchThumb = n141 -const n142 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 3],[18, 61],[19, 0],[20, 9],[21, 0],[22, 9],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ghost_SliderThumb = n142 -export const dark_ghost_Tooltip = n142 -export const dark_ghost_ProgressIndicator = n142 -export const dark_ghost_alt2_SwitchThumb = n142 -export const dark_ghost_dim_SliderTrackActive = n142 -const n143 = t([[13, 6],[14, 6],[15, 5],[16, 9],[17, 10],[18, 6],[19, 5],[20, 0],[21, 5],[22, 0],[23, 6],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ghost_TextArea = n143 -const n144 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 22],[20, 12],[21, 5],[22, 12],[23, 61],[24, 22],[25, 21],[26, 22],[27, 22],[28, 19]]) - -export const light_yellow_ghost_SwitchThumb = n144 -const n145 = t([[13, 61],[14, 61],[15, 5],[16, 22],[17, 21],[18, 61],[19, 19],[20, 14],[21, 5],[22, 14],[23, 61],[24, 19],[25, 18],[26, 19],[27, 19],[28, 16]]) - -export const light_yellow_ghost_SliderTrackActive = n145 -export const light_yellow_ghost_alt1_SliderThumb = n145 -export const light_yellow_ghost_alt1_Tooltip = n145 -export const light_yellow_ghost_alt1_ProgressIndicator = n145 -export const light_yellow_ghost_active_SwitchThumb = n145 -const n146 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 22],[18, 61],[19, 20],[20, 13],[21, 5],[22, 13],[23, 61],[24, 20],[25, 19],[26, 20],[27, 20],[28, 17]]) - -export const light_yellow_ghost_SliderThumb = n146 -export const light_yellow_ghost_Tooltip = n146 -export const light_yellow_ghost_ProgressIndicator = n146 -export const light_yellow_ghost_alt2_SwitchThumb = n146 -export const light_yellow_ghost_dim_SliderTrackActive = n146 -const n147 = t([[15, 12],[16, 12],[17, 13],[19, 15],[20, 5],[21, 12],[22, 5],[24, 17],[25, 18],[26, 17],[27, 17],[28, 18]]) - -export const light_yellow_ghost_TextArea = n147 -const n148 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 5],[20, 0],[21, 5],[22, 0],[23, 61],[24, 5],[25, 25],[26, 5],[27, 5],[28, 23]]) - -export const light_green_ghost_SwitchThumb = n148 -const n149 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 25],[18, 61],[19, 23],[20, 24],[21, 5],[22, 24],[23, 61],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) - -export const light_green_ghost_SliderTrackActive = n149 -export const light_green_ghost_alt1_SliderThumb = n149 -export const light_green_ghost_alt1_Tooltip = n149 -export const light_green_ghost_alt1_ProgressIndicator = n149 -export const light_green_ghost_active_SwitchThumb = n149 -const n150 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 24],[20, 23],[21, 5],[22, 23],[23, 61],[24, 24],[25, 23],[26, 24],[27, 24],[28, 0]]) - -export const light_green_ghost_SliderThumb = n150 -export const light_green_ghost_Tooltip = n150 -export const light_green_ghost_ProgressIndicator = n150 -export const light_green_ghost_alt2_SwitchThumb = n150 -export const light_green_ghost_dim_SliderTrackActive = n150 -const n151 = t([[15, 0],[16, 0],[17, 23],[19, 25],[20, 5],[21, 0],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_green_ghost_TextArea = n151 -const n152 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 36],[20, 26],[21, 5],[22, 26],[23, 61],[24, 36],[25, 35],[26, 36],[27, 36],[28, 33]]) - -export const light_red_ghost_SwitchThumb = n152 -const n153 = t([[13, 61],[14, 61],[15, 5],[16, 36],[17, 35],[18, 61],[19, 33],[20, 28],[21, 5],[22, 28],[23, 61],[24, 33],[25, 32],[26, 33],[27, 33],[28, 30]]) - -export const light_red_ghost_SliderTrackActive = n153 -export const light_red_ghost_alt1_SliderThumb = n153 -export const light_red_ghost_alt1_Tooltip = n153 -export const light_red_ghost_alt1_ProgressIndicator = n153 -export const light_red_ghost_active_SwitchThumb = n153 -const n154 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 36],[18, 61],[19, 34],[20, 27],[21, 5],[22, 27],[23, 61],[24, 34],[25, 33],[26, 34],[27, 34],[28, 31]]) - -export const light_red_ghost_SliderThumb = n154 -export const light_red_ghost_Tooltip = n154 -export const light_red_ghost_ProgressIndicator = n154 -export const light_red_ghost_alt2_SwitchThumb = n154 -export const light_red_ghost_dim_SliderTrackActive = n154 -const n155 = t([[15, 26],[16, 26],[17, 27],[19, 29],[20, 5],[21, 26],[22, 5],[24, 31],[25, 32],[26, 31],[27, 31],[28, 32]]) - -export const light_red_ghost_TextArea = n155 -const n156 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 37],[21, 0],[22, 37],[23, 61],[24, 0],[25, 19],[26, 19],[27, 19],[28, 19]]) - -export const dark_yellow_ghost_SwitchThumb = n156 -const n157 = t([[13, 61],[14, 61],[15, 0],[16, 46],[17, 45],[18, 61],[19, 0],[20, 39],[21, 0],[22, 39],[23, 61],[24, 0],[25, 41],[26, 41],[27, 41],[28, 41]]) - -export const dark_yellow_ghost_SliderTrackActive = n157 -export const dark_yellow_ghost_alt1_SliderThumb = n157 -export const dark_yellow_ghost_alt1_Tooltip = n157 -export const dark_yellow_ghost_alt1_ProgressIndicator = n157 -export const dark_yellow_ghost_active_SwitchThumb = n157 -const n158 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 46],[18, 61],[19, 0],[20, 38],[21, 0],[22, 38],[23, 61],[24, 0],[25, 42],[26, 42],[27, 42],[28, 42]]) - -export const dark_yellow_ghost_SliderThumb = n158 -export const dark_yellow_ghost_Tooltip = n158 -export const dark_yellow_ghost_ProgressIndicator = n158 -export const dark_yellow_ghost_alt2_SwitchThumb = n158 -export const dark_yellow_ghost_dim_SliderTrackActive = n158 -const n159 = t([[13, 6],[14, 6],[15, 37],[16, 38],[17, 39],[18, 6],[19, 37],[20, 0],[21, 37],[22, 0],[23, 6],[24, 38],[25, 44],[26, 44],[27, 44],[28, 19]]) - -export const dark_yellow_ghost_TextArea = n159 -const n160 = t([[13, 61],[14, 61],[15, 23],[16, 24],[17, 10],[18, 61],[19, 23],[20, 23],[21, 23],[22, 23],[23, 61],[24, 23],[25, 24],[26, 24],[27, 24],[28, 24]]) - -export const dark_green_ghost_Button = n160 -export const dark_green_ghost_alt2_SliderTrackActive = n160 -export const dark_green_ghost_active_SliderThumb = n160 -export const dark_green_ghost_active_Tooltip = n160 -export const dark_green_ghost_active_ProgressIndicator = n160 -const n161 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 5],[21, 0],[22, 5],[23, 61],[24, 0],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_green_ghost_SwitchThumb = n161 -const n162 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 23],[18, 61],[19, 0],[20, 24],[21, 0],[22, 24],[23, 61],[24, 0],[25, 23],[26, 23],[27, 23],[28, 23]]) - -export const dark_green_ghost_SliderTrackActive = n162 -export const dark_green_ghost_alt1_SliderThumb = n162 -export const dark_green_ghost_alt1_Tooltip = n162 -export const dark_green_ghost_alt1_ProgressIndicator = n162 -export const dark_green_ghost_active_SwitchThumb = n162 -const n163 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 47],[21, 0],[22, 47],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_green_ghost_SliderThumb = n163 -export const dark_green_ghost_Tooltip = n163 -export const dark_green_ghost_ProgressIndicator = n163 -export const dark_green_ghost_alt2_SwitchThumb = n163 -export const dark_green_ghost_dim_SliderTrackActive = n163 -const n164 = t([[13, 6],[14, 6],[15, 5],[16, 47],[17, 24],[18, 6],[19, 5],[20, 0],[21, 5],[22, 0],[23, 6],[24, 47],[25, 24],[26, 24],[27, 24],[28, 10]]) - -export const dark_green_ghost_TextArea = n164 -const n165 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 49],[21, 0],[22, 49],[23, 61],[24, 0],[25, 33],[26, 33],[27, 33],[28, 33]]) - -export const dark_red_ghost_SwitchThumb = n165 -const n166 = t([[13, 61],[14, 61],[15, 0],[16, 58],[17, 57],[18, 61],[19, 0],[20, 51],[21, 0],[22, 51],[23, 61],[24, 0],[25, 53],[26, 53],[27, 53],[28, 53]]) - -export const dark_red_ghost_SliderTrackActive = n166 -export const dark_red_ghost_alt1_SliderThumb = n166 -export const dark_red_ghost_alt1_Tooltip = n166 -export const dark_red_ghost_alt1_ProgressIndicator = n166 -export const dark_red_ghost_active_SwitchThumb = n166 -const n167 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 58],[18, 61],[19, 0],[20, 50],[21, 0],[22, 50],[23, 61],[24, 0],[25, 54],[26, 54],[27, 54],[28, 54]]) - -export const dark_red_ghost_SliderThumb = n167 -export const dark_red_ghost_Tooltip = n167 -export const dark_red_ghost_ProgressIndicator = n167 -export const dark_red_ghost_alt2_SwitchThumb = n167 -export const dark_red_ghost_dim_SliderTrackActive = n167 -const n168 = t([[13, 6],[14, 6],[15, 49],[16, 50],[17, 51],[18, 6],[19, 49],[20, 0],[21, 49],[22, 0],[23, 6],[24, 50],[25, 56],[26, 56],[27, 56],[28, 33]]) - -export const dark_red_ghost_TextArea = n168 -const n169 = t([[13, 0],[14, 1],[15, 0],[16, 1],[17, 2],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_alt1_ListItem = n169 -export const light_alt1_TooltipContent = n169 -const n170 = t([[13, 4],[14, 2],[15, 4],[16, 2],[17, 0],[19, 2],[20, 3],[21, 2],[22, 3],[24, 4],[25, 3],[26, 3],[27, 3],[28, 3]]) - -export const light_alt1_SliderTrackActive = n170 -export const light_alt2_SliderThumb = n170 -export const light_alt2_Tooltip = n170 -export const light_alt2_ProgressIndicator = n170 -const n171 = t([[13, 0],[14, 1],[15, 0],[16, 1],[17, 2],[19, 5],[20, 5],[21, 5],[22, 5],[24, 2],[25, 2],[26, 2],[27, 2],[28, 0]]) - -export const light_alt1_TextArea = n171 -const n172 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 0],[20, 0],[21, 0],[22, 0],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const light_alt1_Separator = n172 -export const light_alt2_Checkbox = n172 -export const light_alt2_Switch = n172 -export const light_alt2_SliderTrack = n172 -export const light_alt2_Separator = n172 -export const light_active_Card = n172 -export const light_active_Button = n172 -export const light_active_Checkbox = n172 -export const light_active_Switch = n172 -export const light_active_DrawerFrame = n172 -export const light_active_Progress = n172 -export const light_active_TooltipArrow = n172 -export const light_active_SliderTrack = n172 -export const light_active_Input = n172 -export const light_active_Separator = n172 -export const light_active_Surface = n172 -const n173 = t([[13, 2],[14, 0],[15, 2],[16, 0],[17, 0],[19, 3],[20, 0],[21, 3],[22, 0],[24, 2],[25, 2],[26, 2],[27, 2],[28, 2]]) - -export const light_alt2_SliderTrackActive = n173 -export const light_active_SliderThumb = n173 -export const light_active_Tooltip = n173 -export const light_active_ProgressIndicator = n173 -const n174 = t([[13, 1],[14, 2],[15, 1],[16, 2],[17, 3],[19, 5],[20, 4],[21, 5],[22, 4],[24, 3],[25, 4],[26, 4],[27, 4],[28, 0]]) - -export const light_alt2_TextArea = n174 -const n175 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 0],[20, 0],[21, 0],[22, 0],[24, 0],[25, 1],[26, 1],[27, 1],[28, 1]]) - -export const light_active_SliderTrackActive = n175 -const n176 = t([[13, 2],[14, 3],[15, 2],[16, 3],[17, 0],[19, 4],[20, 2],[21, 4],[22, 2],[24, 0],[25, 5],[26, 5],[27, 5],[28, 2]]) - -export const light_active_TextArea = n176 -const n177 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_dim_ListItem = n177 -export const light_dim_TooltipContent = n177 -const n178 = t([[13, 1],[14, 1],[15, 1],[16, 1],[17, 2],[19, 5],[20, 5],[21, 5],[22, 5],[24, 1],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_dim_Card = n178 -export const light_dim_Button = n178 -export const light_dim_DrawerFrame = n178 -export const light_dim_Progress = n178 -export const light_dim_TooltipArrow = n178 -export const light_dim_Input = n178 -export const light_dim_Surface = n178 -const n179 = t([[13, 2],[14, 2],[15, 2],[16, 2],[17, 3],[19, 4],[20, 4],[21, 4],[22, 4],[24, 2],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_dim_Checkbox = n179 -export const light_dim_Switch = n179 -export const light_dim_SliderTrack = n179 -const n180 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 4],[19, 1],[20, 1],[21, 1],[22, 1],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_dim_SliderTrackActive = n180 -const n181 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 5],[20, 5],[21, 5],[22, 5],[24, 1],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_dim_TextArea = n181 -const n182 = t([[13, 3],[14, 3],[15, 3],[16, 3],[17, 0],[19, 2],[20, 2],[21, 2],[22, 2],[24, 3],[25, 2],[26, 2],[27, 2],[28, 2]]) - -export const light_dim_Separator = n182 -const n183 = t([[13, 5],[14, 9],[15, 5],[16, 9],[17, 10],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_alt1_TooltipContent = n183 -const n184 = t([[13, 3],[14, 4],[15, 3],[16, 4],[17, 5],[19, 10],[20, 11],[21, 10],[22, 11],[24, 3],[25, 11],[26, 11],[27, 11],[28, 11]]) - -export const dark_alt1_SliderTrackActive = n184 -export const dark_alt2_SliderThumb = n184 -export const dark_alt2_Tooltip = n184 -export const dark_alt2_ProgressIndicator = n184 -const n185 = t([[13, 9],[14, 10],[15, 9],[16, 10],[17, 11],[19, 0],[20, 3],[21, 0],[22, 3],[24, 10],[25, 4],[26, 4],[27, 4],[28, 5]]) - -export const dark_alt1_TextArea = n185 -const n186 = t([[13, 4],[14, 5],[15, 4],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 4],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_alt1_Separator = n186 -export const dark_alt2_Checkbox = n186 -export const dark_alt2_Switch = n186 -export const dark_alt2_SliderTrack = n186 -export const dark_active_Card = n186 -export const dark_active_Button = n186 -export const dark_active_DrawerFrame = n186 -export const dark_active_Progress = n186 -export const dark_active_TooltipArrow = n186 -export const dark_active_Input = n186 -export const dark_active_Surface = n186 -const n187 = t([[13, 4],[14, 5],[15, 4],[16, 5],[17, 5],[19, 11],[20, 4],[21, 11],[22, 4],[24, 4],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_alt2_SliderTrackActive = n187 -export const dark_active_SliderThumb = n187 -export const dark_active_Tooltip = n187 -export const dark_active_ProgressIndicator = n187 -const n188 = t([[13, 10],[14, 11],[15, 10],[16, 11],[17, 4],[19, 3],[20, 4],[21, 3],[22, 4],[24, 11],[25, 3],[26, 3],[27, 3],[28, 4]]) - -export const dark_alt2_TextArea = n188 -const n189 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_alt2_Separator = n189 -export const dark_active_Checkbox = n189 -export const dark_active_Switch = n189 -export const dark_active_SliderTrack = n189 -export const dark_active_Separator = n189 -const n190 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 4],[20, 5],[21, 4],[22, 5],[24, 5],[25, 9],[26, 9],[27, 9],[28, 9]]) - -export const dark_active_SliderTrackActive = n190 -const n191 = t([[13, 11],[14, 4],[15, 11],[16, 4],[17, 5],[19, 4],[20, 5],[21, 4],[22, 5],[24, 4],[25, 0],[26, 0],[27, 0],[28, 3]]) - -export const dark_active_TextArea = n191 -const n192 = t([[13, 9],[14, 9],[15, 9],[16, 9],[17, 10],[19, 0],[20, 0],[21, 0],[22, 0],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_dim_Card = n192 -export const dark_dim_Button = n192 -export const dark_dim_DrawerFrame = n192 -export const dark_dim_Progress = n192 -export const dark_dim_TooltipArrow = n192 -export const dark_dim_Input = n192 -export const dark_dim_Surface = n192 -const n193 = t([[13, 10],[14, 10],[15, 10],[16, 10],[17, 11],[19, 3],[20, 3],[21, 3],[22, 3],[24, 10],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_dim_Checkbox = n193 -export const dark_dim_Switch = n193 -export const dark_dim_SliderTrack = n193 -const n194 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_dim_TooltipContent = n194 -export const dark_green_dim_TooltipContent = n194 -const n195 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 3],[19, 9],[20, 9],[21, 9],[22, 9],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_dim_SliderTrackActive = n195 -const n196 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 9],[19, 0],[20, 0],[21, 0],[22, 0],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_dim_TextArea = n196 -const n197 = t([[13, 11],[14, 11],[15, 11],[16, 11],[17, 4],[19, 4],[20, 4],[21, 4],[22, 4],[24, 11],[25, 4],[26, 4],[27, 4],[28, 4]]) - -export const dark_dim_Separator = n197 -const n198 = t([[13, 12],[14, 13],[15, 12],[16, 13],[17, 14],[19, 5],[20, 5],[21, 5],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 19]]) - -export const light_yellow_alt1_ListItem = n198 -export const light_yellow_alt1_TooltipContent = n198 -const n199 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 12],[20, 12],[21, 12],[22, 12],[24, 21],[25, 20],[26, 21],[27, 21],[28, 18]]) - -export const light_yellow_alt1_SwitchThumb = n199 -export const light_yellow_dim_SliderThumb = n199 -export const light_yellow_dim_Tooltip = n199 -export const light_yellow_dim_ProgressIndicator = n199 -const n200 = t([[13, 22],[14, 21],[15, 22],[16, 21],[17, 20],[19, 14],[20, 15],[21, 14],[22, 15],[24, 18],[25, 17],[26, 18],[27, 18],[28, 15]]) - -export const light_yellow_alt1_SliderTrackActive = n200 -export const light_yellow_alt2_SliderThumb = n200 -export const light_yellow_alt2_Tooltip = n200 -export const light_yellow_alt2_ProgressIndicator = n200 -const n201 = t([[13, 12],[14, 13],[15, 12],[16, 13],[17, 14],[19, 5],[20, 5],[21, 5],[22, 5],[24, 18],[25, 19],[26, 18],[27, 18],[28, 19]]) - -export const light_yellow_alt1_TextArea = n201 -const n202 = t([[13, 16],[14, 17],[15, 16],[16, 17],[17, 18],[19, 20],[20, 19],[21, 20],[22, 19],[24, 20],[25, 21],[26, 20],[27, 20],[28, 5]]) - -export const light_yellow_alt1_Separator = n202 -export const light_yellow_alt2_Checkbox = n202 -export const light_yellow_alt2_Switch = n202 -export const light_yellow_alt2_SliderTrack = n202 -export const light_yellow_active_Card = n202 -export const light_yellow_active_Button = n202 -export const light_yellow_active_DrawerFrame = n202 -export const light_yellow_active_Progress = n202 -export const light_yellow_active_TooltipArrow = n202 -export const light_yellow_active_Input = n202 -export const light_yellow_active_Surface = n202 -const n203 = t([[13, 21],[14, 20],[15, 21],[16, 20],[17, 19],[19, 15],[20, 16],[21, 15],[22, 16],[24, 17],[25, 16],[26, 17],[27, 17],[28, 14]]) - -export const light_yellow_alt2_SliderTrackActive = n203 -export const light_yellow_active_SliderThumb = n203 -export const light_yellow_active_Tooltip = n203 -export const light_yellow_active_ProgressIndicator = n203 -const n204 = t([[13, 13],[14, 14],[15, 13],[16, 14],[17, 15],[19, 5],[20, 22],[21, 5],[22, 22],[24, 19],[25, 20],[26, 19],[27, 19],[28, 20]]) - -export const light_yellow_alt2_TextArea = n204 -const n205 = t([[13, 17],[14, 18],[15, 17],[16, 18],[17, 19],[19, 19],[20, 18],[21, 19],[22, 18],[24, 21],[25, 22],[26, 21],[27, 21],[28, 5]]) - -export const light_yellow_alt2_Separator = n205 -export const light_yellow_active_Checkbox = n205 -export const light_yellow_active_Switch = n205 -export const light_yellow_active_SliderTrack = n205 -const n206 = t([[13, 20],[14, 19],[15, 20],[16, 19],[17, 18],[19, 16],[20, 17],[21, 16],[22, 17],[24, 16],[25, 15],[26, 16],[27, 16],[28, 13]]) - -export const light_yellow_active_SliderTrackActive = n206 -const n207 = t([[13, 14],[14, 15],[15, 14],[16, 15],[17, 16],[19, 22],[20, 21],[21, 22],[22, 21],[24, 20],[25, 21],[26, 20],[27, 20],[28, 21]]) - -export const light_yellow_active_TextArea = n207 -const n208 = t([[13, 18],[14, 19],[15, 18],[16, 19],[17, 20],[19, 18],[20, 17],[21, 18],[22, 17],[24, 22],[25, 5],[26, 22],[27, 22],[28, 5]]) - -export const light_yellow_active_Separator = n208 -const n209 = t([[13, 12],[14, 12],[15, 12],[16, 12],[17, 12],[19, 5],[20, 5],[21, 5],[22, 5],[24, 14],[25, 15],[26, 14],[27, 14],[28, 17]]) - -export const light_yellow_dim_ListItem = n209 -export const light_yellow_dim_TooltipContent = n209 -const n210 = t([[13, 13],[14, 13],[15, 13],[16, 13],[17, 14],[19, 5],[20, 5],[21, 5],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 19]]) - -export const light_yellow_dim_Card = n210 -export const light_yellow_dim_Button = n210 -export const light_yellow_dim_DrawerFrame = n210 -export const light_yellow_dim_Progress = n210 -export const light_yellow_dim_TooltipArrow = n210 -export const light_yellow_dim_Input = n210 -export const light_yellow_dim_Surface = n210 -const n211 = t([[13, 14],[14, 14],[15, 14],[16, 14],[17, 15],[19, 22],[20, 22],[21, 22],[22, 22],[24, 17],[25, 18],[26, 17],[27, 17],[28, 20]]) - -export const light_yellow_dim_Checkbox = n211 -export const light_yellow_dim_Switch = n211 -export const light_yellow_dim_SliderTrack = n211 -const n212 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 12],[20, 12],[21, 12],[22, 12],[24, 5],[25, 22],[26, 5],[27, 5],[28, 20]]) - -export const light_yellow_dim_SwitchThumb = n212 -const n213 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 22],[19, 13],[20, 13],[21, 13],[22, 13],[24, 20],[25, 19],[26, 20],[27, 20],[28, 17]]) - -export const light_yellow_dim_SliderTrackActive = n213 -const n214 = t([[13, 12],[14, 12],[15, 12],[16, 12],[17, 12],[19, 5],[20, 5],[21, 5],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 17]]) - -export const light_yellow_dim_TextArea = n214 -const n215 = t([[13, 15],[14, 15],[15, 15],[16, 15],[17, 16],[19, 21],[20, 21],[21, 21],[22, 21],[24, 18],[25, 19],[26, 18],[27, 18],[28, 21]]) - -export const light_yellow_dim_Separator = n215 -const n216 = t([[13, 0],[14, 23],[15, 0],[16, 23],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) - -export const light_green_alt1_ListItem = n216 -export const light_green_alt1_TooltipContent = n216 -const n217 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 0],[20, 0],[21, 0],[22, 0],[24, 25],[25, 24],[26, 25],[27, 25],[28, 0]]) - -export const light_green_alt1_SwitchThumb = n217 -export const light_green_dim_SliderThumb = n217 -export const light_green_dim_Tooltip = n217 -export const light_green_dim_ProgressIndicator = n217 -const n218 = t([[13, 5],[14, 25],[15, 5],[16, 25],[17, 24],[19, 24],[20, 25],[21, 24],[22, 25],[24, 0],[25, 0],[26, 0],[27, 0],[28, 25]]) - -export const light_green_alt1_SliderTrackActive = n218 -export const light_green_alt2_SliderThumb = n218 -export const light_green_alt2_Tooltip = n218 -export const light_green_alt2_ProgressIndicator = n218 -const n219 = t([[13, 0],[14, 23],[15, 0],[16, 23],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 23],[26, 0],[27, 0],[28, 23]]) - -export const light_green_alt1_TextArea = n219 -const n220 = t([[13, 23],[14, 0],[15, 23],[16, 0],[17, 0],[19, 24],[20, 23],[21, 24],[22, 23],[24, 24],[25, 25],[26, 24],[27, 24],[28, 5]]) - -export const light_green_alt1_Separator = n220 -export const light_green_alt2_Checkbox = n220 -export const light_green_alt2_Switch = n220 -export const light_green_alt2_SliderTrack = n220 -export const light_green_active_Card = n220 -export const light_green_active_Button = n220 -export const light_green_active_DrawerFrame = n220 -export const light_green_active_Progress = n220 -export const light_green_active_TooltipArrow = n220 -export const light_green_active_Input = n220 -export const light_green_active_Surface = n220 -const n221 = t([[13, 25],[14, 24],[15, 25],[16, 24],[17, 23],[19, 25],[20, 23],[21, 25],[22, 23],[24, 0],[25, 23],[26, 0],[27, 0],[28, 24]]) - -export const light_green_alt2_SliderTrackActive = n221 -export const light_green_active_SliderThumb = n221 -export const light_green_active_Tooltip = n221 -export const light_green_active_ProgressIndicator = n221 -const n222 = t([[13, 23],[14, 24],[15, 23],[16, 24],[17, 25],[19, 5],[20, 5],[21, 5],[22, 5],[24, 23],[25, 24],[26, 23],[27, 23],[28, 24]]) - -export const light_green_alt2_TextArea = n222 -const n223 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 23],[19, 23],[20, 0],[21, 23],[22, 0],[24, 25],[25, 5],[26, 25],[27, 25],[28, 5]]) - -export const light_green_alt2_Separator = n223 -export const light_green_active_Checkbox = n223 -export const light_green_active_Switch = n223 -export const light_green_active_SliderTrack = n223 -const n224 = t([[13, 24],[14, 23],[15, 24],[16, 23],[17, 0],[19, 23],[20, 0],[21, 23],[22, 0],[24, 23],[25, 25],[26, 23],[27, 23],[28, 23]]) - -export const light_green_active_SliderTrackActive = n224 -const n225 = t([[13, 24],[14, 25],[15, 24],[16, 25],[17, 23],[19, 5],[20, 25],[21, 5],[22, 25],[24, 24],[25, 25],[26, 24],[27, 24],[28, 25]]) - -export const light_green_active_TextArea = n225 -const n226 = t([[13, 0],[14, 23],[15, 0],[16, 23],[17, 24],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const light_green_active_Separator = n226 -const n227 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 5],[20, 5],[21, 5],[22, 5],[24, 24],[25, 25],[26, 24],[27, 24],[28, 0]]) - -export const light_green_dim_ListItem = n227 -export const light_green_dim_TooltipContent = n227 -const n228 = t([[13, 23],[14, 23],[15, 23],[16, 23],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) - -export const light_green_dim_Card = n228 -export const light_green_dim_Button = n228 -export const light_green_dim_DrawerFrame = n228 -export const light_green_dim_Progress = n228 -export const light_green_dim_TooltipArrow = n228 -export const light_green_dim_Input = n228 -export const light_green_dim_Surface = n228 -const n229 = t([[13, 24],[14, 24],[15, 24],[16, 24],[17, 25],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 24]]) - -export const light_green_dim_Checkbox = n229 -export const light_green_dim_Switch = n229 -export const light_green_dim_SliderTrack = n229 -const n230 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 24]]) - -export const light_green_dim_SwitchThumb = n230 -const n231 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 23],[20, 23],[21, 23],[22, 23],[24, 24],[25, 23],[26, 24],[27, 24],[28, 0]]) - -export const light_green_dim_SliderTrackActive = n231 -const n232 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 5],[20, 5],[21, 5],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 0]]) - -export const light_green_dim_TextArea = n232 -const n233 = t([[13, 25],[14, 25],[15, 25],[16, 25],[17, 23],[19, 25],[20, 25],[21, 25],[22, 25],[24, 0],[25, 23],[26, 0],[27, 0],[28, 25]]) - -export const light_green_dim_Separator = n233 -const n234 = t([[13, 26],[14, 27],[15, 26],[16, 27],[17, 28],[19, 5],[20, 5],[21, 5],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 33]]) - -export const light_red_alt1_ListItem = n234 -export const light_red_alt1_TooltipContent = n234 -const n235 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 26],[20, 26],[21, 26],[22, 26],[24, 35],[25, 34],[26, 35],[27, 35],[28, 32]]) - -export const light_red_alt1_SwitchThumb = n235 -export const light_red_dim_SliderThumb = n235 -export const light_red_dim_Tooltip = n235 -export const light_red_dim_ProgressIndicator = n235 -const n236 = t([[13, 36],[14, 35],[15, 36],[16, 35],[17, 34],[19, 28],[20, 29],[21, 28],[22, 29],[24, 32],[25, 31],[26, 32],[27, 32],[28, 29]]) - -export const light_red_alt1_SliderTrackActive = n236 -export const light_red_alt2_SliderThumb = n236 -export const light_red_alt2_Tooltip = n236 -export const light_red_alt2_ProgressIndicator = n236 -const n237 = t([[13, 26],[14, 27],[15, 26],[16, 27],[17, 28],[19, 5],[20, 5],[21, 5],[22, 5],[24, 32],[25, 33],[26, 32],[27, 32],[28, 33]]) - -export const light_red_alt1_TextArea = n237 -const n238 = t([[13, 30],[14, 31],[15, 30],[16, 31],[17, 32],[19, 34],[20, 33],[21, 34],[22, 33],[24, 34],[25, 35],[26, 34],[27, 34],[28, 5]]) - -export const light_red_alt1_Separator = n238 -export const light_red_alt2_Checkbox = n238 -export const light_red_alt2_Switch = n238 -export const light_red_alt2_SliderTrack = n238 -export const light_red_active_Card = n238 -export const light_red_active_Button = n238 -export const light_red_active_DrawerFrame = n238 -export const light_red_active_Progress = n238 -export const light_red_active_TooltipArrow = n238 -export const light_red_active_Input = n238 -export const light_red_active_Surface = n238 -const n239 = t([[13, 35],[14, 34],[15, 35],[16, 34],[17, 33],[19, 29],[20, 30],[21, 29],[22, 30],[24, 31],[25, 30],[26, 31],[27, 31],[28, 28]]) - -export const light_red_alt2_SliderTrackActive = n239 -export const light_red_active_SliderThumb = n239 -export const light_red_active_Tooltip = n239 -export const light_red_active_ProgressIndicator = n239 -const n240 = t([[13, 27],[14, 28],[15, 27],[16, 28],[17, 29],[19, 5],[20, 36],[21, 5],[22, 36],[24, 33],[25, 34],[26, 33],[27, 33],[28, 34]]) - -export const light_red_alt2_TextArea = n240 -const n241 = t([[13, 31],[14, 32],[15, 31],[16, 32],[17, 33],[19, 33],[20, 32],[21, 33],[22, 32],[24, 35],[25, 36],[26, 35],[27, 35],[28, 5]]) - -export const light_red_alt2_Separator = n241 -export const light_red_active_Checkbox = n241 -export const light_red_active_Switch = n241 -export const light_red_active_SliderTrack = n241 -const n242 = t([[13, 34],[14, 33],[15, 34],[16, 33],[17, 32],[19, 30],[20, 31],[21, 30],[22, 31],[24, 30],[25, 29],[26, 30],[27, 30],[28, 27]]) - -export const light_red_active_SliderTrackActive = n242 -const n243 = t([[13, 28],[14, 29],[15, 28],[16, 29],[17, 30],[19, 36],[20, 35],[21, 36],[22, 35],[24, 34],[25, 35],[26, 34],[27, 34],[28, 35]]) - -export const light_red_active_TextArea = n243 -const n244 = t([[13, 32],[14, 33],[15, 32],[16, 33],[17, 34],[19, 32],[20, 31],[21, 32],[22, 31],[24, 36],[25, 5],[26, 36],[27, 36],[28, 5]]) - -export const light_red_active_Separator = n244 -const n245 = t([[13, 26],[14, 26],[15, 26],[16, 26],[17, 26],[19, 5],[20, 5],[21, 5],[22, 5],[24, 28],[25, 29],[26, 28],[27, 28],[28, 31]]) - -export const light_red_dim_ListItem = n245 -export const light_red_dim_TooltipContent = n245 -const n246 = t([[13, 27],[14, 27],[15, 27],[16, 27],[17, 28],[19, 5],[20, 5],[21, 5],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 33]]) - -export const light_red_dim_Card = n246 -export const light_red_dim_Button = n246 -export const light_red_dim_DrawerFrame = n246 -export const light_red_dim_Progress = n246 -export const light_red_dim_TooltipArrow = n246 -export const light_red_dim_Input = n246 -export const light_red_dim_Surface = n246 -const n247 = t([[13, 28],[14, 28],[15, 28],[16, 28],[17, 29],[19, 36],[20, 36],[21, 36],[22, 36],[24, 31],[25, 32],[26, 31],[27, 31],[28, 34]]) - -export const light_red_dim_Checkbox = n247 -export const light_red_dim_Switch = n247 -export const light_red_dim_SliderTrack = n247 -const n248 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 26],[20, 26],[21, 26],[22, 26],[24, 5],[25, 36],[26, 5],[27, 5],[28, 34]]) - -export const light_red_dim_SwitchThumb = n248 -const n249 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 36],[19, 27],[20, 27],[21, 27],[22, 27],[24, 34],[25, 33],[26, 34],[27, 34],[28, 31]]) - -export const light_red_dim_SliderTrackActive = n249 -const n250 = t([[13, 26],[14, 26],[15, 26],[16, 26],[17, 26],[19, 5],[20, 5],[21, 5],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 31]]) - -export const light_red_dim_TextArea = n250 -const n251 = t([[13, 29],[14, 29],[15, 29],[16, 29],[17, 30],[19, 35],[20, 35],[21, 35],[22, 35],[24, 32],[25, 33],[26, 32],[27, 32],[28, 35]]) - -export const light_red_dim_Separator = n251 -const n252 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 37],[20, 37],[21, 37],[22, 37],[24, 0],[25, 43],[26, 43],[27, 43],[28, 43]]) - -export const dark_yellow_alt1_SwitchThumb = n252 -export const dark_yellow_dim_SliderThumb = n252 -export const dark_yellow_dim_Tooltip = n252 -export const dark_yellow_dim_ProgressIndicator = n252 -const n253 = t([[13, 37],[14, 38],[15, 37],[16, 38],[17, 39],[19, 0],[20, 0],[21, 0],[22, 0],[24, 37],[25, 19],[26, 19],[27, 19],[28, 19]]) - -export const dark_yellow_alt1_TooltipContent = n253 -const n254 = t([[13, 46],[14, 45],[15, 46],[16, 45],[17, 44],[19, 39],[20, 40],[21, 39],[22, 40],[24, 46],[25, 40],[26, 40],[27, 40],[28, 40]]) - -export const dark_yellow_alt1_SliderTrackActive = n254 -export const dark_yellow_alt2_SliderThumb = n254 -export const dark_yellow_alt2_Tooltip = n254 -export const dark_yellow_alt2_ProgressIndicator = n254 -const n255 = t([[13, 38],[14, 39],[15, 38],[16, 39],[17, 40],[19, 0],[20, 46],[21, 0],[22, 46],[24, 39],[25, 45],[26, 45],[27, 45],[28, 44]]) - -export const dark_yellow_alt1_TextArea = n255 -const n256 = t([[13, 41],[14, 42],[15, 41],[16, 42],[17, 43],[19, 44],[20, 19],[21, 44],[22, 19],[24, 41],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_yellow_alt1_Separator = n256 -export const dark_yellow_alt2_Checkbox = n256 -export const dark_yellow_alt2_Switch = n256 -export const dark_yellow_alt2_SliderTrack = n256 -export const dark_yellow_active_Card = n256 -export const dark_yellow_active_Button = n256 -export const dark_yellow_active_DrawerFrame = n256 -export const dark_yellow_active_Progress = n256 -export const dark_yellow_active_TooltipArrow = n256 -export const dark_yellow_active_Input = n256 -export const dark_yellow_active_Surface = n256 -const n257 = t([[13, 45],[14, 44],[15, 45],[16, 44],[17, 19],[19, 40],[20, 41],[21, 40],[22, 41],[24, 45],[25, 39],[26, 39],[27, 39],[28, 39]]) - -export const dark_yellow_alt2_SliderTrackActive = n257 -export const dark_yellow_active_SliderThumb = n257 -export const dark_yellow_active_Tooltip = n257 -export const dark_yellow_active_ProgressIndicator = n257 -const n258 = t([[13, 39],[14, 40],[15, 39],[16, 40],[17, 41],[19, 46],[20, 45],[21, 46],[22, 45],[24, 40],[25, 46],[26, 46],[27, 46],[28, 45]]) - -export const dark_yellow_alt2_TextArea = n258 -const n259 = t([[13, 42],[14, 43],[15, 42],[16, 43],[17, 19],[19, 19],[20, 43],[21, 19],[22, 43],[24, 42],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_yellow_alt2_Separator = n259 -export const dark_yellow_active_Checkbox = n259 -export const dark_yellow_active_Switch = n259 -export const dark_yellow_active_SliderTrack = n259 -const n260 = t([[13, 44],[14, 19],[15, 44],[16, 19],[17, 43],[19, 41],[20, 42],[21, 41],[22, 42],[24, 44],[25, 38],[26, 38],[27, 38],[28, 38]]) - -export const dark_yellow_active_SliderTrackActive = n260 -const n261 = t([[13, 40],[14, 41],[15, 40],[16, 41],[17, 42],[19, 45],[20, 44],[21, 45],[22, 44],[24, 41],[25, 0],[26, 0],[27, 0],[28, 46]]) - -export const dark_yellow_active_TextArea = n261 -const n262 = t([[13, 43],[14, 19],[15, 43],[16, 19],[17, 44],[19, 43],[20, 42],[21, 43],[22, 42],[24, 43],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_yellow_active_Separator = n262 -const n263 = t([[13, 38],[14, 38],[15, 38],[16, 38],[17, 39],[19, 0],[20, 0],[21, 0],[22, 0],[24, 38],[25, 19],[26, 19],[27, 19],[28, 19]]) - -export const dark_yellow_dim_Card = n263 -export const dark_yellow_dim_Button = n263 -export const dark_yellow_dim_DrawerFrame = n263 -export const dark_yellow_dim_Progress = n263 -export const dark_yellow_dim_TooltipArrow = n263 -export const dark_yellow_dim_Input = n263 -export const dark_yellow_dim_Surface = n263 -const n264 = t([[13, 39],[14, 39],[15, 39],[16, 39],[17, 40],[19, 46],[20, 46],[21, 46],[22, 46],[24, 39],[25, 44],[26, 44],[27, 44],[28, 44]]) - -export const dark_yellow_dim_Checkbox = n264 -export const dark_yellow_dim_Switch = n264 -export const dark_yellow_dim_SliderTrack = n264 -const n265 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 37],[20, 37],[21, 37],[22, 37],[24, 0],[25, 44],[26, 44],[27, 44],[28, 44]]) - -export const dark_yellow_dim_SwitchThumb = n265 -const n266 = t([[13, 37],[14, 37],[15, 37],[16, 37],[17, 37],[19, 0],[20, 0],[21, 0],[22, 0],[24, 37],[25, 42],[26, 42],[27, 42],[28, 42]]) - -export const dark_yellow_dim_TooltipContent = n266 -const n267 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 46],[19, 38],[20, 38],[21, 38],[22, 38],[24, 0],[25, 42],[26, 42],[27, 42],[28, 42]]) - -export const dark_yellow_dim_SliderTrackActive = n267 -const n268 = t([[13, 37],[14, 37],[15, 37],[16, 37],[17, 38],[19, 0],[20, 0],[21, 0],[22, 0],[24, 38],[25, 19],[26, 19],[27, 19],[28, 43]]) - -export const dark_yellow_dim_TextArea = n268 -const n269 = t([[13, 40],[14, 40],[15, 40],[16, 40],[17, 41],[19, 45],[20, 45],[21, 45],[22, 45],[24, 40],[25, 45],[26, 45],[27, 45],[28, 45]]) - -export const dark_yellow_dim_Separator = n269 -const n270 = t([[13, 24],[14, 10],[15, 24],[16, 10],[17, 5],[19, 23],[20, 5],[21, 23],[22, 5],[24, 24],[25, 47],[26, 47],[27, 47],[28, 47]]) - -export const dark_green_alt1_Button = n270 -export const dark_green_active_SliderTrackActive = n270 -const n271 = t([[13, 5],[14, 47],[15, 5],[16, 47],[17, 24],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_green_alt1_TooltipContent = n271 -const n272 = t([[13, 0],[14, 23],[15, 0],[16, 23],[17, 24],[19, 24],[20, 48],[21, 24],[22, 48],[24, 0],[25, 48],[26, 48],[27, 48],[28, 48]]) - -export const dark_green_alt1_SliderTrackActive = n272 -export const dark_green_alt2_SliderThumb = n272 -export const dark_green_alt2_Tooltip = n272 -export const dark_green_alt2_ProgressIndicator = n272 -const n273 = t([[13, 47],[14, 24],[15, 47],[16, 24],[17, 48],[19, 0],[20, 0],[21, 0],[22, 0],[24, 24],[25, 23],[26, 23],[27, 23],[28, 24]]) - -export const dark_green_alt1_TextArea = n273 -const n274 = t([[13, 23],[14, 5],[15, 23],[16, 5],[17, 5],[19, 24],[20, 10],[21, 24],[22, 10],[24, 23],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_green_alt1_Separator = n274 -export const dark_green_alt2_Checkbox = n274 -export const dark_green_alt2_Switch = n274 -export const dark_green_alt2_SliderTrack = n274 -export const dark_green_active_Card = n274 -export const dark_green_active_DrawerFrame = n274 -export const dark_green_active_Progress = n274 -export const dark_green_active_TooltipArrow = n274 -export const dark_green_active_Input = n274 -export const dark_green_active_Surface = n274 -const n275 = t([[13, 10],[14, 5],[15, 10],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 10],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_green_alt2_Button = n275 -const n276 = t([[13, 24],[14, 48],[15, 24],[16, 48],[17, 23],[19, 0],[20, 23],[21, 0],[22, 23],[24, 48],[25, 0],[26, 0],[27, 0],[28, 23]]) - -export const dark_green_alt2_TextArea = n276 -const n277 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 10],[19, 10],[20, 5],[21, 10],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_green_alt2_Separator = n277 -export const dark_green_active_Checkbox = n277 -export const dark_green_active_Switch = n277 -export const dark_green_active_SliderTrack = n277 -const n278 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 23],[19, 5],[20, 10],[21, 5],[22, 10],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_green_active_Button = n278 -const n279 = t([[13, 48],[14, 23],[15, 48],[16, 23],[17, 5],[19, 23],[20, 24],[21, 23],[22, 24],[24, 23],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_green_active_TextArea = n279 -const n280 = t([[13, 5],[14, 10],[15, 5],[16, 10],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_green_active_Separator = n280 -const n281 = t([[13, 47],[14, 47],[15, 47],[16, 47],[17, 24],[19, 0],[20, 0],[21, 0],[22, 0],[24, 47],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_green_dim_Card = n281 -export const dark_green_dim_DrawerFrame = n281 -export const dark_green_dim_Progress = n281 -export const dark_green_dim_TooltipArrow = n281 -export const dark_green_dim_Input = n281 -export const dark_green_dim_Surface = n281 -const n282 = t([[13, 23],[14, 23],[15, 23],[16, 23],[17, 24],[19, 48],[20, 48],[21, 48],[22, 48],[24, 23],[25, 48],[26, 48],[27, 48],[28, 48]]) - -export const dark_green_dim_Button = n282 -const n283 = t([[13, 24],[14, 24],[15, 24],[16, 24],[17, 48],[19, 0],[20, 0],[21, 0],[22, 0],[24, 24],[25, 24],[26, 24],[27, 24],[28, 24]]) - -export const dark_green_dim_Checkbox = n283 -export const dark_green_dim_Switch = n283 -export const dark_green_dim_SliderTrack = n283 -const n284 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 24],[26, 24],[27, 24],[28, 24]]) - -export const dark_green_dim_SwitchThumb = n284 -const n285 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 47],[20, 47],[21, 47],[22, 47],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_green_dim_SliderTrackActive = n285 -const n286 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 47],[19, 0],[20, 0],[21, 0],[22, 0],[24, 47],[25, 10],[26, 10],[27, 10],[28, 5]]) - -export const dark_green_dim_TextArea = n286 -const n287 = t([[13, 48],[14, 48],[15, 48],[16, 48],[17, 23],[19, 23],[20, 23],[21, 23],[22, 23],[24, 48],[25, 23],[26, 23],[27, 23],[28, 23]]) - -export const dark_green_dim_Separator = n287 -const n288 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 49],[20, 49],[21, 49],[22, 49],[24, 0],[25, 55],[26, 55],[27, 55],[28, 55]]) - -export const dark_red_alt1_SwitchThumb = n288 -export const dark_red_dim_SliderThumb = n288 -export const dark_red_dim_Tooltip = n288 -export const dark_red_dim_ProgressIndicator = n288 -const n289 = t([[13, 49],[14, 50],[15, 49],[16, 50],[17, 51],[19, 0],[20, 0],[21, 0],[22, 0],[24, 49],[25, 33],[26, 33],[27, 33],[28, 33]]) - -export const dark_red_alt1_TooltipContent = n289 -const n290 = t([[13, 58],[14, 57],[15, 58],[16, 57],[17, 56],[19, 51],[20, 52],[21, 51],[22, 52],[24, 58],[25, 52],[26, 52],[27, 52],[28, 52]]) - -export const dark_red_alt1_SliderTrackActive = n290 -export const dark_red_alt2_SliderThumb = n290 -export const dark_red_alt2_Tooltip = n290 -export const dark_red_alt2_ProgressIndicator = n290 -const n291 = t([[13, 50],[14, 51],[15, 50],[16, 51],[17, 52],[19, 0],[20, 58],[21, 0],[22, 58],[24, 51],[25, 57],[26, 57],[27, 57],[28, 56]]) - -export const dark_red_alt1_TextArea = n291 -const n292 = t([[13, 53],[14, 54],[15, 53],[16, 54],[17, 55],[19, 56],[20, 33],[21, 56],[22, 33],[24, 53],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_red_alt1_Separator = n292 -export const dark_red_alt2_Checkbox = n292 -export const dark_red_alt2_Switch = n292 -export const dark_red_alt2_SliderTrack = n292 -export const dark_red_active_Card = n292 -export const dark_red_active_Button = n292 -export const dark_red_active_DrawerFrame = n292 -export const dark_red_active_Progress = n292 -export const dark_red_active_TooltipArrow = n292 -export const dark_red_active_Input = n292 -export const dark_red_active_Surface = n292 -const n293 = t([[13, 57],[14, 56],[15, 57],[16, 56],[17, 33],[19, 52],[20, 53],[21, 52],[22, 53],[24, 57],[25, 51],[26, 51],[27, 51],[28, 51]]) - -export const dark_red_alt2_SliderTrackActive = n293 -export const dark_red_active_SliderThumb = n293 -export const dark_red_active_Tooltip = n293 -export const dark_red_active_ProgressIndicator = n293 -const n294 = t([[13, 51],[14, 52],[15, 51],[16, 52],[17, 53],[19, 58],[20, 57],[21, 58],[22, 57],[24, 52],[25, 58],[26, 58],[27, 58],[28, 57]]) - -export const dark_red_alt2_TextArea = n294 -const n295 = t([[13, 54],[14, 55],[15, 54],[16, 55],[17, 33],[19, 33],[20, 55],[21, 33],[22, 55],[24, 54],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_red_alt2_Separator = n295 -export const dark_red_active_Checkbox = n295 -export const dark_red_active_Switch = n295 -export const dark_red_active_SliderTrack = n295 -const n296 = t([[13, 56],[14, 33],[15, 56],[16, 33],[17, 55],[19, 53],[20, 54],[21, 53],[22, 54],[24, 56],[25, 50],[26, 50],[27, 50],[28, 50]]) - -export const dark_red_active_SliderTrackActive = n296 -const n297 = t([[13, 52],[14, 53],[15, 52],[16, 53],[17, 54],[19, 57],[20, 56],[21, 57],[22, 56],[24, 53],[25, 0],[26, 0],[27, 0],[28, 58]]) - -export const dark_red_active_TextArea = n297 -const n298 = t([[13, 55],[14, 33],[15, 55],[16, 33],[17, 56],[19, 55],[20, 54],[21, 55],[22, 54],[24, 55],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_red_active_Separator = n298 -const n299 = t([[13, 50],[14, 50],[15, 50],[16, 50],[17, 51],[19, 0],[20, 0],[21, 0],[22, 0],[24, 50],[25, 33],[26, 33],[27, 33],[28, 33]]) - -export const dark_red_dim_Card = n299 -export const dark_red_dim_Button = n299 -export const dark_red_dim_DrawerFrame = n299 -export const dark_red_dim_Progress = n299 -export const dark_red_dim_TooltipArrow = n299 -export const dark_red_dim_Input = n299 -export const dark_red_dim_Surface = n299 -const n300 = t([[13, 51],[14, 51],[15, 51],[16, 51],[17, 52],[19, 58],[20, 58],[21, 58],[22, 58],[24, 51],[25, 56],[26, 56],[27, 56],[28, 56]]) - -export const dark_red_dim_Checkbox = n300 -export const dark_red_dim_Switch = n300 -export const dark_red_dim_SliderTrack = n300 -const n301 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 49],[20, 49],[21, 49],[22, 49],[24, 0],[25, 56],[26, 56],[27, 56],[28, 56]]) - -export const dark_red_dim_SwitchThumb = n301 -const n302 = t([[13, 49],[14, 49],[15, 49],[16, 49],[17, 49],[19, 0],[20, 0],[21, 0],[22, 0],[24, 49],[25, 54],[26, 54],[27, 54],[28, 54]]) - -export const dark_red_dim_TooltipContent = n302 -const n303 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 58],[19, 50],[20, 50],[21, 50],[22, 50],[24, 0],[25, 54],[26, 54],[27, 54],[28, 54]]) - -export const dark_red_dim_SliderTrackActive = n303 -const n304 = t([[13, 49],[14, 49],[15, 49],[16, 49],[17, 50],[19, 0],[20, 0],[21, 0],[22, 0],[24, 50],[25, 33],[26, 33],[27, 33],[28, 55]]) - -export const dark_red_dim_TextArea = n304 -const n305 = t([[13, 52],[14, 52],[15, 52],[16, 52],[17, 53],[19, 57],[20, 57],[21, 57],[22, 57],[24, 52],[25, 57],[26, 57],[27, 57],[28, 57]]) - -export const dark_red_dim_Separator = n305 -const n306 = t([[15, 0],[16, 1],[17, 2],[19, 0],[20, 5],[21, 0],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_alt1_ListItem = n306 -export const light_ghost_alt1_TooltipContent = n306 -const n307 = t([[15, 4],[16, 2],[17, 0],[19, 4],[20, 3],[21, 4],[22, 3],[24, 4],[25, 3],[26, 3],[27, 3],[28, 3]]) - -export const light_ghost_alt1_SliderTrackActive = n307 -export const light_ghost_alt2_SliderThumb = n307 -export const light_ghost_alt2_Tooltip = n307 -export const light_ghost_alt2_ProgressIndicator = n307 -const n308 = t([[15, 0],[16, 1],[17, 2],[19, 0],[20, 5],[21, 0],[22, 5],[24, 2],[25, 2],[26, 2],[27, 2],[28, 0]]) - -export const light_ghost_alt1_TextArea = n308 -const n309 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 0],[21, 0],[22, 0],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const light_ghost_alt1_Separator = n309 -export const light_ghost_alt2_Checkbox = n309 -export const light_ghost_alt2_Switch = n309 -export const light_ghost_alt2_SliderTrack = n309 -export const light_ghost_alt2_Separator = n309 -export const light_ghost_active_Card = n309 -export const light_ghost_active_Button = n309 -export const light_ghost_active_Checkbox = n309 -export const light_ghost_active_Switch = n309 -export const light_ghost_active_DrawerFrame = n309 -export const light_ghost_active_Progress = n309 -export const light_ghost_active_TooltipArrow = n309 -export const light_ghost_active_SliderTrack = n309 -export const light_ghost_active_Input = n309 -export const light_ghost_active_Separator = n309 -export const light_ghost_active_Surface = n309 -const n310 = t([[15, 2],[16, 0],[17, 0],[19, 2],[20, 0],[21, 2],[22, 0],[24, 2],[25, 2],[26, 2],[27, 2],[28, 2]]) - -export const light_ghost_alt2_SliderTrackActive = n310 -export const light_ghost_active_SliderThumb = n310 -export const light_ghost_active_Tooltip = n310 -export const light_ghost_active_ProgressIndicator = n310 -const n311 = t([[15, 1],[16, 2],[17, 3],[19, 1],[20, 4],[21, 1],[22, 4],[24, 3],[25, 4],[26, 4],[27, 4],[28, 0]]) - -export const light_ghost_alt2_TextArea = n311 -const n312 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 0],[21, 0],[22, 0],[24, 0],[25, 1],[26, 1],[27, 1],[28, 1]]) - -export const light_ghost_active_SliderTrackActive = n312 -const n313 = t([[15, 2],[16, 3],[17, 0],[19, 2],[20, 2],[21, 2],[22, 2],[24, 0],[25, 5],[26, 5],[27, 5],[28, 2]]) - -export const light_ghost_active_TextArea = n313 -const n314 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 5],[21, 0],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_dim_ListItem = n314 -export const light_ghost_dim_TooltipContent = n314 -const n315 = t([[15, 1],[16, 1],[17, 2],[19, 1],[20, 5],[21, 1],[22, 5],[24, 1],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_dim_Card = n315 -export const light_ghost_dim_Button = n315 -export const light_ghost_dim_DrawerFrame = n315 -export const light_ghost_dim_Progress = n315 -export const light_ghost_dim_TooltipArrow = n315 -export const light_ghost_dim_Input = n315 -export const light_ghost_dim_Surface = n315 -const n316 = t([[15, 2],[16, 2],[17, 3],[19, 2],[20, 4],[21, 2],[22, 4],[24, 2],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_dim_Checkbox = n316 -export const light_ghost_dim_Switch = n316 -export const light_ghost_dim_SliderTrack = n316 -const n317 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 5],[21, 0],[22, 5],[24, 1],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const light_ghost_dim_TextArea = n317 -const n318 = t([[15, 3],[16, 3],[17, 0],[19, 3],[20, 2],[21, 3],[22, 2],[24, 3],[25, 2],[26, 2],[27, 2],[28, 2]]) - -export const light_ghost_dim_Separator = n318 -const n319 = t([[15, 5],[16, 9],[17, 10],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ghost_alt1_TooltipContent = n319 -const n320 = t([[15, 3],[16, 4],[17, 5],[19, 3],[20, 11],[21, 3],[22, 11],[24, 3],[25, 11],[26, 11],[27, 11],[28, 11]]) - -export const dark_ghost_alt1_SliderTrackActive = n320 -export const dark_ghost_alt2_SliderThumb = n320 -export const dark_ghost_alt2_Tooltip = n320 -export const dark_ghost_alt2_ProgressIndicator = n320 -const n321 = t([[15, 9],[16, 10],[17, 11],[19, 9],[20, 3],[21, 9],[22, 3],[24, 10],[25, 4],[26, 4],[27, 4],[28, 5]]) - -export const dark_ghost_alt1_TextArea = n321 -const n322 = t([[15, 4],[16, 5],[17, 5],[19, 4],[20, 5],[21, 4],[22, 5],[24, 4],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_ghost_alt1_Separator = n322 -export const dark_ghost_alt2_Checkbox = n322 -export const dark_ghost_alt2_Switch = n322 -export const dark_ghost_alt2_SliderTrack = n322 -export const dark_ghost_active_Card = n322 -export const dark_ghost_active_Button = n322 -export const dark_ghost_active_DrawerFrame = n322 -export const dark_ghost_active_Progress = n322 -export const dark_ghost_active_TooltipArrow = n322 -export const dark_ghost_active_Input = n322 -export const dark_ghost_active_Surface = n322 -const n323 = t([[15, 4],[16, 5],[17, 5],[19, 4],[20, 4],[21, 4],[22, 4],[24, 4],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_ghost_alt2_SliderTrackActive = n323 -export const dark_ghost_active_SliderThumb = n323 -export const dark_ghost_active_Tooltip = n323 -export const dark_ghost_active_ProgressIndicator = n323 -const n324 = t([[15, 10],[16, 11],[17, 4],[19, 10],[20, 4],[21, 10],[22, 4],[24, 11],[25, 3],[26, 3],[27, 3],[28, 4]]) - -export const dark_ghost_alt2_TextArea = n324 -const n325 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_ghost_alt2_Separator = n325 -export const dark_ghost_active_Checkbox = n325 -export const dark_ghost_active_Switch = n325 -export const dark_ghost_active_SliderTrack = n325 -export const dark_ghost_active_Separator = n325 -const n326 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 9],[26, 9],[27, 9],[28, 9]]) - -export const dark_ghost_active_SliderTrackActive = n326 -const n327 = t([[15, 11],[16, 4],[17, 5],[19, 11],[20, 5],[21, 11],[22, 5],[24, 4],[25, 0],[26, 0],[27, 0],[28, 3]]) - -export const dark_ghost_active_TextArea = n327 -const n328 = t([[15, 9],[16, 9],[17, 10],[19, 9],[20, 0],[21, 9],[22, 0],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ghost_dim_Card = n328 -export const dark_ghost_dim_Button = n328 -export const dark_ghost_dim_DrawerFrame = n328 -export const dark_ghost_dim_Progress = n328 -export const dark_ghost_dim_TooltipArrow = n328 -export const dark_ghost_dim_Input = n328 -export const dark_ghost_dim_Surface = n328 -const n329 = t([[15, 10],[16, 10],[17, 11],[19, 10],[20, 3],[21, 10],[22, 3],[24, 10],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ghost_dim_Checkbox = n329 -export const dark_ghost_dim_Switch = n329 -export const dark_ghost_dim_SliderTrack = n329 -const n330 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ghost_dim_TooltipContent = n330 -export const dark_green_ghost_dim_TooltipContent = n330 -const n331 = t([[15, 5],[16, 5],[17, 9],[19, 5],[20, 0],[21, 5],[22, 0],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_ghost_dim_TextArea = n331 -const n332 = t([[15, 11],[16, 11],[17, 4],[19, 11],[20, 4],[21, 11],[22, 4],[24, 11],[25, 4],[26, 4],[27, 4],[28, 4]]) - -export const dark_ghost_dim_Separator = n332 -const n333 = t([[15, 12],[16, 13],[17, 14],[19, 16],[20, 5],[21, 12],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 19]]) - -export const light_yellow_ghost_alt1_ListItem = n333 -export const light_yellow_ghost_alt1_TooltipContent = n333 -const n334 = t([[15, 5],[16, 5],[17, 5],[19, 21],[20, 12],[21, 5],[22, 12],[24, 21],[25, 20],[26, 21],[27, 21],[28, 18]]) - -export const light_yellow_ghost_alt1_SwitchThumb = n334 -export const light_yellow_ghost_dim_SliderThumb = n334 -export const light_yellow_ghost_dim_Tooltip = n334 -export const light_yellow_ghost_dim_ProgressIndicator = n334 -const n335 = t([[15, 22],[16, 21],[17, 20],[19, 18],[20, 15],[21, 22],[22, 15],[24, 18],[25, 17],[26, 18],[27, 18],[28, 15]]) - -export const light_yellow_ghost_alt1_SliderTrackActive = n335 -export const light_yellow_ghost_alt2_SliderThumb = n335 -export const light_yellow_ghost_alt2_Tooltip = n335 -export const light_yellow_ghost_alt2_ProgressIndicator = n335 -const n336 = t([[15, 12],[16, 13],[17, 14],[19, 16],[20, 5],[21, 12],[22, 5],[24, 18],[25, 19],[26, 18],[27, 18],[28, 19]]) - -export const light_yellow_ghost_alt1_TextArea = n336 -const n337 = t([[15, 16],[16, 17],[17, 18],[19, 20],[20, 19],[21, 16],[22, 19],[24, 20],[25, 21],[26, 20],[27, 20],[28, 5]]) - -export const light_yellow_ghost_alt1_Separator = n337 -export const light_yellow_ghost_alt2_Checkbox = n337 -export const light_yellow_ghost_alt2_Switch = n337 -export const light_yellow_ghost_alt2_SliderTrack = n337 -export const light_yellow_ghost_active_Card = n337 -export const light_yellow_ghost_active_Button = n337 -export const light_yellow_ghost_active_DrawerFrame = n337 -export const light_yellow_ghost_active_Progress = n337 -export const light_yellow_ghost_active_TooltipArrow = n337 -export const light_yellow_ghost_active_Input = n337 -export const light_yellow_ghost_active_Surface = n337 -const n338 = t([[15, 21],[16, 20],[17, 19],[19, 17],[20, 16],[21, 21],[22, 16],[24, 17],[25, 16],[26, 17],[27, 17],[28, 14]]) - -export const light_yellow_ghost_alt2_SliderTrackActive = n338 -export const light_yellow_ghost_active_SliderThumb = n338 -export const light_yellow_ghost_active_Tooltip = n338 -export const light_yellow_ghost_active_ProgressIndicator = n338 -const n339 = t([[15, 13],[16, 14],[17, 15],[19, 17],[20, 22],[21, 13],[22, 22],[24, 19],[25, 20],[26, 19],[27, 19],[28, 20]]) - -export const light_yellow_ghost_alt2_TextArea = n339 -const n340 = t([[15, 17],[16, 18],[17, 19],[19, 21],[20, 18],[21, 17],[22, 18],[24, 21],[25, 22],[26, 21],[27, 21],[28, 5]]) - -export const light_yellow_ghost_alt2_Separator = n340 -export const light_yellow_ghost_active_Checkbox = n340 -export const light_yellow_ghost_active_Switch = n340 -export const light_yellow_ghost_active_SliderTrack = n340 -const n341 = t([[15, 20],[16, 19],[17, 18],[19, 16],[20, 17],[21, 20],[22, 17],[24, 16],[25, 15],[26, 16],[27, 16],[28, 13]]) - -export const light_yellow_ghost_active_SliderTrackActive = n341 -const n342 = t([[15, 14],[16, 15],[17, 16],[19, 18],[20, 21],[21, 14],[22, 21],[24, 20],[25, 21],[26, 20],[27, 20],[28, 21]]) - -export const light_yellow_ghost_active_TextArea = n342 -const n343 = t([[15, 18],[16, 19],[17, 20],[19, 22],[20, 17],[21, 18],[22, 17],[24, 22],[25, 5],[26, 22],[27, 22],[28, 5]]) - -export const light_yellow_ghost_active_Separator = n343 -const n344 = t([[15, 12],[16, 12],[17, 12],[19, 14],[20, 5],[21, 12],[22, 5],[24, 14],[25, 15],[26, 14],[27, 14],[28, 17]]) - -export const light_yellow_ghost_dim_ListItem = n344 -export const light_yellow_ghost_dim_TooltipContent = n344 -const n345 = t([[15, 13],[16, 13],[17, 14],[19, 16],[20, 5],[21, 13],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 19]]) - -export const light_yellow_ghost_dim_Card = n345 -export const light_yellow_ghost_dim_Button = n345 -export const light_yellow_ghost_dim_DrawerFrame = n345 -export const light_yellow_ghost_dim_Progress = n345 -export const light_yellow_ghost_dim_TooltipArrow = n345 -export const light_yellow_ghost_dim_Input = n345 -export const light_yellow_ghost_dim_Surface = n345 -const n346 = t([[15, 14],[16, 14],[17, 15],[19, 17],[20, 22],[21, 14],[22, 22],[24, 17],[25, 18],[26, 17],[27, 17],[28, 20]]) - -export const light_yellow_ghost_dim_Checkbox = n346 -export const light_yellow_ghost_dim_Switch = n346 -export const light_yellow_ghost_dim_SliderTrack = n346 -const n347 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 12],[21, 5],[22, 12],[24, 5],[25, 22],[26, 5],[27, 5],[28, 20]]) - -export const light_yellow_ghost_dim_SwitchThumb = n347 -const n348 = t([[15, 12],[16, 12],[17, 12],[19, 14],[20, 5],[21, 12],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 17]]) - -export const light_yellow_ghost_dim_TextArea = n348 -const n349 = t([[15, 15],[16, 15],[17, 16],[19, 18],[20, 21],[21, 15],[22, 21],[24, 18],[25, 19],[26, 18],[27, 18],[28, 21]]) - -export const light_yellow_ghost_dim_Separator = n349 -const n350 = t([[15, 0],[16, 23],[17, 24],[19, 23],[20, 5],[21, 0],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) - -export const light_green_ghost_alt1_ListItem = n350 -export const light_green_ghost_alt1_TooltipContent = n350 -const n351 = t([[15, 5],[16, 5],[17, 5],[19, 25],[20, 0],[21, 5],[22, 0],[24, 25],[25, 24],[26, 25],[27, 25],[28, 0]]) - -export const light_green_ghost_alt1_SwitchThumb = n351 -export const light_green_ghost_dim_SliderThumb = n351 -export const light_green_ghost_dim_Tooltip = n351 -export const light_green_ghost_dim_ProgressIndicator = n351 -const n352 = t([[15, 5],[16, 25],[17, 24],[19, 0],[20, 25],[21, 5],[22, 25],[24, 0],[25, 0],[26, 0],[27, 0],[28, 25]]) - -export const light_green_ghost_alt1_SliderTrackActive = n352 -export const light_green_ghost_alt2_SliderThumb = n352 -export const light_green_ghost_alt2_Tooltip = n352 -export const light_green_ghost_alt2_ProgressIndicator = n352 -const n353 = t([[15, 0],[16, 23],[17, 24],[19, 23],[20, 5],[21, 0],[22, 5],[24, 0],[25, 23],[26, 0],[27, 0],[28, 23]]) - -export const light_green_ghost_alt1_TextArea = n353 -const n354 = t([[15, 23],[16, 0],[17, 0],[19, 24],[20, 23],[21, 23],[22, 23],[24, 24],[25, 25],[26, 24],[27, 24],[28, 5]]) - -export const light_green_ghost_alt1_Separator = n354 -export const light_green_ghost_alt2_Checkbox = n354 -export const light_green_ghost_alt2_Switch = n354 -export const light_green_ghost_alt2_SliderTrack = n354 -export const light_green_ghost_active_Card = n354 -export const light_green_ghost_active_Button = n354 -export const light_green_ghost_active_DrawerFrame = n354 -export const light_green_ghost_active_Progress = n354 -export const light_green_ghost_active_TooltipArrow = n354 -export const light_green_ghost_active_Input = n354 -export const light_green_ghost_active_Surface = n354 -const n355 = t([[15, 25],[16, 24],[17, 23],[19, 0],[20, 23],[21, 25],[22, 23],[24, 0],[25, 23],[26, 0],[27, 0],[28, 24]]) - -export const light_green_ghost_alt2_SliderTrackActive = n355 -export const light_green_ghost_active_SliderThumb = n355 -export const light_green_ghost_active_Tooltip = n355 -export const light_green_ghost_active_ProgressIndicator = n355 -const n356 = t([[15, 23],[16, 24],[17, 25],[19, 0],[20, 5],[21, 23],[22, 5],[24, 23],[25, 24],[26, 23],[27, 23],[28, 24]]) - -export const light_green_ghost_alt2_TextArea = n356 -const n357 = t([[15, 0],[16, 0],[17, 23],[19, 25],[20, 0],[21, 0],[22, 0],[24, 25],[25, 5],[26, 25],[27, 25],[28, 5]]) - -export const light_green_ghost_alt2_Separator = n357 -export const light_green_ghost_active_Checkbox = n357 -export const light_green_ghost_active_Switch = n357 -export const light_green_ghost_active_SliderTrack = n357 -const n358 = t([[15, 24],[16, 23],[17, 0],[19, 23],[20, 0],[21, 24],[22, 0],[24, 23],[25, 25],[26, 23],[27, 23],[28, 23]]) - -export const light_green_ghost_active_SliderTrackActive = n358 -const n359 = t([[15, 24],[16, 25],[17, 23],[19, 0],[20, 25],[21, 24],[22, 25],[24, 24],[25, 25],[26, 24],[27, 24],[28, 25]]) - -export const light_green_ghost_active_TextArea = n359 -const n360 = t([[15, 0],[16, 23],[17, 24],[19, 5],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const light_green_ghost_active_Separator = n360 -const n361 = t([[15, 0],[16, 0],[17, 0],[19, 24],[20, 5],[21, 0],[22, 5],[24, 24],[25, 25],[26, 24],[27, 24],[28, 0]]) - -export const light_green_ghost_dim_ListItem = n361 -export const light_green_ghost_dim_TooltipContent = n361 -const n362 = t([[15, 23],[16, 23],[17, 24],[19, 23],[20, 5],[21, 23],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) - -export const light_green_ghost_dim_Card = n362 -export const light_green_ghost_dim_Button = n362 -export const light_green_ghost_dim_DrawerFrame = n362 -export const light_green_ghost_dim_Progress = n362 -export const light_green_ghost_dim_TooltipArrow = n362 -export const light_green_ghost_dim_Input = n362 -export const light_green_ghost_dim_Surface = n362 -const n363 = t([[15, 24],[16, 24],[17, 25],[19, 0],[20, 5],[21, 24],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 24]]) - -export const light_green_ghost_dim_Checkbox = n363 -export const light_green_ghost_dim_Switch = n363 -export const light_green_ghost_dim_SliderTrack = n363 -const n364 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 24]]) - -export const light_green_ghost_dim_SwitchThumb = n364 -const n365 = t([[15, 0],[16, 0],[17, 0],[19, 24],[20, 5],[21, 0],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 0]]) - -export const light_green_ghost_dim_TextArea = n365 -const n366 = t([[15, 25],[16, 25],[17, 23],[19, 0],[20, 25],[21, 25],[22, 25],[24, 0],[25, 23],[26, 0],[27, 0],[28, 25]]) - -export const light_green_ghost_dim_Separator = n366 -const n367 = t([[15, 26],[16, 27],[17, 28],[19, 30],[20, 5],[21, 26],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 33]]) - -export const light_red_ghost_alt1_ListItem = n367 -export const light_red_ghost_alt1_TooltipContent = n367 -const n368 = t([[15, 5],[16, 5],[17, 5],[19, 35],[20, 26],[21, 5],[22, 26],[24, 35],[25, 34],[26, 35],[27, 35],[28, 32]]) - -export const light_red_ghost_alt1_SwitchThumb = n368 -export const light_red_ghost_dim_SliderThumb = n368 -export const light_red_ghost_dim_Tooltip = n368 -export const light_red_ghost_dim_ProgressIndicator = n368 -const n369 = t([[15, 36],[16, 35],[17, 34],[19, 32],[20, 29],[21, 36],[22, 29],[24, 32],[25, 31],[26, 32],[27, 32],[28, 29]]) - -export const light_red_ghost_alt1_SliderTrackActive = n369 -export const light_red_ghost_alt2_SliderThumb = n369 -export const light_red_ghost_alt2_Tooltip = n369 -export const light_red_ghost_alt2_ProgressIndicator = n369 -const n370 = t([[15, 26],[16, 27],[17, 28],[19, 30],[20, 5],[21, 26],[22, 5],[24, 32],[25, 33],[26, 32],[27, 32],[28, 33]]) - -export const light_red_ghost_alt1_TextArea = n370 -const n371 = t([[15, 30],[16, 31],[17, 32],[19, 34],[20, 33],[21, 30],[22, 33],[24, 34],[25, 35],[26, 34],[27, 34],[28, 5]]) - -export const light_red_ghost_alt1_Separator = n371 -export const light_red_ghost_alt2_Checkbox = n371 -export const light_red_ghost_alt2_Switch = n371 -export const light_red_ghost_alt2_SliderTrack = n371 -export const light_red_ghost_active_Card = n371 -export const light_red_ghost_active_Button = n371 -export const light_red_ghost_active_DrawerFrame = n371 -export const light_red_ghost_active_Progress = n371 -export const light_red_ghost_active_TooltipArrow = n371 -export const light_red_ghost_active_Input = n371 -export const light_red_ghost_active_Surface = n371 -const n372 = t([[15, 35],[16, 34],[17, 33],[19, 31],[20, 30],[21, 35],[22, 30],[24, 31],[25, 30],[26, 31],[27, 31],[28, 28]]) - -export const light_red_ghost_alt2_SliderTrackActive = n372 -export const light_red_ghost_active_SliderThumb = n372 -export const light_red_ghost_active_Tooltip = n372 -export const light_red_ghost_active_ProgressIndicator = n372 -const n373 = t([[15, 27],[16, 28],[17, 29],[19, 31],[20, 36],[21, 27],[22, 36],[24, 33],[25, 34],[26, 33],[27, 33],[28, 34]]) - -export const light_red_ghost_alt2_TextArea = n373 -const n374 = t([[15, 31],[16, 32],[17, 33],[19, 35],[20, 32],[21, 31],[22, 32],[24, 35],[25, 36],[26, 35],[27, 35],[28, 5]]) - -export const light_red_ghost_alt2_Separator = n374 -export const light_red_ghost_active_Checkbox = n374 -export const light_red_ghost_active_Switch = n374 -export const light_red_ghost_active_SliderTrack = n374 -const n375 = t([[15, 34],[16, 33],[17, 32],[19, 30],[20, 31],[21, 34],[22, 31],[24, 30],[25, 29],[26, 30],[27, 30],[28, 27]]) - -export const light_red_ghost_active_SliderTrackActive = n375 -const n376 = t([[15, 28],[16, 29],[17, 30],[19, 32],[20, 35],[21, 28],[22, 35],[24, 34],[25, 35],[26, 34],[27, 34],[28, 35]]) - -export const light_red_ghost_active_TextArea = n376 -const n377 = t([[15, 32],[16, 33],[17, 34],[19, 36],[20, 31],[21, 32],[22, 31],[24, 36],[25, 5],[26, 36],[27, 36],[28, 5]]) - -export const light_red_ghost_active_Separator = n377 -const n378 = t([[15, 26],[16, 26],[17, 26],[19, 28],[20, 5],[21, 26],[22, 5],[24, 28],[25, 29],[26, 28],[27, 28],[28, 31]]) - -export const light_red_ghost_dim_ListItem = n378 -export const light_red_ghost_dim_TooltipContent = n378 -const n379 = t([[15, 27],[16, 27],[17, 28],[19, 30],[20, 5],[21, 27],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 33]]) - -export const light_red_ghost_dim_Card = n379 -export const light_red_ghost_dim_Button = n379 -export const light_red_ghost_dim_DrawerFrame = n379 -export const light_red_ghost_dim_Progress = n379 -export const light_red_ghost_dim_TooltipArrow = n379 -export const light_red_ghost_dim_Input = n379 -export const light_red_ghost_dim_Surface = n379 -const n380 = t([[15, 28],[16, 28],[17, 29],[19, 31],[20, 36],[21, 28],[22, 36],[24, 31],[25, 32],[26, 31],[27, 31],[28, 34]]) - -export const light_red_ghost_dim_Checkbox = n380 -export const light_red_ghost_dim_Switch = n380 -export const light_red_ghost_dim_SliderTrack = n380 -const n381 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 26],[21, 5],[22, 26],[24, 5],[25, 36],[26, 5],[27, 5],[28, 34]]) - -export const light_red_ghost_dim_SwitchThumb = n381 -const n382 = t([[15, 26],[16, 26],[17, 26],[19, 28],[20, 5],[21, 26],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 31]]) - -export const light_red_ghost_dim_TextArea = n382 -const n383 = t([[15, 29],[16, 29],[17, 30],[19, 32],[20, 35],[21, 29],[22, 35],[24, 32],[25, 33],[26, 32],[27, 32],[28, 35]]) - -export const light_red_ghost_dim_Separator = n383 -const n384 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 37],[21, 0],[22, 37],[24, 0],[25, 43],[26, 43],[27, 43],[28, 43]]) - -export const dark_yellow_ghost_alt1_SwitchThumb = n384 -export const dark_yellow_ghost_dim_SliderThumb = n384 -export const dark_yellow_ghost_dim_Tooltip = n384 -export const dark_yellow_ghost_dim_ProgressIndicator = n384 -const n385 = t([[15, 37],[16, 38],[17, 39],[19, 37],[20, 0],[21, 37],[22, 0],[24, 37],[25, 19],[26, 19],[27, 19],[28, 19]]) - -export const dark_yellow_ghost_alt1_TooltipContent = n385 -const n386 = t([[15, 46],[16, 45],[17, 44],[19, 46],[20, 40],[21, 46],[22, 40],[24, 46],[25, 40],[26, 40],[27, 40],[28, 40]]) - -export const dark_yellow_ghost_alt1_SliderTrackActive = n386 -export const dark_yellow_ghost_alt2_SliderThumb = n386 -export const dark_yellow_ghost_alt2_Tooltip = n386 -export const dark_yellow_ghost_alt2_ProgressIndicator = n386 -const n387 = t([[15, 38],[16, 39],[17, 40],[19, 38],[20, 46],[21, 38],[22, 46],[24, 39],[25, 45],[26, 45],[27, 45],[28, 44]]) - -export const dark_yellow_ghost_alt1_TextArea = n387 -const n388 = t([[15, 41],[16, 42],[17, 43],[19, 41],[20, 19],[21, 41],[22, 19],[24, 41],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_yellow_ghost_alt1_Separator = n388 -export const dark_yellow_ghost_alt2_Checkbox = n388 -export const dark_yellow_ghost_alt2_Switch = n388 -export const dark_yellow_ghost_alt2_SliderTrack = n388 -export const dark_yellow_ghost_active_Card = n388 -export const dark_yellow_ghost_active_Button = n388 -export const dark_yellow_ghost_active_DrawerFrame = n388 -export const dark_yellow_ghost_active_Progress = n388 -export const dark_yellow_ghost_active_TooltipArrow = n388 -export const dark_yellow_ghost_active_Input = n388 -export const dark_yellow_ghost_active_Surface = n388 -const n389 = t([[15, 45],[16, 44],[17, 19],[19, 45],[20, 41],[21, 45],[22, 41],[24, 45],[25, 39],[26, 39],[27, 39],[28, 39]]) - -export const dark_yellow_ghost_alt2_SliderTrackActive = n389 -export const dark_yellow_ghost_active_SliderThumb = n389 -export const dark_yellow_ghost_active_Tooltip = n389 -export const dark_yellow_ghost_active_ProgressIndicator = n389 -const n390 = t([[15, 39],[16, 40],[17, 41],[19, 39],[20, 45],[21, 39],[22, 45],[24, 40],[25, 46],[26, 46],[27, 46],[28, 45]]) - -export const dark_yellow_ghost_alt2_TextArea = n390 -const n391 = t([[15, 42],[16, 43],[17, 19],[19, 42],[20, 43],[21, 42],[22, 43],[24, 42],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_yellow_ghost_alt2_Separator = n391 -export const dark_yellow_ghost_active_Checkbox = n391 -export const dark_yellow_ghost_active_Switch = n391 -export const dark_yellow_ghost_active_SliderTrack = n391 -const n392 = t([[15, 44],[16, 19],[17, 43],[19, 44],[20, 42],[21, 44],[22, 42],[24, 44],[25, 38],[26, 38],[27, 38],[28, 38]]) - -export const dark_yellow_ghost_active_SliderTrackActive = n392 -const n393 = t([[15, 40],[16, 41],[17, 42],[19, 40],[20, 44],[21, 40],[22, 44],[24, 41],[25, 0],[26, 0],[27, 0],[28, 46]]) - -export const dark_yellow_ghost_active_TextArea = n393 -const n394 = t([[15, 43],[16, 19],[17, 44],[19, 43],[20, 42],[21, 43],[22, 42],[24, 43],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_yellow_ghost_active_Separator = n394 -const n395 = t([[15, 38],[16, 38],[17, 39],[19, 38],[20, 0],[21, 38],[22, 0],[24, 38],[25, 19],[26, 19],[27, 19],[28, 19]]) - -export const dark_yellow_ghost_dim_Card = n395 -export const dark_yellow_ghost_dim_Button = n395 -export const dark_yellow_ghost_dim_DrawerFrame = n395 -export const dark_yellow_ghost_dim_Progress = n395 -export const dark_yellow_ghost_dim_TooltipArrow = n395 -export const dark_yellow_ghost_dim_Input = n395 -export const dark_yellow_ghost_dim_Surface = n395 -const n396 = t([[15, 39],[16, 39],[17, 40],[19, 39],[20, 46],[21, 39],[22, 46],[24, 39],[25, 44],[26, 44],[27, 44],[28, 44]]) - -export const dark_yellow_ghost_dim_Checkbox = n396 -export const dark_yellow_ghost_dim_Switch = n396 -export const dark_yellow_ghost_dim_SliderTrack = n396 -const n397 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 37],[21, 0],[22, 37],[24, 0],[25, 44],[26, 44],[27, 44],[28, 44]]) - -export const dark_yellow_ghost_dim_SwitchThumb = n397 -const n398 = t([[15, 37],[16, 37],[17, 37],[19, 37],[20, 0],[21, 37],[22, 0],[24, 37],[25, 42],[26, 42],[27, 42],[28, 42]]) - -export const dark_yellow_ghost_dim_TooltipContent = n398 -const n399 = t([[15, 37],[16, 37],[17, 38],[19, 37],[20, 0],[21, 37],[22, 0],[24, 38],[25, 19],[26, 19],[27, 19],[28, 43]]) - -export const dark_yellow_ghost_dim_TextArea = n399 -const n400 = t([[15, 40],[16, 40],[17, 41],[19, 40],[20, 45],[21, 40],[22, 45],[24, 40],[25, 45],[26, 45],[27, 45],[28, 45]]) - -export const dark_yellow_ghost_dim_Separator = n400 -const n401 = t([[15, 24],[16, 10],[17, 5],[19, 24],[20, 5],[21, 24],[22, 5],[24, 24],[25, 47],[26, 47],[27, 47],[28, 47]]) - -export const dark_green_ghost_alt1_Button = n401 -export const dark_green_ghost_active_SliderTrackActive = n401 -const n402 = t([[15, 5],[16, 47],[17, 24],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_green_ghost_alt1_TooltipContent = n402 -const n403 = t([[15, 0],[16, 23],[17, 24],[19, 0],[20, 48],[21, 0],[22, 48],[24, 0],[25, 48],[26, 48],[27, 48],[28, 48]]) - -export const dark_green_ghost_alt1_SliderTrackActive = n403 -export const dark_green_ghost_alt2_SliderThumb = n403 -export const dark_green_ghost_alt2_Tooltip = n403 -export const dark_green_ghost_alt2_ProgressIndicator = n403 -const n404 = t([[15, 47],[16, 24],[17, 48],[19, 47],[20, 0],[21, 47],[22, 0],[24, 24],[25, 23],[26, 23],[27, 23],[28, 24]]) - -export const dark_green_ghost_alt1_TextArea = n404 -const n405 = t([[15, 23],[16, 5],[17, 5],[19, 23],[20, 10],[21, 23],[22, 10],[24, 23],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_green_ghost_alt1_Separator = n405 -export const dark_green_ghost_alt2_Checkbox = n405 -export const dark_green_ghost_alt2_Switch = n405 -export const dark_green_ghost_alt2_SliderTrack = n405 -export const dark_green_ghost_active_Card = n405 -export const dark_green_ghost_active_DrawerFrame = n405 -export const dark_green_ghost_active_Progress = n405 -export const dark_green_ghost_active_TooltipArrow = n405 -export const dark_green_ghost_active_Input = n405 -export const dark_green_ghost_active_Surface = n405 -const n406 = t([[15, 10],[16, 5],[17, 5],[19, 10],[20, 5],[21, 10],[22, 5],[24, 10],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_green_ghost_alt2_Button = n406 -const n407 = t([[15, 24],[16, 48],[17, 23],[19, 24],[20, 23],[21, 24],[22, 23],[24, 48],[25, 0],[26, 0],[27, 0],[28, 23]]) - -export const dark_green_ghost_alt2_TextArea = n407 -const n408 = t([[15, 5],[16, 5],[17, 10],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_green_ghost_alt2_Separator = n408 -export const dark_green_ghost_active_Checkbox = n408 -export const dark_green_ghost_active_Switch = n408 -export const dark_green_ghost_active_SliderTrack = n408 -const n409 = t([[15, 5],[16, 5],[17, 23],[19, 5],[20, 10],[21, 5],[22, 10],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) - -export const dark_green_ghost_active_Button = n409 -const n410 = t([[15, 48],[16, 23],[17, 5],[19, 48],[20, 24],[21, 48],[22, 24],[24, 23],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_green_ghost_active_TextArea = n410 -const n411 = t([[15, 5],[16, 10],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_green_ghost_active_Separator = n411 -const n412 = t([[15, 47],[16, 47],[17, 24],[19, 47],[20, 0],[21, 47],[22, 0],[24, 47],[25, 10],[26, 10],[27, 10],[28, 10]]) - -export const dark_green_ghost_dim_Card = n412 -export const dark_green_ghost_dim_DrawerFrame = n412 -export const dark_green_ghost_dim_Progress = n412 -export const dark_green_ghost_dim_TooltipArrow = n412 -export const dark_green_ghost_dim_Input = n412 -export const dark_green_ghost_dim_Surface = n412 -const n413 = t([[15, 23],[16, 23],[17, 24],[19, 23],[20, 48],[21, 23],[22, 48],[24, 23],[25, 48],[26, 48],[27, 48],[28, 48]]) - -export const dark_green_ghost_dim_Button = n413 -const n414 = t([[15, 24],[16, 24],[17, 48],[19, 24],[20, 0],[21, 24],[22, 0],[24, 24],[25, 24],[26, 24],[27, 24],[28, 24]]) - -export const dark_green_ghost_dim_Checkbox = n414 -export const dark_green_ghost_dim_Switch = n414 -export const dark_green_ghost_dim_SliderTrack = n414 -const n415 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 5],[21, 0],[22, 5],[24, 0],[25, 24],[26, 24],[27, 24],[28, 24]]) - -export const dark_green_ghost_dim_SwitchThumb = n415 -const n416 = t([[15, 5],[16, 5],[17, 47],[19, 5],[20, 0],[21, 5],[22, 0],[24, 47],[25, 10],[26, 10],[27, 10],[28, 5]]) - -export const dark_green_ghost_dim_TextArea = n416 -const n417 = t([[15, 48],[16, 48],[17, 23],[19, 48],[20, 23],[21, 48],[22, 23],[24, 48],[25, 23],[26, 23],[27, 23],[28, 23]]) - -export const dark_green_ghost_dim_Separator = n417 -const n418 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 49],[21, 0],[22, 49],[24, 0],[25, 55],[26, 55],[27, 55],[28, 55]]) - -export const dark_red_ghost_alt1_SwitchThumb = n418 -export const dark_red_ghost_dim_SliderThumb = n418 -export const dark_red_ghost_dim_Tooltip = n418 -export const dark_red_ghost_dim_ProgressIndicator = n418 -const n419 = t([[15, 49],[16, 50],[17, 51],[19, 49],[20, 0],[21, 49],[22, 0],[24, 49],[25, 33],[26, 33],[27, 33],[28, 33]]) - -export const dark_red_ghost_alt1_TooltipContent = n419 -const n420 = t([[15, 58],[16, 57],[17, 56],[19, 58],[20, 52],[21, 58],[22, 52],[24, 58],[25, 52],[26, 52],[27, 52],[28, 52]]) - -export const dark_red_ghost_alt1_SliderTrackActive = n420 -export const dark_red_ghost_alt2_SliderThumb = n420 -export const dark_red_ghost_alt2_Tooltip = n420 -export const dark_red_ghost_alt2_ProgressIndicator = n420 -const n421 = t([[15, 50],[16, 51],[17, 52],[19, 50],[20, 58],[21, 50],[22, 58],[24, 51],[25, 57],[26, 57],[27, 57],[28, 56]]) - -export const dark_red_ghost_alt1_TextArea = n421 -const n422 = t([[15, 53],[16, 54],[17, 55],[19, 53],[20, 33],[21, 53],[22, 33],[24, 53],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_red_ghost_alt1_Separator = n422 -export const dark_red_ghost_alt2_Checkbox = n422 -export const dark_red_ghost_alt2_Switch = n422 -export const dark_red_ghost_alt2_SliderTrack = n422 -export const dark_red_ghost_active_Card = n422 -export const dark_red_ghost_active_Button = n422 -export const dark_red_ghost_active_DrawerFrame = n422 -export const dark_red_ghost_active_Progress = n422 -export const dark_red_ghost_active_TooltipArrow = n422 -export const dark_red_ghost_active_Input = n422 -export const dark_red_ghost_active_Surface = n422 -const n423 = t([[15, 57],[16, 56],[17, 33],[19, 57],[20, 53],[21, 57],[22, 53],[24, 57],[25, 51],[26, 51],[27, 51],[28, 51]]) - -export const dark_red_ghost_alt2_SliderTrackActive = n423 -export const dark_red_ghost_active_SliderThumb = n423 -export const dark_red_ghost_active_Tooltip = n423 -export const dark_red_ghost_active_ProgressIndicator = n423 -const n424 = t([[15, 51],[16, 52],[17, 53],[19, 51],[20, 57],[21, 51],[22, 57],[24, 52],[25, 58],[26, 58],[27, 58],[28, 57]]) - -export const dark_red_ghost_alt2_TextArea = n424 -const n425 = t([[15, 54],[16, 55],[17, 33],[19, 54],[20, 55],[21, 54],[22, 55],[24, 54],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_red_ghost_alt2_Separator = n425 -export const dark_red_ghost_active_Checkbox = n425 -export const dark_red_ghost_active_Switch = n425 -export const dark_red_ghost_active_SliderTrack = n425 -const n426 = t([[15, 56],[16, 33],[17, 55],[19, 56],[20, 54],[21, 56],[22, 54],[24, 56],[25, 50],[26, 50],[27, 50],[28, 50]]) - -export const dark_red_ghost_active_SliderTrackActive = n426 -const n427 = t([[15, 52],[16, 53],[17, 54],[19, 52],[20, 56],[21, 52],[22, 56],[24, 53],[25, 0],[26, 0],[27, 0],[28, 58]]) - -export const dark_red_ghost_active_TextArea = n427 -const n428 = t([[15, 55],[16, 33],[17, 56],[19, 55],[20, 54],[21, 55],[22, 54],[24, 55],[25, 0],[26, 0],[27, 0],[28, 0]]) - -export const dark_red_ghost_active_Separator = n428 -const n429 = t([[15, 50],[16, 50],[17, 51],[19, 50],[20, 0],[21, 50],[22, 0],[24, 50],[25, 33],[26, 33],[27, 33],[28, 33]]) - -export const dark_red_ghost_dim_Card = n429 -export const dark_red_ghost_dim_Button = n429 -export const dark_red_ghost_dim_DrawerFrame = n429 -export const dark_red_ghost_dim_Progress = n429 -export const dark_red_ghost_dim_TooltipArrow = n429 -export const dark_red_ghost_dim_Input = n429 -export const dark_red_ghost_dim_Surface = n429 -const n430 = t([[15, 51],[16, 51],[17, 52],[19, 51],[20, 58],[21, 51],[22, 58],[24, 51],[25, 56],[26, 56],[27, 56],[28, 56]]) - -export const dark_red_ghost_dim_Checkbox = n430 -export const dark_red_ghost_dim_Switch = n430 -export const dark_red_ghost_dim_SliderTrack = n430 -const n431 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 49],[21, 0],[22, 49],[24, 0],[25, 56],[26, 56],[27, 56],[28, 56]]) - -export const dark_red_ghost_dim_SwitchThumb = n431 -const n432 = t([[15, 49],[16, 49],[17, 49],[19, 49],[20, 0],[21, 49],[22, 0],[24, 49],[25, 54],[26, 54],[27, 54],[28, 54]]) - -export const dark_red_ghost_dim_TooltipContent = n432 -const n433 = t([[15, 49],[16, 49],[17, 50],[19, 49],[20, 0],[21, 49],[22, 0],[24, 50],[25, 33],[26, 33],[27, 33],[28, 55]]) - -export const dark_red_ghost_dim_TextArea = n433 -const n434 = t([[15, 52],[16, 52],[17, 53],[19, 52],[20, 57],[21, 52],[22, 57],[24, 52],[25, 57],[26, 57],[27, 57],[28, 57]]) - -export const dark_red_ghost_dim_Separator = n434 \ No newline at end of file +const n88 = t([[13, 5],[14, 9],[15, 5],[16, 9],[17, 10],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_ListItem = n88 +const n89 = t([[13, 9],[14, 10],[15, 9],[16, 10],[17, 11],[19, 0],[20, 3],[21, 0],[22, 3],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_Card = n89 +export const dark_Button = n89 +export const dark_Switch = n89 +export const dark_DrawerFrame = n89 +export const dark_Progress = n89 +export const dark_TooltipArrow = n89 +export const dark_Input = n89 +export const dark_TextArea = n89 +export const dark_Surface = n89 +export const dark_alt1_ListItem = n89 +export const dark_alt2_TooltipContent = n89 +const n90 = t([[13, 10],[14, 11],[15, 10],[16, 11],[17, 4],[19, 3],[20, 4],[21, 3],[22, 4],[24, 10],[25, 4],[26, 4],[27, 4],[28, 4]]) + +export const dark_Checkbox = n90 +export const dark_SliderTrack = n90 +export const dark_alt1_Card = n90 +export const dark_alt1_Button = n90 +export const dark_alt1_Switch = n90 +export const dark_alt1_DrawerFrame = n90 +export const dark_alt1_Progress = n90 +export const dark_alt1_TooltipArrow = n90 +export const dark_alt1_Input = n90 +export const dark_alt1_TextArea = n90 +export const dark_alt1_Surface = n90 +export const dark_alt2_ListItem = n90 +export const dark_active_TooltipContent = n90 +const n91 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 5],[20, 5],[21, 5],[22, 5],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_SwitchThumb = n91 +export const dark_alt1_SwitchThumb = n91 +export const dark_dim_SwitchThumb = n91 +export const dark_dim_SliderThumb = n91 +export const dark_dim_Tooltip = n91 +export const dark_dim_ProgressIndicator = n91 +export const dark_green_alt1_SwitchThumb = n91 +export const dark_green_dim_SliderThumb = n91 +export const dark_green_dim_Tooltip = n91 +export const dark_green_dim_ProgressIndicator = n91 +const n92 = t([[13, 0],[14, 3],[15, 0],[16, 3],[17, 4],[18, 61],[19, 9],[20, 10],[21, 9],[22, 10],[23, 61],[24, 0],[25, 4],[26, 4],[27, 4],[28, 4]]) + +export const dark_SliderTrackActive = n92 +export const dark_alt1_SliderThumb = n92 +export const dark_alt1_Tooltip = n92 +export const dark_alt1_ProgressIndicator = n92 +export const dark_active_SwitchThumb = n92 +const n93 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 3],[18, 61],[19, 5],[20, 9],[21, 5],[22, 9],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_SliderThumb = n93 +export const dark_Tooltip = n93 +export const dark_ProgressIndicator = n93 +export const dark_alt2_SwitchThumb = n93 +const n94 = t([[13, 13],[14, 14],[15, 13],[16, 14],[17, 15],[19, 5],[20, 22],[21, 5],[22, 22],[24, 17],[25, 18],[26, 17],[27, 17],[28, 20]]) + +export const light_yellow_Card = n94 +export const light_yellow_Button = n94 +export const light_yellow_Switch = n94 +export const light_yellow_DrawerFrame = n94 +export const light_yellow_Progress = n94 +export const light_yellow_TooltipArrow = n94 +export const light_yellow_Input = n94 +export const light_yellow_TextArea = n94 +export const light_yellow_Surface = n94 +export const light_yellow_alt2_ListItem = n94 +export const light_yellow_alt2_TooltipContent = n94 +const n95 = t([[13, 14],[14, 15],[15, 14],[16, 15],[17, 16],[19, 22],[20, 21],[21, 22],[22, 21],[24, 18],[25, 19],[26, 18],[27, 18],[28, 21]]) + +export const light_yellow_Checkbox = n95 +export const light_yellow_SliderTrack = n95 +export const light_yellow_alt1_Card = n95 +export const light_yellow_alt1_Button = n95 +export const light_yellow_alt1_Switch = n95 +export const light_yellow_alt1_DrawerFrame = n95 +export const light_yellow_alt1_Progress = n95 +export const light_yellow_alt1_TooltipArrow = n95 +export const light_yellow_alt1_Input = n95 +export const light_yellow_alt1_TextArea = n95 +export const light_yellow_alt1_Surface = n95 +export const light_yellow_active_ListItem = n95 +export const light_yellow_active_TooltipContent = n95 +const n96 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[18, 61],[19, 12],[20, 12],[21, 12],[22, 12],[23, 61],[24, 22],[25, 21],[26, 22],[27, 22],[28, 19]]) + +export const light_yellow_SwitchThumb = n96 +const n97 = t([[13, 5],[14, 22],[15, 5],[16, 22],[17, 21],[18, 61],[19, 13],[20, 14],[21, 13],[22, 14],[23, 61],[24, 19],[25, 18],[26, 19],[27, 19],[28, 16]]) + +export const light_yellow_SliderTrackActive = n97 +export const light_yellow_alt1_SliderThumb = n97 +export const light_yellow_alt1_Tooltip = n97 +export const light_yellow_alt1_ProgressIndicator = n97 +export const light_yellow_active_SwitchThumb = n97 +const n98 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 22],[18, 61],[19, 12],[20, 13],[21, 12],[22, 13],[23, 61],[24, 20],[25, 19],[26, 20],[27, 20],[28, 17]]) + +export const light_yellow_SliderThumb = n98 +export const light_yellow_Tooltip = n98 +export const light_yellow_ProgressIndicator = n98 +export const light_yellow_alt2_SwitchThumb = n98 +const n99 = t([[13, 23],[14, 24],[15, 23],[16, 24],[17, 25],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 24]]) + +export const light_green_Card = n99 +export const light_green_Button = n99 +export const light_green_Switch = n99 +export const light_green_DrawerFrame = n99 +export const light_green_Progress = n99 +export const light_green_TooltipArrow = n99 +export const light_green_Input = n99 +export const light_green_TextArea = n99 +export const light_green_Surface = n99 +export const light_green_alt2_ListItem = n99 +export const light_green_alt2_TooltipContent = n99 +const n100 = t([[13, 24],[14, 25],[15, 24],[16, 25],[17, 23],[19, 5],[20, 25],[21, 5],[22, 25],[24, 0],[25, 23],[26, 0],[27, 0],[28, 25]]) + +export const light_green_Checkbox = n100 +export const light_green_SliderTrack = n100 +export const light_green_alt1_Card = n100 +export const light_green_alt1_Button = n100 +export const light_green_alt1_Switch = n100 +export const light_green_alt1_DrawerFrame = n100 +export const light_green_alt1_Progress = n100 +export const light_green_alt1_TooltipArrow = n100 +export const light_green_alt1_Input = n100 +export const light_green_alt1_TextArea = n100 +export const light_green_alt1_Surface = n100 +export const light_green_active_ListItem = n100 +export const light_green_active_TooltipContent = n100 +const n101 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[18, 61],[19, 0],[20, 0],[21, 0],[22, 0],[23, 61],[24, 5],[25, 25],[26, 5],[27, 5],[28, 23]]) + +export const light_green_SwitchThumb = n101 +const n102 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 25],[18, 61],[19, 23],[20, 24],[21, 23],[22, 24],[23, 61],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) + +export const light_green_SliderTrackActive = n102 +export const light_green_alt1_SliderThumb = n102 +export const light_green_alt1_Tooltip = n102 +export const light_green_alt1_ProgressIndicator = n102 +export const light_green_active_SwitchThumb = n102 +const n103 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[18, 61],[19, 0],[20, 23],[21, 0],[22, 23],[23, 61],[24, 24],[25, 23],[26, 24],[27, 24],[28, 0]]) + +export const light_green_SliderThumb = n103 +export const light_green_Tooltip = n103 +export const light_green_ProgressIndicator = n103 +export const light_green_alt2_SwitchThumb = n103 +const n104 = t([[13, 27],[14, 28],[15, 27],[16, 28],[17, 29],[19, 5],[20, 36],[21, 5],[22, 36],[24, 31],[25, 32],[26, 31],[27, 31],[28, 34]]) + +export const light_red_Card = n104 +export const light_red_Button = n104 +export const light_red_Switch = n104 +export const light_red_DrawerFrame = n104 +export const light_red_Progress = n104 +export const light_red_TooltipArrow = n104 +export const light_red_Input = n104 +export const light_red_TextArea = n104 +export const light_red_Surface = n104 +export const light_red_alt2_ListItem = n104 +export const light_red_alt2_TooltipContent = n104 +const n105 = t([[13, 28],[14, 29],[15, 28],[16, 29],[17, 30],[19, 36],[20, 35],[21, 36],[22, 35],[24, 32],[25, 33],[26, 32],[27, 32],[28, 35]]) + +export const light_red_Checkbox = n105 +export const light_red_SliderTrack = n105 +export const light_red_alt1_Card = n105 +export const light_red_alt1_Button = n105 +export const light_red_alt1_Switch = n105 +export const light_red_alt1_DrawerFrame = n105 +export const light_red_alt1_Progress = n105 +export const light_red_alt1_TooltipArrow = n105 +export const light_red_alt1_Input = n105 +export const light_red_alt1_TextArea = n105 +export const light_red_alt1_Surface = n105 +export const light_red_active_ListItem = n105 +export const light_red_active_TooltipContent = n105 +const n106 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[18, 61],[19, 26],[20, 26],[21, 26],[22, 26],[23, 61],[24, 36],[25, 35],[26, 36],[27, 36],[28, 33]]) + +export const light_red_SwitchThumb = n106 +const n107 = t([[13, 5],[14, 36],[15, 5],[16, 36],[17, 35],[18, 61],[19, 27],[20, 28],[21, 27],[22, 28],[23, 61],[24, 33],[25, 32],[26, 33],[27, 33],[28, 30]]) + +export const light_red_SliderTrackActive = n107 +export const light_red_alt1_SliderThumb = n107 +export const light_red_alt1_Tooltip = n107 +export const light_red_alt1_ProgressIndicator = n107 +export const light_red_active_SwitchThumb = n107 +const n108 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 36],[18, 61],[19, 26],[20, 27],[21, 26],[22, 27],[23, 61],[24, 34],[25, 33],[26, 34],[27, 34],[28, 31]]) + +export const light_red_SliderThumb = n108 +export const light_red_Tooltip = n108 +export const light_red_ProgressIndicator = n108 +export const light_red_alt2_SwitchThumb = n108 +const n109 = t([[13, 37],[14, 38],[15, 37],[16, 38],[17, 39],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 37],[25, 19],[26, 19],[27, 19],[28, 19]]) + +export const dark_yellow_ListItem = n109 +const n110 = t([[13, 38],[14, 39],[15, 38],[16, 39],[17, 40],[19, 0],[20, 46],[21, 0],[22, 46],[24, 38],[25, 44],[26, 44],[27, 44],[28, 44]]) + +export const dark_yellow_Card = n110 +export const dark_yellow_Button = n110 +export const dark_yellow_Switch = n110 +export const dark_yellow_DrawerFrame = n110 +export const dark_yellow_Progress = n110 +export const dark_yellow_TooltipArrow = n110 +export const dark_yellow_Input = n110 +export const dark_yellow_TextArea = n110 +export const dark_yellow_Surface = n110 +export const dark_yellow_alt1_ListItem = n110 +export const dark_yellow_alt2_TooltipContent = n110 +const n111 = t([[13, 39],[14, 40],[15, 39],[16, 40],[17, 41],[19, 46],[20, 45],[21, 46],[22, 45],[24, 39],[25, 45],[26, 45],[27, 45],[28, 45]]) + +export const dark_yellow_Checkbox = n111 +export const dark_yellow_SliderTrack = n111 +export const dark_yellow_alt1_Card = n111 +export const dark_yellow_alt1_Button = n111 +export const dark_yellow_alt1_Switch = n111 +export const dark_yellow_alt1_DrawerFrame = n111 +export const dark_yellow_alt1_Progress = n111 +export const dark_yellow_alt1_TooltipArrow = n111 +export const dark_yellow_alt1_Input = n111 +export const dark_yellow_alt1_TextArea = n111 +export const dark_yellow_alt1_Surface = n111 +export const dark_yellow_alt2_ListItem = n111 +export const dark_yellow_active_TooltipContent = n111 +const n112 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 37],[20, 37],[21, 37],[22, 37],[23, 61],[24, 0],[25, 19],[26, 19],[27, 19],[28, 19]]) + +export const dark_yellow_SwitchThumb = n112 +const n113 = t([[13, 0],[14, 46],[15, 0],[16, 46],[17, 45],[18, 61],[19, 38],[20, 39],[21, 38],[22, 39],[23, 61],[24, 0],[25, 41],[26, 41],[27, 41],[28, 41]]) + +export const dark_yellow_SliderTrackActive = n113 +export const dark_yellow_alt1_SliderThumb = n113 +export const dark_yellow_alt1_Tooltip = n113 +export const dark_yellow_alt1_ProgressIndicator = n113 +export const dark_yellow_active_SwitchThumb = n113 +const n114 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 46],[18, 61],[19, 37],[20, 38],[21, 37],[22, 38],[23, 61],[24, 0],[25, 42],[26, 42],[27, 42],[28, 42]]) + +export const dark_yellow_SliderThumb = n114 +export const dark_yellow_Tooltip = n114 +export const dark_yellow_ProgressIndicator = n114 +export const dark_yellow_alt2_SwitchThumb = n114 +const n115 = t([[13, 5],[14, 47],[15, 5],[16, 47],[17, 24],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 5],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_green_ListItem = n115 +const n116 = t([[13, 47],[14, 24],[15, 47],[16, 24],[17, 48],[19, 0],[20, 0],[21, 0],[22, 0],[24, 47],[25, 24],[26, 24],[27, 24],[28, 24]]) + +export const dark_green_Card = n116 +export const dark_green_Switch = n116 +export const dark_green_DrawerFrame = n116 +export const dark_green_Progress = n116 +export const dark_green_TooltipArrow = n116 +export const dark_green_Input = n116 +export const dark_green_TextArea = n116 +export const dark_green_Surface = n116 +export const dark_green_alt1_ListItem = n116 +export const dark_green_alt2_TooltipContent = n116 +const n117 = t([[13, 23],[14, 24],[15, 23],[16, 24],[17, 10],[18, 61],[19, 48],[20, 23],[21, 48],[22, 23],[23, 61],[24, 23],[25, 24],[26, 24],[27, 24],[28, 24]]) + +export const dark_green_Button = n117 +export const dark_green_alt2_SliderTrackActive = n117 +export const dark_green_active_SliderThumb = n117 +export const dark_green_active_Tooltip = n117 +export const dark_green_active_ProgressIndicator = n117 +const n118 = t([[13, 24],[14, 48],[15, 24],[16, 48],[17, 23],[19, 0],[20, 23],[21, 0],[22, 23],[24, 24],[25, 23],[26, 23],[27, 23],[28, 23]]) + +export const dark_green_Checkbox = n118 +export const dark_green_SliderTrack = n118 +export const dark_green_alt1_Card = n118 +export const dark_green_alt1_Switch = n118 +export const dark_green_alt1_DrawerFrame = n118 +export const dark_green_alt1_Progress = n118 +export const dark_green_alt1_TooltipArrow = n118 +export const dark_green_alt1_Input = n118 +export const dark_green_alt1_TextArea = n118 +export const dark_green_alt1_Surface = n118 +export const dark_green_alt2_ListItem = n118 +export const dark_green_active_TooltipContent = n118 +const n119 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 5],[20, 5],[21, 5],[22, 5],[23, 61],[24, 0],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_green_SwitchThumb = n119 +const n120 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 23],[18, 61],[19, 47],[20, 24],[21, 47],[22, 24],[23, 61],[24, 0],[25, 23],[26, 23],[27, 23],[28, 23]]) + +export const dark_green_SliderTrackActive = n120 +export const dark_green_alt1_SliderThumb = n120 +export const dark_green_alt1_Tooltip = n120 +export const dark_green_alt1_ProgressIndicator = n120 +export const dark_green_active_SwitchThumb = n120 +const n121 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 5],[20, 47],[21, 5],[22, 47],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_green_SliderThumb = n121 +export const dark_green_Tooltip = n121 +export const dark_green_ProgressIndicator = n121 +export const dark_green_alt2_SwitchThumb = n121 +const n122 = t([[13, 49],[14, 50],[15, 49],[16, 50],[17, 51],[18, 6],[19, 0],[20, 0],[21, 0],[22, 0],[23, 6],[24, 49],[25, 33],[26, 33],[27, 33],[28, 33]]) + +export const dark_red_ListItem = n122 +const n123 = t([[13, 50],[14, 51],[15, 50],[16, 51],[17, 52],[19, 0],[20, 58],[21, 0],[22, 58],[24, 50],[25, 56],[26, 56],[27, 56],[28, 56]]) + +export const dark_red_Card = n123 +export const dark_red_Button = n123 +export const dark_red_Switch = n123 +export const dark_red_DrawerFrame = n123 +export const dark_red_Progress = n123 +export const dark_red_TooltipArrow = n123 +export const dark_red_Input = n123 +export const dark_red_TextArea = n123 +export const dark_red_Surface = n123 +export const dark_red_alt1_ListItem = n123 +export const dark_red_alt2_TooltipContent = n123 +const n124 = t([[13, 51],[14, 52],[15, 51],[16, 52],[17, 53],[19, 58],[20, 57],[21, 58],[22, 57],[24, 51],[25, 57],[26, 57],[27, 57],[28, 57]]) + +export const dark_red_Checkbox = n124 +export const dark_red_SliderTrack = n124 +export const dark_red_alt1_Card = n124 +export const dark_red_alt1_Button = n124 +export const dark_red_alt1_Switch = n124 +export const dark_red_alt1_DrawerFrame = n124 +export const dark_red_alt1_Progress = n124 +export const dark_red_alt1_TooltipArrow = n124 +export const dark_red_alt1_Input = n124 +export const dark_red_alt1_TextArea = n124 +export const dark_red_alt1_Surface = n124 +export const dark_red_alt2_ListItem = n124 +export const dark_red_active_TooltipContent = n124 +const n125 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[18, 61],[19, 49],[20, 49],[21, 49],[22, 49],[23, 61],[24, 0],[25, 33],[26, 33],[27, 33],[28, 33]]) + +export const dark_red_SwitchThumb = n125 +const n126 = t([[13, 0],[14, 58],[15, 0],[16, 58],[17, 57],[18, 61],[19, 50],[20, 51],[21, 50],[22, 51],[23, 61],[24, 0],[25, 53],[26, 53],[27, 53],[28, 53]]) + +export const dark_red_SliderTrackActive = n126 +export const dark_red_alt1_SliderThumb = n126 +export const dark_red_alt1_Tooltip = n126 +export const dark_red_alt1_ProgressIndicator = n126 +export const dark_red_active_SwitchThumb = n126 +const n127 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 58],[18, 61],[19, 49],[20, 50],[21, 49],[22, 50],[23, 61],[24, 0],[25, 54],[26, 54],[27, 54],[28, 54]]) + +export const dark_red_SliderThumb = n127 +export const dark_red_Tooltip = n127 +export const dark_red_ProgressIndicator = n127 +export const dark_red_alt2_SwitchThumb = n127 +const n128 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 5],[20, 0],[21, 5],[22, 0],[23, 61],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_ghost_SwitchThumb = n128 +export const light_ghost_alt1_SwitchThumb = n128 +export const light_ghost_dim_SwitchThumb = n128 +export const light_ghost_dim_SliderThumb = n128 +export const light_ghost_dim_Tooltip = n128 +export const light_ghost_dim_ProgressIndicator = n128 +const n129 = t([[13, 61],[14, 61],[15, 5],[16, 4],[17, 2],[18, 61],[19, 5],[20, 2],[21, 5],[22, 2],[23, 61],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_ghost_SliderTrackActive = n129 +export const light_ghost_alt1_SliderThumb = n129 +export const light_ghost_alt1_Tooltip = n129 +export const light_ghost_alt1_ProgressIndicator = n129 +export const light_ghost_active_SwitchThumb = n129 +const n130 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 4],[18, 61],[19, 5],[20, 1],[21, 5],[22, 1],[23, 61],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_ghost_SliderThumb = n130 +export const light_ghost_Tooltip = n130 +export const light_ghost_ProgressIndicator = n130 +export const light_ghost_alt2_SwitchThumb = n130 +export const light_ghost_dim_SliderTrackActive = n130 +const n131 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 5],[21, 0],[22, 5],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_ghost_SwitchThumb = n131 +export const dark_ghost_alt1_SwitchThumb = n131 +export const dark_ghost_dim_SwitchThumb = n131 +export const dark_ghost_dim_SliderThumb = n131 +export const dark_ghost_dim_Tooltip = n131 +export const dark_ghost_dim_ProgressIndicator = n131 +export const dark_green_ghost_alt1_SwitchThumb = n131 +export const dark_green_ghost_dim_SliderThumb = n131 +export const dark_green_ghost_dim_Tooltip = n131 +export const dark_green_ghost_dim_ProgressIndicator = n131 +const n132 = t([[13, 61],[14, 61],[15, 0],[16, 3],[17, 4],[18, 61],[19, 0],[20, 10],[21, 0],[22, 10],[23, 61],[24, 0],[25, 4],[26, 4],[27, 4],[28, 4]]) + +export const dark_ghost_SliderTrackActive = n132 +export const dark_ghost_alt1_SliderThumb = n132 +export const dark_ghost_alt1_Tooltip = n132 +export const dark_ghost_alt1_ProgressIndicator = n132 +export const dark_ghost_active_SwitchThumb = n132 +const n133 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 3],[18, 61],[19, 0],[20, 9],[21, 0],[22, 9],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_ghost_SliderThumb = n133 +export const dark_ghost_Tooltip = n133 +export const dark_ghost_ProgressIndicator = n133 +export const dark_ghost_alt2_SwitchThumb = n133 +export const dark_ghost_dim_SliderTrackActive = n133 +const n134 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 22],[20, 12],[21, 5],[22, 12],[23, 61],[24, 22],[25, 21],[26, 22],[27, 22],[28, 19]]) + +export const light_yellow_ghost_SwitchThumb = n134 +const n135 = t([[13, 61],[14, 61],[15, 5],[16, 22],[17, 21],[18, 61],[19, 19],[20, 14],[21, 5],[22, 14],[23, 61],[24, 19],[25, 18],[26, 19],[27, 19],[28, 16]]) + +export const light_yellow_ghost_SliderTrackActive = n135 +export const light_yellow_ghost_alt1_SliderThumb = n135 +export const light_yellow_ghost_alt1_Tooltip = n135 +export const light_yellow_ghost_alt1_ProgressIndicator = n135 +export const light_yellow_ghost_active_SwitchThumb = n135 +const n136 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 22],[18, 61],[19, 20],[20, 13],[21, 5],[22, 13],[23, 61],[24, 20],[25, 19],[26, 20],[27, 20],[28, 17]]) + +export const light_yellow_ghost_SliderThumb = n136 +export const light_yellow_ghost_Tooltip = n136 +export const light_yellow_ghost_ProgressIndicator = n136 +export const light_yellow_ghost_alt2_SwitchThumb = n136 +export const light_yellow_ghost_dim_SliderTrackActive = n136 +const n137 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 5],[20, 0],[21, 5],[22, 0],[23, 61],[24, 5],[25, 25],[26, 5],[27, 5],[28, 23]]) + +export const light_green_ghost_SwitchThumb = n137 +const n138 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 25],[18, 61],[19, 23],[20, 24],[21, 5],[22, 24],[23, 61],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) + +export const light_green_ghost_SliderTrackActive = n138 +export const light_green_ghost_alt1_SliderThumb = n138 +export const light_green_ghost_alt1_Tooltip = n138 +export const light_green_ghost_alt1_ProgressIndicator = n138 +export const light_green_ghost_active_SwitchThumb = n138 +const n139 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 24],[20, 23],[21, 5],[22, 23],[23, 61],[24, 24],[25, 23],[26, 24],[27, 24],[28, 0]]) + +export const light_green_ghost_SliderThumb = n139 +export const light_green_ghost_Tooltip = n139 +export const light_green_ghost_ProgressIndicator = n139 +export const light_green_ghost_alt2_SwitchThumb = n139 +export const light_green_ghost_dim_SliderTrackActive = n139 +const n140 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 5],[18, 61],[19, 36],[20, 26],[21, 5],[22, 26],[23, 61],[24, 36],[25, 35],[26, 36],[27, 36],[28, 33]]) + +export const light_red_ghost_SwitchThumb = n140 +const n141 = t([[13, 61],[14, 61],[15, 5],[16, 36],[17, 35],[18, 61],[19, 33],[20, 28],[21, 5],[22, 28],[23, 61],[24, 33],[25, 32],[26, 33],[27, 33],[28, 30]]) + +export const light_red_ghost_SliderTrackActive = n141 +export const light_red_ghost_alt1_SliderThumb = n141 +export const light_red_ghost_alt1_Tooltip = n141 +export const light_red_ghost_alt1_ProgressIndicator = n141 +export const light_red_ghost_active_SwitchThumb = n141 +const n142 = t([[13, 61],[14, 61],[15, 5],[16, 5],[17, 36],[18, 61],[19, 34],[20, 27],[21, 5],[22, 27],[23, 61],[24, 34],[25, 33],[26, 34],[27, 34],[28, 31]]) + +export const light_red_ghost_SliderThumb = n142 +export const light_red_ghost_Tooltip = n142 +export const light_red_ghost_ProgressIndicator = n142 +export const light_red_ghost_alt2_SwitchThumb = n142 +export const light_red_ghost_dim_SliderTrackActive = n142 +const n143 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 37],[21, 0],[22, 37],[23, 61],[24, 0],[25, 19],[26, 19],[27, 19],[28, 19]]) + +export const dark_yellow_ghost_SwitchThumb = n143 +const n144 = t([[13, 61],[14, 61],[15, 0],[16, 46],[17, 45],[18, 61],[19, 0],[20, 39],[21, 0],[22, 39],[23, 61],[24, 0],[25, 41],[26, 41],[27, 41],[28, 41]]) + +export const dark_yellow_ghost_SliderTrackActive = n144 +export const dark_yellow_ghost_alt1_SliderThumb = n144 +export const dark_yellow_ghost_alt1_Tooltip = n144 +export const dark_yellow_ghost_alt1_ProgressIndicator = n144 +export const dark_yellow_ghost_active_SwitchThumb = n144 +const n145 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 46],[18, 61],[19, 0],[20, 38],[21, 0],[22, 38],[23, 61],[24, 0],[25, 42],[26, 42],[27, 42],[28, 42]]) + +export const dark_yellow_ghost_SliderThumb = n145 +export const dark_yellow_ghost_Tooltip = n145 +export const dark_yellow_ghost_ProgressIndicator = n145 +export const dark_yellow_ghost_alt2_SwitchThumb = n145 +export const dark_yellow_ghost_dim_SliderTrackActive = n145 +const n146 = t([[13, 61],[14, 61],[15, 23],[16, 24],[17, 10],[18, 61],[19, 23],[20, 23],[21, 23],[22, 23],[23, 61],[24, 23],[25, 24],[26, 24],[27, 24],[28, 24]]) + +export const dark_green_ghost_Button = n146 +export const dark_green_ghost_alt2_SliderTrackActive = n146 +export const dark_green_ghost_active_SliderThumb = n146 +export const dark_green_ghost_active_Tooltip = n146 +export const dark_green_ghost_active_ProgressIndicator = n146 +const n147 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 5],[21, 0],[22, 5],[23, 61],[24, 0],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_green_ghost_SwitchThumb = n147 +const n148 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 23],[18, 61],[19, 0],[20, 24],[21, 0],[22, 24],[23, 61],[24, 0],[25, 23],[26, 23],[27, 23],[28, 23]]) + +export const dark_green_ghost_SliderTrackActive = n148 +export const dark_green_ghost_alt1_SliderThumb = n148 +export const dark_green_ghost_alt1_Tooltip = n148 +export const dark_green_ghost_alt1_ProgressIndicator = n148 +export const dark_green_ghost_active_SwitchThumb = n148 +const n149 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 47],[21, 0],[22, 47],[23, 61],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_green_ghost_SliderThumb = n149 +export const dark_green_ghost_Tooltip = n149 +export const dark_green_ghost_ProgressIndicator = n149 +export const dark_green_ghost_alt2_SwitchThumb = n149 +export const dark_green_ghost_dim_SliderTrackActive = n149 +const n150 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 0],[18, 61],[19, 0],[20, 49],[21, 0],[22, 49],[23, 61],[24, 0],[25, 33],[26, 33],[27, 33],[28, 33]]) + +export const dark_red_ghost_SwitchThumb = n150 +const n151 = t([[13, 61],[14, 61],[15, 0],[16, 58],[17, 57],[18, 61],[19, 0],[20, 51],[21, 0],[22, 51],[23, 61],[24, 0],[25, 53],[26, 53],[27, 53],[28, 53]]) + +export const dark_red_ghost_SliderTrackActive = n151 +export const dark_red_ghost_alt1_SliderThumb = n151 +export const dark_red_ghost_alt1_Tooltip = n151 +export const dark_red_ghost_alt1_ProgressIndicator = n151 +export const dark_red_ghost_active_SwitchThumb = n151 +const n152 = t([[13, 61],[14, 61],[15, 0],[16, 0],[17, 58],[18, 61],[19, 0],[20, 50],[21, 0],[22, 50],[23, 61],[24, 0],[25, 54],[26, 54],[27, 54],[28, 54]]) + +export const dark_red_ghost_SliderThumb = n152 +export const dark_red_ghost_Tooltip = n152 +export const dark_red_ghost_ProgressIndicator = n152 +export const dark_red_ghost_alt2_SwitchThumb = n152 +export const dark_red_ghost_dim_SliderTrackActive = n152 +const n153 = t([[13, 0],[14, 1],[15, 0],[16, 1],[17, 2],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_alt1_ListItem = n153 +export const light_alt1_TooltipContent = n153 +const n154 = t([[13, 4],[14, 2],[15, 4],[16, 2],[17, 0],[19, 2],[20, 3],[21, 2],[22, 3],[24, 4],[25, 3],[26, 3],[27, 3],[28, 3]]) + +export const light_alt1_SliderTrackActive = n154 +export const light_alt2_SliderThumb = n154 +export const light_alt2_Tooltip = n154 +export const light_alt2_ProgressIndicator = n154 +const n155 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 0],[20, 0],[21, 0],[22, 0],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const light_alt1_Separator = n155 +export const light_alt2_Checkbox = n155 +export const light_alt2_SliderTrack = n155 +export const light_alt2_Separator = n155 +export const light_active_Card = n155 +export const light_active_Button = n155 +export const light_active_Checkbox = n155 +export const light_active_Switch = n155 +export const light_active_DrawerFrame = n155 +export const light_active_Progress = n155 +export const light_active_TooltipArrow = n155 +export const light_active_SliderTrack = n155 +export const light_active_Input = n155 +export const light_active_TextArea = n155 +export const light_active_Separator = n155 +export const light_active_Surface = n155 +const n156 = t([[13, 2],[14, 0],[15, 2],[16, 0],[17, 0],[19, 3],[20, 0],[21, 3],[22, 0],[24, 2],[25, 2],[26, 2],[27, 2],[28, 2]]) + +export const light_alt2_SliderTrackActive = n156 +export const light_active_SliderThumb = n156 +export const light_active_Tooltip = n156 +export const light_active_ProgressIndicator = n156 +const n157 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 0],[20, 0],[21, 0],[22, 0],[24, 0],[25, 1],[26, 1],[27, 1],[28, 1]]) + +export const light_active_SliderTrackActive = n157 +const n158 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_dim_ListItem = n158 +export const light_dim_TooltipContent = n158 +const n159 = t([[13, 1],[14, 1],[15, 1],[16, 1],[17, 2],[19, 5],[20, 5],[21, 5],[22, 5],[24, 1],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_dim_Card = n159 +export const light_dim_Button = n159 +export const light_dim_Switch = n159 +export const light_dim_DrawerFrame = n159 +export const light_dim_Progress = n159 +export const light_dim_TooltipArrow = n159 +export const light_dim_Input = n159 +export const light_dim_TextArea = n159 +export const light_dim_Surface = n159 +const n160 = t([[13, 2],[14, 2],[15, 2],[16, 2],[17, 3],[19, 4],[20, 4],[21, 4],[22, 4],[24, 2],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_dim_Checkbox = n160 +export const light_dim_SliderTrack = n160 +const n161 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 4],[19, 1],[20, 1],[21, 1],[22, 1],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_dim_SliderTrackActive = n161 +const n162 = t([[13, 3],[14, 3],[15, 3],[16, 3],[17, 0],[19, 2],[20, 2],[21, 2],[22, 2],[24, 3],[25, 2],[26, 2],[27, 2],[28, 2]]) + +export const light_dim_Separator = n162 +const n163 = t([[13, 5],[14, 9],[15, 5],[16, 9],[17, 10],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_alt1_TooltipContent = n163 +const n164 = t([[13, 3],[14, 4],[15, 3],[16, 4],[17, 5],[19, 10],[20, 11],[21, 10],[22, 11],[24, 3],[25, 11],[26, 11],[27, 11],[28, 11]]) + +export const dark_alt1_SliderTrackActive = n164 +export const dark_alt2_SliderThumb = n164 +export const dark_alt2_Tooltip = n164 +export const dark_alt2_ProgressIndicator = n164 +const n165 = t([[13, 4],[14, 5],[15, 4],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 4],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_alt1_Separator = n165 +export const dark_alt2_Checkbox = n165 +export const dark_alt2_SliderTrack = n165 +export const dark_active_Card = n165 +export const dark_active_Button = n165 +export const dark_active_Switch = n165 +export const dark_active_DrawerFrame = n165 +export const dark_active_Progress = n165 +export const dark_active_TooltipArrow = n165 +export const dark_active_Input = n165 +export const dark_active_TextArea = n165 +export const dark_active_Surface = n165 +const n166 = t([[13, 4],[14, 5],[15, 4],[16, 5],[17, 5],[19, 11],[20, 4],[21, 11],[22, 4],[24, 4],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_alt2_SliderTrackActive = n166 +export const dark_active_SliderThumb = n166 +export const dark_active_Tooltip = n166 +export const dark_active_ProgressIndicator = n166 +const n167 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_alt2_Separator = n167 +export const dark_active_Checkbox = n167 +export const dark_active_SliderTrack = n167 +export const dark_active_Separator = n167 +const n168 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 4],[20, 5],[21, 4],[22, 5],[24, 5],[25, 9],[26, 9],[27, 9],[28, 9]]) + +export const dark_active_SliderTrackActive = n168 +const n169 = t([[13, 9],[14, 9],[15, 9],[16, 9],[17, 10],[19, 0],[20, 0],[21, 0],[22, 0],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_dim_Card = n169 +export const dark_dim_Button = n169 +export const dark_dim_Switch = n169 +export const dark_dim_DrawerFrame = n169 +export const dark_dim_Progress = n169 +export const dark_dim_TooltipArrow = n169 +export const dark_dim_Input = n169 +export const dark_dim_TextArea = n169 +export const dark_dim_Surface = n169 +const n170 = t([[13, 10],[14, 10],[15, 10],[16, 10],[17, 11],[19, 3],[20, 3],[21, 3],[22, 3],[24, 10],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_dim_Checkbox = n170 +export const dark_dim_SliderTrack = n170 +const n171 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_dim_TooltipContent = n171 +export const dark_green_dim_TooltipContent = n171 +const n172 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 3],[19, 9],[20, 9],[21, 9],[22, 9],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_dim_SliderTrackActive = n172 +const n173 = t([[13, 11],[14, 11],[15, 11],[16, 11],[17, 4],[19, 4],[20, 4],[21, 4],[22, 4],[24, 11],[25, 4],[26, 4],[27, 4],[28, 4]]) + +export const dark_dim_Separator = n173 +const n174 = t([[13, 12],[14, 13],[15, 12],[16, 13],[17, 14],[19, 5],[20, 5],[21, 5],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 19]]) + +export const light_yellow_alt1_ListItem = n174 +export const light_yellow_alt1_TooltipContent = n174 +const n175 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 12],[20, 12],[21, 12],[22, 12],[24, 21],[25, 20],[26, 21],[27, 21],[28, 18]]) + +export const light_yellow_alt1_SwitchThumb = n175 +export const light_yellow_dim_SliderThumb = n175 +export const light_yellow_dim_Tooltip = n175 +export const light_yellow_dim_ProgressIndicator = n175 +const n176 = t([[13, 22],[14, 21],[15, 22],[16, 21],[17, 20],[19, 14],[20, 15],[21, 14],[22, 15],[24, 18],[25, 17],[26, 18],[27, 18],[28, 15]]) + +export const light_yellow_alt1_SliderTrackActive = n176 +export const light_yellow_alt2_SliderThumb = n176 +export const light_yellow_alt2_Tooltip = n176 +export const light_yellow_alt2_ProgressIndicator = n176 +const n177 = t([[13, 16],[14, 17],[15, 16],[16, 17],[17, 18],[19, 20],[20, 19],[21, 20],[22, 19],[24, 20],[25, 21],[26, 20],[27, 20],[28, 5]]) + +export const light_yellow_alt1_Separator = n177 +export const light_yellow_alt2_Checkbox = n177 +export const light_yellow_alt2_SliderTrack = n177 +export const light_yellow_active_Card = n177 +export const light_yellow_active_Button = n177 +export const light_yellow_active_Switch = n177 +export const light_yellow_active_DrawerFrame = n177 +export const light_yellow_active_Progress = n177 +export const light_yellow_active_TooltipArrow = n177 +export const light_yellow_active_Input = n177 +export const light_yellow_active_TextArea = n177 +export const light_yellow_active_Surface = n177 +const n178 = t([[13, 21],[14, 20],[15, 21],[16, 20],[17, 19],[19, 15],[20, 16],[21, 15],[22, 16],[24, 17],[25, 16],[26, 17],[27, 17],[28, 14]]) + +export const light_yellow_alt2_SliderTrackActive = n178 +export const light_yellow_active_SliderThumb = n178 +export const light_yellow_active_Tooltip = n178 +export const light_yellow_active_ProgressIndicator = n178 +const n179 = t([[13, 17],[14, 18],[15, 17],[16, 18],[17, 19],[19, 19],[20, 18],[21, 19],[22, 18],[24, 21],[25, 22],[26, 21],[27, 21],[28, 5]]) + +export const light_yellow_alt2_Separator = n179 +export const light_yellow_active_Checkbox = n179 +export const light_yellow_active_SliderTrack = n179 +const n180 = t([[13, 20],[14, 19],[15, 20],[16, 19],[17, 18],[19, 16],[20, 17],[21, 16],[22, 17],[24, 16],[25, 15],[26, 16],[27, 16],[28, 13]]) + +export const light_yellow_active_SliderTrackActive = n180 +const n181 = t([[13, 18],[14, 19],[15, 18],[16, 19],[17, 20],[19, 18],[20, 17],[21, 18],[22, 17],[24, 22],[25, 5],[26, 22],[27, 22],[28, 5]]) + +export const light_yellow_active_Separator = n181 +const n182 = t([[13, 12],[14, 12],[15, 12],[16, 12],[17, 12],[19, 5],[20, 5],[21, 5],[22, 5],[24, 14],[25, 15],[26, 14],[27, 14],[28, 17]]) + +export const light_yellow_dim_ListItem = n182 +export const light_yellow_dim_TooltipContent = n182 +const n183 = t([[13, 13],[14, 13],[15, 13],[16, 13],[17, 14],[19, 5],[20, 5],[21, 5],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 19]]) + +export const light_yellow_dim_Card = n183 +export const light_yellow_dim_Button = n183 +export const light_yellow_dim_Switch = n183 +export const light_yellow_dim_DrawerFrame = n183 +export const light_yellow_dim_Progress = n183 +export const light_yellow_dim_TooltipArrow = n183 +export const light_yellow_dim_Input = n183 +export const light_yellow_dim_TextArea = n183 +export const light_yellow_dim_Surface = n183 +const n184 = t([[13, 14],[14, 14],[15, 14],[16, 14],[17, 15],[19, 22],[20, 22],[21, 22],[22, 22],[24, 17],[25, 18],[26, 17],[27, 17],[28, 20]]) + +export const light_yellow_dim_Checkbox = n184 +export const light_yellow_dim_SliderTrack = n184 +const n185 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 12],[20, 12],[21, 12],[22, 12],[24, 5],[25, 22],[26, 5],[27, 5],[28, 20]]) + +export const light_yellow_dim_SwitchThumb = n185 +const n186 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 22],[19, 13],[20, 13],[21, 13],[22, 13],[24, 20],[25, 19],[26, 20],[27, 20],[28, 17]]) + +export const light_yellow_dim_SliderTrackActive = n186 +const n187 = t([[13, 15],[14, 15],[15, 15],[16, 15],[17, 16],[19, 21],[20, 21],[21, 21],[22, 21],[24, 18],[25, 19],[26, 18],[27, 18],[28, 21]]) + +export const light_yellow_dim_Separator = n187 +const n188 = t([[13, 0],[14, 23],[15, 0],[16, 23],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) + +export const light_green_alt1_ListItem = n188 +export const light_green_alt1_TooltipContent = n188 +const n189 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 0],[20, 0],[21, 0],[22, 0],[24, 25],[25, 24],[26, 25],[27, 25],[28, 0]]) + +export const light_green_alt1_SwitchThumb = n189 +export const light_green_dim_SliderThumb = n189 +export const light_green_dim_Tooltip = n189 +export const light_green_dim_ProgressIndicator = n189 +const n190 = t([[13, 5],[14, 25],[15, 5],[16, 25],[17, 24],[19, 24],[20, 25],[21, 24],[22, 25],[24, 0],[25, 0],[26, 0],[27, 0],[28, 25]]) + +export const light_green_alt1_SliderTrackActive = n190 +export const light_green_alt2_SliderThumb = n190 +export const light_green_alt2_Tooltip = n190 +export const light_green_alt2_ProgressIndicator = n190 +const n191 = t([[13, 23],[14, 0],[15, 23],[16, 0],[17, 0],[19, 24],[20, 23],[21, 24],[22, 23],[24, 24],[25, 25],[26, 24],[27, 24],[28, 5]]) + +export const light_green_alt1_Separator = n191 +export const light_green_alt2_Checkbox = n191 +export const light_green_alt2_SliderTrack = n191 +export const light_green_active_Card = n191 +export const light_green_active_Button = n191 +export const light_green_active_Switch = n191 +export const light_green_active_DrawerFrame = n191 +export const light_green_active_Progress = n191 +export const light_green_active_TooltipArrow = n191 +export const light_green_active_Input = n191 +export const light_green_active_TextArea = n191 +export const light_green_active_Surface = n191 +const n192 = t([[13, 25],[14, 24],[15, 25],[16, 24],[17, 23],[19, 25],[20, 23],[21, 25],[22, 23],[24, 0],[25, 23],[26, 0],[27, 0],[28, 24]]) + +export const light_green_alt2_SliderTrackActive = n192 +export const light_green_active_SliderThumb = n192 +export const light_green_active_Tooltip = n192 +export const light_green_active_ProgressIndicator = n192 +const n193 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 23],[19, 23],[20, 0],[21, 23],[22, 0],[24, 25],[25, 5],[26, 25],[27, 25],[28, 5]]) + +export const light_green_alt2_Separator = n193 +export const light_green_active_Checkbox = n193 +export const light_green_active_SliderTrack = n193 +const n194 = t([[13, 24],[14, 23],[15, 24],[16, 23],[17, 0],[19, 23],[20, 0],[21, 23],[22, 0],[24, 23],[25, 25],[26, 23],[27, 23],[28, 23]]) + +export const light_green_active_SliderTrackActive = n194 +const n195 = t([[13, 0],[14, 23],[15, 0],[16, 23],[17, 24],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const light_green_active_Separator = n195 +const n196 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 5],[20, 5],[21, 5],[22, 5],[24, 24],[25, 25],[26, 24],[27, 24],[28, 0]]) + +export const light_green_dim_ListItem = n196 +export const light_green_dim_TooltipContent = n196 +const n197 = t([[13, 23],[14, 23],[15, 23],[16, 23],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) + +export const light_green_dim_Card = n197 +export const light_green_dim_Button = n197 +export const light_green_dim_Switch = n197 +export const light_green_dim_DrawerFrame = n197 +export const light_green_dim_Progress = n197 +export const light_green_dim_TooltipArrow = n197 +export const light_green_dim_Input = n197 +export const light_green_dim_TextArea = n197 +export const light_green_dim_Surface = n197 +const n198 = t([[13, 24],[14, 24],[15, 24],[16, 24],[17, 25],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 24]]) + +export const light_green_dim_Checkbox = n198 +export const light_green_dim_SliderTrack = n198 +const n199 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 24]]) + +export const light_green_dim_SwitchThumb = n199 +const n200 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 23],[20, 23],[21, 23],[22, 23],[24, 24],[25, 23],[26, 24],[27, 24],[28, 0]]) + +export const light_green_dim_SliderTrackActive = n200 +const n201 = t([[13, 25],[14, 25],[15, 25],[16, 25],[17, 23],[19, 25],[20, 25],[21, 25],[22, 25],[24, 0],[25, 23],[26, 0],[27, 0],[28, 25]]) + +export const light_green_dim_Separator = n201 +const n202 = t([[13, 26],[14, 27],[15, 26],[16, 27],[17, 28],[19, 5],[20, 5],[21, 5],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 33]]) + +export const light_red_alt1_ListItem = n202 +export const light_red_alt1_TooltipContent = n202 +const n203 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 26],[20, 26],[21, 26],[22, 26],[24, 35],[25, 34],[26, 35],[27, 35],[28, 32]]) + +export const light_red_alt1_SwitchThumb = n203 +export const light_red_dim_SliderThumb = n203 +export const light_red_dim_Tooltip = n203 +export const light_red_dim_ProgressIndicator = n203 +const n204 = t([[13, 36],[14, 35],[15, 36],[16, 35],[17, 34],[19, 28],[20, 29],[21, 28],[22, 29],[24, 32],[25, 31],[26, 32],[27, 32],[28, 29]]) + +export const light_red_alt1_SliderTrackActive = n204 +export const light_red_alt2_SliderThumb = n204 +export const light_red_alt2_Tooltip = n204 +export const light_red_alt2_ProgressIndicator = n204 +const n205 = t([[13, 30],[14, 31],[15, 30],[16, 31],[17, 32],[19, 34],[20, 33],[21, 34],[22, 33],[24, 34],[25, 35],[26, 34],[27, 34],[28, 5]]) + +export const light_red_alt1_Separator = n205 +export const light_red_alt2_Checkbox = n205 +export const light_red_alt2_SliderTrack = n205 +export const light_red_active_Card = n205 +export const light_red_active_Button = n205 +export const light_red_active_Switch = n205 +export const light_red_active_DrawerFrame = n205 +export const light_red_active_Progress = n205 +export const light_red_active_TooltipArrow = n205 +export const light_red_active_Input = n205 +export const light_red_active_TextArea = n205 +export const light_red_active_Surface = n205 +const n206 = t([[13, 35],[14, 34],[15, 35],[16, 34],[17, 33],[19, 29],[20, 30],[21, 29],[22, 30],[24, 31],[25, 30],[26, 31],[27, 31],[28, 28]]) + +export const light_red_alt2_SliderTrackActive = n206 +export const light_red_active_SliderThumb = n206 +export const light_red_active_Tooltip = n206 +export const light_red_active_ProgressIndicator = n206 +const n207 = t([[13, 31],[14, 32],[15, 31],[16, 32],[17, 33],[19, 33],[20, 32],[21, 33],[22, 32],[24, 35],[25, 36],[26, 35],[27, 35],[28, 5]]) + +export const light_red_alt2_Separator = n207 +export const light_red_active_Checkbox = n207 +export const light_red_active_SliderTrack = n207 +const n208 = t([[13, 34],[14, 33],[15, 34],[16, 33],[17, 32],[19, 30],[20, 31],[21, 30],[22, 31],[24, 30],[25, 29],[26, 30],[27, 30],[28, 27]]) + +export const light_red_active_SliderTrackActive = n208 +const n209 = t([[13, 32],[14, 33],[15, 32],[16, 33],[17, 34],[19, 32],[20, 31],[21, 32],[22, 31],[24, 36],[25, 5],[26, 36],[27, 36],[28, 5]]) + +export const light_red_active_Separator = n209 +const n210 = t([[13, 26],[14, 26],[15, 26],[16, 26],[17, 26],[19, 5],[20, 5],[21, 5],[22, 5],[24, 28],[25, 29],[26, 28],[27, 28],[28, 31]]) + +export const light_red_dim_ListItem = n210 +export const light_red_dim_TooltipContent = n210 +const n211 = t([[13, 27],[14, 27],[15, 27],[16, 27],[17, 28],[19, 5],[20, 5],[21, 5],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 33]]) + +export const light_red_dim_Card = n211 +export const light_red_dim_Button = n211 +export const light_red_dim_Switch = n211 +export const light_red_dim_DrawerFrame = n211 +export const light_red_dim_Progress = n211 +export const light_red_dim_TooltipArrow = n211 +export const light_red_dim_Input = n211 +export const light_red_dim_TextArea = n211 +export const light_red_dim_Surface = n211 +const n212 = t([[13, 28],[14, 28],[15, 28],[16, 28],[17, 29],[19, 36],[20, 36],[21, 36],[22, 36],[24, 31],[25, 32],[26, 31],[27, 31],[28, 34]]) + +export const light_red_dim_Checkbox = n212 +export const light_red_dim_SliderTrack = n212 +const n213 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 5],[19, 26],[20, 26],[21, 26],[22, 26],[24, 5],[25, 36],[26, 5],[27, 5],[28, 34]]) + +export const light_red_dim_SwitchThumb = n213 +const n214 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 36],[19, 27],[20, 27],[21, 27],[22, 27],[24, 34],[25, 33],[26, 34],[27, 34],[28, 31]]) + +export const light_red_dim_SliderTrackActive = n214 +const n215 = t([[13, 29],[14, 29],[15, 29],[16, 29],[17, 30],[19, 35],[20, 35],[21, 35],[22, 35],[24, 32],[25, 33],[26, 32],[27, 32],[28, 35]]) + +export const light_red_dim_Separator = n215 +const n216 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 37],[20, 37],[21, 37],[22, 37],[24, 0],[25, 43],[26, 43],[27, 43],[28, 43]]) + +export const dark_yellow_alt1_SwitchThumb = n216 +export const dark_yellow_dim_SliderThumb = n216 +export const dark_yellow_dim_Tooltip = n216 +export const dark_yellow_dim_ProgressIndicator = n216 +const n217 = t([[13, 37],[14, 38],[15, 37],[16, 38],[17, 39],[19, 0],[20, 0],[21, 0],[22, 0],[24, 37],[25, 19],[26, 19],[27, 19],[28, 19]]) + +export const dark_yellow_alt1_TooltipContent = n217 +const n218 = t([[13, 46],[14, 45],[15, 46],[16, 45],[17, 44],[19, 39],[20, 40],[21, 39],[22, 40],[24, 46],[25, 40],[26, 40],[27, 40],[28, 40]]) + +export const dark_yellow_alt1_SliderTrackActive = n218 +export const dark_yellow_alt2_SliderThumb = n218 +export const dark_yellow_alt2_Tooltip = n218 +export const dark_yellow_alt2_ProgressIndicator = n218 +const n219 = t([[13, 41],[14, 42],[15, 41],[16, 42],[17, 43],[19, 44],[20, 19],[21, 44],[22, 19],[24, 41],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_yellow_alt1_Separator = n219 +export const dark_yellow_alt2_Checkbox = n219 +export const dark_yellow_alt2_SliderTrack = n219 +export const dark_yellow_active_Card = n219 +export const dark_yellow_active_Button = n219 +export const dark_yellow_active_Switch = n219 +export const dark_yellow_active_DrawerFrame = n219 +export const dark_yellow_active_Progress = n219 +export const dark_yellow_active_TooltipArrow = n219 +export const dark_yellow_active_Input = n219 +export const dark_yellow_active_TextArea = n219 +export const dark_yellow_active_Surface = n219 +const n220 = t([[13, 45],[14, 44],[15, 45],[16, 44],[17, 19],[19, 40],[20, 41],[21, 40],[22, 41],[24, 45],[25, 39],[26, 39],[27, 39],[28, 39]]) + +export const dark_yellow_alt2_SliderTrackActive = n220 +export const dark_yellow_active_SliderThumb = n220 +export const dark_yellow_active_Tooltip = n220 +export const dark_yellow_active_ProgressIndicator = n220 +const n221 = t([[13, 42],[14, 43],[15, 42],[16, 43],[17, 19],[19, 19],[20, 43],[21, 19],[22, 43],[24, 42],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_yellow_alt2_Separator = n221 +export const dark_yellow_active_Checkbox = n221 +export const dark_yellow_active_SliderTrack = n221 +const n222 = t([[13, 44],[14, 19],[15, 44],[16, 19],[17, 43],[19, 41],[20, 42],[21, 41],[22, 42],[24, 44],[25, 38],[26, 38],[27, 38],[28, 38]]) + +export const dark_yellow_active_SliderTrackActive = n222 +const n223 = t([[13, 43],[14, 19],[15, 43],[16, 19],[17, 44],[19, 43],[20, 42],[21, 43],[22, 42],[24, 43],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_yellow_active_Separator = n223 +const n224 = t([[13, 38],[14, 38],[15, 38],[16, 38],[17, 39],[19, 0],[20, 0],[21, 0],[22, 0],[24, 38],[25, 19],[26, 19],[27, 19],[28, 19]]) + +export const dark_yellow_dim_Card = n224 +export const dark_yellow_dim_Button = n224 +export const dark_yellow_dim_Switch = n224 +export const dark_yellow_dim_DrawerFrame = n224 +export const dark_yellow_dim_Progress = n224 +export const dark_yellow_dim_TooltipArrow = n224 +export const dark_yellow_dim_Input = n224 +export const dark_yellow_dim_TextArea = n224 +export const dark_yellow_dim_Surface = n224 +const n225 = t([[13, 39],[14, 39],[15, 39],[16, 39],[17, 40],[19, 46],[20, 46],[21, 46],[22, 46],[24, 39],[25, 44],[26, 44],[27, 44],[28, 44]]) + +export const dark_yellow_dim_Checkbox = n225 +export const dark_yellow_dim_SliderTrack = n225 +const n226 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 37],[20, 37],[21, 37],[22, 37],[24, 0],[25, 44],[26, 44],[27, 44],[28, 44]]) + +export const dark_yellow_dim_SwitchThumb = n226 +const n227 = t([[13, 37],[14, 37],[15, 37],[16, 37],[17, 37],[19, 0],[20, 0],[21, 0],[22, 0],[24, 37],[25, 42],[26, 42],[27, 42],[28, 42]]) + +export const dark_yellow_dim_TooltipContent = n227 +const n228 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 46],[19, 38],[20, 38],[21, 38],[22, 38],[24, 0],[25, 42],[26, 42],[27, 42],[28, 42]]) + +export const dark_yellow_dim_SliderTrackActive = n228 +const n229 = t([[13, 40],[14, 40],[15, 40],[16, 40],[17, 41],[19, 45],[20, 45],[21, 45],[22, 45],[24, 40],[25, 45],[26, 45],[27, 45],[28, 45]]) + +export const dark_yellow_dim_Separator = n229 +const n230 = t([[13, 24],[14, 10],[15, 24],[16, 10],[17, 5],[19, 23],[20, 5],[21, 23],[22, 5],[24, 24],[25, 47],[26, 47],[27, 47],[28, 47]]) + +export const dark_green_alt1_Button = n230 +export const dark_green_active_SliderTrackActive = n230 +const n231 = t([[13, 5],[14, 47],[15, 5],[16, 47],[17, 24],[19, 0],[20, 0],[21, 0],[22, 0],[24, 5],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_green_alt1_TooltipContent = n231 +const n232 = t([[13, 0],[14, 23],[15, 0],[16, 23],[17, 24],[19, 24],[20, 48],[21, 24],[22, 48],[24, 0],[25, 48],[26, 48],[27, 48],[28, 48]]) + +export const dark_green_alt1_SliderTrackActive = n232 +export const dark_green_alt2_SliderThumb = n232 +export const dark_green_alt2_Tooltip = n232 +export const dark_green_alt2_ProgressIndicator = n232 +const n233 = t([[13, 23],[14, 5],[15, 23],[16, 5],[17, 5],[19, 24],[20, 10],[21, 24],[22, 10],[24, 23],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_green_alt1_Separator = n233 +export const dark_green_alt2_Checkbox = n233 +export const dark_green_alt2_SliderTrack = n233 +export const dark_green_active_Card = n233 +export const dark_green_active_Switch = n233 +export const dark_green_active_DrawerFrame = n233 +export const dark_green_active_Progress = n233 +export const dark_green_active_TooltipArrow = n233 +export const dark_green_active_Input = n233 +export const dark_green_active_TextArea = n233 +export const dark_green_active_Surface = n233 +const n234 = t([[13, 10],[14, 5],[15, 10],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 10],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_green_alt2_Button = n234 +const n235 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 10],[19, 10],[20, 5],[21, 10],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_green_alt2_Separator = n235 +export const dark_green_active_Checkbox = n235 +export const dark_green_active_SliderTrack = n235 +const n236 = t([[13, 5],[14, 5],[15, 5],[16, 5],[17, 23],[19, 5],[20, 10],[21, 5],[22, 10],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_green_active_Button = n236 +const n237 = t([[13, 5],[14, 10],[15, 5],[16, 10],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_green_active_Separator = n237 +const n238 = t([[13, 47],[14, 47],[15, 47],[16, 47],[17, 24],[19, 0],[20, 0],[21, 0],[22, 0],[24, 47],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_green_dim_Card = n238 +export const dark_green_dim_Switch = n238 +export const dark_green_dim_DrawerFrame = n238 +export const dark_green_dim_Progress = n238 +export const dark_green_dim_TooltipArrow = n238 +export const dark_green_dim_Input = n238 +export const dark_green_dim_TextArea = n238 +export const dark_green_dim_Surface = n238 +const n239 = t([[13, 23],[14, 23],[15, 23],[16, 23],[17, 24],[19, 48],[20, 48],[21, 48],[22, 48],[24, 23],[25, 48],[26, 48],[27, 48],[28, 48]]) + +export const dark_green_dim_Button = n239 +const n240 = t([[13, 24],[14, 24],[15, 24],[16, 24],[17, 48],[19, 0],[20, 0],[21, 0],[22, 0],[24, 24],[25, 24],[26, 24],[27, 24],[28, 24]]) + +export const dark_green_dim_Checkbox = n240 +export const dark_green_dim_SliderTrack = n240 +const n241 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 5],[20, 5],[21, 5],[22, 5],[24, 0],[25, 24],[26, 24],[27, 24],[28, 24]]) + +export const dark_green_dim_SwitchThumb = n241 +const n242 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 47],[20, 47],[21, 47],[22, 47],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_green_dim_SliderTrackActive = n242 +const n243 = t([[13, 48],[14, 48],[15, 48],[16, 48],[17, 23],[19, 23],[20, 23],[21, 23],[22, 23],[24, 48],[25, 23],[26, 23],[27, 23],[28, 23]]) + +export const dark_green_dim_Separator = n243 +const n244 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 49],[20, 49],[21, 49],[22, 49],[24, 0],[25, 55],[26, 55],[27, 55],[28, 55]]) + +export const dark_red_alt1_SwitchThumb = n244 +export const dark_red_dim_SliderThumb = n244 +export const dark_red_dim_Tooltip = n244 +export const dark_red_dim_ProgressIndicator = n244 +const n245 = t([[13, 49],[14, 50],[15, 49],[16, 50],[17, 51],[19, 0],[20, 0],[21, 0],[22, 0],[24, 49],[25, 33],[26, 33],[27, 33],[28, 33]]) + +export const dark_red_alt1_TooltipContent = n245 +const n246 = t([[13, 58],[14, 57],[15, 58],[16, 57],[17, 56],[19, 51],[20, 52],[21, 51],[22, 52],[24, 58],[25, 52],[26, 52],[27, 52],[28, 52]]) + +export const dark_red_alt1_SliderTrackActive = n246 +export const dark_red_alt2_SliderThumb = n246 +export const dark_red_alt2_Tooltip = n246 +export const dark_red_alt2_ProgressIndicator = n246 +const n247 = t([[13, 53],[14, 54],[15, 53],[16, 54],[17, 55],[19, 56],[20, 33],[21, 56],[22, 33],[24, 53],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_red_alt1_Separator = n247 +export const dark_red_alt2_Checkbox = n247 +export const dark_red_alt2_SliderTrack = n247 +export const dark_red_active_Card = n247 +export const dark_red_active_Button = n247 +export const dark_red_active_Switch = n247 +export const dark_red_active_DrawerFrame = n247 +export const dark_red_active_Progress = n247 +export const dark_red_active_TooltipArrow = n247 +export const dark_red_active_Input = n247 +export const dark_red_active_TextArea = n247 +export const dark_red_active_Surface = n247 +const n248 = t([[13, 57],[14, 56],[15, 57],[16, 56],[17, 33],[19, 52],[20, 53],[21, 52],[22, 53],[24, 57],[25, 51],[26, 51],[27, 51],[28, 51]]) + +export const dark_red_alt2_SliderTrackActive = n248 +export const dark_red_active_SliderThumb = n248 +export const dark_red_active_Tooltip = n248 +export const dark_red_active_ProgressIndicator = n248 +const n249 = t([[13, 54],[14, 55],[15, 54],[16, 55],[17, 33],[19, 33],[20, 55],[21, 33],[22, 55],[24, 54],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_red_alt2_Separator = n249 +export const dark_red_active_Checkbox = n249 +export const dark_red_active_SliderTrack = n249 +const n250 = t([[13, 56],[14, 33],[15, 56],[16, 33],[17, 55],[19, 53],[20, 54],[21, 53],[22, 54],[24, 56],[25, 50],[26, 50],[27, 50],[28, 50]]) + +export const dark_red_active_SliderTrackActive = n250 +const n251 = t([[13, 55],[14, 33],[15, 55],[16, 33],[17, 56],[19, 55],[20, 54],[21, 55],[22, 54],[24, 55],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_red_active_Separator = n251 +const n252 = t([[13, 50],[14, 50],[15, 50],[16, 50],[17, 51],[19, 0],[20, 0],[21, 0],[22, 0],[24, 50],[25, 33],[26, 33],[27, 33],[28, 33]]) + +export const dark_red_dim_Card = n252 +export const dark_red_dim_Button = n252 +export const dark_red_dim_Switch = n252 +export const dark_red_dim_DrawerFrame = n252 +export const dark_red_dim_Progress = n252 +export const dark_red_dim_TooltipArrow = n252 +export const dark_red_dim_Input = n252 +export const dark_red_dim_TextArea = n252 +export const dark_red_dim_Surface = n252 +const n253 = t([[13, 51],[14, 51],[15, 51],[16, 51],[17, 52],[19, 58],[20, 58],[21, 58],[22, 58],[24, 51],[25, 56],[26, 56],[27, 56],[28, 56]]) + +export const dark_red_dim_Checkbox = n253 +export const dark_red_dim_SliderTrack = n253 +const n254 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 0],[19, 49],[20, 49],[21, 49],[22, 49],[24, 0],[25, 56],[26, 56],[27, 56],[28, 56]]) + +export const dark_red_dim_SwitchThumb = n254 +const n255 = t([[13, 49],[14, 49],[15, 49],[16, 49],[17, 49],[19, 0],[20, 0],[21, 0],[22, 0],[24, 49],[25, 54],[26, 54],[27, 54],[28, 54]]) + +export const dark_red_dim_TooltipContent = n255 +const n256 = t([[13, 0],[14, 0],[15, 0],[16, 0],[17, 58],[19, 50],[20, 50],[21, 50],[22, 50],[24, 0],[25, 54],[26, 54],[27, 54],[28, 54]]) + +export const dark_red_dim_SliderTrackActive = n256 +const n257 = t([[13, 52],[14, 52],[15, 52],[16, 52],[17, 53],[19, 57],[20, 57],[21, 57],[22, 57],[24, 52],[25, 57],[26, 57],[27, 57],[28, 57]]) + +export const dark_red_dim_Separator = n257 +const n258 = t([[15, 0],[16, 1],[17, 2],[19, 0],[20, 5],[21, 0],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_ghost_alt1_ListItem = n258 +export const light_ghost_alt1_TooltipContent = n258 +const n259 = t([[15, 4],[16, 2],[17, 0],[19, 4],[20, 3],[21, 4],[22, 3],[24, 4],[25, 3],[26, 3],[27, 3],[28, 3]]) + +export const light_ghost_alt1_SliderTrackActive = n259 +export const light_ghost_alt2_SliderThumb = n259 +export const light_ghost_alt2_Tooltip = n259 +export const light_ghost_alt2_ProgressIndicator = n259 +const n260 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 0],[21, 0],[22, 0],[24, 0],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const light_ghost_alt1_Separator = n260 +export const light_ghost_alt2_Checkbox = n260 +export const light_ghost_alt2_SliderTrack = n260 +export const light_ghost_alt2_Separator = n260 +export const light_ghost_active_Card = n260 +export const light_ghost_active_Button = n260 +export const light_ghost_active_Checkbox = n260 +export const light_ghost_active_Switch = n260 +export const light_ghost_active_DrawerFrame = n260 +export const light_ghost_active_Progress = n260 +export const light_ghost_active_TooltipArrow = n260 +export const light_ghost_active_SliderTrack = n260 +export const light_ghost_active_Input = n260 +export const light_ghost_active_TextArea = n260 +export const light_ghost_active_Separator = n260 +export const light_ghost_active_Surface = n260 +const n261 = t([[15, 2],[16, 0],[17, 0],[19, 2],[20, 0],[21, 2],[22, 0],[24, 2],[25, 2],[26, 2],[27, 2],[28, 2]]) + +export const light_ghost_alt2_SliderTrackActive = n261 +export const light_ghost_active_SliderThumb = n261 +export const light_ghost_active_Tooltip = n261 +export const light_ghost_active_ProgressIndicator = n261 +const n262 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 0],[21, 0],[22, 0],[24, 0],[25, 1],[26, 1],[27, 1],[28, 1]]) + +export const light_ghost_active_SliderTrackActive = n262 +const n263 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 5],[21, 0],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_ghost_dim_ListItem = n263 +export const light_ghost_dim_TooltipContent = n263 +const n264 = t([[15, 1],[16, 1],[17, 2],[19, 1],[20, 5],[21, 1],[22, 5],[24, 1],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_ghost_dim_Card = n264 +export const light_ghost_dim_Button = n264 +export const light_ghost_dim_Switch = n264 +export const light_ghost_dim_DrawerFrame = n264 +export const light_ghost_dim_Progress = n264 +export const light_ghost_dim_TooltipArrow = n264 +export const light_ghost_dim_Input = n264 +export const light_ghost_dim_TextArea = n264 +export const light_ghost_dim_Surface = n264 +const n265 = t([[15, 2],[16, 2],[17, 3],[19, 2],[20, 4],[21, 2],[22, 4],[24, 2],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const light_ghost_dim_Checkbox = n265 +export const light_ghost_dim_SliderTrack = n265 +const n266 = t([[15, 3],[16, 3],[17, 0],[19, 3],[20, 2],[21, 3],[22, 2],[24, 3],[25, 2],[26, 2],[27, 2],[28, 2]]) + +export const light_ghost_dim_Separator = n266 +const n267 = t([[15, 5],[16, 9],[17, 10],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_ghost_alt1_TooltipContent = n267 +const n268 = t([[15, 3],[16, 4],[17, 5],[19, 3],[20, 11],[21, 3],[22, 11],[24, 3],[25, 11],[26, 11],[27, 11],[28, 11]]) + +export const dark_ghost_alt1_SliderTrackActive = n268 +export const dark_ghost_alt2_SliderThumb = n268 +export const dark_ghost_alt2_Tooltip = n268 +export const dark_ghost_alt2_ProgressIndicator = n268 +const n269 = t([[15, 4],[16, 5],[17, 5],[19, 4],[20, 5],[21, 4],[22, 5],[24, 4],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_ghost_alt1_Separator = n269 +export const dark_ghost_alt2_Checkbox = n269 +export const dark_ghost_alt2_SliderTrack = n269 +export const dark_ghost_active_Card = n269 +export const dark_ghost_active_Button = n269 +export const dark_ghost_active_Switch = n269 +export const dark_ghost_active_DrawerFrame = n269 +export const dark_ghost_active_Progress = n269 +export const dark_ghost_active_TooltipArrow = n269 +export const dark_ghost_active_Input = n269 +export const dark_ghost_active_TextArea = n269 +export const dark_ghost_active_Surface = n269 +const n270 = t([[15, 4],[16, 5],[17, 5],[19, 4],[20, 4],[21, 4],[22, 4],[24, 4],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_ghost_alt2_SliderTrackActive = n270 +export const dark_ghost_active_SliderThumb = n270 +export const dark_ghost_active_Tooltip = n270 +export const dark_ghost_active_ProgressIndicator = n270 +const n271 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_ghost_alt2_Separator = n271 +export const dark_ghost_active_Checkbox = n271 +export const dark_ghost_active_SliderTrack = n271 +export const dark_ghost_active_Separator = n271 +const n272 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 9],[26, 9],[27, 9],[28, 9]]) + +export const dark_ghost_active_SliderTrackActive = n272 +const n273 = t([[15, 9],[16, 9],[17, 10],[19, 9],[20, 0],[21, 9],[22, 0],[24, 9],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_ghost_dim_Card = n273 +export const dark_ghost_dim_Button = n273 +export const dark_ghost_dim_Switch = n273 +export const dark_ghost_dim_DrawerFrame = n273 +export const dark_ghost_dim_Progress = n273 +export const dark_ghost_dim_TooltipArrow = n273 +export const dark_ghost_dim_Input = n273 +export const dark_ghost_dim_TextArea = n273 +export const dark_ghost_dim_Surface = n273 +const n274 = t([[15, 10],[16, 10],[17, 11],[19, 10],[20, 3],[21, 10],[22, 3],[24, 10],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_ghost_dim_Checkbox = n274 +export const dark_ghost_dim_SliderTrack = n274 +const n275 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_ghost_dim_TooltipContent = n275 +export const dark_green_ghost_dim_TooltipContent = n275 +const n276 = t([[15, 11],[16, 11],[17, 4],[19, 11],[20, 4],[21, 11],[22, 4],[24, 11],[25, 4],[26, 4],[27, 4],[28, 4]]) + +export const dark_ghost_dim_Separator = n276 +const n277 = t([[15, 12],[16, 13],[17, 14],[19, 16],[20, 5],[21, 12],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 19]]) + +export const light_yellow_ghost_alt1_ListItem = n277 +export const light_yellow_ghost_alt1_TooltipContent = n277 +const n278 = t([[15, 5],[16, 5],[17, 5],[19, 21],[20, 12],[21, 5],[22, 12],[24, 21],[25, 20],[26, 21],[27, 21],[28, 18]]) + +export const light_yellow_ghost_alt1_SwitchThumb = n278 +export const light_yellow_ghost_dim_SliderThumb = n278 +export const light_yellow_ghost_dim_Tooltip = n278 +export const light_yellow_ghost_dim_ProgressIndicator = n278 +const n279 = t([[15, 22],[16, 21],[17, 20],[19, 18],[20, 15],[21, 22],[22, 15],[24, 18],[25, 17],[26, 18],[27, 18],[28, 15]]) + +export const light_yellow_ghost_alt1_SliderTrackActive = n279 +export const light_yellow_ghost_alt2_SliderThumb = n279 +export const light_yellow_ghost_alt2_Tooltip = n279 +export const light_yellow_ghost_alt2_ProgressIndicator = n279 +const n280 = t([[15, 16],[16, 17],[17, 18],[19, 20],[20, 19],[21, 16],[22, 19],[24, 20],[25, 21],[26, 20],[27, 20],[28, 5]]) + +export const light_yellow_ghost_alt1_Separator = n280 +export const light_yellow_ghost_alt2_Checkbox = n280 +export const light_yellow_ghost_alt2_SliderTrack = n280 +export const light_yellow_ghost_active_Card = n280 +export const light_yellow_ghost_active_Button = n280 +export const light_yellow_ghost_active_Switch = n280 +export const light_yellow_ghost_active_DrawerFrame = n280 +export const light_yellow_ghost_active_Progress = n280 +export const light_yellow_ghost_active_TooltipArrow = n280 +export const light_yellow_ghost_active_Input = n280 +export const light_yellow_ghost_active_TextArea = n280 +export const light_yellow_ghost_active_Surface = n280 +const n281 = t([[15, 21],[16, 20],[17, 19],[19, 17],[20, 16],[21, 21],[22, 16],[24, 17],[25, 16],[26, 17],[27, 17],[28, 14]]) + +export const light_yellow_ghost_alt2_SliderTrackActive = n281 +export const light_yellow_ghost_active_SliderThumb = n281 +export const light_yellow_ghost_active_Tooltip = n281 +export const light_yellow_ghost_active_ProgressIndicator = n281 +const n282 = t([[15, 17],[16, 18],[17, 19],[19, 21],[20, 18],[21, 17],[22, 18],[24, 21],[25, 22],[26, 21],[27, 21],[28, 5]]) + +export const light_yellow_ghost_alt2_Separator = n282 +export const light_yellow_ghost_active_Checkbox = n282 +export const light_yellow_ghost_active_SliderTrack = n282 +const n283 = t([[15, 20],[16, 19],[17, 18],[19, 16],[20, 17],[21, 20],[22, 17],[24, 16],[25, 15],[26, 16],[27, 16],[28, 13]]) + +export const light_yellow_ghost_active_SliderTrackActive = n283 +const n284 = t([[15, 18],[16, 19],[17, 20],[19, 22],[20, 17],[21, 18],[22, 17],[24, 22],[25, 5],[26, 22],[27, 22],[28, 5]]) + +export const light_yellow_ghost_active_Separator = n284 +const n285 = t([[15, 12],[16, 12],[17, 12],[19, 14],[20, 5],[21, 12],[22, 5],[24, 14],[25, 15],[26, 14],[27, 14],[28, 17]]) + +export const light_yellow_ghost_dim_ListItem = n285 +export const light_yellow_ghost_dim_TooltipContent = n285 +const n286 = t([[15, 13],[16, 13],[17, 14],[19, 16],[20, 5],[21, 13],[22, 5],[24, 16],[25, 17],[26, 16],[27, 16],[28, 19]]) + +export const light_yellow_ghost_dim_Card = n286 +export const light_yellow_ghost_dim_Button = n286 +export const light_yellow_ghost_dim_Switch = n286 +export const light_yellow_ghost_dim_DrawerFrame = n286 +export const light_yellow_ghost_dim_Progress = n286 +export const light_yellow_ghost_dim_TooltipArrow = n286 +export const light_yellow_ghost_dim_Input = n286 +export const light_yellow_ghost_dim_TextArea = n286 +export const light_yellow_ghost_dim_Surface = n286 +const n287 = t([[15, 14],[16, 14],[17, 15],[19, 17],[20, 22],[21, 14],[22, 22],[24, 17],[25, 18],[26, 17],[27, 17],[28, 20]]) + +export const light_yellow_ghost_dim_Checkbox = n287 +export const light_yellow_ghost_dim_SliderTrack = n287 +const n288 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 12],[21, 5],[22, 12],[24, 5],[25, 22],[26, 5],[27, 5],[28, 20]]) + +export const light_yellow_ghost_dim_SwitchThumb = n288 +const n289 = t([[15, 15],[16, 15],[17, 16],[19, 18],[20, 21],[21, 15],[22, 21],[24, 18],[25, 19],[26, 18],[27, 18],[28, 21]]) + +export const light_yellow_ghost_dim_Separator = n289 +const n290 = t([[15, 0],[16, 23],[17, 24],[19, 23],[20, 5],[21, 0],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) + +export const light_green_ghost_alt1_ListItem = n290 +export const light_green_ghost_alt1_TooltipContent = n290 +const n291 = t([[15, 5],[16, 5],[17, 5],[19, 25],[20, 0],[21, 5],[22, 0],[24, 25],[25, 24],[26, 25],[27, 25],[28, 0]]) + +export const light_green_ghost_alt1_SwitchThumb = n291 +export const light_green_ghost_dim_SliderThumb = n291 +export const light_green_ghost_dim_Tooltip = n291 +export const light_green_ghost_dim_ProgressIndicator = n291 +const n292 = t([[15, 5],[16, 25],[17, 24],[19, 0],[20, 25],[21, 5],[22, 25],[24, 0],[25, 0],[26, 0],[27, 0],[28, 25]]) + +export const light_green_ghost_alt1_SliderTrackActive = n292 +export const light_green_ghost_alt2_SliderThumb = n292 +export const light_green_ghost_alt2_Tooltip = n292 +export const light_green_ghost_alt2_ProgressIndicator = n292 +const n293 = t([[15, 23],[16, 0],[17, 0],[19, 24],[20, 23],[21, 23],[22, 23],[24, 24],[25, 25],[26, 24],[27, 24],[28, 5]]) + +export const light_green_ghost_alt1_Separator = n293 +export const light_green_ghost_alt2_Checkbox = n293 +export const light_green_ghost_alt2_SliderTrack = n293 +export const light_green_ghost_active_Card = n293 +export const light_green_ghost_active_Button = n293 +export const light_green_ghost_active_Switch = n293 +export const light_green_ghost_active_DrawerFrame = n293 +export const light_green_ghost_active_Progress = n293 +export const light_green_ghost_active_TooltipArrow = n293 +export const light_green_ghost_active_Input = n293 +export const light_green_ghost_active_TextArea = n293 +export const light_green_ghost_active_Surface = n293 +const n294 = t([[15, 25],[16, 24],[17, 23],[19, 0],[20, 23],[21, 25],[22, 23],[24, 0],[25, 23],[26, 0],[27, 0],[28, 24]]) + +export const light_green_ghost_alt2_SliderTrackActive = n294 +export const light_green_ghost_active_SliderThumb = n294 +export const light_green_ghost_active_Tooltip = n294 +export const light_green_ghost_active_ProgressIndicator = n294 +const n295 = t([[15, 0],[16, 0],[17, 23],[19, 25],[20, 0],[21, 0],[22, 0],[24, 25],[25, 5],[26, 25],[27, 25],[28, 5]]) + +export const light_green_ghost_alt2_Separator = n295 +export const light_green_ghost_active_Checkbox = n295 +export const light_green_ghost_active_SliderTrack = n295 +const n296 = t([[15, 24],[16, 23],[17, 0],[19, 23],[20, 0],[21, 24],[22, 0],[24, 23],[25, 25],[26, 23],[27, 23],[28, 23]]) + +export const light_green_ghost_active_SliderTrackActive = n296 +const n297 = t([[15, 0],[16, 23],[17, 24],[19, 5],[20, 0],[21, 0],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const light_green_ghost_active_Separator = n297 +const n298 = t([[15, 0],[16, 0],[17, 0],[19, 24],[20, 5],[21, 0],[22, 5],[24, 24],[25, 25],[26, 24],[27, 24],[28, 0]]) + +export const light_green_ghost_dim_ListItem = n298 +export const light_green_ghost_dim_TooltipContent = n298 +const n299 = t([[15, 23],[16, 23],[17, 24],[19, 23],[20, 5],[21, 23],[22, 5],[24, 23],[25, 0],[26, 23],[27, 23],[28, 23]]) + +export const light_green_ghost_dim_Card = n299 +export const light_green_ghost_dim_Button = n299 +export const light_green_ghost_dim_Switch = n299 +export const light_green_ghost_dim_DrawerFrame = n299 +export const light_green_ghost_dim_Progress = n299 +export const light_green_ghost_dim_TooltipArrow = n299 +export const light_green_ghost_dim_Input = n299 +export const light_green_ghost_dim_TextArea = n299 +export const light_green_ghost_dim_Surface = n299 +const n300 = t([[15, 24],[16, 24],[17, 25],[19, 0],[20, 5],[21, 24],[22, 5],[24, 0],[25, 0],[26, 0],[27, 0],[28, 24]]) + +export const light_green_ghost_dim_Checkbox = n300 +export const light_green_ghost_dim_SliderTrack = n300 +const n301 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 5],[26, 5],[27, 5],[28, 24]]) + +export const light_green_ghost_dim_SwitchThumb = n301 +const n302 = t([[15, 25],[16, 25],[17, 23],[19, 0],[20, 25],[21, 25],[22, 25],[24, 0],[25, 23],[26, 0],[27, 0],[28, 25]]) + +export const light_green_ghost_dim_Separator = n302 +const n303 = t([[15, 26],[16, 27],[17, 28],[19, 30],[20, 5],[21, 26],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 33]]) + +export const light_red_ghost_alt1_ListItem = n303 +export const light_red_ghost_alt1_TooltipContent = n303 +const n304 = t([[15, 5],[16, 5],[17, 5],[19, 35],[20, 26],[21, 5],[22, 26],[24, 35],[25, 34],[26, 35],[27, 35],[28, 32]]) + +export const light_red_ghost_alt1_SwitchThumb = n304 +export const light_red_ghost_dim_SliderThumb = n304 +export const light_red_ghost_dim_Tooltip = n304 +export const light_red_ghost_dim_ProgressIndicator = n304 +const n305 = t([[15, 36],[16, 35],[17, 34],[19, 32],[20, 29],[21, 36],[22, 29],[24, 32],[25, 31],[26, 32],[27, 32],[28, 29]]) + +export const light_red_ghost_alt1_SliderTrackActive = n305 +export const light_red_ghost_alt2_SliderThumb = n305 +export const light_red_ghost_alt2_Tooltip = n305 +export const light_red_ghost_alt2_ProgressIndicator = n305 +const n306 = t([[15, 30],[16, 31],[17, 32],[19, 34],[20, 33],[21, 30],[22, 33],[24, 34],[25, 35],[26, 34],[27, 34],[28, 5]]) + +export const light_red_ghost_alt1_Separator = n306 +export const light_red_ghost_alt2_Checkbox = n306 +export const light_red_ghost_alt2_SliderTrack = n306 +export const light_red_ghost_active_Card = n306 +export const light_red_ghost_active_Button = n306 +export const light_red_ghost_active_Switch = n306 +export const light_red_ghost_active_DrawerFrame = n306 +export const light_red_ghost_active_Progress = n306 +export const light_red_ghost_active_TooltipArrow = n306 +export const light_red_ghost_active_Input = n306 +export const light_red_ghost_active_TextArea = n306 +export const light_red_ghost_active_Surface = n306 +const n307 = t([[15, 35],[16, 34],[17, 33],[19, 31],[20, 30],[21, 35],[22, 30],[24, 31],[25, 30],[26, 31],[27, 31],[28, 28]]) + +export const light_red_ghost_alt2_SliderTrackActive = n307 +export const light_red_ghost_active_SliderThumb = n307 +export const light_red_ghost_active_Tooltip = n307 +export const light_red_ghost_active_ProgressIndicator = n307 +const n308 = t([[15, 31],[16, 32],[17, 33],[19, 35],[20, 32],[21, 31],[22, 32],[24, 35],[25, 36],[26, 35],[27, 35],[28, 5]]) + +export const light_red_ghost_alt2_Separator = n308 +export const light_red_ghost_active_Checkbox = n308 +export const light_red_ghost_active_SliderTrack = n308 +const n309 = t([[15, 34],[16, 33],[17, 32],[19, 30],[20, 31],[21, 34],[22, 31],[24, 30],[25, 29],[26, 30],[27, 30],[28, 27]]) + +export const light_red_ghost_active_SliderTrackActive = n309 +const n310 = t([[15, 32],[16, 33],[17, 34],[19, 36],[20, 31],[21, 32],[22, 31],[24, 36],[25, 5],[26, 36],[27, 36],[28, 5]]) + +export const light_red_ghost_active_Separator = n310 +const n311 = t([[15, 26],[16, 26],[17, 26],[19, 28],[20, 5],[21, 26],[22, 5],[24, 28],[25, 29],[26, 28],[27, 28],[28, 31]]) + +export const light_red_ghost_dim_ListItem = n311 +export const light_red_ghost_dim_TooltipContent = n311 +const n312 = t([[15, 27],[16, 27],[17, 28],[19, 30],[20, 5],[21, 27],[22, 5],[24, 30],[25, 31],[26, 30],[27, 30],[28, 33]]) + +export const light_red_ghost_dim_Card = n312 +export const light_red_ghost_dim_Button = n312 +export const light_red_ghost_dim_Switch = n312 +export const light_red_ghost_dim_DrawerFrame = n312 +export const light_red_ghost_dim_Progress = n312 +export const light_red_ghost_dim_TooltipArrow = n312 +export const light_red_ghost_dim_Input = n312 +export const light_red_ghost_dim_TextArea = n312 +export const light_red_ghost_dim_Surface = n312 +const n313 = t([[15, 28],[16, 28],[17, 29],[19, 31],[20, 36],[21, 28],[22, 36],[24, 31],[25, 32],[26, 31],[27, 31],[28, 34]]) + +export const light_red_ghost_dim_Checkbox = n313 +export const light_red_ghost_dim_SliderTrack = n313 +const n314 = t([[15, 5],[16, 5],[17, 5],[19, 5],[20, 26],[21, 5],[22, 26],[24, 5],[25, 36],[26, 5],[27, 5],[28, 34]]) + +export const light_red_ghost_dim_SwitchThumb = n314 +const n315 = t([[15, 29],[16, 29],[17, 30],[19, 32],[20, 35],[21, 29],[22, 35],[24, 32],[25, 33],[26, 32],[27, 32],[28, 35]]) + +export const light_red_ghost_dim_Separator = n315 +const n316 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 37],[21, 0],[22, 37],[24, 0],[25, 43],[26, 43],[27, 43],[28, 43]]) + +export const dark_yellow_ghost_alt1_SwitchThumb = n316 +export const dark_yellow_ghost_dim_SliderThumb = n316 +export const dark_yellow_ghost_dim_Tooltip = n316 +export const dark_yellow_ghost_dim_ProgressIndicator = n316 +const n317 = t([[15, 37],[16, 38],[17, 39],[19, 37],[20, 0],[21, 37],[22, 0],[24, 37],[25, 19],[26, 19],[27, 19],[28, 19]]) + +export const dark_yellow_ghost_alt1_TooltipContent = n317 +const n318 = t([[15, 46],[16, 45],[17, 44],[19, 46],[20, 40],[21, 46],[22, 40],[24, 46],[25, 40],[26, 40],[27, 40],[28, 40]]) + +export const dark_yellow_ghost_alt1_SliderTrackActive = n318 +export const dark_yellow_ghost_alt2_SliderThumb = n318 +export const dark_yellow_ghost_alt2_Tooltip = n318 +export const dark_yellow_ghost_alt2_ProgressIndicator = n318 +const n319 = t([[15, 41],[16, 42],[17, 43],[19, 41],[20, 19],[21, 41],[22, 19],[24, 41],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_yellow_ghost_alt1_Separator = n319 +export const dark_yellow_ghost_alt2_Checkbox = n319 +export const dark_yellow_ghost_alt2_SliderTrack = n319 +export const dark_yellow_ghost_active_Card = n319 +export const dark_yellow_ghost_active_Button = n319 +export const dark_yellow_ghost_active_Switch = n319 +export const dark_yellow_ghost_active_DrawerFrame = n319 +export const dark_yellow_ghost_active_Progress = n319 +export const dark_yellow_ghost_active_TooltipArrow = n319 +export const dark_yellow_ghost_active_Input = n319 +export const dark_yellow_ghost_active_TextArea = n319 +export const dark_yellow_ghost_active_Surface = n319 +const n320 = t([[15, 45],[16, 44],[17, 19],[19, 45],[20, 41],[21, 45],[22, 41],[24, 45],[25, 39],[26, 39],[27, 39],[28, 39]]) + +export const dark_yellow_ghost_alt2_SliderTrackActive = n320 +export const dark_yellow_ghost_active_SliderThumb = n320 +export const dark_yellow_ghost_active_Tooltip = n320 +export const dark_yellow_ghost_active_ProgressIndicator = n320 +const n321 = t([[15, 42],[16, 43],[17, 19],[19, 42],[20, 43],[21, 42],[22, 43],[24, 42],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_yellow_ghost_alt2_Separator = n321 +export const dark_yellow_ghost_active_Checkbox = n321 +export const dark_yellow_ghost_active_SliderTrack = n321 +const n322 = t([[15, 44],[16, 19],[17, 43],[19, 44],[20, 42],[21, 44],[22, 42],[24, 44],[25, 38],[26, 38],[27, 38],[28, 38]]) + +export const dark_yellow_ghost_active_SliderTrackActive = n322 +const n323 = t([[15, 43],[16, 19],[17, 44],[19, 43],[20, 42],[21, 43],[22, 42],[24, 43],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_yellow_ghost_active_Separator = n323 +const n324 = t([[15, 38],[16, 38],[17, 39],[19, 38],[20, 0],[21, 38],[22, 0],[24, 38],[25, 19],[26, 19],[27, 19],[28, 19]]) + +export const dark_yellow_ghost_dim_Card = n324 +export const dark_yellow_ghost_dim_Button = n324 +export const dark_yellow_ghost_dim_Switch = n324 +export const dark_yellow_ghost_dim_DrawerFrame = n324 +export const dark_yellow_ghost_dim_Progress = n324 +export const dark_yellow_ghost_dim_TooltipArrow = n324 +export const dark_yellow_ghost_dim_Input = n324 +export const dark_yellow_ghost_dim_TextArea = n324 +export const dark_yellow_ghost_dim_Surface = n324 +const n325 = t([[15, 39],[16, 39],[17, 40],[19, 39],[20, 46],[21, 39],[22, 46],[24, 39],[25, 44],[26, 44],[27, 44],[28, 44]]) + +export const dark_yellow_ghost_dim_Checkbox = n325 +export const dark_yellow_ghost_dim_SliderTrack = n325 +const n326 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 37],[21, 0],[22, 37],[24, 0],[25, 44],[26, 44],[27, 44],[28, 44]]) + +export const dark_yellow_ghost_dim_SwitchThumb = n326 +const n327 = t([[15, 37],[16, 37],[17, 37],[19, 37],[20, 0],[21, 37],[22, 0],[24, 37],[25, 42],[26, 42],[27, 42],[28, 42]]) + +export const dark_yellow_ghost_dim_TooltipContent = n327 +const n328 = t([[15, 40],[16, 40],[17, 41],[19, 40],[20, 45],[21, 40],[22, 45],[24, 40],[25, 45],[26, 45],[27, 45],[28, 45]]) + +export const dark_yellow_ghost_dim_Separator = n328 +const n329 = t([[15, 24],[16, 10],[17, 5],[19, 24],[20, 5],[21, 24],[22, 5],[24, 24],[25, 47],[26, 47],[27, 47],[28, 47]]) + +export const dark_green_ghost_alt1_Button = n329 +export const dark_green_ghost_active_SliderTrackActive = n329 +const n330 = t([[15, 5],[16, 47],[17, 24],[19, 5],[20, 0],[21, 5],[22, 0],[24, 5],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_green_ghost_alt1_TooltipContent = n330 +const n331 = t([[15, 0],[16, 23],[17, 24],[19, 0],[20, 48],[21, 0],[22, 48],[24, 0],[25, 48],[26, 48],[27, 48],[28, 48]]) + +export const dark_green_ghost_alt1_SliderTrackActive = n331 +export const dark_green_ghost_alt2_SliderThumb = n331 +export const dark_green_ghost_alt2_Tooltip = n331 +export const dark_green_ghost_alt2_ProgressIndicator = n331 +const n332 = t([[15, 23],[16, 5],[17, 5],[19, 23],[20, 10],[21, 23],[22, 10],[24, 23],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_green_ghost_alt1_Separator = n332 +export const dark_green_ghost_alt2_Checkbox = n332 +export const dark_green_ghost_alt2_SliderTrack = n332 +export const dark_green_ghost_active_Card = n332 +export const dark_green_ghost_active_Switch = n332 +export const dark_green_ghost_active_DrawerFrame = n332 +export const dark_green_ghost_active_Progress = n332 +export const dark_green_ghost_active_TooltipArrow = n332 +export const dark_green_ghost_active_Input = n332 +export const dark_green_ghost_active_TextArea = n332 +export const dark_green_ghost_active_Surface = n332 +const n333 = t([[15, 10],[16, 5],[17, 5],[19, 10],[20, 5],[21, 10],[22, 5],[24, 10],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_green_ghost_alt2_Button = n333 +const n334 = t([[15, 5],[16, 5],[17, 10],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_green_ghost_alt2_Separator = n334 +export const dark_green_ghost_active_Checkbox = n334 +export const dark_green_ghost_active_SliderTrack = n334 +const n335 = t([[15, 5],[16, 5],[17, 23],[19, 5],[20, 10],[21, 5],[22, 10],[24, 5],[25, 5],[26, 5],[27, 5],[28, 5]]) + +export const dark_green_ghost_active_Button = n335 +const n336 = t([[15, 5],[16, 10],[17, 24],[19, 5],[20, 5],[21, 5],[22, 5],[24, 5],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_green_ghost_active_Separator = n336 +const n337 = t([[15, 47],[16, 47],[17, 24],[19, 47],[20, 0],[21, 47],[22, 0],[24, 47],[25, 10],[26, 10],[27, 10],[28, 10]]) + +export const dark_green_ghost_dim_Card = n337 +export const dark_green_ghost_dim_Switch = n337 +export const dark_green_ghost_dim_DrawerFrame = n337 +export const dark_green_ghost_dim_Progress = n337 +export const dark_green_ghost_dim_TooltipArrow = n337 +export const dark_green_ghost_dim_Input = n337 +export const dark_green_ghost_dim_TextArea = n337 +export const dark_green_ghost_dim_Surface = n337 +const n338 = t([[15, 23],[16, 23],[17, 24],[19, 23],[20, 48],[21, 23],[22, 48],[24, 23],[25, 48],[26, 48],[27, 48],[28, 48]]) + +export const dark_green_ghost_dim_Button = n338 +const n339 = t([[15, 24],[16, 24],[17, 48],[19, 24],[20, 0],[21, 24],[22, 0],[24, 24],[25, 24],[26, 24],[27, 24],[28, 24]]) + +export const dark_green_ghost_dim_Checkbox = n339 +export const dark_green_ghost_dim_SliderTrack = n339 +const n340 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 5],[21, 0],[22, 5],[24, 0],[25, 24],[26, 24],[27, 24],[28, 24]]) + +export const dark_green_ghost_dim_SwitchThumb = n340 +const n341 = t([[15, 48],[16, 48],[17, 23],[19, 48],[20, 23],[21, 48],[22, 23],[24, 48],[25, 23],[26, 23],[27, 23],[28, 23]]) + +export const dark_green_ghost_dim_Separator = n341 +const n342 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 49],[21, 0],[22, 49],[24, 0],[25, 55],[26, 55],[27, 55],[28, 55]]) + +export const dark_red_ghost_alt1_SwitchThumb = n342 +export const dark_red_ghost_dim_SliderThumb = n342 +export const dark_red_ghost_dim_Tooltip = n342 +export const dark_red_ghost_dim_ProgressIndicator = n342 +const n343 = t([[15, 49],[16, 50],[17, 51],[19, 49],[20, 0],[21, 49],[22, 0],[24, 49],[25, 33],[26, 33],[27, 33],[28, 33]]) + +export const dark_red_ghost_alt1_TooltipContent = n343 +const n344 = t([[15, 58],[16, 57],[17, 56],[19, 58],[20, 52],[21, 58],[22, 52],[24, 58],[25, 52],[26, 52],[27, 52],[28, 52]]) + +export const dark_red_ghost_alt1_SliderTrackActive = n344 +export const dark_red_ghost_alt2_SliderThumb = n344 +export const dark_red_ghost_alt2_Tooltip = n344 +export const dark_red_ghost_alt2_ProgressIndicator = n344 +const n345 = t([[15, 53],[16, 54],[17, 55],[19, 53],[20, 33],[21, 53],[22, 33],[24, 53],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_red_ghost_alt1_Separator = n345 +export const dark_red_ghost_alt2_Checkbox = n345 +export const dark_red_ghost_alt2_SliderTrack = n345 +export const dark_red_ghost_active_Card = n345 +export const dark_red_ghost_active_Button = n345 +export const dark_red_ghost_active_Switch = n345 +export const dark_red_ghost_active_DrawerFrame = n345 +export const dark_red_ghost_active_Progress = n345 +export const dark_red_ghost_active_TooltipArrow = n345 +export const dark_red_ghost_active_Input = n345 +export const dark_red_ghost_active_TextArea = n345 +export const dark_red_ghost_active_Surface = n345 +const n346 = t([[15, 57],[16, 56],[17, 33],[19, 57],[20, 53],[21, 57],[22, 53],[24, 57],[25, 51],[26, 51],[27, 51],[28, 51]]) + +export const dark_red_ghost_alt2_SliderTrackActive = n346 +export const dark_red_ghost_active_SliderThumb = n346 +export const dark_red_ghost_active_Tooltip = n346 +export const dark_red_ghost_active_ProgressIndicator = n346 +const n347 = t([[15, 54],[16, 55],[17, 33],[19, 54],[20, 55],[21, 54],[22, 55],[24, 54],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_red_ghost_alt2_Separator = n347 +export const dark_red_ghost_active_Checkbox = n347 +export const dark_red_ghost_active_SliderTrack = n347 +const n348 = t([[15, 56],[16, 33],[17, 55],[19, 56],[20, 54],[21, 56],[22, 54],[24, 56],[25, 50],[26, 50],[27, 50],[28, 50]]) + +export const dark_red_ghost_active_SliderTrackActive = n348 +const n349 = t([[15, 55],[16, 33],[17, 56],[19, 55],[20, 54],[21, 55],[22, 54],[24, 55],[25, 0],[26, 0],[27, 0],[28, 0]]) + +export const dark_red_ghost_active_Separator = n349 +const n350 = t([[15, 50],[16, 50],[17, 51],[19, 50],[20, 0],[21, 50],[22, 0],[24, 50],[25, 33],[26, 33],[27, 33],[28, 33]]) + +export const dark_red_ghost_dim_Card = n350 +export const dark_red_ghost_dim_Button = n350 +export const dark_red_ghost_dim_Switch = n350 +export const dark_red_ghost_dim_DrawerFrame = n350 +export const dark_red_ghost_dim_Progress = n350 +export const dark_red_ghost_dim_TooltipArrow = n350 +export const dark_red_ghost_dim_Input = n350 +export const dark_red_ghost_dim_TextArea = n350 +export const dark_red_ghost_dim_Surface = n350 +const n351 = t([[15, 51],[16, 51],[17, 52],[19, 51],[20, 58],[21, 51],[22, 58],[24, 51],[25, 56],[26, 56],[27, 56],[28, 56]]) + +export const dark_red_ghost_dim_Checkbox = n351 +export const dark_red_ghost_dim_SliderTrack = n351 +const n352 = t([[15, 0],[16, 0],[17, 0],[19, 0],[20, 49],[21, 0],[22, 49],[24, 0],[25, 56],[26, 56],[27, 56],[28, 56]]) + +export const dark_red_ghost_dim_SwitchThumb = n352 +const n353 = t([[15, 49],[16, 49],[17, 49],[19, 49],[20, 0],[21, 49],[22, 0],[24, 49],[25, 54],[26, 54],[27, 54],[28, 54]]) + +export const dark_red_ghost_dim_TooltipContent = n353 +const n354 = t([[15, 52],[16, 52],[17, 53],[19, 52],[20, 57],[21, 52],[22, 57],[24, 52],[25, 57],[26, 57],[27, 57],[28, 57]]) + +export const dark_red_ghost_dim_Separator = n354 \ No newline at end of file From 24cc6cabd963575a983bf8e1b7383951a6019ef6 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Mon, 1 Jul 2024 10:23:08 -0500 Subject: [PATCH 07/11] Create dependabot.yml (#515) --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..5990d9c64 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From a46b920d9e108bc8c7d3f8a6e42c983c9cac4e13 Mon Sep 17 00:00:00 2001 From: Tawnee Date: Wed, 26 Jun 2024 15:05:45 -0600 Subject: [PATCH 08/11] account-modal-2 --- .../app/components/icons/IconInfoCircle.tsx | 30 + packages/app/components/icons/index.tsx | 1 + .../__snapshots__/screen.test.tsx.snap | 1992 ++++++++++------- packages/app/features/account/screen.tsx | 150 +- 4 files changed, 1259 insertions(+), 914 deletions(-) create mode 100644 packages/app/components/icons/IconInfoCircle.tsx diff --git a/packages/app/components/icons/IconInfoCircle.tsx b/packages/app/components/icons/IconInfoCircle.tsx new file mode 100644 index 000000000..a705679b2 --- /dev/null +++ b/packages/app/components/icons/IconInfoCircle.tsx @@ -0,0 +1,30 @@ +import React, { memo } from 'react' +import type { IconProps } from '@tamagui/helpers-icon' +import { Svg, Circle as _Circle, Path } from 'react-native-svg' +import { themed } from '@tamagui/helpers-icon' +import type { ColorTokens } from '@my/ui' + +const Icon = (props) => { + const { color = 'black', size = 24, ...otherProps } = props + return ( + + <_Circle cx="12" cy="12" r="10" stroke={'currentColor'} /> + + + + ) +} + +Icon.displayName = 'Info' + +export const IconInfoCircle = memo(themed(Icon)) diff --git a/packages/app/components/icons/index.tsx b/packages/app/components/icons/index.tsx index 780934d2a..20761beac 100644 --- a/packages/app/components/icons/index.tsx +++ b/packages/app/components/icons/index.tsx @@ -52,3 +52,4 @@ export { IconInfoGreenCircle } from './IconInfoGreenCircle' export { IconDots } from './IconDots' export { IconDeviceReset } from './IconDeviceReset' export { IconBadgeCheck } from './IconBadgeCheck' +export { IconInfoCircle } from './IconInfoCircle' diff --git a/packages/app/features/account/__snapshots__/screen.test.tsx.snap b/packages/app/features/account/__snapshots__/screen.test.tsx.snap index c61932792..77eb8864a 100644 --- a/packages/app/features/account/__snapshots__/screen.test.tsx.snap +++ b/packages/app/features/account/__snapshots__/screen.test.tsx.snap @@ -1,32 +1,15 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`AccountScreen renders the account screen: AccountScreen 1`] = ` - +[ - - - - + + + - - - - + strokeWidth="2" + > + + + + - - - - - NO NAME - - - @ - test - - - + NO NAME + + - SENDTAGS - : + @ + test + + + - @test + SENDTAGS + : + + + @test + + - - - - - - - - + + + + - Settings - + suppressHighlighting={true} + > + Settings + + - - - - Sendtags - - - Add a sendtag now! - - + Sendtags + + - - - - - - + /> + - - - - Add - + + - - - - - Rewards - - - Start earning today! - - - + Add a sendtag now! + + - - - - - - + + + + + + + + + - Earn - + suppressHighlighting={true} + userSelect="none" + > + Add + + - - - - Referrals - - - Share your link - - + + Rewards + + + + suppressHighlighting={true} + > + Start earning today! + - - SEND.APP/ - + + + + + + + Earn + + + + + + + + + Referrals + + + + Share your link + + + - + + SEND.APP/ + + - + - - - + > + + + + - - + , + + + + + + , +] `; diff --git a/packages/app/features/account/screen.tsx b/packages/app/features/account/screen.tsx index 45445313d..8e18e16e0 100644 --- a/packages/app/features/account/screen.tsx +++ b/packages/app/features/account/screen.tsx @@ -9,25 +9,24 @@ import { TooltipSimple, useMedia, Theme, - H3, - Stack, Card, View, Heading, isWeb, - ButtonIcon, - ButtonText, - LinkableAvatar, LinkableButton, + Dialog, + Adapt, + Sheet, } from '@my/ui' import { IconAccount, IconCopy, IconDollar, IconGear, - IconPlus, IconShare, IconBadgeCheck, + IconInfoCircle, + IconX, } from 'app/components/icons' import { getReferralHref } from 'app/utils/getReferralLink' import { useUser } from 'app/utils/useUser' @@ -288,30 +287,6 @@ export function AccountScreen() { {card.child} ))} - - {tags?.length === 0 ? ( - <> - - - - - - - - - SENDTAGS - - - - - - ) : null} ) @@ -346,10 +321,13 @@ const ActionCard = ({ width: isWeb ? 'calc((100% - 48px) / 3)' : '100%', }} > - - {title} - - + + + {title} + + {title === 'Sendtags' && } + + {description} {children} @@ -357,32 +335,86 @@ const ActionCard = ({ ) } -const NoTagsMessage = () => { +const InfoDialog = () => { + const steps = [ + 'Qualify for Send.it Rewards based on your token balance', + 'Send and receive funds using your personalized, easy-to-remember Sendtag', + 'Claim your preferred Sendtag before someone else does', + ] return ( - <> -

- Register your Sendtag Today! -

+ + + + + + + + + + + + - - - By registering a Sendtag, you can: - - - - 1. Qualify for Send it Rewards based on your token balance - - - 2. Send and receive funds using your personalized, easy-to-remember Sendtag - - - 3. Claim your preferred Sendtag before someone else does - - - - Join us in shaping the Future of Finance. - - - + + + + + + + + + + By registering a Sendtag, you can: + + + + + {/* @TODO: font color */} + {steps.map((step, i) => ( + + {i + 1}. + {step} + + ))} + + + + Join 7000+ Senders in shaping the Future of Finance. + + + + + ) } From 277cdbffe95990ef9eecf683c87e2786aae68f12 Mon Sep 17 00:00:00 2001 From: Tawnee Date: Mon, 1 Jul 2024 16:42:45 -0600 Subject: [PATCH 09/11] confirm chain id --- packages/app/features/send/confirm/screen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app/features/send/confirm/screen.tsx b/packages/app/features/send/confirm/screen.tsx index 772a5e31e..340c60eb1 100644 --- a/packages/app/features/send/confirm/screen.tsx +++ b/packages/app/features/send/confirm/screen.tsx @@ -107,7 +107,7 @@ export function SendConfirm({ profile }: { profile: ProfileProp }) { data: feesPerGas, isLoading: isFeesPerGasLoading, error: feesPerGasError, - } = useEstimateFeesPerGas() + } = useEstimateFeesPerGas({ chainId: baseMainnet.id }) const { mutateAsync: sendUserOp, isPending: isTransferPending, From 642a093c53d40cfb3ce08ded403c094f1db109f4 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Mon, 1 Jul 2024 20:10:57 -0500 Subject: [PATCH 10/11] fix deposit specs (#522) --- Tiltfile | 5 +---- Caddyfile.dev => dev.Caddyfile | 0 packages/app/features/home/screen.tsx | 16 +++++++--------- .../playwright/tests/deposit.onboarded.spec.ts | 4 +++- 4 files changed, 11 insertions(+), 14 deletions(-) rename Caddyfile.dev => dev.Caddyfile (100%) diff --git a/Tiltfile b/Tiltfile index 0556084fe..46897f875 100644 --- a/Tiltfile +++ b/Tiltfile @@ -184,11 +184,8 @@ local_resource( "caddy:web", auto_init = not CI, labels = labels, - serve_cmd = "caddy run --watch --config Caddyfile.dev", + serve_cmd = "caddy run --watch --config dev.Caddyfile", trigger_mode = TRIGGER_MODE_MANUAL, - deps = [ - "Caddyfile.dev", - ], ) # TESTS diff --git a/Caddyfile.dev b/dev.Caddyfile similarity index 100% rename from Caddyfile.dev rename to dev.Caddyfile diff --git a/packages/app/features/home/screen.tsx b/packages/app/features/home/screen.tsx index 7c5b8f269..e6286dac0 100644 --- a/packages/app/features/home/screen.tsx +++ b/packages/app/features/home/screen.tsx @@ -81,18 +81,16 @@ export function HomeScreen() { - {usdcBalance && usdcBalance > 0n ? ( - - - - + + + + + {usdcBalance && usdcBalance > 0n ? ( - - ) : ( - - )} + ) : null} + diff --git a/packages/playwright/tests/deposit.onboarded.spec.ts b/packages/playwright/tests/deposit.onboarded.spec.ts index 0f425936c..b798a534e 100644 --- a/packages/playwright/tests/deposit.onboarded.spec.ts +++ b/packages/playwright/tests/deposit.onboarded.spec.ts @@ -199,7 +199,9 @@ test('can deposit ETH with web3 wallet', async ({ const depositButton = page.getByRole('button', { name: 'Deposit' }) await depositButton.click() - await page.getByRole('link', { name: 'Deposit with Web3 Wallet' }).click() + const depositWeb3Button = page.getByRole('link', { name: 'Deposit with Web3 Wallet' }) + await expect(depositWeb3Button).toBeVisible() + await depositWeb3Button.click() await page.waitForURL('/deposit/web3') await expect(page.locator('w3m-modal')).toBeVisible() From ca386a8765d2a75a45d71d9455bd29875c2cc6ea Mon Sep 17 00:00:00 2001 From: Big Boss Date: Mon, 1 Jul 2024 20:52:29 -0500 Subject: [PATCH 11/11] update home screen snapshot (#523) --- .../home/__snapshots__/screen.test.tsx.snap | 364 ++++++++++-------- 1 file changed, 193 insertions(+), 171 deletions(-) diff --git a/packages/app/features/home/__snapshots__/screen.test.tsx.snap b/packages/app/features/home/__snapshots__/screen.test.tsx.snap index 5d23f19a4..d9244e715 100644 --- a/packages/app/features/home/__snapshots__/screen.test.tsx.snap +++ b/packages/app/features/home/__snapshots__/screen.test.tsx.snap @@ -341,217 +341,239 @@ exports[`HomeScreen 1`] = ` - - Deposit - - - - - - + + - - - - - + + - - - + height="22" + propList={ + [ + "stroke", + "strokeWidth", + ] + } + rx="11" + stroke={ + { + "payload": 4279377955, + "type": 0, + } + } + strokeWidth="2" + width="22" + x="1" + y="1" + /> + + + + + + + + + +