From 800bdf438a023a011501025cb68a00b1dfea1942 Mon Sep 17 00:00:00 2001 From: Peter Piekarczyk Date: Tue, 7 Mar 2023 16:26:40 -0600 Subject: [PATCH 01/25] wip --- .gitignore | 1 + packages/app-extension/package.json | 8 +- packages/app-mobile/babel.config.js | 22 +- packages/app-mobile/package.json | 20 +- packages/app-mobile/src/App.tsx | 18 +- .../src/navigation/OnboardingNavigator.tsx | 110 +- packages/app-mobile/tamagui.config.ts | 3 + packages/tamagui-core/package.json | 34 + packages/tamagui-core/src/animations.ts | 21 + packages/tamagui-core/src/index.tsx | 23 + packages/tamagui-core/src/tamagui.config.ts | 45 + packages/tamagui-core/tsconfig.json | 12 + packages/tamagui-core/types/animations.d.ts | 20 + .../tamagui-core/types/animations.d.ts.map | 1 + packages/tamagui-core/types/index.d.ts | 26 + packages/tamagui-core/types/index.d.ts.map | 1 + .../tamagui-core/types/tamagui.config.d.ts | 42268 ++++++++++++++++ .../types/tamagui.config.d.ts.map | 1 + tsconfig.json | 4 +- yarn.lock | 1280 +- 20 files changed, 43838 insertions(+), 80 deletions(-) create mode 100644 packages/app-mobile/tamagui.config.ts create mode 100644 packages/tamagui-core/package.json create mode 100644 packages/tamagui-core/src/animations.ts create mode 100644 packages/tamagui-core/src/index.tsx create mode 100644 packages/tamagui-core/src/tamagui.config.ts create mode 100644 packages/tamagui-core/tsconfig.json create mode 100644 packages/tamagui-core/types/animations.d.ts create mode 100644 packages/tamagui-core/types/animations.d.ts.map create mode 100644 packages/tamagui-core/types/index.d.ts create mode 100644 packages/tamagui-core/types/index.d.ts.map create mode 100644 packages/tamagui-core/types/tamagui.config.d.ts create mode 100644 packages/tamagui-core/types/tamagui.config.d.ts.map diff --git a/.gitignore b/.gitignore index e8fe3fe541..d44b1b72e2 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ test-ledger/ .tsbuildinfo .dev.vars +.tamagui diff --git a/packages/app-extension/package.json b/packages/app-extension/package.json index 193fe702a2..3d48e2daf4 100644 --- a/packages/app-extension/package.json +++ b/packages/app-extension/package.json @@ -14,6 +14,7 @@ "@coral-xyz/react-common": "*", "@coral-xyz/react-native-core": "*", "@coral-xyz/recoil": "*", + "@coral-xyz/tamagui": "*", "@coral-xyz/themes": "*", "@emotion/react": "^11.10.6", "@emotion/styled": "^11.10.6", @@ -53,9 +54,9 @@ "web-push": "^3.5.0" }, "scripts": { - "start": "cross-env NODE_ENV=development webpack serve --config webpack.dev.config.js", - "build": "cross-env NODE_ENV=production webpack", - "build:release": "cross-env NODE_ENV=production webpack", + "start": "cross-env NODE_ENV=development TAMAGUI_TARGET=web webpack serve --config webpack.dev.config.js", + "build": "cross-env NODE_ENV=production TAMAGUI_TARGET=web webpack", + "build:release": "cross-env NODE_ENV=production TAMAGUI_TARGET=web webpack", "e2e": "jest --maxWorkers 1 --detectOpenHandles --forceExit --verbose", "lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --cache", "lint:fix": "yarn run lint --fix" @@ -105,6 +106,7 @@ "stream-browserify": "^3.0.0", "style-loader": "^3.3.1", "swc-loader": "^0.2.3", + "tamagui-loader": "^1.7.1", "typescript": "~4.9.3", "webpack": "^5.75.0", "webpack-bundle-analyzer": "^4.7.0", diff --git a/packages/app-mobile/babel.config.js b/packages/app-mobile/babel.config.js index 17131ee324..79b3ce0dd9 100644 --- a/packages/app-mobile/babel.config.js +++ b/packages/app-mobile/babel.config.js @@ -1,7 +1,25 @@ -module.exports = function (api) { +process.env.TAMAGUI_TARGET = "native"; // Don't forget to specify your TAMAGUI_TARGET here + +module.exports = function(api) { api.cache(true); return { presets: ["babel-preset-expo"], - plugins: ["react-native-reanimated/plugin"], + plugins: [ + [ + "@tamagui/babel-plugin", + { + exclude: /node_modules/, + components: ["@coral-xyz/tamagui", "tamagui"], + config: "./tamagui.config.ts", + }, + ], + [ + "transform-inline-environment-variables", + { + include: "TAMAGUI_TARGET", + }, + ], + "react-native-reanimated/plugin", + ], }; }; diff --git a/packages/app-mobile/package.json b/packages/app-mobile/package.json index fd4707de13..963fec0f82 100644 --- a/packages/app-mobile/package.json +++ b/packages/app-mobile/package.json @@ -4,9 +4,9 @@ "main": "index.js", "scripts": { "eas-build-post-install": "cd ../../ && yarn build:mobile", - "android": "expo start --android", - "ios": "expo start --ios", - "web": "expo start --web", + "android": "TAMAGUI_TARGET=native expo start --android", + "ios": "TAMAGUI_TARGET=native expo start --ios", + "web": "TAMAGUI_TARGET=web expo start --web", "add": "expo add", "eject": "expo eject", "lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --cache", @@ -17,11 +17,13 @@ "@cardinal/payment-manager": "^1.7.9", "@cardinal/token-manager": "^1.7.9", "@coral-xyz/common": "*", - "@coral-xyz/recoil": "*", "@coral-xyz/react-native-core": "*", + "@coral-xyz/tamagui": "*", + "@coral-xyz/recoil": "*", "@ethersproject/shims": "^5.7.0", "@expo/react-native-action-sheet": "^4.0.1", "@expo/vector-icons": "^13.0.0", + "@floating-ui/react-native": "^0.9.0", "@gorhom/bottom-sheet": "^4.4.5", "@metaplex-foundation/mpl-token-metadata": "^2.7.0", "@project-serum/anchor": "^0.24.2", @@ -29,17 +31,18 @@ "@react-navigation/native": "^6.0.11", "@react-navigation/native-stack": "^6.7.0", "@react-navigation/stack": "^6.3.2", + "babel-plugin-transform-inline-environment-variables": "^0.4.4", "big-integer": "^1.6.51", "buffer": "^6.0.3", "ethers": "^5.7.2", "expo": "^48.0.4", "expo-blur": "~12.2.1", "expo-checkbox": "~2.3.1", - "expo-clipboard": "~4.1.1", + "expo-clipboard": "~4.1.2", "expo-constants": "~14.2.1", "expo-crypto": "~12.2.1", "expo-device": "~5.2.1", - "expo-font": "~11.1.1", + "expo-font": "^11.1.1", "expo-linking": "~4.0.1", "expo-random": "~13.1.1", "expo-secure-store": "~12.1.1", @@ -47,7 +50,7 @@ "expo-status-bar": "~1.4.4", "expo-updates": "~0.16.1", "react": "18.2.0", - "react-dom": "18.2.0", + "react-dom": "^18.2.0", "react-hook-form": "^7.40.0", "react-native": "0.71.3", "react-native-gesture-handler": "~2.9.0", @@ -56,11 +59,12 @@ "react-native-screens": "~3.20.0", "react-native-svg": "13.4.0", "react-native-url-polyfill": "^1.3.0", - "react-native-web": "~0.18.7", + "react-native-web": "~0.18.12", "react-native-webview": "11.26.0", "react-qr-code": "^2.0.8", "react-test-renderer": "^18.2.0", "recoil": "^0.7.6", + "tamagui": "^1.7.1", "uuid": "^9.0.0" }, "devDependencies": { diff --git a/packages/app-mobile/src/App.tsx b/packages/app-mobile/src/App.tsx index ff311096b2..f48d73f410 100644 --- a/packages/app-mobile/src/App.tsx +++ b/packages/app-mobile/src/App.tsx @@ -1,3 +1,4 @@ +// import "@tamagui/core/reset.css"; import { Suspense, useCallback, useEffect, useRef } from "react"; import { Button, StyleSheet, Text, View } from "react-native"; @@ -12,6 +13,7 @@ import { WEB_VIEW_EVENTS, } from "@coral-xyz/common"; import { NotificationsProvider } from "@coral-xyz/recoil"; +import { TamaguiProvider, config } from "@coral-xyz/tamagui"; import { ActionSheetProvider } from "@expo/react-native-action-sheet"; import { BottomSheetModalProvider } from "@gorhom/bottom-sheet"; import { SafeAreaProvider } from "react-native-safe-area-context"; @@ -78,13 +80,15 @@ export function App(): JSX.Element { function Providers({ children }: { children: JSX.Element }): JSX.Element { return ( - - - - {children} - - - + + + + + {children} + + + + ); } diff --git a/packages/app-mobile/src/navigation/OnboardingNavigator.tsx b/packages/app-mobile/src/navigation/OnboardingNavigator.tsx index 4485421cd1..5eca450b13 100644 --- a/packages/app-mobile/src/navigation/OnboardingNavigator.tsx +++ b/packages/app-mobile/src/navigation/OnboardingNavigator.tsx @@ -32,6 +32,7 @@ import { OnboardingProvider, useOnboarding, } from "@coral-xyz/recoil"; +import { Circle } from "@coral-xyz/tamagui"; import { MaterialIcons } from "@expo/vector-icons"; import { createStackNavigator } from "@react-navigation/stack"; import { useForm } from "react-hook-form"; @@ -81,6 +82,40 @@ import { import { useTheme } from "~hooks/useTheme"; import { maybeRender } from "~lib/index"; +function OnboardingScreen({ + title, + subtitle, + children, + style, + scrollable, +}: { + title: string; + subtitle?: string; + children?: any; + style?: StyleProp; + scrollable?: boolean; +}) { + const insets = useSafeAreaInsets(); + return ( + + +
+ {subtitle ? {subtitle} : null} + + {children} + + ); +} + function Network({ id, label, @@ -131,6 +166,7 @@ function Network({ } type OnboardingStackParamList = { + RecoverUsername: undefined; CreateOrImportWallet: undefined; OnboardingUsername: undefined; KeyringTypeSelector: undefined; @@ -143,37 +179,33 @@ type OnboardingStackParamList = { const Stack = createStackNavigator(); -function OnboardingScreen({ - title, - subtitle, - children, - style, - scrollable, -}: { - title: string; - subtitle?: string; - children?: any; - style?: StyleProp; - scrollable?: boolean; -}) { - const insets = useSafeAreaInsets(); +function OnboardingUsernameRecoveryScreen({ navigation }) { + const { onboardingData, setOnboardingData } = useOnboarding(); return ( - - -
- {subtitle ? {subtitle} : null} - - {children} - + + + setOnboardingData({ username })} + /> + + { + navigation.push("MnemonicInput"); + }} + /> + + ); } @@ -205,27 +237,23 @@ function OnboardingCreateOrImportWalletScreen({ - + { setOnboardingData({ action: "create" }); navigation.push("OnboardingUsername"); }} /> + { - setOnboardingData({ action: "import" }); + setOnboardingData({ action: "recover" }); navigation.push("MnemonicInput"); }} /> - + + { + return { + width: tokens.size[size] ?? size, + height: tokens.size[size] ?? size, + }; + }, + }, + }, +}); + +export type CircleProps = GetProps; diff --git a/packages/tamagui-core/src/tamagui.config.ts b/packages/tamagui-core/src/tamagui.config.ts new file mode 100644 index 0000000000..d64c2cad8f --- /dev/null +++ b/packages/tamagui-core/src/tamagui.config.ts @@ -0,0 +1,45 @@ +// import { createAnimations } from "@tamagui/animations-react-native"; +// import { createInterFont } from "@tamagui/font-inter"; +// import { createMedia } from "@tamagui/react-native-media-driver"; +import { config as tconfig } from "@tamagui/config"; +import { shorthands } from "@tamagui/shorthands"; +import { themes, tokens } from "@tamagui/theme-base"; +import { createTamagui } from "tamagui"; + +// const animations = createAnimations({ +// bouncy: { +// type: "spring", +// damping: 10, +// mass: 0.9, +// stiffness: 100, +// }, +// lazy: { +// type: "spring", +// damping: 20, +// stiffness: 60, +// }, +// quick: { +// type: "spring", +// damping: 20, +// mass: 1.2, +// stiffness: 250, +// }, +// }); + +// const headingFont = createInterFont(); +// const bodyFont = createInterFont(); +// export const config = createTamagui({ +// themes, +// tokens, +// shorthands, +// }); + +export const config = createTamagui(tconfig); +export type AppConfig = typeof config; +declare module "tamagui" { + // overrides TamaguiCustomConfig so your custom types + // work everywhere you import `tamagui` + type TamaguiCustomConfig = AppConfig; +} + +export default config; diff --git a/packages/tamagui-core/tsconfig.json b/packages/tamagui-core/tsconfig.json new file mode 100644 index 0000000000..e9c5ca26d2 --- /dev/null +++ b/packages/tamagui-core/tsconfig.json @@ -0,0 +1,12 @@ +{ + "extends": "../../tsconfig.base", + "include": [ + "src" + ], + "compilerOptions": { + "composite": true, + "esModuleInterop": true, + "jsx": "preserve" + }, + "references": [] +} diff --git a/packages/tamagui-core/types/animations.d.ts b/packages/tamagui-core/types/animations.d.ts new file mode 100644 index 0000000000..20a1cd96a1 --- /dev/null +++ b/packages/tamagui-core/types/animations.d.ts @@ -0,0 +1,20 @@ +export declare const animations: import("@tamagui/web").AnimationDriver<{ + bouncy: { + type: string; + damping: number; + mass: number; + stiffness: number; + }; + lazy: { + type: string; + damping: number; + stiffness: number; + }; + quick: { + type: string; + damping: number; + mass: number; + stiffness: number; + }; +}>; +//# sourceMappingURL=animations.d.ts.map \ No newline at end of file diff --git a/packages/tamagui-core/types/animations.d.ts.map b/packages/tamagui-core/types/animations.d.ts.map new file mode 100644 index 0000000000..7cacb677b5 --- /dev/null +++ b/packages/tamagui-core/types/animations.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"animations.d.ts","sourceRoot":"","sources":["../src/animations.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;EAkBrB,CAAA"} \ No newline at end of file diff --git a/packages/tamagui-core/types/index.d.ts b/packages/tamagui-core/types/index.d.ts new file mode 100644 index 0000000000..f84dae2957 --- /dev/null +++ b/packages/tamagui-core/types/index.d.ts @@ -0,0 +1,26 @@ +export * from "tamagui"; +export { config } from "./tamagui.config"; +import { GetProps } from "tamagui"; +export declare const Circle: import("tamagui").TamaguiComponent & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues & import("@tamagui/web").WithShorthands> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{ + readonly fullscreen?: boolean | undefined; + readonly elevation?: import("tamagui").SizeTokens | undefined; +}, "size"> & { + size?: import("tamagui").SizeTokens | undefined; +} & import("@tamagui/web").MediaProps & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues & import("@tamagui/web").WithShorthands> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{ + readonly fullscreen?: boolean | undefined; + readonly elevation?: import("tamagui").SizeTokens | undefined; +}, "size"> & { + size?: import("tamagui").SizeTokens | undefined; +}>> & import("@tamagui/web").PseudoProps & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues & import("@tamagui/web").WithShorthands> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{ + readonly fullscreen?: boolean | undefined; + readonly elevation?: import("tamagui").SizeTokens | undefined; +}, "size"> & { + size?: import("tamagui").SizeTokens | undefined; +}>>, any, Omit & import("@tamagui/web").ExtendBaseStackProps & import("tamagui").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues & import("@tamagui/web").WithShorthands> & import("@tamagui/core/types/reactNativeTypes").RNViewProps, { + readonly fullscreen?: boolean | undefined; + readonly elevation?: import("tamagui").SizeTokens | undefined; +} & { + size?: import("tamagui").SizeTokens | undefined; +}>; +export type CircleProps = GetProps; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/tamagui-core/types/index.d.ts.map b/packages/tamagui-core/types/index.d.ts.map new file mode 100644 index 0000000000..a3cb39d4ab --- /dev/null +++ b/packages/tamagui-core/types/index.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,QAAQ,EAAkB,MAAM,SAAS,CAAC;AAEnD,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;EAgBjB,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/tamagui-core/types/tamagui.config.d.ts b/packages/tamagui-core/types/tamagui.config.d.ts new file mode 100644 index 0000000000..31f9cacb1f --- /dev/null +++ b/packages/tamagui-core/types/tamagui.config.d.ts @@ -0,0 +1,42268 @@ +export declare const config: import("tamagui").TamaguiInternalConfig<{ + color: { + yellow1Light: import("@tamagui/web").Variable; + yellow2Light: import("@tamagui/web").Variable; + yellow3Light: import("@tamagui/web").Variable; + yellow4Light: import("@tamagui/web").Variable; + yellow5Light: import("@tamagui/web").Variable; + yellow6Light: import("@tamagui/web").Variable; + yellow7Light: import("@tamagui/web").Variable; + yellow8Light: import("@tamagui/web").Variable; + yellow9Light: import("@tamagui/web").Variable; + yellow10Light: import("@tamagui/web").Variable; + yellow11Light: import("@tamagui/web").Variable; + yellow12Light: import("@tamagui/web").Variable; + red1Light: import("@tamagui/web").Variable; + red2Light: import("@tamagui/web").Variable; + red3Light: import("@tamagui/web").Variable; + red4Light: import("@tamagui/web").Variable; + red5Light: import("@tamagui/web").Variable; + red6Light: import("@tamagui/web").Variable; + red7Light: import("@tamagui/web").Variable; + red8Light: import("@tamagui/web").Variable; + red9Light: import("@tamagui/web").Variable; + red10Light: import("@tamagui/web").Variable; + red11Light: import("@tamagui/web").Variable; + red12Light: import("@tamagui/web").Variable; + purple1Light: import("@tamagui/web").Variable; + purple2Light: import("@tamagui/web").Variable; + purple3Light: import("@tamagui/web").Variable; + purple4Light: import("@tamagui/web").Variable; + purple5Light: import("@tamagui/web").Variable; + purple6Light: import("@tamagui/web").Variable; + purple7Light: import("@tamagui/web").Variable; + purple8Light: import("@tamagui/web").Variable; + purple9Light: import("@tamagui/web").Variable; + purple10Light: import("@tamagui/web").Variable; + purple11Light: import("@tamagui/web").Variable; + purple12Light: import("@tamagui/web").Variable; + pink1Light: import("@tamagui/web").Variable; + pink2Light: import("@tamagui/web").Variable; + pink3Light: import("@tamagui/web").Variable; + pink4Light: import("@tamagui/web").Variable; + pink5Light: import("@tamagui/web").Variable; + pink6Light: import("@tamagui/web").Variable; + pink7Light: import("@tamagui/web").Variable; + pink8Light: import("@tamagui/web").Variable; + pink9Light: import("@tamagui/web").Variable; + pink10Light: import("@tamagui/web").Variable; + pink11Light: import("@tamagui/web").Variable; + pink12Light: import("@tamagui/web").Variable; + orange1Light: import("@tamagui/web").Variable; + orange2Light: import("@tamagui/web").Variable; + orange3Light: import("@tamagui/web").Variable; + orange4Light: import("@tamagui/web").Variable; + orange5Light: import("@tamagui/web").Variable; + orange6Light: import("@tamagui/web").Variable; + orange7Light: import("@tamagui/web").Variable; + orange8Light: import("@tamagui/web").Variable; + orange9Light: import("@tamagui/web").Variable; + orange10Light: import("@tamagui/web").Variable; + orange11Light: import("@tamagui/web").Variable; + orange12Light: import("@tamagui/web").Variable; + green1Light: import("@tamagui/web").Variable; + green2Light: import("@tamagui/web").Variable; + green3Light: import("@tamagui/web").Variable; + green4Light: import("@tamagui/web").Variable; + green5Light: import("@tamagui/web").Variable; + green6Light: import("@tamagui/web").Variable; + green7Light: import("@tamagui/web").Variable; + green8Light: import("@tamagui/web").Variable; + green9Light: import("@tamagui/web").Variable; + green10Light: import("@tamagui/web").Variable; + green11Light: import("@tamagui/web").Variable; + green12Light: import("@tamagui/web").Variable; + gray1Light: import("@tamagui/web").Variable; + gray2Light: import("@tamagui/web").Variable; + gray3Light: import("@tamagui/web").Variable; + gray4Light: import("@tamagui/web").Variable; + gray5Light: import("@tamagui/web").Variable; + gray6Light: import("@tamagui/web").Variable; + gray7Light: import("@tamagui/web").Variable; + gray8Light: import("@tamagui/web").Variable; + gray9Light: import("@tamagui/web").Variable; + gray10Light: import("@tamagui/web").Variable; + gray11Light: import("@tamagui/web").Variable; + gray12Light: import("@tamagui/web").Variable; + blue1Light: import("@tamagui/web").Variable; + blue2Light: import("@tamagui/web").Variable; + blue3Light: import("@tamagui/web").Variable; + blue4Light: import("@tamagui/web").Variable; + blue5Light: import("@tamagui/web").Variable; + blue6Light: import("@tamagui/web").Variable; + blue7Light: import("@tamagui/web").Variable; + blue8Light: import("@tamagui/web").Variable; + blue9Light: import("@tamagui/web").Variable; + blue10Light: import("@tamagui/web").Variable; + blue11Light: import("@tamagui/web").Variable; + blue12Light: import("@tamagui/web").Variable; + yellow1Dark: import("@tamagui/web").Variable; + yellow2Dark: import("@tamagui/web").Variable; + yellow3Dark: import("@tamagui/web").Variable; + yellow4Dark: import("@tamagui/web").Variable; + yellow5Dark: import("@tamagui/web").Variable; + yellow6Dark: import("@tamagui/web").Variable; + yellow7Dark: import("@tamagui/web").Variable; + yellow8Dark: import("@tamagui/web").Variable; + yellow9Dark: import("@tamagui/web").Variable; + yellow10Dark: import("@tamagui/web").Variable; + yellow11Dark: import("@tamagui/web").Variable; + yellow12Dark: import("@tamagui/web").Variable; + red1Dark: import("@tamagui/web").Variable; + red2Dark: import("@tamagui/web").Variable; + red3Dark: import("@tamagui/web").Variable; + red4Dark: import("@tamagui/web").Variable; + red5Dark: import("@tamagui/web").Variable; + red6Dark: import("@tamagui/web").Variable; + red7Dark: import("@tamagui/web").Variable; + red8Dark: import("@tamagui/web").Variable; + red9Dark: import("@tamagui/web").Variable; + red10Dark: import("@tamagui/web").Variable; + red11Dark: import("@tamagui/web").Variable; + red12Dark: import("@tamagui/web").Variable; + purple1Dark: import("@tamagui/web").Variable; + purple2Dark: import("@tamagui/web").Variable; + purple3Dark: import("@tamagui/web").Variable; + purple4Dark: import("@tamagui/web").Variable; + purple5Dark: import("@tamagui/web").Variable; + purple6Dark: import("@tamagui/web").Variable; + purple7Dark: import("@tamagui/web").Variable; + purple8Dark: import("@tamagui/web").Variable; + purple9Dark: import("@tamagui/web").Variable; + purple10Dark: import("@tamagui/web").Variable; + purple11Dark: import("@tamagui/web").Variable; + purple12Dark: import("@tamagui/web").Variable; + pink1Dark: import("@tamagui/web").Variable; + pink2Dark: import("@tamagui/web").Variable; + pink3Dark: import("@tamagui/web").Variable; + pink4Dark: import("@tamagui/web").Variable; + pink5Dark: import("@tamagui/web").Variable; + pink6Dark: import("@tamagui/web").Variable; + pink7Dark: import("@tamagui/web").Variable; + pink8Dark: import("@tamagui/web").Variable; + pink9Dark: import("@tamagui/web").Variable; + pink10Dark: import("@tamagui/web").Variable; + pink11Dark: import("@tamagui/web").Variable; + pink12Dark: import("@tamagui/web").Variable; + orange1Dark: import("@tamagui/web").Variable; + orange2Dark: import("@tamagui/web").Variable; + orange3Dark: import("@tamagui/web").Variable; + orange4Dark: import("@tamagui/web").Variable; + orange5Dark: import("@tamagui/web").Variable; + orange6Dark: import("@tamagui/web").Variable; + orange7Dark: import("@tamagui/web").Variable; + orange8Dark: import("@tamagui/web").Variable; + orange9Dark: import("@tamagui/web").Variable; + orange10Dark: import("@tamagui/web").Variable; + orange11Dark: import("@tamagui/web").Variable; + orange12Dark: import("@tamagui/web").Variable; + green1Dark: import("@tamagui/web").Variable; + green2Dark: import("@tamagui/web").Variable; + green3Dark: import("@tamagui/web").Variable; + green4Dark: import("@tamagui/web").Variable; + green5Dark: import("@tamagui/web").Variable; + green6Dark: import("@tamagui/web").Variable; + green7Dark: import("@tamagui/web").Variable; + green8Dark: import("@tamagui/web").Variable; + green9Dark: import("@tamagui/web").Variable; + green10Dark: import("@tamagui/web").Variable; + green11Dark: import("@tamagui/web").Variable; + green12Dark: import("@tamagui/web").Variable; + gray1Dark: import("@tamagui/web").Variable; + gray2Dark: import("@tamagui/web").Variable; + gray3Dark: import("@tamagui/web").Variable; + gray4Dark: import("@tamagui/web").Variable; + gray5Dark: import("@tamagui/web").Variable; + gray6Dark: import("@tamagui/web").Variable; + gray7Dark: import("@tamagui/web").Variable; + gray8Dark: import("@tamagui/web").Variable; + gray9Dark: import("@tamagui/web").Variable; + gray10Dark: import("@tamagui/web").Variable; + gray11Dark: import("@tamagui/web").Variable; + gray12Dark: import("@tamagui/web").Variable; + blue1Dark: import("@tamagui/web").Variable; + blue2Dark: import("@tamagui/web").Variable; + blue3Dark: import("@tamagui/web").Variable; + blue4Dark: import("@tamagui/web").Variable; + blue5Dark: import("@tamagui/web").Variable; + blue6Dark: import("@tamagui/web").Variable; + blue7Dark: import("@tamagui/web").Variable; + blue8Dark: import("@tamagui/web").Variable; + blue9Dark: import("@tamagui/web").Variable; + blue10Dark: import("@tamagui/web").Variable; + blue11Dark: import("@tamagui/web").Variable; + blue12Dark: import("@tamagui/web").Variable; + }; + space: { + 0: import("@tamagui/web").Variable; + 0.25: import("@tamagui/web").Variable; + 0.5: import("@tamagui/web").Variable; + 0.75: import("@tamagui/web").Variable; + 1: import("@tamagui/web").Variable; + 1.5: import("@tamagui/web").Variable; + 2: import("@tamagui/web").Variable; + 2.5: import("@tamagui/web").Variable; + 3: import("@tamagui/web").Variable; + 3.5: import("@tamagui/web").Variable; + 4: import("@tamagui/web").Variable; + true: import("@tamagui/web").Variable; + 4.5: import("@tamagui/web").Variable; + 5: import("@tamagui/web").Variable; + 6: import("@tamagui/web").Variable; + 7: import("@tamagui/web").Variable; + 8: import("@tamagui/web").Variable; + 9: import("@tamagui/web").Variable; + 10: import("@tamagui/web").Variable; + 11: import("@tamagui/web").Variable; + 12: import("@tamagui/web").Variable; + 13: import("@tamagui/web").Variable; + 14: import("@tamagui/web").Variable; + 15: import("@tamagui/web").Variable; + 16: import("@tamagui/web").Variable; + 17: import("@tamagui/web").Variable; + 18: import("@tamagui/web").Variable; + 19: import("@tamagui/web").Variable; + 20: import("@tamagui/web").Variable; + "-0": import("@tamagui/web").Variable; + "-0.25": import("@tamagui/web").Variable; + "-0.5": import("@tamagui/web").Variable; + "-0.75": import("@tamagui/web").Variable; + "-1": import("@tamagui/web").Variable; + "-1.5": import("@tamagui/web").Variable; + "-2": import("@tamagui/web").Variable; + "-2.5": import("@tamagui/web").Variable; + "-3": import("@tamagui/web").Variable; + "-3.5": import("@tamagui/web").Variable; + "-4": import("@tamagui/web").Variable; + "-true": import("@tamagui/web").Variable; + "-4.5": import("@tamagui/web").Variable; + "-5": import("@tamagui/web").Variable; + "-6": import("@tamagui/web").Variable; + "-7": import("@tamagui/web").Variable; + "-8": import("@tamagui/web").Variable; + "-9": import("@tamagui/web").Variable; + "-10": import("@tamagui/web").Variable; + "-11": import("@tamagui/web").Variable; + "-12": import("@tamagui/web").Variable; + "-13": import("@tamagui/web").Variable; + "-14": import("@tamagui/web").Variable; + "-15": import("@tamagui/web").Variable; + "-16": import("@tamagui/web").Variable; + "-17": import("@tamagui/web").Variable; + "-18": import("@tamagui/web").Variable; + "-19": import("@tamagui/web").Variable; + "-20": import("@tamagui/web").Variable; + }; + size: { + 0: import("@tamagui/web").Variable; + 0.25: import("@tamagui/web").Variable; + 0.5: import("@tamagui/web").Variable; + 0.75: import("@tamagui/web").Variable; + 1: import("@tamagui/web").Variable; + 1.5: import("@tamagui/web").Variable; + 2: import("@tamagui/web").Variable; + 2.5: import("@tamagui/web").Variable; + 3: import("@tamagui/web").Variable; + 3.5: import("@tamagui/web").Variable; + 4: import("@tamagui/web").Variable; + true: import("@tamagui/web").Variable; + 4.5: import("@tamagui/web").Variable; + 5: import("@tamagui/web").Variable; + 6: import("@tamagui/web").Variable; + 7: import("@tamagui/web").Variable; + 8: import("@tamagui/web").Variable; + 9: import("@tamagui/web").Variable; + 10: import("@tamagui/web").Variable; + 11: import("@tamagui/web").Variable; + 12: import("@tamagui/web").Variable; + 13: import("@tamagui/web").Variable; + 14: import("@tamagui/web").Variable; + 15: import("@tamagui/web").Variable; + 16: import("@tamagui/web").Variable; + 17: import("@tamagui/web").Variable; + 18: import("@tamagui/web").Variable; + 19: import("@tamagui/web").Variable; + 20: import("@tamagui/web").Variable; + }; + radius: { + 0: import("@tamagui/web").Variable; + 2: import("@tamagui/web").Variable; + 4: import("@tamagui/web").Variable; + 8: import("@tamagui/web").Variable; + true: import("@tamagui/web").Variable; + 1: import("@tamagui/web").Variable; + 12: import("@tamagui/web").Variable; + 3: import("@tamagui/web").Variable; + 5: import("@tamagui/web").Variable; + 7: import("@tamagui/web").Variable; + 9: import("@tamagui/web").Variable; + 10: import("@tamagui/web").Variable; + 6: import("@tamagui/web").Variable; + 11: import("@tamagui/web").Variable; + }; + zIndex: { + 0: import("@tamagui/web").Variable; + 2: import("@tamagui/web").Variable; + 4: import("@tamagui/web").Variable; + 1: import("@tamagui/web").Variable; + 3: import("@tamagui/web").Variable; + 5: import("@tamagui/web").Variable; + }; +}, { + light: { + yellow1: string; + yellow2: string; + yellow3: string; + yellow4: string; + yellow5: string; + yellow6: string; + yellow7: string; + yellow8: string; + yellow9: string; + yellow10: string; + yellow11: string; + yellow12: string; + red1: string; + red2: string; + red3: string; + red4: string; + red5: string; + red6: string; + red7: string; + red8: string; + red9: string; + red10: string; + red11: string; + red12: string; + purple1: string; + purple2: string; + purple3: string; + purple4: string; + purple5: string; + purple6: string; + purple7: string; + purple8: string; + purple9: string; + purple10: string; + purple11: string; + purple12: string; + pink1: string; + pink2: string; + pink3: string; + pink4: string; + pink5: string; + pink6: string; + pink7: string; + pink8: string; + pink9: string; + pink10: string; + pink11: string; + pink12: string; + orange1: string; + orange2: string; + orange3: string; + orange4: string; + orange5: string; + orange6: string; + orange7: string; + orange8: string; + orange9: string; + orange10: string; + orange11: string; + orange12: string; + green1: string; + green2: string; + green3: string; + green4: string; + green5: string; + green6: string; + green7: string; + green8: string; + green9: string; + green10: string; + green11: string; + green12: string; + gray1: string; + gray2: string; + gray3: string; + gray4: string; + gray5: string; + gray6: string; + gray7: string; + gray8: string; + gray9: string; + gray10: string; + gray11: string; + gray12: string; + blue1: string; + blue2: string; + blue3: string; + blue4: string; + blue5: string; + blue6: string; + blue7: string; + blue8: string; + blue9: string; + blue10: string; + blue11: string; + blue12: string; + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark: { + yellow1: string; + yellow2: string; + yellow3: string; + yellow4: string; + yellow5: string; + yellow6: string; + yellow7: string; + yellow8: string; + yellow9: string; + yellow10: string; + yellow11: string; + yellow12: string; + red1: string; + red2: string; + red3: string; + red4: string; + red5: string; + red6: string; + red7: string; + red8: string; + red9: string; + red10: string; + red11: string; + red12: string; + purple1: string; + purple2: string; + purple3: string; + purple4: string; + purple5: string; + purple6: string; + purple7: string; + purple8: string; + purple9: string; + purple10: string; + purple11: string; + purple12: string; + pink1: string; + pink2: string; + pink3: string; + pink4: string; + pink5: string; + pink6: string; + pink7: string; + pink8: string; + pink9: string; + pink10: string; + pink11: string; + pink12: string; + orange1: string; + orange2: string; + orange3: string; + orange4: string; + orange5: string; + orange6: string; + orange7: string; + orange8: string; + orange9: string; + orange10: string; + orange11: string; + orange12: string; + green1: string; + green2: string; + green3: string; + green4: string; + green5: string; + green6: string; + green7: string; + green8: string; + green9: string; + green10: string; + green11: string; + green12: string; + gray1: string; + gray2: string; + gray3: string; + gray4: string; + gray5: string; + gray6: string; + gray7: string; + gray8: string; + gray9: string; + gray10: string; + gray11: string; + gray12: string; + blue1: string; + blue2: string; + blue3: string; + blue4: string; + blue5: string; + blue6: string; + blue7: string; + blue8: string; + blue9: string; + blue10: string; + blue11: string; + blue12: string; + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_blue_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_gray_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_green_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_orange_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_pink_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_purple_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_red_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + light_yellow_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_blue_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_gray_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_green_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_orange_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_pink_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_purple_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_red_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt1_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_alt2_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_Card: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_Button: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_Checkbox: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_DrawerFrame: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_SliderTrack: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_SliderTrackActive: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_SliderThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_Progress: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_ProgressIndicator: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_Switch: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_SwitchThumb: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_TooltipArrow: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_TooltipContent: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_Input: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_TextArea: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; + dark_yellow_active_Tooltip: { + shadowColor: string; + shadowColorHover: string; + shadowColorPress: string; + shadowColorFocus: string; + borderColor: string; + borderColorHover: string; + borderColorFocus: string; + borderColorPress: string; + background: string; + backgroundHover: string; + backgroundPress: string; + backgroundFocus: string; + backgroundStrong: string; + backgroundTransparent: string; + color: string; + colorHover: string; + colorPress: string; + colorFocus: string; + colorTransparent: string; + placeholderColor: string; + color1: string; + color2: string; + color3: string; + color4: string; + color5: string; + color6: string; + color7: string; + color8: string; + color9: string; + color10: string; + color11: string; + color12: string; + }; +}, { + readonly ussel: "userSelect"; + readonly cur: "cursor"; + readonly pe: "pointerEvents"; + readonly col: "color"; + readonly ff: "fontFamily"; + readonly fos: "fontSize"; + readonly fost: "fontStyle"; + readonly fow: "fontWeight"; + readonly ls: "letterSpacing"; + readonly lh: "lineHeight"; + readonly ta: "textAlign"; + readonly tt: "textTransform"; + readonly ww: "wordWrap"; + readonly ac: "alignContent"; + readonly ai: "alignItems"; + readonly als: "alignSelf"; + readonly b: "bottom"; + readonly bc: "backgroundColor"; + readonly bg: "backgroundColor"; + readonly bbc: "borderBottomColor"; + readonly bblr: "borderBottomLeftRadius"; + readonly bbrr: "borderBottomRightRadius"; + readonly bbw: "borderBottomWidth"; + readonly blc: "borderLeftColor"; + readonly blw: "borderLeftWidth"; + readonly boc: "borderColor"; + readonly br: "borderRadius"; + readonly bs: "borderStyle"; + readonly brw: "borderRightWidth"; + readonly brc: "borderRightColor"; + readonly btc: "borderTopColor"; + readonly btlr: "borderTopLeftRadius"; + readonly btrr: "borderTopRightRadius"; + readonly btw: "borderTopWidth"; + readonly bw: "borderWidth"; + readonly dsp: "display"; + readonly f: "flex"; + readonly fb: "flexBasis"; + readonly fd: "flexDirection"; + readonly fg: "flexGrow"; + readonly fs: "flexShrink"; + readonly fw: "flexWrap"; + readonly h: "height"; + readonly jc: "justifyContent"; + readonly l: "left"; + readonly m: "margin"; + readonly mah: "maxHeight"; + readonly maw: "maxWidth"; + readonly mb: "marginBottom"; + readonly mih: "minHeight"; + readonly miw: "minWidth"; + readonly ml: "marginLeft"; + readonly mr: "marginRight"; + readonly mt: "marginTop"; + readonly mx: "marginHorizontal"; + readonly my: "marginVertical"; + readonly o: "opacity"; + readonly ov: "overflow"; + readonly p: "padding"; + readonly pb: "paddingBottom"; + readonly pl: "paddingLeft"; + readonly pos: "position"; + readonly pr: "paddingRight"; + readonly pt: "paddingTop"; + readonly px: "paddingHorizontal"; + readonly py: "paddingVertical"; + readonly r: "right"; + readonly shac: "shadowColor"; + readonly shar: "shadowRadius"; + readonly shof: "shadowOffset"; + readonly shop: "shadowOpacity"; + readonly t: "top"; + readonly w: "width"; + readonly zi: "zIndex"; +}, { + xl: { + maxWidth: number; + }; + lg: { + maxWidth: number; + }; + md: { + maxWidth: number; + }; + sm: { + maxWidth: number; + }; + xs: { + maxWidth: number; + }; + xxs: { + maxWidth: number; + }; + gtXs: { + minWidth: number; + }; + gtSm: { + minWidth: number; + }; + gtMd: { + minWidth: number; + }; + gtLg: { + minWidth: number; + }; + gtXl: { + minWidth: number; + }; +}, { + '100ms': { + type: "timing"; + duration: number; + }; + bouncy: { + damping: number; + mass: number; + stiffness: number; + }; + lazy: { + damping: number; + stiffness: number; + }; + slow: { + damping: number; + stiffness: number; + }; + quick: { + damping: number; + mass: number; + stiffness: number; + }; + tooltip: { + damping: number; + mass: number; + stiffness: number; + }; +}, { + heading: import("tamagui").GenericFont<10 | 3 | 9 | 15 | 11 | 12 | 14 | 16 | 1 | 2 | 4 | 5 | 6 | 7 | 8 | 13 | "true">; + body: import("tamagui").GenericFont<10 | 3 | 9 | 15 | 11 | 12 | 14 | 16 | 1 | 2 | 4 | 5 | 6 | 7 | 8 | 13 | "true">; + mono: import("tamagui").GenericFont<10 | 3 | 9 | 15 | 11 | 12 | 14 | 16 | 1 | 2 | 4 | 5 | 6 | 7 | 8 | 13>; + silkscreen: import("tamagui").GenericFont<10 | 3 | 9 | 15 | 11 | 12 | 14 | 16 | 1 | 2 | 4 | 5 | 6 | 7 | 8 | 13>; +}>; +export type AppConfig = typeof config; +declare module "tamagui" { + type TamaguiCustomConfig = AppConfig; +} +export default config; +//# sourceMappingURL=tamagui.config.d.ts.map \ No newline at end of file diff --git a/packages/tamagui-core/types/tamagui.config.d.ts.map b/packages/tamagui-core/types/tamagui.config.d.ts.map new file mode 100644 index 0000000000..4bba6db964 --- /dev/null +++ b/packages/tamagui-core/types/tamagui.config.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"tamagui.config.d.ts","sourceRoot":"","sources":["../src/tamagui.config.ts"],"names":[],"mappings":"AAoCA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAyB,CAAC;AAC7C,MAAM,MAAM,SAAS,GAAG,OAAO,MAAM,CAAC;AACtC,OAAO,QAAQ,SAAS,CAAC;IAGvB,KAAK,mBAAmB,GAAG,SAAS,CAAC;CACtC;AAED,eAAe,MAAM,CAAC"} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index c768d1906d..3f94343a67 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,6 +16,8 @@ { "path": "packages/react-common" }, { "path": "packages/recoil" }, { "path": "packages/themes" }, - { "path": "packages/wallet-standard" } + { "path": "packages/wallet-standard" }, + { "path": "packages/react-native-core" }, + { "path": "packages/tamagui-core" } ] } diff --git a/yarn.lock b/yarn.lock index 01b704458c..54a2dcf880 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1033,7 +1033,7 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.0.tgz#c241dc454e5b5917e40d37e525e2f4530c399298" integrity sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g== -"@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.12.17", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.18.5", "@babel/core@^7.19.3", "@babel/core@^7.20.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0": +"@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.12.17", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.18.5", "@babel/core@^7.19.3", "@babel/core@^7.19.6", "@babel/core@^7.20.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0": version "7.21.0" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.0.tgz#1341aefdcc14ccc7553fcc688dd8986a2daffc13" integrity sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA== @@ -1054,7 +1054,7 @@ json5 "^2.2.2" semver "^6.3.0" -"@babel/generator@^7.20.0", "@babel/generator@^7.21.0", "@babel/generator@^7.21.1", "@babel/generator@^7.7.2": +"@babel/generator@^7.19.6", "@babel/generator@^7.20.0", "@babel/generator@^7.21.0", "@babel/generator@^7.21.1", "@babel/generator@^7.7.2": version "7.21.1" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.1.tgz#951cc626057bc0af2c35cd23e9c64d384dea83dd" integrity sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA== @@ -1277,7 +1277,7 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.21.0", "@babel/parser@^7.21.2": +"@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.19.6", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.21.0", "@babel/parser@^7.21.2": version "7.21.2" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.2.tgz#dacafadfc6d7654c3051a66d6fe55b6cb2f2a0b3" integrity sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ== @@ -1828,7 +1828,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.12.17", "@babel/plugin-transform-react-jsx@^7.18.6": +"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.12.17", "@babel/plugin-transform-react-jsx@^7.18.6", "@babel/plugin-transform-react-jsx@^7.19.0": version "7.21.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.0.tgz#656b42c2fdea0a6d8762075d58ef9d4e3c4ab8a2" integrity sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg== @@ -2072,13 +2072,22 @@ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.6", "@babel/runtime@^7.20.0", "@babel/runtime@^7.20.13", "@babel/runtime@^7.20.7", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.6", "@babel/runtime@^7.19.4", "@babel/runtime@^7.20.0", "@babel/runtime@^7.20.13", "@babel/runtime@^7.20.7", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": version "7.21.0" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== dependencies: regenerator-runtime "^0.13.11" +"@babel/template@7.18.10": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" + integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.18.10" + "@babel/types" "^7.18.10" + "@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" @@ -2088,7 +2097,7 @@ "@babel/parser" "^7.20.7" "@babel/types" "^7.20.7" -"@babel/traverse@^7.20.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.7.2": +"@babel/traverse@^7.1.6", "@babel/traverse@^7.19.6", "@babel/traverse@^7.20.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.7.2": version "7.21.2" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.2.tgz#ac7e1f27658750892e815e60ae90f382a46d8e75" integrity sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw== @@ -2104,7 +2113,7 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": +"@babel/types@^7.0.0", "@babel/types@^7.1.6", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": version "7.21.2" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.2.tgz#92246f6e00f91755893c2876ad653db70c8310d1" integrity sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw== @@ -2641,6 +2650,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.10.tgz#ad2ee47dd021035abdfb0c38848ff77a1e1918c4" integrity sha512-ht1P9CmvrPF5yKDtyC+z43RczVs4rrHpRqrmIuoSvSdn44Fs1n6DGlpZKdK6rM83pFLbVaSUwle8IN+TPmkv7g== +"@esbuild/android-arm64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.11.tgz#52c3e6cabc19c5e4c1c0c01cb58f0442338e1c14" + integrity sha512-QnK4d/zhVTuV4/pRM4HUjcsbl43POALU2zvBynmrrqZt9LPcLA3x1fTZPBg2RRguBQnJcnU059yKr+bydkntjg== + "@esbuild/android-arm@0.15.18": version "0.15.18" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.18.tgz#266d40b8fdcf87962df8af05b76219bc786b4f80" @@ -2656,6 +2670,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.10.tgz#bb5a68af8adeb94b30eadee7307404dc5237d076" integrity sha512-7YEBfZ5lSem9Tqpsz+tjbdsEshlO9j/REJrfv4DXgKTt1+/MHqGwbtlyxQuaSlMeUZLxUKBaX8wdzlTfHkmnLw== +"@esbuild/android-arm@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.11.tgz#f3fc768235aecbeb840d0049fdf13cd28592105f" + integrity sha512-CdyX6sRVh1NzFCsf5vw3kULwlAhfy9wVt8SZlrhQ7eL2qBjGbFhRBWkkAzuZm9IIEOCKJw4DXA6R85g+qc8RDw== + "@esbuild/android-x64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.3.tgz#a6d749c58b022d371dc40d50ac1bb4aebd1eb953" @@ -2666,6 +2685,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.10.tgz#751d5d8ae9ece1efa9627b689c888eb85b102360" integrity sha512-CYzrm+hTiY5QICji64aJ/xKdN70IK8XZ6iiyq0tZkd3tfnwwSWTYH1t3m6zyaaBxkuj40kxgMyj1km/NqdjQZA== +"@esbuild/android-x64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.11.tgz#443ed47771a7e917e4282469ba350d117473550c" + integrity sha512-3PL3HKtsDIXGQcSCKtWD/dy+mgc4p2Tvo2qKgKHj9Yf+eniwFnuoQ0OUhlSfAEpKAFzF9N21Nwgnap6zy3L3MQ== + "@esbuild/darwin-arm64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.3.tgz#92d1826ed2f21dcac5830b70d7215c6afbb744e2" @@ -2676,6 +2700,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.10.tgz#85601ee7efb2129cd3218d5bcbe8da1173bc1e8b" integrity sha512-3HaGIowI+nMZlopqyW6+jxYr01KvNaLB5znXfbyyjuo4lE0VZfvFGcguIJapQeQMS4cX/NEispwOekJt3gr5Dg== +"@esbuild/darwin-arm64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.11.tgz#0e8c78d94d5759a48521dbfd83189d2ed3499a16" + integrity sha512-pJ950bNKgzhkGNO3Z9TeHzIFtEyC2GDQL3wxkMApDEghYx5Qers84UTNc1bAxWbRkuJOgmOha5V0WUeh8G+YGw== + "@esbuild/darwin-x64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.3.tgz#7fc3570c2b16e9ff4fc178593a0a4adb1ae8ea57" @@ -2686,6 +2715,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.10.tgz#362c7e988c61fe72d5edef4f717e4b4fc728da98" integrity sha512-J4MJzGchuCRG5n+B4EHpAMoJmBeAE1L3wGYDIN5oWNqX0tEr7VKOzw0ymSwpoeSpdCa030lagGUfnfhS7OvzrQ== +"@esbuild/darwin-x64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.11.tgz#2405cfdf70eb961c7cf973463ca7263dc2004c88" + integrity sha512-iB0dQkIHXyczK3BZtzw1tqegf0F0Ab5texX2TvMQjiJIWXAfM4FQl7D909YfXWnB92OQz4ivBYQ2RlxBJrMJOw== + "@esbuild/freebsd-arm64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.3.tgz#16735ce16f8c9a4e7289e9e259aa01a8d9874307" @@ -2696,6 +2730,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.10.tgz#e8a85a46ede7c3a048a12f16b9d551d25adc8bb1" integrity sha512-ZkX40Z7qCbugeK4U5/gbzna/UQkM9d9LNV+Fro8r7HA7sRof5Rwxc46SsqeMvB5ZaR0b1/ITQ/8Y1NmV2F0fXQ== +"@esbuild/freebsd-arm64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.11.tgz#d5138e873e15f87bd4564c024dfa00ef37e623fd" + integrity sha512-7EFzUADmI1jCHeDRGKgbnF5sDIceZsQGapoO6dmw7r/ZBEKX7CCDnIz8m9yEclzr7mFsd+DyasHzpjfJnmBB1Q== + "@esbuild/freebsd-x64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.3.tgz#f4edd1464cb072799ed6b8ab5178478e71c13459" @@ -2706,6 +2745,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.10.tgz#cd0a1b68bffbcb5b65e65b3fd542e8c7c3edd86b" integrity sha512-0m0YX1IWSLG9hWh7tZa3kdAugFbZFFx9XrvfpaCMMvrswSTvUZypp0NFKriUurHpBA3xsHVE9Qb/0u2Bbi/otg== +"@esbuild/freebsd-x64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.11.tgz#e850b58b8fabf8e9ef0e125af3c25229ad2d6c38" + integrity sha512-iPgenptC8i8pdvkHQvXJFzc1eVMR7W2lBPrTE6GbhR54sLcF42mk3zBOjKPOodezzuAz/KSu8CPyFSjcBMkE9g== + "@esbuild/linux-arm64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.3.tgz#4b7ae6fe3618d9a40d6ca39c6edc991ac1447203" @@ -2716,6 +2760,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.10.tgz#13b183f432512ed9d9281cc89476caeebe9e9123" integrity sha512-g1EZJR1/c+MmCgVwpdZdKi4QAJ8DCLP5uTgLWSAVd9wlqk9GMscaNMEViG3aE1wS+cNMzXXgdWiW/VX4J+5nTA== +"@esbuild/linux-arm64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.11.tgz#2bfb93d0809ec2357c12ebb27736b750c9ae0aa5" + integrity sha512-Qxth3gsWWGKz2/qG2d5DsW/57SeA2AmpSMhdg9TSB5Svn2KDob3qxfQSkdnWjSd42kqoxIPy3EJFs+6w1+6Qjg== + "@esbuild/linux-arm@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.3.tgz#4b3e9f849822e16a76a70844c4db68075b259a58" @@ -2726,6 +2775,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.10.tgz#dd11e0a5faa3ea94dc80278a601c3be7b4fdf1da" integrity sha512-whRdrrl0X+9D6o5f0sTZtDM9s86Xt4wk1bf7ltx6iQqrIIOH+sre1yjpcCdrVXntQPCNw/G+XqsD4HuxeS+2QA== +"@esbuild/linux-arm@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.11.tgz#e56fb3b76828317a704f4a167c5bd790fe5314e7" + integrity sha512-M9iK/d4lgZH0U5M1R2p2gqhPV/7JPJcRz+8O8GBKVgqndTzydQ7B2XGDbxtbvFkvIs53uXTobOhv+RyaqhUiMg== + "@esbuild/linux-ia32@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.3.tgz#2ff3936b91bfff62f9ecf7f6411ef399b29ed22d" @@ -2736,6 +2790,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.10.tgz#4d836f87b92807d9292379963c4888270d282405" integrity sha512-1vKYCjfv/bEwxngHERp7huYfJ4jJzldfxyfaF7hc3216xiDA62xbXJfRlradiMhGZbdNLj2WA1YwYFzs9IWNPw== +"@esbuild/linux-ia32@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.11.tgz#59fa1c49b271793d14eb5effc757e8c0d0cb2cab" + integrity sha512-dB1nGaVWtUlb/rRDHmuDQhfqazWE0LMro/AIbT2lWM3CDMHJNpLckH+gCddQyhhcLac2OYw69ikUMO34JLt3wA== + "@esbuild/linux-loong64@0.14.54": version "0.14.54" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz#de2a4be678bd4d0d1ffbb86e6de779cde5999028" @@ -2756,6 +2815,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.10.tgz#92eb2ee200c17ef12c7fb3b648231948699e7a4c" integrity sha512-mvwAr75q3Fgc/qz3K6sya3gBmJIYZCgcJ0s7XshpoqIAIBszzfXsqhpRrRdVFAyV1G9VUjj7VopL2HnAS8aHFA== +"@esbuild/linux-loong64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.11.tgz#89575bc189099c03a36daa54f3f481780c7fd502" + integrity sha512-aCWlq70Q7Nc9WDnormntGS1ar6ZFvUpqr8gXtO+HRejRYPweAFQN615PcgaSJkZjhHp61+MNLhzyVALSF2/Q0g== + "@esbuild/linux-mips64el@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.3.tgz#5dd5e118071c3912df69beedbfd11fb117f0fe5e" @@ -2766,6 +2830,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.10.tgz#14f7d50c40fe7f7ee545a9bd07c6f6e4cba5570e" integrity sha512-XilKPgM2u1zR1YuvCsFQWl9Fc35BqSqktooumOY2zj7CSn5czJn279j9TE1JEqSqz88izJo7yE4x3LSf7oxHzg== +"@esbuild/linux-mips64el@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.11.tgz#0e18ca039dc7e4645efd8edc1b10952933eb6b1b" + integrity sha512-cGeGNdQxqY8qJwlYH1BP6rjIIiEcrM05H7k3tR7WxOLmD1ZxRMd6/QIOWMb8mD2s2YJFNRuNQ+wjMhgEL2oCEw== + "@esbuild/linux-ppc64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.3.tgz#36c62e24eae7fa3f0d921506da8fc1e6098a1364" @@ -2776,6 +2845,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.10.tgz#1ab5802e93ae511ce9783e1cb95f37df0f84c4af" integrity sha512-kM4Rmh9l670SwjlGkIe7pYWezk8uxKHX4Lnn5jBZYBNlWpKMBCVfpAgAJqp5doLobhzF3l64VZVrmGeZ8+uKmQ== +"@esbuild/linux-ppc64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.11.tgz#2d152cb3a253afb8c100a165ad132dc96f36cb11" + integrity sha512-BdlziJQPW/bNe0E8eYsHB40mYOluS+jULPCjlWiHzDgr+ZBRXPtgMV1nkLEGdpjrwgmtkZHEGEPaKdS/8faLDA== + "@esbuild/linux-riscv64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.3.tgz#f0fec8e7affb5bcc817fefc61a21cbb95539e393" @@ -2786,6 +2860,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.10.tgz#4fae25201ef7ad868731d16c8b50b0e386c4774a" integrity sha512-r1m9ZMNJBtOvYYGQVXKy+WvWd0BPvSxMsVq8Hp4GzdMBQvfZRvRr5TtX/1RdN6Va8JMVQGpxqde3O+e8+khNJQ== +"@esbuild/linux-riscv64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.11.tgz#c6ac494a81221d53d65b33e665c7df1747952d3c" + integrity sha512-MDLwQbtF+83oJCI1Cixn68Et/ME6gelmhssPebC40RdJaect+IM+l7o/CuG0ZlDs6tZTEIoxUe53H3GmMn8oMA== + "@esbuild/linux-s390x@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.3.tgz#22e10edd6e91f53c2e1f60e46abd453d7794409b" @@ -2796,6 +2875,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.10.tgz#126254d8335bb3586918b1ca60beb4abb46e6d54" integrity sha512-LsY7QvOLPw9WRJ+fU5pNB3qrSfA00u32ND5JVDrn/xG5hIQo3kvTxSlWFRP0NJ0+n6HmhPGG0Q4jtQsb6PFoyg== +"@esbuild/linux-s390x@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.11.tgz#4bad33894bc7415cea4be8fa90fe456226a424ad" + integrity sha512-4N5EMESvws0Ozr2J94VoUD8HIRi7X0uvUv4c0wpTHZyZY9qpaaN7THjosdiW56irQ4qnJ6Lsc+i+5zGWnyqWqQ== + "@esbuild/linux-x64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.3.tgz#38388b73fd9eebe45b073d7d8099b9c2e54f7139" @@ -2806,6 +2890,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.10.tgz#7fa4667b2df81ea0538e1b75e607cf04e526ce91" integrity sha512-zJUfJLebCYzBdIz/Z9vqwFjIA7iSlLCFvVi7glMgnu2MK7XYigwsonXshy9wP9S7szF+nmwrelNaP3WGanstEg== +"@esbuild/linux-x64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.11.tgz#903fda743459f530a16a6c6ee8d2c0f6c1a12fc7" + integrity sha512-rM/v8UlluxpytFSmVdbCe1yyKQd/e+FmIJE2oPJvbBo+D0XVWi1y/NQ4iTNx+436WmDHQBjVLrbnAQLQ6U7wlw== + "@esbuild/netbsd-x64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.3.tgz#e0270569567f1530b8dbe6d11d5b4930b9cc71ae" @@ -2816,6 +2905,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.10.tgz#2d24727ddc2305619685bf237a46d6087a02ee9a" integrity sha512-lOMkailn4Ok9Vbp/q7uJfgicpDTbZFlXlnKT2DqC8uBijmm5oGtXAJy2ZZVo5hX7IOVXikV9LpCMj2U8cTguWA== +"@esbuild/netbsd-x64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.11.tgz#b589239fe7d9b16ee03c5e191f3f5b640f1518a1" + integrity sha512-4WaAhuz5f91h3/g43VBGdto1Q+X7VEZfpcWGtOFXnggEuLvjV+cP6DyLRU15IjiU9fKLLk41OoJfBFN5DhPvag== + "@esbuild/openbsd-x64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.3.tgz#3b16642d443848bca605f33ee3978a1890911e6d" @@ -2826,6 +2920,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.10.tgz#bf3fc38ee6ecf028c1f0cfe11f61d53cc75fef12" integrity sha512-/VE0Kx6y7eekqZ+ZLU4AjMlB80ov9tEz4H067Y0STwnGOYL8CsNg4J+cCmBznk1tMpxMoUOf0AbWlb1d2Pkbig== +"@esbuild/openbsd-x64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.11.tgz#b355019754116bef39ec688f8fd2fe6471b9779b" + integrity sha512-UBj135Nx4FpnvtE+C8TWGp98oUgBcmNmdYgl5ToKc0mBHxVVqVE7FUS5/ELMImOp205qDAittL6Ezhasc2Ev/w== + "@esbuild/sunos-x64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.3.tgz#a838f247867380f0ae25ce1936dc5ab6f57b7734" @@ -2836,6 +2935,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.10.tgz#8deabd6dfec6256f80bb101bc59d29dbae99c69b" integrity sha512-ERNO0838OUm8HfUjjsEs71cLjLMu/xt6bhOlxcJ0/1MG3hNqCmbWaS+w/8nFLa0DDjbwZQuGKVtCUJliLmbVgg== +"@esbuild/sunos-x64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.11.tgz#2ea47fb592e68406e5025a7696dc714fc6a115dc" + integrity sha512-1/gxTifDC9aXbV2xOfCbOceh5AlIidUrPsMpivgzo8P8zUtczlq1ncFpeN1ZyQJ9lVs2hILy1PG5KPp+w8QPPg== + "@esbuild/win32-arm64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.3.tgz#bedd9bef5fb41f89ce2599f1761973cf6d6a67b6" @@ -2846,6 +2950,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.10.tgz#1ec1ee04c788c4c57a83370b6abf79587b3e4965" integrity sha512-fXv+L+Bw2AeK+XJHwDAQ9m3NRlNemG6Z6ijLwJAAVdu4cyoFbBWbEtyZzDeL+rpG2lWI51cXeMt70HA8g2MqIg== +"@esbuild/win32-arm64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.11.tgz#47e6fdab17c4c52e6e0d606dd9cb843b29826325" + integrity sha512-vtSfyx5yRdpiOW9yp6Ax0zyNOv9HjOAw8WaZg3dF5djEHKKm3UnoohftVvIJtRh0Ec7Hso0RIdTqZvPXJ7FdvQ== + "@esbuild/win32-ia32@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.3.tgz#49800aa812d8cc35ceef61e8d3b01224684cc0b1" @@ -2856,6 +2965,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.10.tgz#a362528d7f3ad5d44fa8710a96764677ef92ebe9" integrity sha512-3s+HADrOdCdGOi5lnh5DMQEzgbsFsd4w57L/eLKKjMnN0CN4AIEP0DCP3F3N14xnxh3ruNc32A0Na9zYe1Z/AQ== +"@esbuild/win32-ia32@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.11.tgz#a97273aa3164c8d8f501899f55cc75a4a79599a3" + integrity sha512-GFPSLEGQr4wHFTiIUJQrnJKZhZjjq4Sphf+mM76nQR6WkQn73vm7IsacmBRPkALfpOCHsopSvLgqdd4iUW2mYw== + "@esbuild/win32-x64@0.16.3": version "0.16.3" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.3.tgz#94047dae921949cfb308117d993c4b941291ae10" @@ -2866,6 +2980,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.10.tgz#ac779220f2da96afd480fb3f3148a292f66e7fc3" integrity sha512-oP+zFUjYNaMNmjTwlFtWep85hvwUu19cZklB3QsBOcZSs6y7hmH4LNCJ7075bsqzYaNvZFXJlAVaQ2ApITDXtw== +"@esbuild/win32-x64@0.17.11": + version "0.17.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.11.tgz#9be796d93ae27b636da32d960899a4912bca27a1" + integrity sha512-N9vXqLP3eRL8BqSy8yn4Y98cZI2pZ8fyuHx6lKjiG2WABpT2l01TXdzq5Ma2ZUBzfB7tx5dXVhge8X9u0S70ZQ== + "@eslint/eslintrc@^1.3.0", "@eslint/eslintrc@^1.4.1": version "1.4.1" resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz#af58772019a2d271b7e2d4c23ff4ddcba3ccfb3e" @@ -3488,6 +3607,13 @@ json5 "^2.2.2" write-file-atomic "^2.3.0" +"@expo/match-media@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@expo/match-media/-/match-media-0.3.0.tgz#e22360d9bd69b76d97f6c2da220e5d806fbadb92" + integrity sha512-J6JXamR4tYTvYLbmvoUeO+v4SC36Xyi1C4K9Wqrxxp5xbQCqIqqZrj3ZTFZdRO5IWiu3B407yL4e/kDbqz4EdQ== + dependencies: + css-mediaquery "^0.1.2" + "@expo/metro-config@~0.7.0": version "0.7.1" resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.7.1.tgz#eaae792da23554c1abbc401df868566fab29951b" @@ -3615,6 +3741,41 @@ find-up "^5.0.0" js-yaml "^4.1.0" +"@floating-ui/core@^1.1.0", "@floating-ui/core@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.2.2.tgz#66f62cf1b7de2ed23a09c101808536e68caffaec" + integrity sha512-FaO9KVLFnxknZaGWGmNtjD2CVFuc0u4yeGEofoyXO2wgRA7fLtkngT6UB0vtWQWuhH3iMTZZ/Y89CMeyGfn8pA== + +"@floating-ui/dom@^1.2.1": + version "1.2.3" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.2.3.tgz#8dc6fbf799fbb5c29f705b54bdd51f3ab0ee03a2" + integrity sha512-lK9cZUrHSJLMVAdCvDqs6Ug8gr0wmqksYiaoj/bxj2gweRQkSuhg2/V6Jswz2KiQ0RAULbqw1oQDJIMpQ5GfGA== + dependencies: + "@floating-ui/core" "^1.2.2" + +"@floating-ui/react-dom@^1.2.2", "@floating-ui/react-dom@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-1.3.0.tgz#4d35d416eb19811c2b0e9271100a6aa18c1579b3" + integrity sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g== + dependencies: + "@floating-ui/dom" "^1.2.1" + +"@floating-ui/react-native@^0.9.0": + version "0.9.0" + resolved "https://registry.yarnpkg.com/@floating-ui/react-native/-/react-native-0.9.0.tgz#91c14cc3aa7dc9d8ad539cdd91df8a47a74eb329" + integrity sha512-0Q73XJZabyJEOhee2PdBunD6eDkXyEF1OzxVrzAWC3RJcymSLv5L4nrZtZ7j5Wy4bCt1BYweEJMNwEkgopEyGw== + dependencies: + "@floating-ui/core" "^1.1.0" + +"@floating-ui/react@^0.19.1": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.19.2.tgz#c6e4d2097ed0dca665a7c042ddf9cdecc95e9412" + integrity sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w== + dependencies: + "@floating-ui/react-dom" "^1.3.0" + aria-hidden "^1.1.3" + tabbable "^6.0.1" + "@fontsource/inter@^4.5.11": version "4.5.15" resolved "https://registry.yarnpkg.com/@fontsource/inter/-/inter-4.5.15.tgz#eed1873d68755d3b52d6fcfcfa3493118430a512" @@ -6654,6 +6815,28 @@ "@project-serum/borsh" "^0.0.1-beta.0" bn.js "^5.1.3" +"@radix-ui/react-use-callback-ref@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-0.1.0.tgz#934b6e123330f5b3a6b116460e6662cbc663493f" + integrity sha512-Va041McOFFl+aV+sejvl0BS2aeHx86ND9X/rVFmEFQKTXCp6xgUK0NGUAGcgBlIjnJSbMYPGEk1xKSSlVcN2Aw== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-use-escape-keydown@^0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-0.1.0.tgz#dc80cb3753e9d1bd992adbad9a149fb6ea941874" + integrity sha512-tDLZbTGFmvXaazUXXv8kYbiCcbAE8yKgng9s95d8fCO+Eundv0Jngbn/hKPhDDs4jj9ChwRX5cDDnlaN+ugYYQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-callback-ref" "0.1.0" + +"@radix-ui/react-use-previous@^0.1.1": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-previous/-/react-use-previous-0.1.1.tgz#0226017f72267200f6e832a7103760e96a6db5d0" + integrity sha512-O/ZgrDBr11dR8rhO59ED8s5zIXBRFi8MiS+CmFGfi7MJYdLbfqVOmQU90Ghf87aifEgWe6380LA69KBneaShAg== + dependencies: + "@babel/runtime" "^7.13.10" + "@randlabs/communication-bridge@1.0.1": version "1.0.1" resolved "https://registry.yarnpkg.com/@randlabs/communication-bridge/-/communication-bridge-1.0.1.tgz#d1ecfc29157afcbb0ca2d73122d67905eecb5bf3" @@ -7469,6 +7652,831 @@ lodash.merge "^4.6.2" postcss-selector-parser "6.0.10" +"@tamagui/adapt@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/adapt/-/adapt-1.7.1.tgz#4044deec2ecf5c6957e7c8f474145b85d302442c" + integrity sha512-VFuQepPPrdDk4BnRpRZyqxQDyRMqQJq3l1uoWowbsSH3Sk+AQzCDNAHz8G1IQWCYBxoXZLZjX834FRmp/qcpdg== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/alert-dialog@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/alert-dialog/-/alert-dialog-1.7.1.tgz#ab9d24f30c2ca0c9799f9148e4e6bf3e13acc298" + integrity sha512-282hqMCyT9IZ1GUdCu186VEG/LMdzQc2LOSnH+W05YjdwFfiP5Mqp/SiMvL118zhntjULfnyZHRaOscpFK7cuQ== + dependencies: + "@tamagui/animate-presence" "1.7.1" + "@tamagui/aria-hidden" "1.7.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/dialog" "1.7.1" + "@tamagui/dismissable" "1.7.1" + "@tamagui/focus-scope" "1.7.1" + "@tamagui/polyfill-dev" "1.7.1" + "@tamagui/popper" "1.7.1" + "@tamagui/portal" "1.7.1" + "@tamagui/remove-scroll" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/text" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/animate-presence@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/animate-presence/-/animate-presence-1.7.1.tgz#068845f87c0d145f598812b54576bf6080e51eaf" + integrity sha512-w0B2jLpnaFgy+WztsaCgzWg3k8G1oFHleB5Xl20nXWk0QVrMx3TCHDekTudtA6Jnvi3ccQSXZce7cqdBI2tRtA== + dependencies: + "@tamagui/use-presence" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/animations-css@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/animations-css/-/animations-css-1.7.1.tgz#5e73d15465d7e0253bf83268d0bd552f3aad4c0c" + integrity sha512-KvSBh/4/gwkGlYsr7JN+CL4yl1/i5sOSW0qNa8T1W9W1qgqdTEJICqNORJ8pCQlyIG6rMQdv02mG8JzRHW69Qg== + dependencies: + "@tamagui/use-presence" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/animations-react-native@1.7.1", "@tamagui/animations-react-native@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/animations-react-native/-/animations-react-native-1.7.1.tgz#3a051913ee14eb7eb910b57269ecd4abefdd645a" + integrity sha512-915E0Qf9iCRLOyUDPWNtJjJ+QZdFZqUcBTptRS+Iz6EZ8mqwWHMinzPQtSsjA2QNpPFTdgOPkU3Wcu5DKpN2SA== + dependencies: + "@tamagui/use-presence" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/aria-hidden@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/aria-hidden/-/aria-hidden-1.7.1.tgz#5eaad204d508a8fce70cabb3d349f3e297296cc2" + integrity sha512-uLlRZVXgYNyS47votvuCICHlzuYBN+yFkIpLuvtbeDr++Gt5oxWGMQeMT77CUodxkWTgDdRxtJugnXUj21CbTg== + dependencies: + aria-hidden "^1.1.3" + +"@tamagui/avatar@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/avatar/-/avatar-1.7.1.tgz#74c2f6cb67a1b684ec68a87675952e23c50e9ffe" + integrity sha512-H4wBpI3BuTqbx+n+KlbhnmRQe2D+AFGlxgo2DXi5ZJwnOnS1hcGgMl2BvVdclcf6vWmkuOBmE0sULf4y55pkTw== + dependencies: + "@tamagui/core" "1.7.1" + "@tamagui/image" "1.7.1" + "@tamagui/shapes" "1.7.1" + "@tamagui/text" "1.7.1" + "@tamagui/use-event" "1.7.1" + +"@tamagui/babel-plugin@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/babel-plugin/-/babel-plugin-1.7.1.tgz#39595a5fcd46ab4789a2ca4b1ddea9530d4405ed" + integrity sha512-TgDtuT/rd32qUdS7DW8kzF0IFwnH5NWbU5em+egDhkASYSRN636rCkWrLQqzXyyBj0TUfPjFK2FLhSdBvw88NQ== + dependencies: + "@babel/generator" "^7.19.6" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/template" "7.18.10" + "@babel/traverse" "^7.19.6" + "@tamagui/simple-hash" "1.7.1" + "@tamagui/static" "1.7.1" + +"@tamagui/build@*", "@tamagui/build@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/build/-/build-1.7.1.tgz#a38d83699af1de25bdb06f227c644e2a45b093ea" + integrity sha512-MtHeG028Gw109fPx/iS6PabBCnONrjuZ9njOyfNPMO+dIAAXwhGDtKDU6XxtqGcrrVTdGfdr2PDegDDzLC5rTg== + dependencies: + chokidar "^3.5.2" + esbuild "^0.17.5" + execa "^5.0.0" + fast-glob "^3.2.11" + fs-extra "^11.1.0" + lodash.debounce "^4.0.8" + typescript "^4.7.4" + +"@tamagui/button@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/button/-/button-1.7.1.tgz#27473003eb864dfc91ce8191fb4b7d46e015bbfd" + integrity sha512-+xWh4Qrf0HfNJJrn/oEbtfMcXCUPj6DKwic8+oOHBg58tRH7ImCjkekH9tXDinouP0IEmx6ITzXSecacVRGpsw== + dependencies: + "@tamagui/font-size" "1.7.1" + "@tamagui/get-button-sized" "1.7.1" + "@tamagui/helpers-tamagui" "1.7.1" + "@tamagui/text" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/card@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/card/-/card-1.7.1.tgz#6faf761754aaff3822c3c990c2043f0ab2ae17be" + integrity sha512-IpqcdKr0BnZHaPhKeCataYcy+0wLuM+7+pFJosKKN3m0PKxeLIzIFm05gKxCaNATiSftf7W9IMye4xHu8csjMA== + dependencies: + "@tamagui/create-context" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/checkbox@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/checkbox/-/checkbox-1.7.1.tgz#5f0e7495d72f2d1e771d515601de0dc7ea746563" + integrity sha512-X+PZo91xI/DIAZwhXLRUgYcw1jbP3ULD1BN3DBXacamVBXZf3Y5MUXhzjMorjxTjUrdvLGmvPyqT0slu2VGP3g== + dependencies: + "@radix-ui/react-use-previous" "^0.1.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/focusable" "1.7.1" + "@tamagui/font-size" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/helpers-tamagui" "1.7.1" + "@tamagui/label" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/cli-color@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/cli-color/-/cli-color-1.7.1.tgz#f959815597ad651ea078e8cc9b69a00157a2ab0d" + integrity sha512-dfvEi6g/P7kLWq0vwdqbYXk6qcfz0UMqlhSob58XazzXF6xLLkuyVNBwZOVTSjd7KsPAGTdInV3B+zJLEYjJPg== + +"@tamagui/collection@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/collection/-/collection-1.7.1.tgz#69cd5ff51103d5a918b910c7735a6363600fb45e" + integrity sha512-Hd+koAL1k7Wv9DxYn8KJs+9/3J9qfE3/swGK/ghNAvoipgCFnkskr4EMZl6IFQD0gTUoCa026tigc1WzNoitjA== + dependencies: + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/polyfill-dev" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/colors@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/colors/-/colors-1.7.1.tgz#2e583d6e8667a16dd787cdb841b1f7651dd4eb5d" + integrity sha512-xAgkYzVHBwxWoNumwc7A3MpNcW9WjDNyW6Gb9o30ArUhbXMFK2lMtsVzomgTjRy8H0ZoC9HKshOiqwzGqQJXlQ== + +"@tamagui/compose-refs@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/compose-refs/-/compose-refs-1.7.1.tgz#6a7fa89a6acfbde9c6c39d63e99c1754c04da7fd" + integrity sha512-T2yxX3T5cjVkyBJk6Kg9FbiXsnaS+BCYn6kG/SMgQcSJ2NeDMFAsU8lfDYF29CHQRCCSrGfVVjvei+JTUSNW7A== + +"@tamagui/config-default-node@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/config-default-node/-/config-default-node-1.7.1.tgz#7f8480412ccec48f7dde1719001fa90a83b5b1b6" + integrity sha512-PJ7eT1Kx4wVGwchr7TxASdHdh9IGMx9Wq1idxYVSpF7Y97PGZAZTsnKMO7shFBrFO9Vwg6HaCeVyfvnGVMeRTA== + dependencies: + "@tamagui/shorthands" "1.7.1" + +"@tamagui/config@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/config/-/config-1.7.1.tgz#ac305efad6fa1c330bb33bdf8b075d6d90ffe695" + integrity sha512-nFaa5S7fTgs6GJ6thzmrlcGyb4IOOJv3kEEi96+Pcc6lWCVMYcF33J5d+bOzSeAEYXqiaUdW4KmGI3V4HcFZwQ== + dependencies: + "@tamagui/animations-css" "1.7.1" + "@tamagui/animations-react-native" "1.7.1" + "@tamagui/colors" "1.7.1" + "@tamagui/font-inter" "1.7.1" + "@tamagui/font-silkscreen" "1.7.1" + "@tamagui/react-native-media-driver" "1.7.1" + "@tamagui/shorthands" "1.7.1" + "@tamagui/themes" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/constants@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/constants/-/constants-1.7.1.tgz#49969617dce6f93e6bdc4a5f4270f2ac2592538b" + integrity sha512-dUsvC2+ciNAJyy+E9MUXmL2pWo1ZBi1WSwzByDe6qZWW/4vpvsDIK6g9YCngUwkjftvMHd5gd4hRZUpAsRU9hQ== + +"@tamagui/core-node@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/core-node/-/core-node-1.7.1.tgz#cdb2003570750d32a02c4d41f7cd9287038fac5f" + integrity sha512-p2Bf+LcMBJr58Hv/c1TfNfPL513+icKAo5GBjHuaY/thRU3P0n455IQOwvhEvW0RMokuA9d3Q0hduq4nU1bs1Q== + dependencies: + "@babel/runtime" "^7.19.4" + "@tamagui/core" "1.7.1" + "@tamagui/helpers" "1.7.1" + +"@tamagui/core@*", "@tamagui/core@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/core/-/core-1.7.1.tgz#29067f61f92c86c890d71bee18e68c84715f1fe7" + integrity sha512-8HgtTo5QmFJScHrDANOjckwUlPlNwyR04WGDqfxQ3jG0RVfqngifMBDe1tict4H8Ao7R+RedRCSvZJDmC2owoQ== + dependencies: + "@tamagui/react-native-use-pressable" "1.7.1" + "@tamagui/react-native-use-responder-events" "1.7.1" + "@tamagui/use-event" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/create-context@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/create-context/-/create-context-1.7.1.tgz#9a2c17812f65feff044fac49a3be4bd3f8392fd9" + integrity sha512-XJSyn4cf1kTN3B21YyFy9nJHL6+rJ3llT9loFqSXX1UU7PqvGUE9MF/u2ZNUH6YyCer5Cx/LhffGjnfw5JcpuA== + +"@tamagui/create-theme@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/create-theme/-/create-theme-1.7.1.tgz#3c5b34f5ff219df40bff0044e86499b165bfe407" + integrity sha512-KwvLSKNqquvfSUUZNUpuIFsW/5xtcTiQ4XO6pWoPgfpwA+dq5rbHdntFRIOU5cPTOJq5LSvpmkvrSbkpHsgn9A== + dependencies: + "@tamagui/web" "1.7.1" + +"@tamagui/create-themes@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/create-themes/-/create-themes-1.7.1.tgz#726b7f481b41e86f5965a3664d7855ddeba598dd" + integrity sha512-W/07ZdDFBpcu3RXa3p6TzhtdABqpdHpgL9YpoIaz5rMOqG/vYAB9xRUTZXzFXxiiUWPLeOZQMx6sq15bC9zrOA== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/dialog@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/dialog/-/dialog-1.7.1.tgz#0a81772adb29d649917b6106c84db41fa46108a8" + integrity sha512-vUb3Bwvp9pGiHkjjrwFV+vRAbgUte4bZc1ASmzol6AfOW4RRvnqhR6vefG5O5WHQio/XLUN9UIxr0R3PiL4baQ== + dependencies: + "@tamagui/adapt" "1.7.1" + "@tamagui/animate-presence" "1.7.1" + "@tamagui/aria-hidden" "1.7.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/dismissable" "1.7.1" + "@tamagui/focus-scope" "1.7.1" + "@tamagui/polyfill-dev" "1.7.1" + "@tamagui/popper" "1.7.1" + "@tamagui/portal" "1.7.1" + "@tamagui/remove-scroll" "1.7.1" + "@tamagui/sheet" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/text" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/dismissable@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/dismissable/-/dismissable-1.7.1.tgz#d7d875a7926a0cbd5539e9e2c2c8659708a3d2c8" + integrity sha512-4YLibKI4iu53tEOwXob9vS7CKAPQtP9f40X+PktmwIg5dgF+K+eo4LnE7ZKdwGVsi8cR7edkm1wDdRKn16vk5w== + dependencies: + "@radix-ui/react-use-escape-keydown" "^0.1.0" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/use-event" "1.7.1" + +"@tamagui/fake-react-native@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/fake-react-native/-/fake-react-native-1.7.1.tgz#0494d6c54c214c67d7f6cda8226154b4f999d690" + integrity sha512-tWGVLBg4U5kC+w5LfkSPuKegkTMHKENRAyy7r8e0H9H9qYm7iMx01N9WlvdZCOpv8Xuceu+JJlLFzd52KYg4Fg== + +"@tamagui/floating@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/floating/-/floating-1.7.1.tgz#b576aa195c3136430ae7cdf5accbd9b5e64fc0da" + integrity sha512-PPofCyopGwKEVBIxNL3igJN+q+XxuVVLsadIiwbS5afeQlholK4uWLf1DlxMxtpauYKsQD7K6TD8gmR5r5AB/w== + dependencies: + "@floating-ui/react-dom" "^1.2.2" + "@floating-ui/react-native" "^0.9.0" + +"@tamagui/focus-scope@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/focus-scope/-/focus-scope-1.7.1.tgz#a73bf96131db214dbc93315f0bd66f8bc85e229f" + integrity sha512-mTtDFXWoZkp7XcErpHRnFDrRC4TO0MqZMDgtroPc9wE07E0Wg8XAJDV1UXDux3sT8A1gkSz5X50A6wzoRT1cMg== + dependencies: + "@tamagui/compose-refs" "1.7.1" + "@tamagui/use-event" "1.7.1" + +"@tamagui/focusable@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/focusable/-/focusable-1.7.1.tgz#14aef1d35ca45c99fd1a491c569177ab612a883f" + integrity sha512-055on9MMsC8JDHl6mAgRbJ5gjJsU/QyGR2G6d9dHBIRXccm/txPSk30CVtHNZn0/9PAu2fVufKS+qwRg6SFsuw== + dependencies: + "@tamagui/compose-refs" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/font-inter@1.7.1", "@tamagui/font-inter@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/font-inter/-/font-inter-1.7.1.tgz#fddef22a151369353a0c8f895453ccd4896061ce" + integrity sha512-qbKIlfB0iUYVFEAoIEZatWU0zcpxfYsgkAUW+3m0w0MeVEAs4T+QD1Zb+dQxCRbVibD6Hv7HIicyblawDX/owA== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/font-silkscreen@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/font-silkscreen/-/font-silkscreen-1.7.1.tgz#b236a01852c90aa1b787ec215b8a76d2026c07ad" + integrity sha512-szIDW7iAZ7qzJGLhpISXaZCd3JMDSTauxijlcsmU4o3yD/zoMr7h6lrHxZDQQEoqbX72z+Zbhe6kdkOrBdfrcg== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/font-size@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/font-size/-/font-size-1.7.1.tgz#91145c13e84b5aadb6e24abb2397c8beb36d4bec" + integrity sha512-KU7pVGRsFEc5kU0wG/R6nvF7sBaW2Zv5NhSDFedwLtUl9WjkNquSAIpvQ2tcUAaAMGTiX+sjZhEOD96eS+0Wfg== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/form@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/form/-/form-1.7.1.tgz#538ff95812747c9ad72f1a388c92cd169d9ab45c" + integrity sha512-xdBrTUd3pE8f/ZqvnBLc+axeIsRRNT0qc1pZXU3NiTl1kYIqiXSE8ND10dmmFEwGbofqmzLTPDjApMXQwzDvgQ== + dependencies: + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/focusable" "1.7.1" + "@tamagui/get-button-sized" "1.7.1" + "@tamagui/get-font-sized" "1.7.1" + "@tamagui/text" "1.7.1" + +"@tamagui/get-button-sized@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/get-button-sized/-/get-button-sized-1.7.1.tgz#f15e14775dd7b29205d6a8d716423d14c802fb75" + integrity sha512-7+EQ8aa3a7MybacQBGT5/2DNYRzB8UzutS8Fdyqhx78m4uoYHiphoQ9CkqgHZQPAkkdLYbDF/OA4qhWL/BBFqw== + dependencies: + "@tamagui/get-size" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/get-font-sized@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/get-font-sized/-/get-font-sized-1.7.1.tgz#9df77834f86818f0d4b5a87ee555515e902928f1" + integrity sha512-INocsGJPpUjTI5lCx6Kdm8C76WIMuJv5cseDgDhlxoNBC2UVkLHizowXHKbtmoNokV/4DS3nDyiNy1o48cyivw== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/get-size@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/get-size/-/get-size-1.7.1.tgz#5344852f912b4b4e13b6f6cdc2d6a0b2af7682ba" + integrity sha512-ap50HQtygmOzPCw0/kxsSWLbWU0KK1391CC1ZanfH+P4T8q2v1LUuh0Bmr+TfVU+cp7nOC6ebvpZAfjNWRt+TA== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/group@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/group/-/group-1.7.1.tgz#aa62f6fca86d68269224756d4a2115892a7c5f35" + integrity sha512-YmIxkSAkaDYflvNICnIXGY/u46QHXI++wSdDY0uWY+sGkue13NoVTnV7Xvv5tdr6HLyCfMQwwl96JfhJJJPxlQ== + dependencies: + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + reforest "^0.12.1" + +"@tamagui/helpers-node@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/helpers-node/-/helpers-node-1.7.1.tgz#c5950ea29a70773940335f3bea245f77ab69f133" + integrity sha512-4/m1AdX/ASqZqqgYWm5gQ+X7Di4ox8fLy2XW+Poc5rfbgjZHC04JXZtduH1I3CE4sKlvbdiyozfomGK3Vkgdtw== + dependencies: + "@tamagui/types" "1.7.1" + +"@tamagui/helpers-tamagui@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/helpers-tamagui/-/helpers-tamagui-1.7.1.tgz#42f77295f7811cefc70f4b229914ca5c3984f538" + integrity sha512-otSh+CbnkbwLwc8ZWSoIlSevj2ZbXgQGHvbomwx4tqip9aAuxXcvU1GXvcJX2POQ4Q0BGQgLaIq6rW33Bsmyew== + dependencies: + "@tamagui/core" "1.7.1" + "@tamagui/helpers" "1.7.1" + +"@tamagui/helpers@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/helpers/-/helpers-1.7.1.tgz#1391529f4faee2bdb2c318697ba626c1a2db4c44" + integrity sha512-NCq/Fwdm6PuWDJBXrH+6CQ2DJ0jAR8FN1EN4C6qSvVT4WwTbf6oM5+SjTZugSeFiTZBr80CdM6kLLLKDVxC5WQ== + dependencies: + "@tamagui/simple-hash" "1.7.1" + +"@tamagui/image@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/image/-/image-1.7.1.tgz#6c465cc2774e2b359b4e208898509f0191fe2776" + integrity sha512-4qDixbpf3NiUbpjzQ06PdkqS06hrn7odCUE/u186XYbIans3XJiCoVWkyiHbuSwIjQBfrjqNuGIEiAR55V+okg== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/label@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/label/-/label-1.7.1.tgz#8da069943ce4d784c7461913530dd65c1be64c02" + integrity sha512-+bkHQJhVcWgESBWcd6Emw9hkvJPH3ywKhnFPTMCnSRc4qZfRzqIfnLwPMzfmEkhtNlZwqcxbq9r2r2B9wu4gvA== + dependencies: + "@tamagui/compose-refs" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/focusable" "1.7.1" + "@tamagui/get-button-sized" "1.7.1" + "@tamagui/get-font-sized" "1.7.1" + "@tamagui/text" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/linear-gradient@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/linear-gradient/-/linear-gradient-1.7.1.tgz#fc7066818fc034c76f0949d785bb14ec57d522ae" + integrity sha512-/dQlZ4DVe/gcRbY5dVGlATYuwUCmHvAW989zYsdUSb4XnFa+HNqPrSvO/uqGlRlNkkjyUoc1CLORSy+QPJfXIw== + dependencies: + "@tamagui/core" "1.7.1" + "@tamagui/stacks" "1.7.1" + +"@tamagui/list-item@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/list-item/-/list-item-1.7.1.tgz#9abd987ed7c47d5c47a74f7868ea62a3738d5a7a" + integrity sha512-ENtF02FrFrw5Y2PZ/X8DwyWhIX/vAGuHLnEYSdXpz0v5WO/xwzFWkA2kE6njwCZaSjrHtsQCII4Ld3RvJUyUuw== + dependencies: + "@tamagui/core" "1.7.1" + "@tamagui/font-size" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/helpers-tamagui" "1.7.1" + "@tamagui/text" "1.7.1" + +"@tamagui/normalize-css-color@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/normalize-css-color/-/normalize-css-color-1.7.1.tgz#3433ebdc26f63b541882e1a98f059219d05fca0d" + integrity sha512-3LtH2ZcUVuiP+etWRL7lx+AMlPBt0SBGy903AhK8VsFED0sdDGjagqm+GqttoCJYGS9evetZxm9zCvfgE7az0g== + +"@tamagui/polyfill-dev@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/polyfill-dev/-/polyfill-dev-1.7.1.tgz#2b415b612a27be81cac30b6e81eaea74350b8142" + integrity sha512-SaWceCKesbKkUCHzc0QT0f/o0tBo0fnFsmP1Sm+j4VX9m0jWXWyrrERoI1NTXfEdQb5tZDVh6kXqIQ7qK9OBWw== + +"@tamagui/popover@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/popover/-/popover-1.7.1.tgz#9a89682d9dddb7193ff709282eb793fcd6fadaf8" + integrity sha512-ycoi4eBonYpfepnSG7wkye7DQ4DwTjskP5bH7UQUZFdWWt8+usYeLzk94CypYvm8bJaRx763A8JsvXS9nMYPhg== + dependencies: + "@floating-ui/react" "^0.19.1" + "@tamagui/adapt" "1.7.1" + "@tamagui/animate-presence" "1.7.1" + "@tamagui/aria-hidden" "1.7.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/dismissable" "1.7.1" + "@tamagui/floating" "1.7.1" + "@tamagui/focus-scope" "1.7.1" + "@tamagui/polyfill-dev" "1.7.1" + "@tamagui/popper" "1.7.1" + "@tamagui/portal" "1.7.1" + "@tamagui/remove-scroll" "1.7.1" + "@tamagui/scroll-view" "1.7.1" + "@tamagui/sheet" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/popper@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/popper/-/popper-1.7.1.tgz#71308255673bd37d8e294d150ba68748963c2c2f" + integrity sha512-0RBBNpKrLqSoKb9k/AO2TxUlw3PAos9aUdLMMk+4PqZsSuxkDgnwR3RyynMntPTqFg9dQ2jNZaukMT4Vm1qesA== + dependencies: + "@floating-ui/react-dom" "^1.2.2" + "@floating-ui/react-native" "^0.9.0" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/floating" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/portal@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/portal/-/portal-1.7.1.tgz#c3a86af46febde0dbdae19be005ae9bef57d0bd5" + integrity sha512-ZQ+dv+Cdd5G7Fc/62gfNaE8a2YBqFMkWGSibjRgqAyIaxdCDmM/75etMLl734AkJxWxqEIBbtP2fM9jdVoBMNA== + dependencies: + "@tamagui/core" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-event" "1.7.1" + +"@tamagui/progress@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/progress/-/progress-1.7.1.tgz#c11ca37260e40668f83c13a1f92974f7505f9103" + integrity sha512-cPzql5cNDcZpcNaurB3WM/tFcvwpLIqhAtPDthBF0E3U7f3ycImKrGF+ZQXCLpRW6YYw5vvpcxWdX7rfQb8EVQ== + dependencies: + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/stacks" "1.7.1" + +"@tamagui/proxy-worm@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/proxy-worm/-/proxy-worm-1.7.1.tgz#1a1304564f89a34090a4221d62b4d58e0619e0a6" + integrity sha512-k6SvqFr2YqvGnYwk2xlZsBJvwXRsjV+SF6Iv+1GJ1rFQpb5HWIjazXcrwplDWH2P7zrlfC0oO6HxX5MWJV1TbQ== + +"@tamagui/radio-group@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/radio-group/-/radio-group-1.7.1.tgz#60fb47a699564411c2e20b10b9d025b389e67b0e" + integrity sha512-5TFJmj9jeXmh+VPv5fsEYqgNO9Ijkr+IoZXzwenAdTBr00Xkm0h0FOTrEZX8zvy9tXr1hjz+JlTmQmril3Fezw== + dependencies: + "@radix-ui/react-use-previous" "^0.1.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/focusable" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/label" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/react-native-media-driver@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/react-native-media-driver/-/react-native-media-driver-1.7.1.tgz#f13a8dd759b686b677f4d518fc7ae580133a674a" + integrity sha512-9fkqscB/isTU5aYXHmb5sYkGkRl0ZwxrVfrnOC0OFskfbiyJyekSLFV+jCQIzBcuj+8MQGfwkV7Uz63ISt6Ljw== + dependencies: + "@tamagui/web" "1.7.1" + css-mediaquery "^0.1.2" + +"@tamagui/react-native-use-pressable@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/react-native-use-pressable/-/react-native-use-pressable-1.7.1.tgz#b8488646452b5a5961606d36b8f97236e06064be" + integrity sha512-uS1jQUlckfcQkdroNH064s/Nwe1rZ0XMcw6ZLeJbtkQI/0kE+YO/WvXBLyWUNcdBjtYyhLS8ZSqnXgd6mMbp4g== + +"@tamagui/react-native-use-responder-events@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/react-native-use-responder-events/-/react-native-use-responder-events-1.7.1.tgz#ec0501f967eb179f81de867c1c74fdee99cc1a1a" + integrity sha512-MRegjvQISUB8R7pf5KeZ0HDAGIf3iqSHte6zyApqL1otjqFUX795tu0DF5HhmcdrKxdqFMnsMi/EekKqToR+ag== + +"@tamagui/remove-scroll@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/remove-scroll/-/remove-scroll-1.7.1.tgz#eaa44c39ee4b9a01ab31ea9e71cd42c18417047b" + integrity sha512-PHdI0ywy8QkATjDyy2DNXIe/YYHxy3MqLM0vLkvTM3sLnfwxjN+bRvX7vE2t42IsDkp2wNLzBGd3Xf1o/RGMjw== + dependencies: + react-remove-scroll "^2.5.5" + +"@tamagui/roving-focus@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/roving-focus/-/roving-focus-1.7.1.tgz#642c18928fc3a31bf360be87e64f9fdb10f20a4f" + integrity sha512-X3jkcTXfPp9P96CYdx0ZEd0v4OYvhyWcAi2w7Qgb4YD42sg2CUl5eJ4BxmYvZOaOWF/5SraWrrL3hJLNNIi+Qw== + dependencies: + "@tamagui/collection" "1.7.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + "@tamagui/use-direction" "1.7.1" + "@tamagui/use-event" "1.7.1" + +"@tamagui/scroll-view@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/scroll-view/-/scroll-view-1.7.1.tgz#f746f56517493a8983d346a4977cf47d9dcb5e75" + integrity sha512-j+rgJRXO+qXPbhgV/DbGJY8iCTrS6O/4gOtpJQqe8R4owPA2v3FQbw2XkN8PbWs+eLxFLb+lxrczZOzSaN6RFg== + dependencies: + "@tamagui/stacks" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/select@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/select/-/select-1.7.1.tgz#7ccf80d1c865df7591b53fd15d7dbbe83e23a576" + integrity sha512-482IvwTMUpNzh7HL/Ppcpk4BC8iqmXjJ5XbxaNGsgKdr9VLNdyWQhbvzsBElh31OV+SUtPIV3EiDmaQNCRb0rw== + dependencies: + "@floating-ui/react" "^0.19.1" + "@floating-ui/react-dom" "^1.2.2" + "@floating-ui/react-native" "^0.9.0" + "@radix-ui/react-use-previous" "^0.1.1" + "@tamagui/adapt" "1.7.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/dismissable" "1.7.1" + "@tamagui/focus-scope" "1.7.1" + "@tamagui/list-item" "1.7.1" + "@tamagui/portal" "1.7.1" + "@tamagui/separator" "1.7.1" + "@tamagui/sheet" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/text" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + "@tamagui/use-event" "1.7.1" + +"@tamagui/separator@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/separator/-/separator-1.7.1.tgz#ca1c72c1262b2d64f1bfe30061bf4067b89ba31d" + integrity sha512-dbJuFurVSB3VqfXuOHQhPVK9+6Qp5IB9SqMrBP34ppbtPOMqgmbS/1Nnr4BuvN9i9O4u7/ccAQ4BvlIOUFJ+7w== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/shapes@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/shapes/-/shapes-1.7.1.tgz#54dd2998092c350953bb27e43711784cc3dec750" + integrity sha512-Mp/DnQdZqJuSNQWWOvXVqtnjUcMgrZprH5Kgr/v+VQ4ekLCNcLUVs3Y7fLpzSHoZzTOZaiRhqkpziEeh6eODpQ== + dependencies: + "@tamagui/stacks" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/sheet@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/sheet/-/sheet-1.7.1.tgz#8b2fa87f013ea6ab1181216418e4a15c10e4c753" + integrity sha512-ryraocSEDIxFSkN8PlyO2YEwtrGX97YM5079xZ0NSLC2LdNeNBuOKDC3GvJxwCbcsfTHIYVw6yhJt6HJl3uJaw== + dependencies: + "@tamagui/animations-react-native" "1.7.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/portal" "1.7.1" + "@tamagui/remove-scroll" "1.7.1" + "@tamagui/scroll-view" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-constant" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + "@tamagui/use-keyboard-visible" "1.7.1" + +"@tamagui/shorthands@1.7.1", "@tamagui/shorthands@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/shorthands/-/shorthands-1.7.1.tgz#af155b1bb6f3d89ccb61a3966cc3f469c5d027a0" + integrity sha512-8bo6LC3s9e4G56n/7J2I2tTnFQjI61nb4rlP3ubX1P6KrDC5Qt76oo4WWwyGgJ/w9pXOeGY5iflhBCOMlHvUug== + +"@tamagui/simple-hash@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/simple-hash/-/simple-hash-1.7.1.tgz#f5c3aaf7549a3d92127daac89517be6ffc67b55b" + integrity sha512-j0W0wwCiRLEeEj2QZWmHal5Zo/Y68AhhSPcf43lbHkKjpVWmwQNQQqVEFZJo2Xdyzz2o/suFoeVYSwMm+90d1g== + +"@tamagui/slider@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/slider/-/slider-1.7.1.tgz#70ecf8b847e5e481ca2a056cb154d42d84e44bb0" + integrity sha512-ml0lzKjYfDCj6s4TZBz1Tcy2n5FKDYZ1FSw4xeeVaNTQfr+s3rmd+N+P7swxGbFMjydUmMpKl0yIYYPOmDP9kw== + dependencies: + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/helpers" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + "@tamagui/use-direction" "1.7.1" + +"@tamagui/stacks@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/stacks/-/stacks-1.7.1.tgz#026516115fbfdafe4debf4c671adeac2c0f6f883" + integrity sha512-aJPX3bnw0u9ZSpu5Gxl+RkDURXgEthkZVeEbMqcXNaUrb9zX3bLEv71uTGFFw4hp7kCk3T4/bYe0SwHH5E3AvA== + dependencies: + "@tamagui/core" "1.7.1" + +"@tamagui/static@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/static/-/static-1.7.1.tgz#1f3cc3d4ffd1c6be26f00f959eb4a031dd3ce4a9" + integrity sha512-UU+JG5s5j7GX3qTLlMeDy54/aAHu2zI22Mu+ujRNangj7VxFdx6hBQmrW2QRwFoAc4JNedoeLjyX2h5jXDsN6A== + dependencies: + "@babel/core" "^7.19.6" + "@babel/generator" "^7.19.6" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/parser" "^7.19.6" + "@babel/plugin-transform-react-jsx" "^7.19.0" + "@babel/runtime" "^7.19.4" + "@babel/traverse" "^7.19.6" + "@expo/match-media" "^0.3.0" + "@tamagui/build" "1.7.1" + "@tamagui/cli-color" "1.7.1" + "@tamagui/config-default-node" "1.7.1" + "@tamagui/core-node" "1.7.1" + "@tamagui/fake-react-native" "1.7.1" + "@tamagui/helpers" "1.7.1" + "@tamagui/helpers-node" "1.7.1" + "@tamagui/proxy-worm" "1.7.1" + "@tamagui/shorthands" "1.7.1" + "@tamagui/types" "1.7.1" + babel-literal-to-ast "^2.1.0" + esbuild "^0.17.5" + esbuild-register "^3.4.2" + find-cache-dir "^3.3.2" + find-root "^1.1.0" + fs-extra "^11.1.0" + invariant "^2.2.4" + lodash "^4.17.21" + react-native-web-internals "1.7.1" + react-native-web-lite "1.7.1" + +"@tamagui/switch@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/switch/-/switch-1.7.1.tgz#bb3a47190292b795df77922cb40d9688d28a6c68" + integrity sha512-VDE70XF/s0aQZsBgwA8JToOEP6YYFarvdjvWNvSSmXq+UN7xjQBtyYWZkWAmFVXALXAmocT2m4tjmQ9Qb6g9OA== + dependencies: + "@radix-ui/react-use-previous" "^0.1.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/focusable" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/label" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/tabs@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/tabs/-/tabs-1.7.1.tgz#60bb42e1feb993bd26ccf1cf2c80b9b639bfac12" + integrity sha512-wDlYubjiyiWLFgI9q3SCV/zR0T1Vu1C9f6u+43J6lHYjAcKDwgNOhOUjERHCAcTg/7DwzykpRhoHL5rIzm4VIA== + dependencies: + "@tamagui/create-context" "1.7.1" + "@tamagui/get-button-sized" "1.7.1" + "@tamagui/group" "1.7.1" + "@tamagui/roving-focus" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + "@tamagui/use-direction" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/text@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/text/-/text-1.7.1.tgz#a6d0da5a853370389a45a384c558442dfdb535d5" + integrity sha512-LMv6kdV/cm8BVoq0SJxkXjmTOvK/StttGyj+Qm1yoM10TQc0bX6ASl4qaM4lLH00C+Ij4p9zhtpubbs7FxsX0w== + dependencies: + "@tamagui/get-font-sized" "1.7.1" + "@tamagui/helpers-tamagui" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/theme-base@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/theme-base/-/theme-base-1.7.1.tgz#0fc2ecbc07f93cd01fcd4921ca9e948103a8a35f" + integrity sha512-e5GbwRcWXgMpA3SBifraOZeOOjjAjXOG3cj9LpBDLvZy5yKb/VjJVFDh7o86YZoz6MQIxZB7hCeBF96P9tkemQ== + dependencies: + "@tamagui/colors" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-themes" "1.7.1" + +"@tamagui/themes@1.7.1", "@tamagui/themes@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/themes/-/themes-1.7.1.tgz#3c555d9bb82f87d6561b7c4805ec2484e03080da" + integrity sha512-mjvmfTJQZv9kBILs3frqNav6sQCE1GqBvG45dFUDZPJM/06rvXDyn4xujhVzk3xj2cjjFZ7mSMEeEbeiFYI1sw== + dependencies: + "@tamagui/colors" "1.7.1" + "@tamagui/create-theme" "1.7.1" + "@tamagui/web" "1.7.1" + +"@tamagui/tooltip@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/tooltip/-/tooltip-1.7.1.tgz#3cb15658d25f20b3ea072230a5a08f966498690a" + integrity sha512-Emg3MtGAVvGgV1dYrJTl18lDvTusBUHzZ8Z7HepWPWJL4ylKUt+6GC4K38L52+YmN6oktBSQAszoRfhY8jplTA== + dependencies: + "@floating-ui/react" "^0.19.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/floating" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/polyfill-dev" "1.7.1" + "@tamagui/popover" "1.7.1" + "@tamagui/popper" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/text" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + +"@tamagui/types@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/types/-/types-1.7.1.tgz#e9d96bb7bf31279623b66d3f2b0325bf12d6651b" + integrity sha512-3B9Di+BUoV/rQ6HHh6sEL90h2EcIU3iEEfzAzp1zwiTeBkG8BA1UUAAsxAZBxJjbKblAw+C3UMGQIY+blM0Icg== + +"@tamagui/use-constant@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-constant/-/use-constant-1.7.1.tgz#ad41d6bd5a0996b4b1d1099d550dc87a43420fdc" + integrity sha512-wVi61WqTsNy3sCuVAiMWVzxV6fzaOm3ENobvbG6rMUPBqcXvqvPmfYZtIZqdQYlgFINJES0nVw5BG/vlS3vqfg== + +"@tamagui/use-controllable-state@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-controllable-state/-/use-controllable-state-1.7.1.tgz#e81643dd2e20073803ac1a671bfd4be57418619b" + integrity sha512-XxKnLQeDZG8O14kt+rs5bs8hQhAPv8x63+9diR0Ht/VnEEc1BpuQVE4UORzh9bYvNpy9ttjPCJV5mR9mhlUMwQ== + dependencies: + "@tamagui/use-event" "1.7.1" + +"@tamagui/use-debounce@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-debounce/-/use-debounce-1.7.1.tgz#53c9a16781db124987d7c38bf41ca2bb99cce77e" + integrity sha512-QjPxWyJImPZTMFnea45jgxfNx5gs2fpwZoTFfoKztOEYhcIW+WN/vTUHzyNCPgz39JZfzmAgw4UhW8IarOZaYQ== + +"@tamagui/use-did-finish-ssr@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-did-finish-ssr/-/use-did-finish-ssr-1.7.1.tgz#8134dbcfe4fc691d043be53df17e2d3c7937e0bb" + integrity sha512-mCXrxwxLNybH3rh0fjHgV9c14rlnB6peTfCPQMjBGonDxn/wr/V4Z0gxvptZr9VQBNRdvbDhrgvwRWp67iXUGQ== + dependencies: + "@tamagui/constants" "1.7.1" + +"@tamagui/use-direction@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-direction/-/use-direction-1.7.1.tgz#7c04c89aeeb6c5cabadc41f4402ff25c3ecf19ff" + integrity sha512-tlbSv98200cBCaB7fp3EfREiY2KWh3nXBYaLTW0zxc63YWPHRU/exBYyebH5QJkfU58rj3PLOIeQr5b8m2dufg== + +"@tamagui/use-event@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-event/-/use-event-1.7.1.tgz#6872e71629b9ac66f4a0555aa19d11395515f3e9" + integrity sha512-l0k3RVsSIp0/mrwLtD663LEn1xzsvCJ0YaqUS/5lIalufgfP3FDXZ/i2FZ1+Hu+BGOY51tUSYnjoIGlIZY3QDA== + +"@tamagui/use-force-update@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-force-update/-/use-force-update-1.7.1.tgz#1f6fe2319f964aa1bb6df6214bef50c06ca0511c" + integrity sha512-5dnuj8ySACPkVOzyvmPb+ir1APZkPkZpt6Yc6xcOLwg8wAbZm6tk6l8274Q2NhDmnh8ZCC5dvndkrg8ndT2HHg== + +"@tamagui/use-keyboard-visible@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-keyboard-visible/-/use-keyboard-visible-1.7.1.tgz#21e23260ef577430dcb488c8252e9916f1d01723" + integrity sha512-62mfA/H0JELg6KP78SCyfouvZbBjQ0mhtU1ntdGtxf3ku6EZEJz/HEYv2e4oWfwmf8Rh6Ms3iMUlizhxm9s2Yw== + +"@tamagui/use-presence@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-presence/-/use-presence-1.7.1.tgz#6bafdec5f8b371aa4dee32e755d77e57856242bf" + integrity sha512-LIjkJpj2y0UG9jicWvEAIJn10FcHZZHHR398FPsgokHcRcK1bCby9fQgVjOUouP1XdkuBc8wkRkPbI0DFwZOzg== + dependencies: + "@tamagui/web" "1.7.1" + +"@tamagui/use-window-dimensions@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/use-window-dimensions/-/use-window-dimensions-1.7.1.tgz#c0fdd06af2f0f3e3568dd20be826ad4e622b3113" + integrity sha512-dWb3j1nW5mOn1NB1bo/qoljYT+Pgn7Y0YM7Xk6Fjp0s68vVsla/f7/UpR77rPhRblre0A/16gHkLu4m228g7hQ== + dependencies: + "@tamagui/constants" "1.7.1" + +"@tamagui/visually-hidden@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/visually-hidden/-/visually-hidden-1.7.1.tgz#a86b13ee81459f22afa9c063b60d53c715cc07d9" + integrity sha512-4Lc8o8tLfffAdRjfpvMfbH9caOlWSCj5v9nDQuLyKirNnb4ITY/cg9MwH42p8sANo11GdT5nJGa0OW9BZCRUvA== + dependencies: + "@tamagui/web" "1.7.1" + +"@tamagui/web@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@tamagui/web/-/web-1.7.1.tgz#17f6a3347b610de8efd0c0332adea1e48d6cb003" + integrity sha512-luxRanBFEyY9jORpQqMOu9wAHj/9sS+Me68QhHEousEZlaL5I/z8357UOnPRk47CiYtkrOjh3Mz2P9nRdpPrOw== + dependencies: + "@tamagui/compose-refs" "1.7.1" + "@tamagui/constants" "1.7.1" + "@tamagui/helpers" "1.7.1" + "@tamagui/normalize-css-color" "1.7.1" + "@tamagui/use-did-finish-ssr" "1.7.1" + "@tamagui/use-event" "1.7.1" + "@tamagui/use-force-update" "1.7.1" + "@tanstack/query-core@4.24.10": version "4.24.10" resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.24.10.tgz#758e1f5b2d7faf7316d299facd272a9f64c26299" @@ -9454,6 +10462,13 @@ argparse@^2.0.1: resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== +aria-hidden@^1.1.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.3.tgz#14aeb7fb692bbb72d69bebfa47279c1fd725e954" + integrity sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ== + dependencies: + tslib "^2.0.0" + aria-query@^5.0.0, aria-query@^5.1.3: version "5.1.3" resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" @@ -9849,6 +10864,15 @@ babel-jest@^29.4.3: graceful-fs "^4.2.9" slash "^3.0.0" +babel-literal-to-ast@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/babel-literal-to-ast/-/babel-literal-to-ast-2.1.0.tgz#c8b12f9c36a8cee13572d65aabf6cff8adb1e8b3" + integrity sha512-CxfpQ0ysQ0bZOhlaPgcWjl79Em16Rhqc6++UAFn0A3duiXmuyhhj8yyl9PYbj0I0CyjrHovdDbp2QEKT7uIMxw== + dependencies: + "@babel/parser" "^7.1.6" + "@babel/traverse" "^7.1.6" + "@babel/types" "^7.1.6" + babel-loader@^9.1.2: version "9.1.2" resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.2.tgz#a16a080de52d08854ee14570469905a5fc00d39c" @@ -9992,6 +11016,11 @@ babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ== +babel-plugin-transform-inline-environment-variables@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-environment-variables/-/babel-plugin-transform-inline-environment-variables-0.4.4.tgz#974245008b3cbbd646bd81707af147aea3acca43" + integrity sha512-bJILBtn5a11SmtR2j/3mBOjX4K3weC6cq+NNZ7hG22wCAqpc3qtj/iN7dSe9HDiS46lgp1nHsQgeYrea/RUe+g== + babel-preset-current-node-syntax@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" @@ -11004,7 +12033,7 @@ cheerio@^1.0.0-rc.12: parse5 "^7.0.0" parse5-htmlparser2-tree-adapter "^7.0.0" -chokidar@^3.5.3: +chokidar@^3.5.2, chokidar@^3.5.3: version "3.5.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== @@ -11854,6 +12883,11 @@ css-loader@^6.7.1: postcss-value-parser "^4.2.0" semver "^7.3.8" +css-mediaquery@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/css-mediaquery/-/css-mediaquery-0.1.2.tgz#6a2c37344928618631c54bd33cedd301da18bea0" + integrity sha512-COtn4EROW5dBGlE/4PiKnh6rZpAPxDeFLaEEwt4i10jpDMFt2EhQGS79QmmrO+iKCHv0PU/HrOWEhijFd1x99Q== + css-select@^4.1.3: version "4.3.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" @@ -12423,6 +13457,11 @@ detect-newline@^3.0.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== +detect-node-es@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493" + integrity sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ== + detect-node@^2.0.4: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" @@ -13265,6 +14304,13 @@ esbuild-plugin-resolve@^1.0.3: resolved "https://registry.yarnpkg.com/esbuild-plugin-resolve/-/esbuild-plugin-resolve-1.0.3.tgz#cb63004f896b21f09ffc53be1518c080ddeff3ab" integrity sha512-DHtwExowoWa5rC+mLVppGqe4MiFCZsKEeNgps4UAOKqmu3CjUgyyFjw+AHXteGCRdCJID76OsUuyGi2cOLIxUQ== +esbuild-register@^3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/esbuild-register/-/esbuild-register-3.4.2.tgz#1e39ee0a77e8f320a9790e68c64c3559620b9175" + integrity sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q== + dependencies: + debug "^4.3.4" + esbuild-sunos-64@0.14.54: version "0.14.54" resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz#54287ee3da73d3844b721c21bc80c1dc7e1bf7da" @@ -13416,6 +14462,34 @@ esbuild@^0.17.10: "@esbuild/win32-ia32" "0.17.10" "@esbuild/win32-x64" "0.17.10" +esbuild@^0.17.5: + version "0.17.11" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.11.tgz#9f3122643b21d7e7731e42f18576c10bfa28152b" + integrity sha512-pAMImyokbWDtnA/ufPxjQg0fYo2DDuzAlqwnDvbXqHLphe+m80eF++perYKVm8LeTuj2zUuFXC+xgSVxyoHUdg== + optionalDependencies: + "@esbuild/android-arm" "0.17.11" + "@esbuild/android-arm64" "0.17.11" + "@esbuild/android-x64" "0.17.11" + "@esbuild/darwin-arm64" "0.17.11" + "@esbuild/darwin-x64" "0.17.11" + "@esbuild/freebsd-arm64" "0.17.11" + "@esbuild/freebsd-x64" "0.17.11" + "@esbuild/linux-arm" "0.17.11" + "@esbuild/linux-arm64" "0.17.11" + "@esbuild/linux-ia32" "0.17.11" + "@esbuild/linux-loong64" "0.17.11" + "@esbuild/linux-mips64el" "0.17.11" + "@esbuild/linux-ppc64" "0.17.11" + "@esbuild/linux-riscv64" "0.17.11" + "@esbuild/linux-s390x" "0.17.11" + "@esbuild/linux-x64" "0.17.11" + "@esbuild/netbsd-x64" "0.17.11" + "@esbuild/openbsd-x64" "0.17.11" + "@esbuild/sunos-x64" "0.17.11" + "@esbuild/win32-arm64" "0.17.11" + "@esbuild/win32-ia32" "0.17.11" + "@esbuild/win32-x64" "0.17.11" + escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" @@ -14194,10 +15268,10 @@ expo-checkbox@~2.3.1: resolved "https://registry.yarnpkg.com/expo-checkbox/-/expo-checkbox-2.3.1.tgz#d214e797a54f387f8ec360487272fefc0aa846a0" integrity sha512-CTIabriK5xbtDnI9U5Hve82/WG85XLI4GLYSRTT1XST21HjQ7mDaeiYm7DnKzcgM+qeBwmbg3crJYnp7WW/8Ew== -expo-clipboard@~4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/expo-clipboard/-/expo-clipboard-4.1.1.tgz#4d7d593f1612302fc2dd4f60ba3b430e62b838f0" - integrity sha512-Gmt2hXHx9h9P5LSPiDq8vZJKcRv7J/Hi64f1B7Cs9/Gd1owYlH1q7KdMI+msPWuPWDFObYlh0IcjIzf1SxlRxA== +expo-clipboard@~4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/expo-clipboard/-/expo-clipboard-4.1.2.tgz#0844566ae8ad1cf72854dc1bbd704c3b09c5d391" + integrity sha512-YSuIs4CV+3gypl7X74sp2ruwAVuhnOngsWs7EGkcvRdX0BBrZZMk3GXGw9a59sU6SW4wGWAfwrhyCT41GUaN+A== expo-constants@~14.2.0, expo-constants@~14.2.1: version "14.2.1" @@ -14233,7 +15307,7 @@ expo-file-system@~15.2.0, expo-file-system@~15.2.2: dependencies: uuid "^3.4.0" -expo-font@~11.1.1: +expo-font@^11.1.1, expo-font@~11.1.1: version "11.1.1" resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-11.1.1.tgz#268eed407e94f6e88083c01b68c357d010748d23" integrity sha512-X+aICqYY69hiiDDtcNrjq8KutHrH2TrHuMqk0Rfq0P7hF6hMd+YefwLBNkvIrqrgmTAuqiLjMUwj2rHLqmgluw== @@ -15076,6 +16150,15 @@ fs-extra@^10.0.0, fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.0.tgz#5784b102104433bb0e090f48bfc4a30742c357ed" + integrity sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-extra@^8.1.0, fs-extra@~8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -15171,6 +16254,11 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@ has "^1.0.3" has-symbols "^1.0.3" +get-nonce@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/get-nonce/-/get-nonce-1.0.1.tgz#fdf3f0278073820d2ce9426c18f07481b1e0cdf3" + integrity sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q== + get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -18969,6 +20057,11 @@ loader-utils@^2.0.0, loader-utils@^2.0.4: emojis-list "^3.0.0" json5 "^2.1.2" +loader-utils@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576" + integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== + local-web-server@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/local-web-server/-/local-web-server-5.3.0.tgz#09907521f03efa60519521496e1538f7fca627ce" @@ -21312,6 +22405,11 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== +performant-array-to-tree@^1.11.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/performant-array-to-tree/-/performant-array-to-tree-1.11.0.tgz#cbb6c4a1a41a89b3a209dca7a8715cbe7d5a6a33" + integrity sha512-YwCqIDvnaebXaKuKQhI5yJD6ryDc3FxvoeX/5ougXTKDUWb7s5S2BuBgIyftCa4sBe1+ZU5Kmi4RJy+pjjjrpw== + picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" @@ -21963,7 +23061,7 @@ react-devtools-core@^4.26.1: shell-quote "^1.6.1" ws "^7" -react-dom@18.2.0: +react-dom@18.2.0, react-dom@^18.2.0: version "18.2.0" resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== @@ -22104,7 +23202,28 @@ react-native-url-polyfill@^1.3.0: dependencies: whatwg-url-without-unicode "8.0.0-3" -react-native-web@^0.18.12, react-native-web@~0.18.7: +react-native-web-internals@1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/react-native-web-internals/-/react-native-web-internals-1.7.1.tgz#3061312a862720880257a088dee855336b9778c2" + integrity sha512-HdjBj+SC0bACQ93rwAUx1A6khTfkN7e1ap2Dnl158Ix+eFabBdLURAeOakBwGeQA2oRKTxNV9N6mUh0NzJbrOw== + dependencies: + "@tamagui/normalize-css-color" "1.7.1" + "@tamagui/react-native-use-pressable" "1.7.1" + "@tamagui/react-native-use-responder-events" "1.7.1" + "@tamagui/simple-hash" "1.7.1" + styleq "^0.1.2" + +react-native-web-lite@1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/react-native-web-lite/-/react-native-web-lite-1.7.1.tgz#a1b700deabcba269ca6a37b9207192aceb3fb34b" + integrity sha512-KotS8jufkUEVIdMP6nhKokJzXg/tyv9c2EHWjQJoHpIsqhdo6QqeNlsjj3x8xYi7jfSiD9sFpk7TQ4cR1Teosw== + dependencies: + "@tamagui/normalize-css-color" "1.7.1" + invariant "^2.2.4" + react-native-web-internals "1.7.1" + styleq "^0.1.2" + +react-native-web@^0.18.12, react-native-web@~0.18.12: version "0.18.12" resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.18.12.tgz#d4bb3a783ece2514ba0508d7805b09c0a98f5a8e" integrity sha512-fboP7yqobJ8InSr4fP+bQ3scOtSQtUoPcR+HWasH8b/fk/RO+mWcJs/8n+lewy9WTZc2D68ha7VwRDviUshEWA== @@ -22187,6 +23306,25 @@ react-refresh@0.11.0, react-refresh@^0.14.0, react-refresh@^0.4.0, react-refresh resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046" integrity sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A== +react-remove-scroll-bar@^2.3.3: + version "2.3.4" + resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz#53e272d7a5cb8242990c7f144c44d8bd8ab5afd9" + integrity sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A== + dependencies: + react-style-singleton "^2.2.1" + tslib "^2.0.0" + +react-remove-scroll@^2.5.5: + version "2.5.5" + resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz#1e31a1260df08887a8a0e46d09271b52b3a37e77" + integrity sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw== + dependencies: + react-remove-scroll-bar "^2.3.3" + react-style-singleton "^2.2.1" + tslib "^2.1.0" + use-callback-ref "^1.3.0" + use-sidecar "^1.1.2" + react-rich-mentions@^0.1.10: version "0.1.10" resolved "https://registry.yarnpkg.com/react-rich-mentions/-/react-rich-mentions-0.1.10.tgz#88377294b5279cc917ae00a0145b52ed0b81ff9e" @@ -22215,6 +23353,15 @@ react-shallow-renderer@^16.15.0: object-assign "^4.1.1" react-is "^16.12.0 || ^17.0.0 || ^18.0.0" +react-style-singleton@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.1.tgz#f99e420492b2d8f34d38308ff660b60d0b1205b4" + integrity sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g== + dependencies: + get-nonce "^1.0.0" + invariant "^2.2.4" + tslib "^2.0.0" + react-test-renderer@^18.2.0: version "18.2.0" resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-18.2.0.tgz#1dd912bd908ff26da5b9fca4fd1c489b9523d37e" @@ -22430,6 +23577,14 @@ reduce-flatten@^2.0.0: resolved "https://registry.yarnpkg.com/reduce-flatten/-/reduce-flatten-2.0.0.tgz#734fd84e65f375d7ca4465c69798c25c9d10ae27" integrity sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w== +reforest@^0.12.1: + version "0.12.3" + resolved "https://registry.yarnpkg.com/reforest/-/reforest-0.12.3.tgz#1c2d9fb5fb2d6870ce077c75eccddb59c3a6bd36" + integrity sha512-ztYqy3EGOhFObDF4EiNs0eOBYUN/plRrHjDO9vp3cEEuJtav6lPp1xbO/B8A0+NtKi43ysvhvhcsLCm13lJaZA== + dependencies: + performant-array-to-tree "^1.11.0" + zustand "^4.3.3" + regenerate-unicode-properties@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" @@ -24152,6 +25307,11 @@ synckit@^0.8.4: "@pkgr/utils" "^2.3.1" tslib "^2.5.0" +tabbable@^6.0.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.1.1.tgz#40cfead5ed11be49043f04436ef924c8890186a0" + integrity sha512-4kl5w+nCB44EVRdO0g/UGoOp3vlwgycUVtkk/7DPyeLZUCuNFFKCFG6/t/DgHLrUPHjrZg6s5tNm+56Q2B0xyg== + table-layout@^1.0.2, table-layout@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/table-layout/-/table-layout-1.0.2.tgz#c4038a1853b0136d63365a734b6931cf4fad4a04" @@ -24191,6 +25351,71 @@ tailwindcss@^3.1.4: quick-lru "^5.1.1" resolve "^1.22.1" +tamagui-loader@^1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/tamagui-loader/-/tamagui-loader-1.7.1.tgz#0b8001276bbdf3f3179ceacc437712f141d5a651" + integrity sha512-bf65oTaYH8V1R1BsL7NbLFPbHac1ciaV37Q2+clXuFu42zwYylB+U+0VkdlWW6HL/ENY0fhxQk9EbV/tYr/yMQ== + dependencies: + "@tamagui/cli-color" "1.7.1" + "@tamagui/static" "1.7.1" + fs-extra "^11.1.0" + loader-utils "^3.2.1" + lodash "^4.17.21" + +tamagui@^1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/tamagui/-/tamagui-1.7.1.tgz#bf80e3870e8621cabdcb6d53fdb3d3110f869c4e" + integrity sha512-KOKaGl+z2JvR5OqY4i0u2/7EPpvN8ufLHxEhuWTdZaSL866OSF8HD0QCOtYBAmIYVkawMXE4ODWBFo/CF/n36Q== + dependencies: + "@tamagui/adapt" "1.7.1" + "@tamagui/alert-dialog" "1.7.1" + "@tamagui/animate-presence" "1.7.1" + "@tamagui/avatar" "1.7.1" + "@tamagui/button" "1.7.1" + "@tamagui/card" "1.7.1" + "@tamagui/checkbox" "1.7.1" + "@tamagui/compose-refs" "1.7.1" + "@tamagui/core" "1.7.1" + "@tamagui/create-context" "1.7.1" + "@tamagui/dialog" "1.7.1" + "@tamagui/fake-react-native" "1.7.1" + "@tamagui/focusable" "1.7.1" + "@tamagui/font-size" "1.7.1" + "@tamagui/form" "1.7.1" + "@tamagui/get-button-sized" "1.7.1" + "@tamagui/get-font-sized" "1.7.1" + "@tamagui/get-size" "1.7.1" + "@tamagui/helpers" "1.7.1" + "@tamagui/helpers-tamagui" "1.7.1" + "@tamagui/image" "1.7.1" + "@tamagui/label" "1.7.1" + "@tamagui/linear-gradient" "1.7.1" + "@tamagui/list-item" "1.7.1" + "@tamagui/popover" "1.7.1" + "@tamagui/popper" "1.7.1" + "@tamagui/portal" "1.7.1" + "@tamagui/progress" "1.7.1" + "@tamagui/radio-group" "1.7.1" + "@tamagui/react-native-media-driver" "1.7.1" + "@tamagui/scroll-view" "1.7.1" + "@tamagui/select" "1.7.1" + "@tamagui/separator" "1.7.1" + "@tamagui/shapes" "1.7.1" + "@tamagui/sheet" "1.7.1" + "@tamagui/slider" "1.7.1" + "@tamagui/stacks" "1.7.1" + "@tamagui/switch" "1.7.1" + "@tamagui/tabs" "1.7.1" + "@tamagui/text" "1.7.1" + "@tamagui/tooltip" "1.7.1" + "@tamagui/use-controllable-state" "1.7.1" + "@tamagui/use-debounce" "1.7.1" + "@tamagui/use-event" "1.7.1" + "@tamagui/use-force-update" "1.7.1" + "@tamagui/use-window-dimensions" "1.7.1" + "@tamagui/visually-hidden" "1.7.1" + reforest "^0.12.1" + tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" @@ -24842,7 +26067,7 @@ typeforce@^1.11.5: resolved "https://registry.yarnpkg.com/typeforce/-/typeforce-1.18.0.tgz#d7416a2c5845e085034d70fcc5b6cc4a90edbfdc" integrity sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g== -typescript@^4.9.3, typescript@^4.9.4, typescript@^4.9.5, typescript@~4.9.3: +typescript@^4.7.4, typescript@^4.9.3, typescript@^4.9.4, typescript@^4.9.5, typescript@~4.9.3: version "4.9.5" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== @@ -25085,11 +26310,26 @@ urlsafe-base64@^1.0.0, urlsafe-base64@~1.0.0: resolved "https://registry.yarnpkg.com/urlsafe-base64/-/urlsafe-base64-1.0.0.tgz#23f89069a6c62f46cf3a1d3b00169cefb90be0c6" integrity sha512-RtuPeMy7c1UrHwproMZN9gN6kiZ0SvJwRaEzwZY0j9MypEkFqyBaKv176jvlPtg58Zh36bOkS0NFABXMHvvGCA== +use-callback-ref@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.0.tgz#772199899b9c9a50526fedc4993fc7fa1f7e32d5" + integrity sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w== + dependencies: + tslib "^2.0.0" + use-latest-callback@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.5.tgz#a4a836c08fa72f6608730b5b8f4bbd9c57c04f51" integrity sha512-HtHatS2U4/h32NlkhupDsPlrbiD27gSH5swBdtXbCAlc6pfOFzaj0FehW/FO12rx8j2Vy4/lJScCiJyM01E+bQ== +use-sidecar@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.2.tgz#2f43126ba2d7d7e117aa5855e5d8f0276dfe73c2" + integrity sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw== + dependencies: + detect-node-es "^1.1.0" + tslib "^2.0.0" + use-sync-external-store@1.2.0, use-sync-external-store@^1.0.0, use-sync-external-store@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" @@ -25711,9 +26951,9 @@ wordwrapjs@^4.0.0: typical "^5.2.0" wrangler@2.1.9, wrangler@^2.0.15, wrangler@^2.1.6, wrangler@^2.1.9, wrangler@^2.10.0, wrangler@^2.7.1: - version "2.12.0" - resolved "https://registry.yarnpkg.com/wrangler/-/wrangler-2.12.0.tgz#b86d450a5fa6a345af96ce3d39244d0619845c9b" - integrity sha512-yAqv3JbJqkB1oaciI2CGEiEscQ98BXaFN+Z7VbWuepMqVL2UV2wUjA2mJLjWuoZOwSmC74MsDzZ+5hzDs/2Nkg== + version "2.12.1" + resolved "https://registry.yarnpkg.com/wrangler/-/wrangler-2.12.1.tgz#29efcb53d6d8802628c21e917987368891a2fdc3" + integrity sha512-u0GNyPRc6oabd7dQf8BSj1ztJtDlvvHJMVTuCuFDUFbQQKCDXmCnlLk/ZzPE0sfBsMH9LdyMqx4inRiJt6LbjQ== dependencies: "@cloudflare/kv-asset-handler" "^0.2.0" "@esbuild-plugins/node-globals-polyfill" "^0.1.1" @@ -26054,7 +27294,7 @@ zod@^3.19.1, zod@^3.20.2: resolved "https://registry.yarnpkg.com/zod/-/zod-3.20.6.tgz#2f2f08ff81291d47d99e86140fedb4e0db08361a" integrity sha512-oyu0m54SGCtzh6EClBVqDDlAYRz4jrVtKwQ7ZnsEmMI9HnzuZFj8QFwAY1M5uniIYACdGvv0PBWPF2kO0aNofA== -zustand@^4.0.0, zustand@^4.0.0-rc.2, zustand@^4.3.5: +zustand@^4.0.0, zustand@^4.0.0-rc.2, zustand@^4.3.3, zustand@^4.3.5: version "4.3.5" resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.3.5.tgz#011d2997534f8a187ea7b1d75db56df31f58453d" integrity sha512-2iPUzfwx+g3f0PagOMz2vDO9mZzEp2puFpNe7vrAymVPOEIEUjCPkC4/zy84eAscxIWmTU4j9g6upXYkJdzEFQ== From eb2fd092ae3a1dd45af7cc91d98e4f2c918f0659 Mon Sep 17 00:00:00 2001 From: Peter Piekarczyk Date: Wed, 8 Mar 2023 12:09:49 -0600 Subject: [PATCH 02/25] wip --- .gitignore | 1 + package.json | 2 + packages/app-extension/src/app/App.tsx | 2 +- .../src/components/Onboarding/index.tsx | 42 +- packages/app-extension/tamagui.config.ts | 2 + packages/app-extension/webpack.config.js | 16 +- packages/app-mobile/src/App.tsx | 90 +- packages/app-mobile/src/lib/helpers.tsx | 84 + .../src/navigation/OnboardingNavigator.tsx | 5 +- .../tamagui-core/src/components/Button.tsx | 17 + .../tamagui-core/src/components/Circle.tsx | 12 + .../tamagui-core/src/components/index.tsx | 2 + packages/tamagui-core/src/index.tsx | 24 +- packages/tamagui-core/src/tamagui.config.ts | 212 +- .../tamagui-core/types/components/Button.d.ts | 378 + .../types/components/Button.d.ts.map | 1 + .../tamagui-core/types/components/Circle.d.ts | 12 + .../types/components/Circle.d.ts.map | 1 + .../tamagui-core/types/components/index.d.ts | 3 + .../types/components/index.d.ts.map | 1 + packages/tamagui-core/types/index.d.ts | 26 +- packages/tamagui-core/types/index.d.ts.map | 2 +- .../tamagui-core/types/tamagui.config.d.ts | 42052 +--------------- .../types/tamagui.config.d.ts.map | 2 +- tsconfig.eslint.json | 1 + 25 files changed, 980 insertions(+), 42010 deletions(-) create mode 100644 packages/app-extension/tamagui.config.ts create mode 100644 packages/app-mobile/src/lib/helpers.tsx create mode 100644 packages/tamagui-core/src/components/Button.tsx create mode 100644 packages/tamagui-core/src/components/Circle.tsx create mode 100644 packages/tamagui-core/src/components/index.tsx create mode 100644 packages/tamagui-core/types/components/Button.d.ts create mode 100644 packages/tamagui-core/types/components/Button.d.ts.map create mode 100644 packages/tamagui-core/types/components/Circle.d.ts create mode 100644 packages/tamagui-core/types/components/Circle.d.ts.map create mode 100644 packages/tamagui-core/types/components/index.d.ts create mode 100644 packages/tamagui-core/types/components/index.d.ts.map diff --git a/.gitignore b/.gitignore index d44b1b72e2..969f605285 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,4 @@ test-ledger/ .dev.vars .tamagui +.d.ts diff --git a/package.json b/package.json index 0296eaf355..2303d4007d 100644 --- a/package.json +++ b/package.json @@ -62,6 +62,8 @@ "react-refresh": "0.11.0" }, "resolutions": { + "react": "18.2.0", + "react-dom": "18.2.0", "@solana/web3.js": "1.63.1", "graphql-zeus": "^5.2.9", "json-schema": "^0.4.0", diff --git a/packages/app-extension/src/app/App.tsx b/packages/app-extension/src/app/App.tsx index 574e781977..6c18a77d5d 100644 --- a/packages/app-extension/src/app/App.tsx +++ b/packages/app-extension/src/app/App.tsx @@ -81,7 +81,7 @@ function _Router() { ...BACKDROP_STYLE, background: theme.custom.colors.backgroundBackdrop, }} - /> + /> } > diff --git a/packages/app-extension/src/components/Onboarding/index.tsx b/packages/app-extension/src/components/Onboarding/index.tsx index 0feb9690e8..f4e0239f7b 100644 --- a/packages/app-extension/src/components/Onboarding/index.tsx +++ b/packages/app-extension/src/components/Onboarding/index.tsx @@ -16,7 +16,9 @@ import { import { styles, useCustomTheme } from "@coral-xyz/themes"; import { CallMade, Lock, Menu, Twitter } from "@mui/icons-material"; import { Box, IconButton, ListItemText, Toolbar } from "@mui/material"; +import { TamaguiProvider } from "@tamagui/web"; +import config from "../../../tamagui.config"; import { WithContaineredDrawer } from "../common/Layout/Drawer"; import { NAV_BAR_HEIGHT } from "../common/Layout/Nav"; import WaitingRoom from "../common/WaitingRoom"; @@ -63,24 +65,28 @@ export const Onboarding = ({ }; return ( - - {action === "onboard" ? ( - - setAction("recover")} - onWaiting={() => setAction("waiting")} - {...defaultProps} - /> - - ) : null} - {action === "waiting" ? : null} - {action === "recover" ? - setAction("onboard")} - {...defaultProps} - /> - : null} - + + + {action === "onboard" ? ( + + setAction("recover")} + onWaiting={() => setAction("waiting")} + {...defaultProps} + /> + + ) : null} + {action === "waiting" ? : null} + {action === "recover" ? ( + + setAction("onboard")} + {...defaultProps} + /> + + ) : null} + + ); }; diff --git a/packages/app-extension/tamagui.config.ts b/packages/app-extension/tamagui.config.ts new file mode 100644 index 0000000000..2d2ddef888 --- /dev/null +++ b/packages/app-extension/tamagui.config.ts @@ -0,0 +1,2 @@ +import { config } from "@coral-xyz/tamagui"; +export default config; diff --git a/packages/app-extension/webpack.config.js b/packages/app-extension/webpack.config.js index 6d8b161991..c4d04bf430 100644 --- a/packages/app-extension/webpack.config.js +++ b/packages/app-extension/webpack.config.js @@ -1,7 +1,7 @@ const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer"); const { CleanWebpackPlugin } = require("clean-webpack-plugin"); const { DuplicatesPlugin } = require("inspectpack/plugin"); -const { ProgressPlugin, ProvidePlugin } = require("webpack"); +const { ProgressPlugin, ProvidePlugin, DefinePlugin } = require("webpack"); const CopyWebpackPlugin = require("copy-webpack-plugin"); const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); @@ -12,6 +12,9 @@ const fs = require("fs"); const EXTENSION_NAME = process.env.NODE_ENV === "development" ? "(DEV) Backpack" : "Backpack"; +const NODE_ENV = process.env.NODE_ENV || "development"; +const target = "web"; +const isProduction = NODE_ENV === "production"; const isDevelopment = process.env.NODE_ENV === "development"; const appDirectory = path.resolve(__dirname); @@ -205,6 +208,17 @@ const options = { }, }, plugins: [ + new DefinePlugin({ + process: { + env: { + __DEV__: NODE_ENV === "development" ? "true" : "false", + IS_STATIC: '""', + NODE_ENV: JSON.stringify(NODE_ENV), + TAMAGUI_TARGET: JSON.stringify(target), + DEBUG: JSON.stringify(process.env.DEBUG || "0"), + }, + }, + }), new CleanWebpackPlugin(), ...plugins, new MiniCssExtractPlugin(), diff --git a/packages/app-mobile/src/App.tsx b/packages/app-mobile/src/App.tsx index f48d73f410..aa005df522 100644 --- a/packages/app-mobile/src/App.tsx +++ b/packages/app-mobile/src/App.tsx @@ -1,6 +1,5 @@ -// import "@tamagui/core/reset.css"; -import { Suspense, useCallback, useEffect, useRef } from "react"; -import { Button, StyleSheet, Text, View } from "react-native"; +import { Suspense, useCallback, useRef } from "react"; +import { StyleSheet, Text, View } from "react-native"; import Constants from "expo-constants"; import * as Device from "expo-device"; @@ -18,53 +17,17 @@ import { ActionSheetProvider } from "@expo/react-native-action-sheet"; import { BottomSheetModalProvider } from "@gorhom/bottom-sheet"; import { SafeAreaProvider } from "react-native-safe-area-context"; import { WebView } from "react-native-webview"; -import { RecoilRoot, useRecoilCallback, useRecoilSnapshot } from "recoil"; +import { RecoilRoot } from "recoil"; import { ErrorBoundary } from "~components/ErrorBoundary"; import { useTheme } from "~hooks/useTheme"; +import { maybeParseLog } from "~lib/helpers"; import { useLoadedAssets } from "./hooks/useLoadedAssets"; import { RootNavigation } from "./navigation/RootNavigator"; SplashScreen.preventAutoHideAsync(); -// eslint-disable-next-line -function DebugObserver(): null { - const snapshot = useRecoilSnapshot(); - useEffect(() => { - console.debug("recoil::start"); - for (const node of snapshot.getNodes_UNSTABLE({ isModified: true })) { - console.debug("recoil::", node.key, snapshot.getLoadable(node)); - } - console.debug("recoil::end"); - }, [snapshot]); - - return null; -} - -// eslint-disable-next-line -function DebugButton(): JSX.Element { - const onPress = useRecoilCallback( - ({ snapshot }) => - async () => { - console.group("recoil"); - console.debug("Atom values:"); - for (const node of snapshot.getNodes_UNSTABLE()) { - const value = await snapshot.getPromise(node); - console.debug(node.key, value); - } - console.groupEnd(); - }, - [] - ); - - return ( - -