[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-expo-tailwind-setup":3,"mdc--yujs2y-key":36,"related-repo-openai-expo-tailwind-setup":8200,"related-org-openai-expo-tailwind-setup":8319},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"expo-tailwind-setup","configure Tailwind CSS in Expo apps","Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Expo","expo","tag",{"name":17,"slug":18,"type":15},"Tailwind CSS","tailwind-css",{"name":20,"slug":21,"type":15},"Frontend","frontend",{"name":23,"slug":24,"type":15},"Design","design",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-17T05:07:26.40703","MIT",465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fexpo\u002Fskills\u002Fexpo-tailwind-setup","---\nname: expo-tailwind-setup\ndescription: Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling\nversion: 1.0.0\nlicense: MIT\n---\n\n# Tailwind CSS Setup for Expo with react-native-css\n\nThis guide covers setting up Tailwind CSS v4 in Expo using react-native-css and NativeWind v5 for universal styling across iOS, Android, and Web.\n\n## Overview\n\nThis setup uses:\n\n- **Tailwind CSS v4** - Modern CSS-first configuration\n- **react-native-css** - CSS runtime for React Native\n- **NativeWind v5** - Metro transformer for Tailwind in React Native\n- **@tailwindcss\u002Fpostcss** - PostCSS plugin for Tailwind v4\n\n## Installation\n\n```bash\n# Install dependencies\nnpx expo install tailwindcss@^4 nativewind@5.0.0-preview.2 react-native-css@0.0.0-nightly.5ce6396 @tailwindcss\u002Fpostcss tailwind-merge clsx\n```\n\nAdd resolutions for lightningcss compatibility:\n\n```json\n\u002F\u002F package.json\n{\n  \"resolutions\": {\n    \"lightningcss\": \"1.30.1\"\n  }\n}\n```\n\n- autoprefixer is not needed in Expo because of lightningcss\n- postcss is included in expo by default\n\n## Configuration Files\n\n### Metro Config\n\nCreate or update `metro.config.js`:\n\n```js\n\u002F\u002F metro.config.js\nconst { getDefaultConfig } = require(\"expo\u002Fmetro-config\");\nconst { withNativewind } = require(\"nativewind\u002Fmetro\");\n\n\u002F** @type {import('expo\u002Fmetro-config').MetroConfig} *\u002F\nconst config = getDefaultConfig(__dirname);\n\nmodule.exports = withNativewind(config, {\n  \u002F\u002F inline variables break PlatformColor in CSS variables\n  inlineVariables: false,\n  \u002F\u002F We add className support manually\n  globalClassNamePolyfill: false,\n});\n```\n\n### PostCSS Config\n\nCreate `postcss.config.mjs`:\n\n```js\n\u002F\u002F postcss.config.mjs\nexport default {\n  plugins: {\n    \"@tailwindcss\u002Fpostcss\": {},\n  },\n};\n```\n\n### Global CSS\n\nCreate `src\u002Fglobal.css`:\n\n```css\n@import \"tailwindcss\u002Ftheme.css\" layer(theme);\n@import \"tailwindcss\u002Fpreflight.css\" layer(base);\n@import \"tailwindcss\u002Futilities.css\";\n\n\u002F* Platform-specific font families *\u002F\n@media android {\n  :root {\n    --font-mono: monospace;\n    --font-rounded: normal;\n    --font-serif: serif;\n    --font-sans: normal;\n  }\n}\n\n@media ios {\n  :root {\n    --font-mono: ui-monospace;\n    --font-serif: ui-serif;\n    --font-sans: system-ui;\n    --font-rounded: ui-rounded;\n  }\n}\n```\n\n## IMPORTANT: No Babel Config Needed\n\nWith Tailwind v4 and NativeWind v5, you do NOT need a babel.config.js for Tailwind. Remove any NativeWind babel presets if present:\n\n```js\n\u002F\u002F DELETE babel.config.js if it only contains NativeWind config\n\u002F\u002F The following is NO LONGER needed:\n\u002F\u002F module.exports = function (api) {\n\u002F\u002F   api.cache(true);\n\u002F\u002F   return {\n\u002F\u002F     presets: [\n\u002F\u002F       [\"babel-preset-expo\", { jsxImportSource: \"nativewind\" }],\n\u002F\u002F       \"nativewind\u002Fbabel\",\n\u002F\u002F     ],\n\u002F\u002F   };\n\u002F\u002F };\n```\n\n## CSS Component Wrappers\n\nSince react-native-css requires explicit CSS element wrapping, create reusable components:\n\n### Main Components (`src\u002Ftw\u002Findex.tsx`)\n\n```tsx\nimport {\n  useCssElement,\n  useNativeVariable as useFunctionalVariable,\n} from \"react-native-css\";\n\nimport { Link as RouterLink } from \"expo-router\";\nimport Animated from \"react-native-reanimated\";\nimport React from \"react\";\nimport {\n  View as RNView,\n  Text as RNText,\n  Pressable as RNPressable,\n  ScrollView as RNScrollView,\n  TouchableHighlight as RNTouchableHighlight,\n  TextInput as RNTextInput,\n  StyleSheet,\n} from \"react-native\";\n\n\u002F\u002F CSS-enabled Link\nexport const Link = (\n  props: React.ComponentProps\u003Ctypeof RouterLink> & { className?: string }\n) => {\n  return useCssElement(RouterLink, props, { className: \"style\" });\n};\n\nLink.Trigger = RouterLink.Trigger;\nLink.Menu = RouterLink.Menu;\nLink.MenuAction = RouterLink.MenuAction;\nLink.Preview = RouterLink.Preview;\n\n\u002F\u002F CSS Variable hook\nexport const useCSSVariable =\n  process.env.EXPO_OS !== \"web\"\n    ? useFunctionalVariable\n    : (variable: string) => `var(${variable})`;\n\n\u002F\u002F View\nexport type ViewProps = React.ComponentProps\u003Ctypeof RNView> & {\n  className?: string;\n};\n\nexport const View = (props: ViewProps) => {\n  return useCssElement(RNView, props, { className: \"style\" });\n};\nView.displayName = \"CSS(View)\";\n\n\u002F\u002F Text\nexport const Text = (\n  props: React.ComponentProps\u003Ctypeof RNText> & { className?: string }\n) => {\n  return useCssElement(RNText, props, { className: \"style\" });\n};\nText.displayName = \"CSS(Text)\";\n\n\u002F\u002F ScrollView\nexport const ScrollView = (\n  props: React.ComponentProps\u003Ctypeof RNScrollView> & {\n    className?: string;\n    contentContainerClassName?: string;\n  }\n) => {\n  return useCssElement(RNScrollView, props, {\n    className: \"style\",\n    contentContainerClassName: \"contentContainerStyle\",\n  });\n};\nScrollView.displayName = \"CSS(ScrollView)\";\n\n\u002F\u002F Pressable\nexport const Pressable = (\n  props: React.ComponentProps\u003Ctypeof RNPressable> & { className?: string }\n) => {\n  return useCssElement(RNPressable, props, { className: \"style\" });\n};\nPressable.displayName = \"CSS(Pressable)\";\n\n\u002F\u002F TextInput\nexport const TextInput = (\n  props: React.ComponentProps\u003Ctypeof RNTextInput> & { className?: string }\n) => {\n  return useCssElement(RNTextInput, props, { className: \"style\" });\n};\nTextInput.displayName = \"CSS(TextInput)\";\n\n\u002F\u002F AnimatedScrollView\nexport const AnimatedScrollView = (\n  props: React.ComponentProps\u003Ctypeof Animated.ScrollView> & {\n    className?: string;\n    contentClassName?: string;\n    contentContainerClassName?: string;\n  }\n) => {\n  return useCssElement(Animated.ScrollView, props, {\n    className: \"style\",\n    contentClassName: \"contentContainerStyle\",\n    contentContainerClassName: \"contentContainerStyle\",\n  });\n};\n\n\u002F\u002F TouchableHighlight with underlayColor extraction\nfunction XXTouchableHighlight(\n  props: React.ComponentProps\u003Ctypeof RNTouchableHighlight>\n) {\n  const { underlayColor, ...style } = StyleSheet.flatten(props.style) || {};\n  return (\n    \u003CRNTouchableHighlight\n      underlayColor={underlayColor}\n      {...props}\n      style={style}\n    \u002F>\n  );\n}\n\nexport const TouchableHighlight = (\n  props: React.ComponentProps\u003Ctypeof RNTouchableHighlight>\n) => {\n  return useCssElement(XXTouchableHighlight, props, { className: \"style\" });\n};\nTouchableHighlight.displayName = \"CSS(TouchableHighlight)\";\n```\n\n### Image Component (`src\u002Ftw\u002Fimage.tsx`)\n\n```tsx\nimport { useCssElement } from \"react-native-css\";\nimport React from \"react\";\nimport { StyleSheet } from \"react-native\";\nimport Animated from \"react-native-reanimated\";\nimport { Image as RNImage } from \"expo-image\";\n\nconst AnimatedExpoImage = Animated.createAnimatedComponent(RNImage);\n\nexport type ImageProps = React.ComponentProps\u003Ctypeof Image>;\n\nfunction CSSImage(props: React.ComponentProps\u003Ctypeof AnimatedExpoImage>) {\n  \u002F\u002F @ts-expect-error: Remap objectFit style to contentFit property\n  const { objectFit, objectPosition, ...style } =\n    StyleSheet.flatten(props.style) || {};\n\n  return (\n    \u003CAnimatedExpoImage\n      contentFit={objectFit}\n      contentPosition={objectPosition}\n      {...props}\n      source={\n        typeof props.source === \"string\" ? { uri: props.source } : props.source\n      }\n      \u002F\u002F @ts-expect-error: Style is remapped above\n      style={style}\n    \u002F>\n  );\n}\n\nexport const Image = (\n  props: React.ComponentProps\u003Ctypeof CSSImage> & { className?: string }\n) => {\n  return useCssElement(CSSImage, props, { className: \"style\" });\n};\n\nImage.displayName = \"CSS(Image)\";\n```\n\n### Animated Components (`src\u002Ftw\u002Fanimated.tsx`)\n\n```tsx\nimport * as TW from \".\u002Findex\";\nimport RNAnimated from \"react-native-reanimated\";\n\nexport const Animated = {\n  ...RNAnimated,\n  View: RNAnimated.createAnimatedComponent(TW.View),\n};\n```\n\n## Usage\n\nImport CSS-wrapped components from your tw directory:\n\n```tsx\nimport { View, Text, ScrollView, Image } from \"@\u002Ftw\";\n\nexport default function MyScreen() {\n  return (\n    \u003CScrollView className=\"flex-1 bg-white\">\n      \u003CView className=\"p-4 gap-4\">\n        \u003CText className=\"text-xl font-bold text-gray-900\">Hello Tailwind!\u003C\u002FText>\n        \u003CImage\n          className=\"w-full h-48 rounded-lg object-cover\"\n          source={{ uri: \"https:\u002F\u002Fexample.com\u002Fimage.jpg\" }}\n        \u002F>\n      \u003C\u002FView>\n    \u003C\u002FScrollView>\n  );\n}\n```\n\n## Custom Theme Variables\n\nAdd custom theme variables in your global.css using `@theme`:\n\n```css\n@layer theme {\n  @theme {\n    \u002F* Custom fonts *\u002F\n    --font-rounded: \"SF Pro Rounded\", sans-serif;\n\n    \u002F* Custom line heights *\u002F\n    --text-xs--line-height: calc(1em \u002F 0.75);\n    --text-sm--line-height: calc(1.25em \u002F 0.875);\n    --text-base--line-height: calc(1.5em \u002F 1);\n\n    \u002F* Custom leading scales *\u002F\n    --leading-tight: 1.25em;\n    --leading-snug: 1.375em;\n    --leading-normal: 1.5em;\n  }\n}\n```\n\n## Platform-Specific Styles\n\nUse platform media queries for platform-specific styling:\n\n```css\n@media ios {\n  :root {\n    --font-sans: system-ui;\n    --font-rounded: ui-rounded;\n  }\n}\n\n@media android {\n  :root {\n    --font-sans: normal;\n    --font-rounded: normal;\n  }\n}\n```\n\n## Apple System Colors with CSS Variables\n\nCreate a CSS file for Apple semantic colors:\n\n```css\n\u002F* src\u002Fcss\u002Fsf.css *\u002F\n@layer base {\n  html {\n    color-scheme: light;\n  }\n}\n\n:root {\n  \u002F* Accent colors with light\u002Fdark mode *\u002F\n  --sf-blue: light-dark(rgb(0 122 255), rgb(10 132 255));\n  --sf-green: light-dark(rgb(52 199 89), rgb(48 209 89));\n  --sf-red: light-dark(rgb(255 59 48), rgb(255 69 58));\n\n  \u002F* Gray scales *\u002F\n  --sf-gray: light-dark(rgb(142 142 147), rgb(142 142 147));\n  --sf-gray-2: light-dark(rgb(174 174 178), rgb(99 99 102));\n\n  \u002F* Text colors *\u002F\n  --sf-text: light-dark(rgb(0 0 0), rgb(255 255 255));\n  --sf-text-2: light-dark(rgb(60 60 67 \u002F 0.6), rgb(235 235 245 \u002F 0.6));\n\n  \u002F* Background colors *\u002F\n  --sf-bg: light-dark(rgb(255 255 255), rgb(0 0 0));\n  --sf-bg-2: light-dark(rgb(242 242 247), rgb(28 28 30));\n}\n\n\u002F* iOS native colors via platformColor *\u002F\n@media ios {\n  :root {\n    --sf-blue: platformColor(systemBlue);\n    --sf-green: platformColor(systemGreen);\n    --sf-red: platformColor(systemRed);\n    --sf-gray: platformColor(systemGray);\n    --sf-text: platformColor(label);\n    --sf-text-2: platformColor(secondaryLabel);\n    --sf-bg: platformColor(systemBackground);\n    --sf-bg-2: platformColor(secondarySystemBackground);\n  }\n}\n\n\u002F* Register as Tailwind theme colors *\u002F\n@layer theme {\n  @theme {\n    --color-sf-blue: var(--sf-blue);\n    --color-sf-green: var(--sf-green);\n    --color-sf-red: var(--sf-red);\n    --color-sf-gray: var(--sf-gray);\n    --color-sf-text: var(--sf-text);\n    --color-sf-text-2: var(--sf-text-2);\n    --color-sf-bg: var(--sf-bg);\n    --color-sf-bg-2: var(--sf-bg-2);\n  }\n}\n```\n\nThen use in components:\n\n```tsx\n\u003CText className=\"text-sf-text\">Primary text\u003C\u002FText>\n\u003CText className=\"text-sf-text-2\">Secondary text\u003C\u002FText>\n\u003CView className=\"bg-sf-bg\">...\u003C\u002FView>\n```\n\n## Using CSS Variables in JavaScript\n\nUse the `useCSSVariable` hook:\n\n```tsx\nimport { useCSSVariable } from \"@\u002Ftw\";\n\nfunction MyComponent() {\n  const blue = useCSSVariable(\"--sf-blue\");\n\n  return \u003CView style={{ borderColor: blue }} \u002F>;\n}\n```\n\n## Key Differences from NativeWind v4 \u002F Tailwind v3\n\n1. **No babel.config.js** - Configuration is now CSS-first\n2. **PostCSS plugin** - Uses `@tailwindcss\u002Fpostcss` instead of `tailwindcss`\n3. **CSS imports** - Use `@import \"tailwindcss\u002F...\"` instead of `@tailwind` directives\n4. **Theme config** - Use `@theme` in CSS instead of `tailwind.config.js`\n5. **Component wrappers** - Must wrap components with `useCssElement` for className support\n6. **Metro config** - Use `withNativewind` with different options (`inlineVariables: false`)\n\n## Troubleshooting\n\n### Styles not applying\n\n1. Ensure you have the CSS file imported in your app entry\n2. Check that components are wrapped with `useCssElement`\n3. Verify Metro config has `withNativewind` applied\n\n### Platform colors not working\n\n1. Use `platformColor()` in `@media ios` blocks\n2. Fall back to `light-dark()` for web\u002FAndroid\n\n### TypeScript errors\n\nAdd className to component props:\n\n```tsx\ntype Props = React.ComponentProps\u003Ctypeof RNView> & { className?: string };\n```\n",{"data":37,"body":39},{"name":4,"description":6,"version":38,"license":28},"1.0.0",{"type":40,"children":41},"root",[42,51,57,64,69,115,121,196,201,312,325,331,338,350,682,688,700,788,794,805,1201,1207,1212,1307,1313,1318,1331,4357,4370,5298,5311,5488,5494,5499,5883,5889,5901,6112,6118,6123,6301,6307,6312,7527,7532,7699,7705,7718,7895,7901,8027,8033,8039,8069,8075,8112,8118,8123,8195],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"tailwind-css-setup-for-expo-with-react-native-css",[48],{"type":49,"value":50},"text","Tailwind CSS Setup for Expo with react-native-css",{"type":43,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"This guide covers setting up Tailwind CSS v4 in Expo using react-native-css and NativeWind v5 for universal styling across iOS, Android, and Web.",{"type":43,"tag":58,"props":59,"children":61},"h2",{"id":60},"overview",[62],{"type":49,"value":63},"Overview",{"type":43,"tag":52,"props":65,"children":66},{},[67],{"type":49,"value":68},"This setup uses:",{"type":43,"tag":70,"props":71,"children":72},"ul",{},[73,85,95,105],{"type":43,"tag":74,"props":75,"children":76},"li",{},[77,83],{"type":43,"tag":78,"props":79,"children":80},"strong",{},[81],{"type":49,"value":82},"Tailwind CSS v4",{"type":49,"value":84}," - Modern CSS-first configuration",{"type":43,"tag":74,"props":86,"children":87},{},[88,93],{"type":43,"tag":78,"props":89,"children":90},{},[91],{"type":49,"value":92},"react-native-css",{"type":49,"value":94}," - CSS runtime for React Native",{"type":43,"tag":74,"props":96,"children":97},{},[98,103],{"type":43,"tag":78,"props":99,"children":100},{},[101],{"type":49,"value":102},"NativeWind v5",{"type":49,"value":104}," - Metro transformer for Tailwind in React Native",{"type":43,"tag":74,"props":106,"children":107},{},[108,113],{"type":43,"tag":78,"props":109,"children":110},{},[111],{"type":49,"value":112},"@tailwindcss\u002Fpostcss",{"type":49,"value":114}," - PostCSS plugin for Tailwind v4",{"type":43,"tag":58,"props":116,"children":118},{"id":117},"installation",[119],{"type":49,"value":120},"Installation",{"type":43,"tag":122,"props":123,"children":128},"pre",{"className":124,"code":125,"language":126,"meta":127,"style":127},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Install dependencies\nnpx expo install tailwindcss@^4 nativewind@5.0.0-preview.2 react-native-css@0.0.0-nightly.5ce6396 @tailwindcss\u002Fpostcss tailwind-merge clsx\n","bash","",[129],{"type":43,"tag":130,"props":131,"children":132},"code",{"__ignoreMap":127},[133,145],{"type":43,"tag":134,"props":135,"children":138},"span",{"class":136,"line":137},"line",1,[139],{"type":43,"tag":134,"props":140,"children":142},{"style":141},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[143],{"type":49,"value":144},"# Install dependencies\n",{"type":43,"tag":134,"props":146,"children":148},{"class":136,"line":147},2,[149,155,161,166,171,176,181,186,191],{"type":43,"tag":134,"props":150,"children":152},{"style":151},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[153],{"type":49,"value":154},"npx",{"type":43,"tag":134,"props":156,"children":158},{"style":157},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[159],{"type":49,"value":160}," expo",{"type":43,"tag":134,"props":162,"children":163},{"style":157},[164],{"type":49,"value":165}," install",{"type":43,"tag":134,"props":167,"children":168},{"style":157},[169],{"type":49,"value":170}," tailwindcss@^4",{"type":43,"tag":134,"props":172,"children":173},{"style":157},[174],{"type":49,"value":175}," nativewind@5.0.0-preview.2",{"type":43,"tag":134,"props":177,"children":178},{"style":157},[179],{"type":49,"value":180}," react-native-css@0.0.0-nightly.5ce6396",{"type":43,"tag":134,"props":182,"children":183},{"style":157},[184],{"type":49,"value":185}," @tailwindcss\u002Fpostcss",{"type":43,"tag":134,"props":187,"children":188},{"style":157},[189],{"type":49,"value":190}," tailwind-merge",{"type":43,"tag":134,"props":192,"children":193},{"style":157},[194],{"type":49,"value":195}," clsx\n",{"type":43,"tag":52,"props":197,"children":198},{},[199],{"type":49,"value":200},"Add resolutions for lightningcss compatibility:",{"type":43,"tag":122,"props":202,"children":206},{"className":203,"code":204,"language":205,"meta":127,"style":127},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F package.json\n{\n  \"resolutions\": {\n    \"lightningcss\": \"1.30.1\"\n  }\n}\n","json",[207],{"type":43,"tag":130,"props":208,"children":209},{"__ignoreMap":127},[210,218,227,257,294,303],{"type":43,"tag":134,"props":211,"children":212},{"class":136,"line":137},[213],{"type":43,"tag":134,"props":214,"children":215},{"style":141},[216],{"type":49,"value":217},"\u002F\u002F package.json\n",{"type":43,"tag":134,"props":219,"children":220},{"class":136,"line":147},[221],{"type":43,"tag":134,"props":222,"children":224},{"style":223},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[225],{"type":49,"value":226},"{\n",{"type":43,"tag":134,"props":228,"children":230},{"class":136,"line":229},3,[231,236,242,247,252],{"type":43,"tag":134,"props":232,"children":233},{"style":223},[234],{"type":49,"value":235},"  \"",{"type":43,"tag":134,"props":237,"children":239},{"style":238},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[240],{"type":49,"value":241},"resolutions",{"type":43,"tag":134,"props":243,"children":244},{"style":223},[245],{"type":49,"value":246},"\"",{"type":43,"tag":134,"props":248,"children":249},{"style":223},[250],{"type":49,"value":251},":",{"type":43,"tag":134,"props":253,"children":254},{"style":223},[255],{"type":49,"value":256}," {\n",{"type":43,"tag":134,"props":258,"children":260},{"class":136,"line":259},4,[261,266,271,275,279,284,289],{"type":43,"tag":134,"props":262,"children":263},{"style":223},[264],{"type":49,"value":265},"    \"",{"type":43,"tag":134,"props":267,"children":268},{"style":151},[269],{"type":49,"value":270},"lightningcss",{"type":43,"tag":134,"props":272,"children":273},{"style":223},[274],{"type":49,"value":246},{"type":43,"tag":134,"props":276,"children":277},{"style":223},[278],{"type":49,"value":251},{"type":43,"tag":134,"props":280,"children":281},{"style":223},[282],{"type":49,"value":283}," \"",{"type":43,"tag":134,"props":285,"children":286},{"style":157},[287],{"type":49,"value":288},"1.30.1",{"type":43,"tag":134,"props":290,"children":291},{"style":223},[292],{"type":49,"value":293},"\"\n",{"type":43,"tag":134,"props":295,"children":297},{"class":136,"line":296},5,[298],{"type":43,"tag":134,"props":299,"children":300},{"style":223},[301],{"type":49,"value":302},"  }\n",{"type":43,"tag":134,"props":304,"children":306},{"class":136,"line":305},6,[307],{"type":43,"tag":134,"props":308,"children":309},{"style":223},[310],{"type":49,"value":311},"}\n",{"type":43,"tag":70,"props":313,"children":314},{},[315,320],{"type":43,"tag":74,"props":316,"children":317},{},[318],{"type":49,"value":319},"autoprefixer is not needed in Expo because of lightningcss",{"type":43,"tag":74,"props":321,"children":322},{},[323],{"type":49,"value":324},"postcss is included in expo by default",{"type":43,"tag":58,"props":326,"children":328},{"id":327},"configuration-files",[329],{"type":49,"value":330},"Configuration Files",{"type":43,"tag":332,"props":333,"children":335},"h3",{"id":334},"metro-config",[336],{"type":49,"value":337},"Metro Config",{"type":43,"tag":52,"props":339,"children":340},{},[341,343,349],{"type":49,"value":342},"Create or update ",{"type":43,"tag":130,"props":344,"children":346},{"className":345},[],[347],{"type":49,"value":348},"metro.config.js",{"type":49,"value":251},{"type":43,"tag":122,"props":351,"children":355},{"className":352,"code":353,"language":354,"meta":127,"style":127},"language-js shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F metro.config.js\nconst { getDefaultConfig } = require(\"expo\u002Fmetro-config\");\nconst { withNativewind } = require(\"nativewind\u002Fmetro\");\n\n\u002F** @type {import('expo\u002Fmetro-config').MetroConfig} *\u002F\nconst config = getDefaultConfig(__dirname);\n\nmodule.exports = withNativewind(config, {\n  \u002F\u002F inline variables break PlatformColor in CSS variables\n  inlineVariables: false,\n  \u002F\u002F We add className support manually\n  globalClassNamePolyfill: false,\n});\n","js",[356],{"type":43,"tag":130,"props":357,"children":358},{"__ignoreMap":127},[359,367,430,483,492,531,562,570,602,611,636,645,666],{"type":43,"tag":134,"props":360,"children":361},{"class":136,"line":137},[362],{"type":43,"tag":134,"props":363,"children":364},{"style":141},[365],{"type":49,"value":366},"\u002F\u002F metro.config.js\n",{"type":43,"tag":134,"props":368,"children":369},{"class":136,"line":147},[370,375,380,386,391,396,402,407,411,416,420,425],{"type":43,"tag":134,"props":371,"children":372},{"style":238},[373],{"type":49,"value":374},"const",{"type":43,"tag":134,"props":376,"children":377},{"style":223},[378],{"type":49,"value":379}," {",{"type":43,"tag":134,"props":381,"children":383},{"style":382},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[384],{"type":49,"value":385}," getDefaultConfig ",{"type":43,"tag":134,"props":387,"children":388},{"style":223},[389],{"type":49,"value":390},"}",{"type":43,"tag":134,"props":392,"children":393},{"style":223},[394],{"type":49,"value":395}," =",{"type":43,"tag":134,"props":397,"children":399},{"style":398},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[400],{"type":49,"value":401}," require",{"type":43,"tag":134,"props":403,"children":404},{"style":382},[405],{"type":49,"value":406},"(",{"type":43,"tag":134,"props":408,"children":409},{"style":223},[410],{"type":49,"value":246},{"type":43,"tag":134,"props":412,"children":413},{"style":157},[414],{"type":49,"value":415},"expo\u002Fmetro-config",{"type":43,"tag":134,"props":417,"children":418},{"style":223},[419],{"type":49,"value":246},{"type":43,"tag":134,"props":421,"children":422},{"style":382},[423],{"type":49,"value":424},")",{"type":43,"tag":134,"props":426,"children":427},{"style":223},[428],{"type":49,"value":429},";\n",{"type":43,"tag":134,"props":431,"children":432},{"class":136,"line":229},[433,437,441,446,450,454,458,462,466,471,475,479],{"type":43,"tag":134,"props":434,"children":435},{"style":238},[436],{"type":49,"value":374},{"type":43,"tag":134,"props":438,"children":439},{"style":223},[440],{"type":49,"value":379},{"type":43,"tag":134,"props":442,"children":443},{"style":382},[444],{"type":49,"value":445}," withNativewind ",{"type":43,"tag":134,"props":447,"children":448},{"style":223},[449],{"type":49,"value":390},{"type":43,"tag":134,"props":451,"children":452},{"style":223},[453],{"type":49,"value":395},{"type":43,"tag":134,"props":455,"children":456},{"style":398},[457],{"type":49,"value":401},{"type":43,"tag":134,"props":459,"children":460},{"style":382},[461],{"type":49,"value":406},{"type":43,"tag":134,"props":463,"children":464},{"style":223},[465],{"type":49,"value":246},{"type":43,"tag":134,"props":467,"children":468},{"style":157},[469],{"type":49,"value":470},"nativewind\u002Fmetro",{"type":43,"tag":134,"props":472,"children":473},{"style":223},[474],{"type":49,"value":246},{"type":43,"tag":134,"props":476,"children":477},{"style":382},[478],{"type":49,"value":424},{"type":43,"tag":134,"props":480,"children":481},{"style":223},[482],{"type":49,"value":429},{"type":43,"tag":134,"props":484,"children":485},{"class":136,"line":259},[486],{"type":43,"tag":134,"props":487,"children":489},{"emptyLinePlaceholder":488},true,[490],{"type":49,"value":491},"\n",{"type":43,"tag":134,"props":493,"children":494},{"class":136,"line":296},[495,500,506,512,516,522,526],{"type":43,"tag":134,"props":496,"children":497},{"style":141},[498],{"type":49,"value":499},"\u002F** ",{"type":43,"tag":134,"props":501,"children":503},{"style":502},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[504],{"type":49,"value":505},"@",{"type":43,"tag":134,"props":507,"children":509},{"style":508},"--shiki-light:#9C3EDA;--shiki-light-font-style:italic;--shiki-default:#C792EA;--shiki-default-font-style:italic;--shiki-dark:#C792EA;--shiki-dark-font-style:italic",[510],{"type":49,"value":511},"type",{"type":43,"tag":134,"props":513,"children":514},{"style":502},[515],{"type":49,"value":379},{"type":43,"tag":134,"props":517,"children":519},{"style":518},"--shiki-light:#E2931D;--shiki-light-font-style:italic;--shiki-default:#FFCB6B;--shiki-default-font-style:italic;--shiki-dark:#FFCB6B;--shiki-dark-font-style:italic",[520],{"type":49,"value":521},"import('expo\u002Fmetro-config').MetroConfig",{"type":43,"tag":134,"props":523,"children":524},{"style":502},[525],{"type":49,"value":390},{"type":43,"tag":134,"props":527,"children":528},{"style":141},[529],{"type":49,"value":530}," *\u002F\n",{"type":43,"tag":134,"props":532,"children":533},{"class":136,"line":305},[534,538,543,548,553,558],{"type":43,"tag":134,"props":535,"children":536},{"style":238},[537],{"type":49,"value":374},{"type":43,"tag":134,"props":539,"children":540},{"style":382},[541],{"type":49,"value":542}," config ",{"type":43,"tag":134,"props":544,"children":545},{"style":223},[546],{"type":49,"value":547},"=",{"type":43,"tag":134,"props":549,"children":550},{"style":398},[551],{"type":49,"value":552}," getDefaultConfig",{"type":43,"tag":134,"props":554,"children":555},{"style":382},[556],{"type":49,"value":557},"(__dirname)",{"type":43,"tag":134,"props":559,"children":560},{"style":223},[561],{"type":49,"value":429},{"type":43,"tag":134,"props":563,"children":565},{"class":136,"line":564},7,[566],{"type":43,"tag":134,"props":567,"children":568},{"emptyLinePlaceholder":488},[569],{"type":49,"value":491},{"type":43,"tag":134,"props":571,"children":573},{"class":136,"line":572},8,[574,579,583,588,593,598],{"type":43,"tag":134,"props":575,"children":576},{"style":223},[577],{"type":49,"value":578},"module.exports",{"type":43,"tag":134,"props":580,"children":581},{"style":223},[582],{"type":49,"value":395},{"type":43,"tag":134,"props":584,"children":585},{"style":398},[586],{"type":49,"value":587}," withNativewind",{"type":43,"tag":134,"props":589,"children":590},{"style":382},[591],{"type":49,"value":592},"(config",{"type":43,"tag":134,"props":594,"children":595},{"style":223},[596],{"type":49,"value":597},",",{"type":43,"tag":134,"props":599,"children":600},{"style":223},[601],{"type":49,"value":256},{"type":43,"tag":134,"props":603,"children":605},{"class":136,"line":604},9,[606],{"type":43,"tag":134,"props":607,"children":608},{"style":141},[609],{"type":49,"value":610},"  \u002F\u002F inline variables break PlatformColor in CSS variables\n",{"type":43,"tag":134,"props":612,"children":614},{"class":136,"line":613},10,[615,621,625,631],{"type":43,"tag":134,"props":616,"children":618},{"style":617},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[619],{"type":49,"value":620},"  inlineVariables",{"type":43,"tag":134,"props":622,"children":623},{"style":223},[624],{"type":49,"value":251},{"type":43,"tag":134,"props":626,"children":628},{"style":627},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[629],{"type":49,"value":630}," false",{"type":43,"tag":134,"props":632,"children":633},{"style":223},[634],{"type":49,"value":635},",\n",{"type":43,"tag":134,"props":637,"children":639},{"class":136,"line":638},11,[640],{"type":43,"tag":134,"props":641,"children":642},{"style":141},[643],{"type":49,"value":644},"  \u002F\u002F We add className support manually\n",{"type":43,"tag":134,"props":646,"children":648},{"class":136,"line":647},12,[649,654,658,662],{"type":43,"tag":134,"props":650,"children":651},{"style":617},[652],{"type":49,"value":653},"  globalClassNamePolyfill",{"type":43,"tag":134,"props":655,"children":656},{"style":223},[657],{"type":49,"value":251},{"type":43,"tag":134,"props":659,"children":660},{"style":627},[661],{"type":49,"value":630},{"type":43,"tag":134,"props":663,"children":664},{"style":223},[665],{"type":49,"value":635},{"type":43,"tag":134,"props":667,"children":669},{"class":136,"line":668},13,[670,674,678],{"type":43,"tag":134,"props":671,"children":672},{"style":223},[673],{"type":49,"value":390},{"type":43,"tag":134,"props":675,"children":676},{"style":382},[677],{"type":49,"value":424},{"type":43,"tag":134,"props":679,"children":680},{"style":223},[681],{"type":49,"value":429},{"type":43,"tag":332,"props":683,"children":685},{"id":684},"postcss-config",[686],{"type":49,"value":687},"PostCSS Config",{"type":43,"tag":52,"props":689,"children":690},{},[691,693,699],{"type":49,"value":692},"Create ",{"type":43,"tag":130,"props":694,"children":696},{"className":695},[],[697],{"type":49,"value":698},"postcss.config.mjs",{"type":49,"value":251},{"type":43,"tag":122,"props":701,"children":703},{"className":352,"code":702,"language":354,"meta":127,"style":127},"\u002F\u002F postcss.config.mjs\nexport default {\n  plugins: {\n    \"@tailwindcss\u002Fpostcss\": {},\n  },\n};\n",[704],{"type":43,"tag":130,"props":705,"children":706},{"__ignoreMap":127},[707,715,732,748,772,780],{"type":43,"tag":134,"props":708,"children":709},{"class":136,"line":137},[710],{"type":43,"tag":134,"props":711,"children":712},{"style":141},[713],{"type":49,"value":714},"\u002F\u002F postcss.config.mjs\n",{"type":43,"tag":134,"props":716,"children":717},{"class":136,"line":147},[718,723,728],{"type":43,"tag":134,"props":719,"children":720},{"style":502},[721],{"type":49,"value":722},"export",{"type":43,"tag":134,"props":724,"children":725},{"style":502},[726],{"type":49,"value":727}," default",{"type":43,"tag":134,"props":729,"children":730},{"style":223},[731],{"type":49,"value":256},{"type":43,"tag":134,"props":733,"children":734},{"class":136,"line":229},[735,740,744],{"type":43,"tag":134,"props":736,"children":737},{"style":617},[738],{"type":49,"value":739},"  plugins",{"type":43,"tag":134,"props":741,"children":742},{"style":223},[743],{"type":49,"value":251},{"type":43,"tag":134,"props":745,"children":746},{"style":223},[747],{"type":49,"value":256},{"type":43,"tag":134,"props":749,"children":750},{"class":136,"line":259},[751,755,759,763,767],{"type":43,"tag":134,"props":752,"children":753},{"style":223},[754],{"type":49,"value":265},{"type":43,"tag":134,"props":756,"children":757},{"style":617},[758],{"type":49,"value":112},{"type":43,"tag":134,"props":760,"children":761},{"style":223},[762],{"type":49,"value":246},{"type":43,"tag":134,"props":764,"children":765},{"style":223},[766],{"type":49,"value":251},{"type":43,"tag":134,"props":768,"children":769},{"style":223},[770],{"type":49,"value":771}," {},\n",{"type":43,"tag":134,"props":773,"children":774},{"class":136,"line":296},[775],{"type":43,"tag":134,"props":776,"children":777},{"style":223},[778],{"type":49,"value":779},"  },\n",{"type":43,"tag":134,"props":781,"children":782},{"class":136,"line":305},[783],{"type":43,"tag":134,"props":784,"children":785},{"style":223},[786],{"type":49,"value":787},"};\n",{"type":43,"tag":332,"props":789,"children":791},{"id":790},"global-css",[792],{"type":49,"value":793},"Global CSS",{"type":43,"tag":52,"props":795,"children":796},{},[797,798,804],{"type":49,"value":692},{"type":43,"tag":130,"props":799,"children":801},{"className":800},[],[802],{"type":49,"value":803},"src\u002Fglobal.css",{"type":49,"value":251},{"type":43,"tag":122,"props":806,"children":810},{"className":807,"code":808,"language":809,"meta":127,"style":127},"language-css shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","@import \"tailwindcss\u002Ftheme.css\" layer(theme);\n@import \"tailwindcss\u002Fpreflight.css\" layer(base);\n@import \"tailwindcss\u002Futilities.css\";\n\n\u002F* Platform-specific font families *\u002F\n@media android {\n  :root {\n    --font-mono: monospace;\n    --font-rounded: normal;\n    --font-serif: serif;\n    --font-sans: normal;\n  }\n}\n\n@media ios {\n  :root {\n    --font-mono: ui-monospace;\n    --font-serif: ui-serif;\n    --font-sans: system-ui;\n    --font-rounded: ui-rounded;\n  }\n}\n","css",[811],{"type":43,"tag":130,"props":812,"children":813},{"__ignoreMap":127},[814,854,891,915,922,930,947,963,984,1005,1026,1046,1053,1060,1068,1085,1101,1122,1143,1164,1185,1193],{"type":43,"tag":134,"props":815,"children":816},{"class":136,"line":137},[817,822,826,831,835,840,844,849],{"type":43,"tag":134,"props":818,"children":819},{"style":502},[820],{"type":49,"value":821},"@import",{"type":43,"tag":134,"props":823,"children":824},{"style":223},[825],{"type":49,"value":283},{"type":43,"tag":134,"props":827,"children":828},{"style":157},[829],{"type":49,"value":830},"tailwindcss\u002Ftheme.css",{"type":43,"tag":134,"props":832,"children":833},{"style":223},[834],{"type":49,"value":246},{"type":43,"tag":134,"props":836,"children":837},{"style":382},[838],{"type":49,"value":839}," layer",{"type":43,"tag":134,"props":841,"children":842},{"style":223},[843],{"type":49,"value":406},{"type":43,"tag":134,"props":845,"children":846},{"style":382},[847],{"type":49,"value":848},"theme",{"type":43,"tag":134,"props":850,"children":851},{"style":223},[852],{"type":49,"value":853},");\n",{"type":43,"tag":134,"props":855,"children":856},{"class":136,"line":147},[857,861,865,870,874,878,882,887],{"type":43,"tag":134,"props":858,"children":859},{"style":502},[860],{"type":49,"value":821},{"type":43,"tag":134,"props":862,"children":863},{"style":223},[864],{"type":49,"value":283},{"type":43,"tag":134,"props":866,"children":867},{"style":157},[868],{"type":49,"value":869},"tailwindcss\u002Fpreflight.css",{"type":43,"tag":134,"props":871,"children":872},{"style":223},[873],{"type":49,"value":246},{"type":43,"tag":134,"props":875,"children":876},{"style":382},[877],{"type":49,"value":839},{"type":43,"tag":134,"props":879,"children":880},{"style":223},[881],{"type":49,"value":406},{"type":43,"tag":134,"props":883,"children":884},{"style":382},[885],{"type":49,"value":886},"base",{"type":43,"tag":134,"props":888,"children":889},{"style":223},[890],{"type":49,"value":853},{"type":43,"tag":134,"props":892,"children":893},{"class":136,"line":229},[894,898,902,907,911],{"type":43,"tag":134,"props":895,"children":896},{"style":502},[897],{"type":49,"value":821},{"type":43,"tag":134,"props":899,"children":900},{"style":223},[901],{"type":49,"value":283},{"type":43,"tag":134,"props":903,"children":904},{"style":157},[905],{"type":49,"value":906},"tailwindcss\u002Futilities.css",{"type":43,"tag":134,"props":908,"children":909},{"style":223},[910],{"type":49,"value":246},{"type":43,"tag":134,"props":912,"children":913},{"style":223},[914],{"type":49,"value":429},{"type":43,"tag":134,"props":916,"children":917},{"class":136,"line":259},[918],{"type":43,"tag":134,"props":919,"children":920},{"emptyLinePlaceholder":488},[921],{"type":49,"value":491},{"type":43,"tag":134,"props":923,"children":924},{"class":136,"line":296},[925],{"type":43,"tag":134,"props":926,"children":927},{"style":141},[928],{"type":49,"value":929},"\u002F* Platform-specific font families *\u002F\n",{"type":43,"tag":134,"props":931,"children":932},{"class":136,"line":305},[933,938,943],{"type":43,"tag":134,"props":934,"children":935},{"style":502},[936],{"type":49,"value":937},"@media",{"type":43,"tag":134,"props":939,"children":940},{"style":382},[941],{"type":49,"value":942}," android ",{"type":43,"tag":134,"props":944,"children":945},{"style":223},[946],{"type":49,"value":226},{"type":43,"tag":134,"props":948,"children":949},{"class":136,"line":564},[950,955,959],{"type":43,"tag":134,"props":951,"children":952},{"style":223},[953],{"type":49,"value":954},"  :",{"type":43,"tag":134,"props":956,"children":957},{"style":238},[958],{"type":49,"value":40},{"type":43,"tag":134,"props":960,"children":961},{"style":223},[962],{"type":49,"value":256},{"type":43,"tag":134,"props":964,"children":965},{"class":136,"line":572},[966,971,975,980],{"type":43,"tag":134,"props":967,"children":968},{"style":382},[969],{"type":49,"value":970},"    --font-mono",{"type":43,"tag":134,"props":972,"children":973},{"style":223},[974],{"type":49,"value":251},{"type":43,"tag":134,"props":976,"children":977},{"style":382},[978],{"type":49,"value":979}," monospace",{"type":43,"tag":134,"props":981,"children":982},{"style":223},[983],{"type":49,"value":429},{"type":43,"tag":134,"props":985,"children":986},{"class":136,"line":604},[987,992,996,1001],{"type":43,"tag":134,"props":988,"children":989},{"style":382},[990],{"type":49,"value":991},"    --font-rounded",{"type":43,"tag":134,"props":993,"children":994},{"style":223},[995],{"type":49,"value":251},{"type":43,"tag":134,"props":997,"children":998},{"style":382},[999],{"type":49,"value":1000}," normal",{"type":43,"tag":134,"props":1002,"children":1003},{"style":223},[1004],{"type":49,"value":429},{"type":43,"tag":134,"props":1006,"children":1007},{"class":136,"line":613},[1008,1013,1017,1022],{"type":43,"tag":134,"props":1009,"children":1010},{"style":382},[1011],{"type":49,"value":1012},"    --font-serif",{"type":43,"tag":134,"props":1014,"children":1015},{"style":223},[1016],{"type":49,"value":251},{"type":43,"tag":134,"props":1018,"children":1019},{"style":382},[1020],{"type":49,"value":1021}," serif",{"type":43,"tag":134,"props":1023,"children":1024},{"style":223},[1025],{"type":49,"value":429},{"type":43,"tag":134,"props":1027,"children":1028},{"class":136,"line":638},[1029,1034,1038,1042],{"type":43,"tag":134,"props":1030,"children":1031},{"style":382},[1032],{"type":49,"value":1033},"    --font-sans",{"type":43,"tag":134,"props":1035,"children":1036},{"style":223},[1037],{"type":49,"value":251},{"type":43,"tag":134,"props":1039,"children":1040},{"style":382},[1041],{"type":49,"value":1000},{"type":43,"tag":134,"props":1043,"children":1044},{"style":223},[1045],{"type":49,"value":429},{"type":43,"tag":134,"props":1047,"children":1048},{"class":136,"line":647},[1049],{"type":43,"tag":134,"props":1050,"children":1051},{"style":223},[1052],{"type":49,"value":302},{"type":43,"tag":134,"props":1054,"children":1055},{"class":136,"line":668},[1056],{"type":43,"tag":134,"props":1057,"children":1058},{"style":223},[1059],{"type":49,"value":311},{"type":43,"tag":134,"props":1061,"children":1063},{"class":136,"line":1062},14,[1064],{"type":43,"tag":134,"props":1065,"children":1066},{"emptyLinePlaceholder":488},[1067],{"type":49,"value":491},{"type":43,"tag":134,"props":1069,"children":1071},{"class":136,"line":1070},15,[1072,1076,1081],{"type":43,"tag":134,"props":1073,"children":1074},{"style":502},[1075],{"type":49,"value":937},{"type":43,"tag":134,"props":1077,"children":1078},{"style":382},[1079],{"type":49,"value":1080}," ios ",{"type":43,"tag":134,"props":1082,"children":1083},{"style":223},[1084],{"type":49,"value":226},{"type":43,"tag":134,"props":1086,"children":1088},{"class":136,"line":1087},16,[1089,1093,1097],{"type":43,"tag":134,"props":1090,"children":1091},{"style":223},[1092],{"type":49,"value":954},{"type":43,"tag":134,"props":1094,"children":1095},{"style":238},[1096],{"type":49,"value":40},{"type":43,"tag":134,"props":1098,"children":1099},{"style":223},[1100],{"type":49,"value":256},{"type":43,"tag":134,"props":1102,"children":1104},{"class":136,"line":1103},17,[1105,1109,1113,1118],{"type":43,"tag":134,"props":1106,"children":1107},{"style":382},[1108],{"type":49,"value":970},{"type":43,"tag":134,"props":1110,"children":1111},{"style":223},[1112],{"type":49,"value":251},{"type":43,"tag":134,"props":1114,"children":1115},{"style":382},[1116],{"type":49,"value":1117}," ui-monospace",{"type":43,"tag":134,"props":1119,"children":1120},{"style":223},[1121],{"type":49,"value":429},{"type":43,"tag":134,"props":1123,"children":1125},{"class":136,"line":1124},18,[1126,1130,1134,1139],{"type":43,"tag":134,"props":1127,"children":1128},{"style":382},[1129],{"type":49,"value":1012},{"type":43,"tag":134,"props":1131,"children":1132},{"style":223},[1133],{"type":49,"value":251},{"type":43,"tag":134,"props":1135,"children":1136},{"style":382},[1137],{"type":49,"value":1138}," ui-serif",{"type":43,"tag":134,"props":1140,"children":1141},{"style":223},[1142],{"type":49,"value":429},{"type":43,"tag":134,"props":1144,"children":1146},{"class":136,"line":1145},19,[1147,1151,1155,1160],{"type":43,"tag":134,"props":1148,"children":1149},{"style":382},[1150],{"type":49,"value":1033},{"type":43,"tag":134,"props":1152,"children":1153},{"style":223},[1154],{"type":49,"value":251},{"type":43,"tag":134,"props":1156,"children":1157},{"style":382},[1158],{"type":49,"value":1159}," system-ui",{"type":43,"tag":134,"props":1161,"children":1162},{"style":223},[1163],{"type":49,"value":429},{"type":43,"tag":134,"props":1165,"children":1167},{"class":136,"line":1166},20,[1168,1172,1176,1181],{"type":43,"tag":134,"props":1169,"children":1170},{"style":382},[1171],{"type":49,"value":991},{"type":43,"tag":134,"props":1173,"children":1174},{"style":223},[1175],{"type":49,"value":251},{"type":43,"tag":134,"props":1177,"children":1178},{"style":382},[1179],{"type":49,"value":1180}," ui-rounded",{"type":43,"tag":134,"props":1182,"children":1183},{"style":223},[1184],{"type":49,"value":429},{"type":43,"tag":134,"props":1186,"children":1188},{"class":136,"line":1187},21,[1189],{"type":43,"tag":134,"props":1190,"children":1191},{"style":223},[1192],{"type":49,"value":302},{"type":43,"tag":134,"props":1194,"children":1196},{"class":136,"line":1195},22,[1197],{"type":43,"tag":134,"props":1198,"children":1199},{"style":223},[1200],{"type":49,"value":311},{"type":43,"tag":58,"props":1202,"children":1204},{"id":1203},"important-no-babel-config-needed",[1205],{"type":49,"value":1206},"IMPORTANT: No Babel Config Needed",{"type":43,"tag":52,"props":1208,"children":1209},{},[1210],{"type":49,"value":1211},"With Tailwind v4 and NativeWind v5, you do NOT need a babel.config.js for Tailwind. Remove any NativeWind babel presets if present:",{"type":43,"tag":122,"props":1213,"children":1215},{"className":352,"code":1214,"language":354,"meta":127,"style":127},"\u002F\u002F DELETE babel.config.js if it only contains NativeWind config\n\u002F\u002F The following is NO LONGER needed:\n\u002F\u002F module.exports = function (api) {\n\u002F\u002F   api.cache(true);\n\u002F\u002F   return {\n\u002F\u002F     presets: [\n\u002F\u002F       [\"babel-preset-expo\", { jsxImportSource: \"nativewind\" }],\n\u002F\u002F       \"nativewind\u002Fbabel\",\n\u002F\u002F     ],\n\u002F\u002F   };\n\u002F\u002F };\n",[1216],{"type":43,"tag":130,"props":1217,"children":1218},{"__ignoreMap":127},[1219,1227,1235,1243,1251,1259,1267,1275,1283,1291,1299],{"type":43,"tag":134,"props":1220,"children":1221},{"class":136,"line":137},[1222],{"type":43,"tag":134,"props":1223,"children":1224},{"style":141},[1225],{"type":49,"value":1226},"\u002F\u002F DELETE babel.config.js if it only contains NativeWind config\n",{"type":43,"tag":134,"props":1228,"children":1229},{"class":136,"line":147},[1230],{"type":43,"tag":134,"props":1231,"children":1232},{"style":141},[1233],{"type":49,"value":1234},"\u002F\u002F The following is NO LONGER needed:\n",{"type":43,"tag":134,"props":1236,"children":1237},{"class":136,"line":229},[1238],{"type":43,"tag":134,"props":1239,"children":1240},{"style":141},[1241],{"type":49,"value":1242},"\u002F\u002F module.exports = function (api) {\n",{"type":43,"tag":134,"props":1244,"children":1245},{"class":136,"line":259},[1246],{"type":43,"tag":134,"props":1247,"children":1248},{"style":141},[1249],{"type":49,"value":1250},"\u002F\u002F   api.cache(true);\n",{"type":43,"tag":134,"props":1252,"children":1253},{"class":136,"line":296},[1254],{"type":43,"tag":134,"props":1255,"children":1256},{"style":141},[1257],{"type":49,"value":1258},"\u002F\u002F   return {\n",{"type":43,"tag":134,"props":1260,"children":1261},{"class":136,"line":305},[1262],{"type":43,"tag":134,"props":1263,"children":1264},{"style":141},[1265],{"type":49,"value":1266},"\u002F\u002F     presets: [\n",{"type":43,"tag":134,"props":1268,"children":1269},{"class":136,"line":564},[1270],{"type":43,"tag":134,"props":1271,"children":1272},{"style":141},[1273],{"type":49,"value":1274},"\u002F\u002F       [\"babel-preset-expo\", { jsxImportSource: \"nativewind\" }],\n",{"type":43,"tag":134,"props":1276,"children":1277},{"class":136,"line":572},[1278],{"type":43,"tag":134,"props":1279,"children":1280},{"style":141},[1281],{"type":49,"value":1282},"\u002F\u002F       \"nativewind\u002Fbabel\",\n",{"type":43,"tag":134,"props":1284,"children":1285},{"class":136,"line":604},[1286],{"type":43,"tag":134,"props":1287,"children":1288},{"style":141},[1289],{"type":49,"value":1290},"\u002F\u002F     ],\n",{"type":43,"tag":134,"props":1292,"children":1293},{"class":136,"line":613},[1294],{"type":43,"tag":134,"props":1295,"children":1296},{"style":141},[1297],{"type":49,"value":1298},"\u002F\u002F   };\n",{"type":43,"tag":134,"props":1300,"children":1301},{"class":136,"line":638},[1302],{"type":43,"tag":134,"props":1303,"children":1304},{"style":141},[1305],{"type":49,"value":1306},"\u002F\u002F };\n",{"type":43,"tag":58,"props":1308,"children":1310},{"id":1309},"css-component-wrappers",[1311],{"type":49,"value":1312},"CSS Component Wrappers",{"type":43,"tag":52,"props":1314,"children":1315},{},[1316],{"type":49,"value":1317},"Since react-native-css requires explicit CSS element wrapping, create reusable components:",{"type":43,"tag":332,"props":1319,"children":1321},{"id":1320},"main-components-srctwindextsx",[1322,1324,1330],{"type":49,"value":1323},"Main Components (",{"type":43,"tag":130,"props":1325,"children":1327},{"className":1326},[],[1328],{"type":49,"value":1329},"src\u002Ftw\u002Findex.tsx",{"type":49,"value":424},{"type":43,"tag":122,"props":1332,"children":1336},{"className":1333,"code":1334,"language":1335,"meta":127,"style":127},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import {\n  useCssElement,\n  useNativeVariable as useFunctionalVariable,\n} from \"react-native-css\";\n\nimport { Link as RouterLink } from \"expo-router\";\nimport Animated from \"react-native-reanimated\";\nimport React from \"react\";\nimport {\n  View as RNView,\n  Text as RNText,\n  Pressable as RNPressable,\n  ScrollView as RNScrollView,\n  TouchableHighlight as RNTouchableHighlight,\n  TextInput as RNTextInput,\n  StyleSheet,\n} from \"react-native\";\n\n\u002F\u002F CSS-enabled Link\nexport const Link = (\n  props: React.ComponentProps\u003Ctypeof RouterLink> & { className?: string }\n) => {\n  return useCssElement(RouterLink, props, { className: \"style\" });\n};\n\nLink.Trigger = RouterLink.Trigger;\nLink.Menu = RouterLink.Menu;\nLink.MenuAction = RouterLink.MenuAction;\nLink.Preview = RouterLink.Preview;\n\n\u002F\u002F CSS Variable hook\nexport const useCSSVariable =\n  process.env.EXPO_OS !== \"web\"\n    ? useFunctionalVariable\n    : (variable: string) => `var(${variable})`;\n\n\u002F\u002F View\nexport type ViewProps = React.ComponentProps\u003Ctypeof RNView> & {\n  className?: string;\n};\n\nexport const View = (props: ViewProps) => {\n  return useCssElement(RNView, props, { className: \"style\" });\n};\nView.displayName = \"CSS(View)\";\n\n\u002F\u002F Text\nexport const Text = (\n  props: React.ComponentProps\u003Ctypeof RNText> & { className?: string }\n) => {\n  return useCssElement(RNText, props, { className: \"style\" });\n};\nText.displayName = \"CSS(Text)\";\n\n\u002F\u002F ScrollView\nexport const ScrollView = (\n  props: React.ComponentProps\u003Ctypeof RNScrollView> & {\n    className?: string;\n    contentContainerClassName?: string;\n  }\n) => {\n  return useCssElement(RNScrollView, props, {\n    className: \"style\",\n    contentContainerClassName: \"contentContainerStyle\",\n  });\n};\nScrollView.displayName = \"CSS(ScrollView)\";\n\n\u002F\u002F Pressable\nexport const Pressable = (\n  props: React.ComponentProps\u003Ctypeof RNPressable> & { className?: string }\n) => {\n  return useCssElement(RNPressable, props, { className: \"style\" });\n};\nPressable.displayName = \"CSS(Pressable)\";\n\n\u002F\u002F TextInput\nexport const TextInput = (\n  props: React.ComponentProps\u003Ctypeof RNTextInput> & { className?: string }\n) => {\n  return useCssElement(RNTextInput, props, { className: \"style\" });\n};\nTextInput.displayName = \"CSS(TextInput)\";\n\n\u002F\u002F AnimatedScrollView\nexport const AnimatedScrollView = (\n  props: React.ComponentProps\u003Ctypeof Animated.ScrollView> & {\n    className?: string;\n    contentClassName?: string;\n    contentContainerClassName?: string;\n  }\n) => {\n  return useCssElement(Animated.ScrollView, props, {\n    className: \"style\",\n    contentClassName: \"contentContainerStyle\",\n    contentContainerClassName: \"contentContainerStyle\",\n  });\n};\n\n\u002F\u002F TouchableHighlight with underlayColor extraction\nfunction XXTouchableHighlight(\n  props: React.ComponentProps\u003Ctypeof RNTouchableHighlight>\n) {\n  const { underlayColor, ...style } = StyleSheet.flatten(props.style) || {};\n  return (\n    \u003CRNTouchableHighlight\n      underlayColor={underlayColor}\n      {...props}\n      style={style}\n    \u002F>\n  );\n}\n\nexport const TouchableHighlight = (\n  props: React.ComponentProps\u003Ctypeof RNTouchableHighlight>\n) => {\n  return useCssElement(XXTouchableHighlight, props, { className: \"style\" });\n};\nTouchableHighlight.displayName = \"CSS(TouchableHighlight)\";\n","tsx",[1337],{"type":43,"tag":130,"props":1338,"children":1339},{"__ignoreMap":127},[1340,1352,1364,1386,1414,1421,1472,1506,1539,1550,1571,1592,1613,1634,1655,1676,1688,1716,1723,1731,1757,1828,1845,1918,1926,1934,1973,2011,2049,2087,2095,2104,2126,2171,2185,2257,2265,2274,2328,2349,2357,2365,2415,2484,2492,2531,2539,2548,2573,2633,2649,2718,2726,2764,2772,2781,2806,2850,2871,2892,2900,2916,2953,2981,3010,3027,3035,3073,3081,3090,3115,3175,3191,3260,3268,3306,3314,3323,3348,3408,3424,3493,3501,3539,3547,3556,3581,3634,3654,3675,3695,3703,3719,3764,3792,3820,3848,3864,3872,3880,3889,3908,3945,3957,4040,4052,4066,4089,4106,4127,4136,4149,4157,4165,4190,4226,4242,4311,4319],{"type":43,"tag":134,"props":1341,"children":1342},{"class":136,"line":137},[1343,1348],{"type":43,"tag":134,"props":1344,"children":1345},{"style":502},[1346],{"type":49,"value":1347},"import",{"type":43,"tag":134,"props":1349,"children":1350},{"style":223},[1351],{"type":49,"value":256},{"type":43,"tag":134,"props":1353,"children":1354},{"class":136,"line":147},[1355,1360],{"type":43,"tag":134,"props":1356,"children":1357},{"style":382},[1358],{"type":49,"value":1359},"  useCssElement",{"type":43,"tag":134,"props":1361,"children":1362},{"style":223},[1363],{"type":49,"value":635},{"type":43,"tag":134,"props":1365,"children":1366},{"class":136,"line":229},[1367,1372,1377,1382],{"type":43,"tag":134,"props":1368,"children":1369},{"style":382},[1370],{"type":49,"value":1371},"  useNativeVariable",{"type":43,"tag":134,"props":1373,"children":1374},{"style":502},[1375],{"type":49,"value":1376}," as",{"type":43,"tag":134,"props":1378,"children":1379},{"style":382},[1380],{"type":49,"value":1381}," useFunctionalVariable",{"type":43,"tag":134,"props":1383,"children":1384},{"style":223},[1385],{"type":49,"value":635},{"type":43,"tag":134,"props":1387,"children":1388},{"class":136,"line":259},[1389,1393,1398,1402,1406,1410],{"type":43,"tag":134,"props":1390,"children":1391},{"style":223},[1392],{"type":49,"value":390},{"type":43,"tag":134,"props":1394,"children":1395},{"style":502},[1396],{"type":49,"value":1397}," from",{"type":43,"tag":134,"props":1399,"children":1400},{"style":223},[1401],{"type":49,"value":283},{"type":43,"tag":134,"props":1403,"children":1404},{"style":157},[1405],{"type":49,"value":92},{"type":43,"tag":134,"props":1407,"children":1408},{"style":223},[1409],{"type":49,"value":246},{"type":43,"tag":134,"props":1411,"children":1412},{"style":223},[1413],{"type":49,"value":429},{"type":43,"tag":134,"props":1415,"children":1416},{"class":136,"line":296},[1417],{"type":43,"tag":134,"props":1418,"children":1419},{"emptyLinePlaceholder":488},[1420],{"type":49,"value":491},{"type":43,"tag":134,"props":1422,"children":1423},{"class":136,"line":305},[1424,1428,1432,1437,1441,1446,1451,1455,1459,1464,1468],{"type":43,"tag":134,"props":1425,"children":1426},{"style":502},[1427],{"type":49,"value":1347},{"type":43,"tag":134,"props":1429,"children":1430},{"style":223},[1431],{"type":49,"value":379},{"type":43,"tag":134,"props":1433,"children":1434},{"style":382},[1435],{"type":49,"value":1436}," Link",{"type":43,"tag":134,"props":1438,"children":1439},{"style":502},[1440],{"type":49,"value":1376},{"type":43,"tag":134,"props":1442,"children":1443},{"style":382},[1444],{"type":49,"value":1445}," RouterLink",{"type":43,"tag":134,"props":1447,"children":1448},{"style":223},[1449],{"type":49,"value":1450}," }",{"type":43,"tag":134,"props":1452,"children":1453},{"style":502},[1454],{"type":49,"value":1397},{"type":43,"tag":134,"props":1456,"children":1457},{"style":223},[1458],{"type":49,"value":283},{"type":43,"tag":134,"props":1460,"children":1461},{"style":157},[1462],{"type":49,"value":1463},"expo-router",{"type":43,"tag":134,"props":1465,"children":1466},{"style":223},[1467],{"type":49,"value":246},{"type":43,"tag":134,"props":1469,"children":1470},{"style":223},[1471],{"type":49,"value":429},{"type":43,"tag":134,"props":1473,"children":1474},{"class":136,"line":564},[1475,1479,1484,1489,1493,1498,1502],{"type":43,"tag":134,"props":1476,"children":1477},{"style":502},[1478],{"type":49,"value":1347},{"type":43,"tag":134,"props":1480,"children":1481},{"style":382},[1482],{"type":49,"value":1483}," Animated ",{"type":43,"tag":134,"props":1485,"children":1486},{"style":502},[1487],{"type":49,"value":1488},"from",{"type":43,"tag":134,"props":1490,"children":1491},{"style":223},[1492],{"type":49,"value":283},{"type":43,"tag":134,"props":1494,"children":1495},{"style":157},[1496],{"type":49,"value":1497},"react-native-reanimated",{"type":43,"tag":134,"props":1499,"children":1500},{"style":223},[1501],{"type":49,"value":246},{"type":43,"tag":134,"props":1503,"children":1504},{"style":223},[1505],{"type":49,"value":429},{"type":43,"tag":134,"props":1507,"children":1508},{"class":136,"line":572},[1509,1513,1518,1522,1526,1531,1535],{"type":43,"tag":134,"props":1510,"children":1511},{"style":502},[1512],{"type":49,"value":1347},{"type":43,"tag":134,"props":1514,"children":1515},{"style":382},[1516],{"type":49,"value":1517}," React ",{"type":43,"tag":134,"props":1519,"children":1520},{"style":502},[1521],{"type":49,"value":1488},{"type":43,"tag":134,"props":1523,"children":1524},{"style":223},[1525],{"type":49,"value":283},{"type":43,"tag":134,"props":1527,"children":1528},{"style":157},[1529],{"type":49,"value":1530},"react",{"type":43,"tag":134,"props":1532,"children":1533},{"style":223},[1534],{"type":49,"value":246},{"type":43,"tag":134,"props":1536,"children":1537},{"style":223},[1538],{"type":49,"value":429},{"type":43,"tag":134,"props":1540,"children":1541},{"class":136,"line":604},[1542,1546],{"type":43,"tag":134,"props":1543,"children":1544},{"style":502},[1545],{"type":49,"value":1347},{"type":43,"tag":134,"props":1547,"children":1548},{"style":223},[1549],{"type":49,"value":256},{"type":43,"tag":134,"props":1551,"children":1552},{"class":136,"line":613},[1553,1558,1562,1567],{"type":43,"tag":134,"props":1554,"children":1555},{"style":382},[1556],{"type":49,"value":1557},"  View",{"type":43,"tag":134,"props":1559,"children":1560},{"style":502},[1561],{"type":49,"value":1376},{"type":43,"tag":134,"props":1563,"children":1564},{"style":382},[1565],{"type":49,"value":1566}," RNView",{"type":43,"tag":134,"props":1568,"children":1569},{"style":223},[1570],{"type":49,"value":635},{"type":43,"tag":134,"props":1572,"children":1573},{"class":136,"line":638},[1574,1579,1583,1588],{"type":43,"tag":134,"props":1575,"children":1576},{"style":382},[1577],{"type":49,"value":1578},"  Text",{"type":43,"tag":134,"props":1580,"children":1581},{"style":502},[1582],{"type":49,"value":1376},{"type":43,"tag":134,"props":1584,"children":1585},{"style":382},[1586],{"type":49,"value":1587}," RNText",{"type":43,"tag":134,"props":1589,"children":1590},{"style":223},[1591],{"type":49,"value":635},{"type":43,"tag":134,"props":1593,"children":1594},{"class":136,"line":647},[1595,1600,1604,1609],{"type":43,"tag":134,"props":1596,"children":1597},{"style":382},[1598],{"type":49,"value":1599},"  Pressable",{"type":43,"tag":134,"props":1601,"children":1602},{"style":502},[1603],{"type":49,"value":1376},{"type":43,"tag":134,"props":1605,"children":1606},{"style":382},[1607],{"type":49,"value":1608}," RNPressable",{"type":43,"tag":134,"props":1610,"children":1611},{"style":223},[1612],{"type":49,"value":635},{"type":43,"tag":134,"props":1614,"children":1615},{"class":136,"line":668},[1616,1621,1625,1630],{"type":43,"tag":134,"props":1617,"children":1618},{"style":382},[1619],{"type":49,"value":1620},"  ScrollView",{"type":43,"tag":134,"props":1622,"children":1623},{"style":502},[1624],{"type":49,"value":1376},{"type":43,"tag":134,"props":1626,"children":1627},{"style":382},[1628],{"type":49,"value":1629}," RNScrollView",{"type":43,"tag":134,"props":1631,"children":1632},{"style":223},[1633],{"type":49,"value":635},{"type":43,"tag":134,"props":1635,"children":1636},{"class":136,"line":1062},[1637,1642,1646,1651],{"type":43,"tag":134,"props":1638,"children":1639},{"style":382},[1640],{"type":49,"value":1641},"  TouchableHighlight",{"type":43,"tag":134,"props":1643,"children":1644},{"style":502},[1645],{"type":49,"value":1376},{"type":43,"tag":134,"props":1647,"children":1648},{"style":382},[1649],{"type":49,"value":1650}," RNTouchableHighlight",{"type":43,"tag":134,"props":1652,"children":1653},{"style":223},[1654],{"type":49,"value":635},{"type":43,"tag":134,"props":1656,"children":1657},{"class":136,"line":1070},[1658,1663,1667,1672],{"type":43,"tag":134,"props":1659,"children":1660},{"style":382},[1661],{"type":49,"value":1662},"  TextInput",{"type":43,"tag":134,"props":1664,"children":1665},{"style":502},[1666],{"type":49,"value":1376},{"type":43,"tag":134,"props":1668,"children":1669},{"style":382},[1670],{"type":49,"value":1671}," RNTextInput",{"type":43,"tag":134,"props":1673,"children":1674},{"style":223},[1675],{"type":49,"value":635},{"type":43,"tag":134,"props":1677,"children":1678},{"class":136,"line":1087},[1679,1684],{"type":43,"tag":134,"props":1680,"children":1681},{"style":382},[1682],{"type":49,"value":1683},"  StyleSheet",{"type":43,"tag":134,"props":1685,"children":1686},{"style":223},[1687],{"type":49,"value":635},{"type":43,"tag":134,"props":1689,"children":1690},{"class":136,"line":1103},[1691,1695,1699,1703,1708,1712],{"type":43,"tag":134,"props":1692,"children":1693},{"style":223},[1694],{"type":49,"value":390},{"type":43,"tag":134,"props":1696,"children":1697},{"style":502},[1698],{"type":49,"value":1397},{"type":43,"tag":134,"props":1700,"children":1701},{"style":223},[1702],{"type":49,"value":283},{"type":43,"tag":134,"props":1704,"children":1705},{"style":157},[1706],{"type":49,"value":1707},"react-native",{"type":43,"tag":134,"props":1709,"children":1710},{"style":223},[1711],{"type":49,"value":246},{"type":43,"tag":134,"props":1713,"children":1714},{"style":223},[1715],{"type":49,"value":429},{"type":43,"tag":134,"props":1717,"children":1718},{"class":136,"line":1124},[1719],{"type":43,"tag":134,"props":1720,"children":1721},{"emptyLinePlaceholder":488},[1722],{"type":49,"value":491},{"type":43,"tag":134,"props":1724,"children":1725},{"class":136,"line":1145},[1726],{"type":43,"tag":134,"props":1727,"children":1728},{"style":141},[1729],{"type":49,"value":1730},"\u002F\u002F CSS-enabled Link\n",{"type":43,"tag":134,"props":1732,"children":1733},{"class":136,"line":1166},[1734,1738,1743,1748,1752],{"type":43,"tag":134,"props":1735,"children":1736},{"style":502},[1737],{"type":49,"value":722},{"type":43,"tag":134,"props":1739,"children":1740},{"style":238},[1741],{"type":49,"value":1742}," const",{"type":43,"tag":134,"props":1744,"children":1745},{"style":382},[1746],{"type":49,"value":1747}," Link ",{"type":43,"tag":134,"props":1749,"children":1750},{"style":223},[1751],{"type":49,"value":547},{"type":43,"tag":134,"props":1753,"children":1754},{"style":382},[1755],{"type":49,"value":1756}," (\n",{"type":43,"tag":134,"props":1758,"children":1759},{"class":136,"line":1187},[1760,1766,1770,1775,1780,1785,1790,1794,1799,1804,1808,1813,1818,1823],{"type":43,"tag":134,"props":1761,"children":1763},{"style":1762},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1764],{"type":49,"value":1765},"  props",{"type":43,"tag":134,"props":1767,"children":1768},{"style":223},[1769],{"type":49,"value":251},{"type":43,"tag":134,"props":1771,"children":1772},{"style":151},[1773],{"type":49,"value":1774}," React",{"type":43,"tag":134,"props":1776,"children":1777},{"style":223},[1778],{"type":49,"value":1779},".",{"type":43,"tag":134,"props":1781,"children":1782},{"style":151},[1783],{"type":49,"value":1784},"ComponentProps",{"type":43,"tag":134,"props":1786,"children":1787},{"style":223},[1788],{"type":49,"value":1789},"\u003Ctypeof",{"type":43,"tag":134,"props":1791,"children":1792},{"style":382},[1793],{"type":49,"value":1445},{"type":43,"tag":134,"props":1795,"children":1796},{"style":223},[1797],{"type":49,"value":1798},">",{"type":43,"tag":134,"props":1800,"children":1801},{"style":223},[1802],{"type":49,"value":1803}," &",{"type":43,"tag":134,"props":1805,"children":1806},{"style":223},[1807],{"type":49,"value":379},{"type":43,"tag":134,"props":1809,"children":1810},{"style":617},[1811],{"type":49,"value":1812}," className",{"type":43,"tag":134,"props":1814,"children":1815},{"style":223},[1816],{"type":49,"value":1817},"?:",{"type":43,"tag":134,"props":1819,"children":1820},{"style":151},[1821],{"type":49,"value":1822}," string",{"type":43,"tag":134,"props":1824,"children":1825},{"style":223},[1826],{"type":49,"value":1827}," }\n",{"type":43,"tag":134,"props":1829,"children":1830},{"class":136,"line":1195},[1831,1836,1841],{"type":43,"tag":134,"props":1832,"children":1833},{"style":382},[1834],{"type":49,"value":1835},") ",{"type":43,"tag":134,"props":1837,"children":1838},{"style":238},[1839],{"type":49,"value":1840},"=>",{"type":43,"tag":134,"props":1842,"children":1843},{"style":223},[1844],{"type":49,"value":256},{"type":43,"tag":134,"props":1846,"children":1848},{"class":136,"line":1847},23,[1849,1854,1859,1863,1868,1872,1877,1881,1885,1889,1893,1897,1902,1906,1910,1914],{"type":43,"tag":134,"props":1850,"children":1851},{"style":502},[1852],{"type":49,"value":1853},"  return",{"type":43,"tag":134,"props":1855,"children":1856},{"style":398},[1857],{"type":49,"value":1858}," useCssElement",{"type":43,"tag":134,"props":1860,"children":1861},{"style":617},[1862],{"type":49,"value":406},{"type":43,"tag":134,"props":1864,"children":1865},{"style":382},[1866],{"type":49,"value":1867},"RouterLink",{"type":43,"tag":134,"props":1869,"children":1870},{"style":223},[1871],{"type":49,"value":597},{"type":43,"tag":134,"props":1873,"children":1874},{"style":382},[1875],{"type":49,"value":1876}," props",{"type":43,"tag":134,"props":1878,"children":1879},{"style":223},[1880],{"type":49,"value":597},{"type":43,"tag":134,"props":1882,"children":1883},{"style":223},[1884],{"type":49,"value":379},{"type":43,"tag":134,"props":1886,"children":1887},{"style":617},[1888],{"type":49,"value":1812},{"type":43,"tag":134,"props":1890,"children":1891},{"style":223},[1892],{"type":49,"value":251},{"type":43,"tag":134,"props":1894,"children":1895},{"style":223},[1896],{"type":49,"value":283},{"type":43,"tag":134,"props":1898,"children":1899},{"style":157},[1900],{"type":49,"value":1901},"style",{"type":43,"tag":134,"props":1903,"children":1904},{"style":223},[1905],{"type":49,"value":246},{"type":43,"tag":134,"props":1907,"children":1908},{"style":223},[1909],{"type":49,"value":1450},{"type":43,"tag":134,"props":1911,"children":1912},{"style":617},[1913],{"type":49,"value":424},{"type":43,"tag":134,"props":1915,"children":1916},{"style":223},[1917],{"type":49,"value":429},{"type":43,"tag":134,"props":1919,"children":1921},{"class":136,"line":1920},24,[1922],{"type":43,"tag":134,"props":1923,"children":1924},{"style":223},[1925],{"type":49,"value":787},{"type":43,"tag":134,"props":1927,"children":1929},{"class":136,"line":1928},25,[1930],{"type":43,"tag":134,"props":1931,"children":1932},{"emptyLinePlaceholder":488},[1933],{"type":49,"value":491},{"type":43,"tag":134,"props":1935,"children":1937},{"class":136,"line":1936},26,[1938,1943,1947,1952,1956,1960,1964,1969],{"type":43,"tag":134,"props":1939,"children":1940},{"style":382},[1941],{"type":49,"value":1942},"Link",{"type":43,"tag":134,"props":1944,"children":1945},{"style":223},[1946],{"type":49,"value":1779},{"type":43,"tag":134,"props":1948,"children":1949},{"style":382},[1950],{"type":49,"value":1951},"Trigger ",{"type":43,"tag":134,"props":1953,"children":1954},{"style":223},[1955],{"type":49,"value":547},{"type":43,"tag":134,"props":1957,"children":1958},{"style":382},[1959],{"type":49,"value":1445},{"type":43,"tag":134,"props":1961,"children":1962},{"style":223},[1963],{"type":49,"value":1779},{"type":43,"tag":134,"props":1965,"children":1966},{"style":382},[1967],{"type":49,"value":1968},"Trigger",{"type":43,"tag":134,"props":1970,"children":1971},{"style":223},[1972],{"type":49,"value":429},{"type":43,"tag":134,"props":1974,"children":1976},{"class":136,"line":1975},27,[1977,1981,1985,1990,1994,1998,2002,2007],{"type":43,"tag":134,"props":1978,"children":1979},{"style":382},[1980],{"type":49,"value":1942},{"type":43,"tag":134,"props":1982,"children":1983},{"style":223},[1984],{"type":49,"value":1779},{"type":43,"tag":134,"props":1986,"children":1987},{"style":382},[1988],{"type":49,"value":1989},"Menu ",{"type":43,"tag":134,"props":1991,"children":1992},{"style":223},[1993],{"type":49,"value":547},{"type":43,"tag":134,"props":1995,"children":1996},{"style":382},[1997],{"type":49,"value":1445},{"type":43,"tag":134,"props":1999,"children":2000},{"style":223},[2001],{"type":49,"value":1779},{"type":43,"tag":134,"props":2003,"children":2004},{"style":382},[2005],{"type":49,"value":2006},"Menu",{"type":43,"tag":134,"props":2008,"children":2009},{"style":223},[2010],{"type":49,"value":429},{"type":43,"tag":134,"props":2012,"children":2014},{"class":136,"line":2013},28,[2015,2019,2023,2028,2032,2036,2040,2045],{"type":43,"tag":134,"props":2016,"children":2017},{"style":382},[2018],{"type":49,"value":1942},{"type":43,"tag":134,"props":2020,"children":2021},{"style":223},[2022],{"type":49,"value":1779},{"type":43,"tag":134,"props":2024,"children":2025},{"style":382},[2026],{"type":49,"value":2027},"MenuAction ",{"type":43,"tag":134,"props":2029,"children":2030},{"style":223},[2031],{"type":49,"value":547},{"type":43,"tag":134,"props":2033,"children":2034},{"style":382},[2035],{"type":49,"value":1445},{"type":43,"tag":134,"props":2037,"children":2038},{"style":223},[2039],{"type":49,"value":1779},{"type":43,"tag":134,"props":2041,"children":2042},{"style":382},[2043],{"type":49,"value":2044},"MenuAction",{"type":43,"tag":134,"props":2046,"children":2047},{"style":223},[2048],{"type":49,"value":429},{"type":43,"tag":134,"props":2050,"children":2052},{"class":136,"line":2051},29,[2053,2057,2061,2066,2070,2074,2078,2083],{"type":43,"tag":134,"props":2054,"children":2055},{"style":382},[2056],{"type":49,"value":1942},{"type":43,"tag":134,"props":2058,"children":2059},{"style":223},[2060],{"type":49,"value":1779},{"type":43,"tag":134,"props":2062,"children":2063},{"style":382},[2064],{"type":49,"value":2065},"Preview ",{"type":43,"tag":134,"props":2067,"children":2068},{"style":223},[2069],{"type":49,"value":547},{"type":43,"tag":134,"props":2071,"children":2072},{"style":382},[2073],{"type":49,"value":1445},{"type":43,"tag":134,"props":2075,"children":2076},{"style":223},[2077],{"type":49,"value":1779},{"type":43,"tag":134,"props":2079,"children":2080},{"style":382},[2081],{"type":49,"value":2082},"Preview",{"type":43,"tag":134,"props":2084,"children":2085},{"style":223},[2086],{"type":49,"value":429},{"type":43,"tag":134,"props":2088,"children":2090},{"class":136,"line":2089},30,[2091],{"type":43,"tag":134,"props":2092,"children":2093},{"emptyLinePlaceholder":488},[2094],{"type":49,"value":491},{"type":43,"tag":134,"props":2096,"children":2098},{"class":136,"line":2097},31,[2099],{"type":43,"tag":134,"props":2100,"children":2101},{"style":141},[2102],{"type":49,"value":2103},"\u002F\u002F CSS Variable hook\n",{"type":43,"tag":134,"props":2105,"children":2107},{"class":136,"line":2106},32,[2108,2112,2116,2121],{"type":43,"tag":134,"props":2109,"children":2110},{"style":502},[2111],{"type":49,"value":722},{"type":43,"tag":134,"props":2113,"children":2114},{"style":238},[2115],{"type":49,"value":1742},{"type":43,"tag":134,"props":2117,"children":2118},{"style":382},[2119],{"type":49,"value":2120}," useCSSVariable ",{"type":43,"tag":134,"props":2122,"children":2123},{"style":223},[2124],{"type":49,"value":2125},"=\n",{"type":43,"tag":134,"props":2127,"children":2129},{"class":136,"line":2128},33,[2130,2135,2139,2144,2148,2153,2158,2162,2167],{"type":43,"tag":134,"props":2131,"children":2132},{"style":382},[2133],{"type":49,"value":2134},"  process",{"type":43,"tag":134,"props":2136,"children":2137},{"style":223},[2138],{"type":49,"value":1779},{"type":43,"tag":134,"props":2140,"children":2141},{"style":382},[2142],{"type":49,"value":2143},"env",{"type":43,"tag":134,"props":2145,"children":2146},{"style":223},[2147],{"type":49,"value":1779},{"type":43,"tag":134,"props":2149,"children":2150},{"style":382},[2151],{"type":49,"value":2152},"EXPO_OS ",{"type":43,"tag":134,"props":2154,"children":2155},{"style":223},[2156],{"type":49,"value":2157},"!==",{"type":43,"tag":134,"props":2159,"children":2160},{"style":223},[2161],{"type":49,"value":283},{"type":43,"tag":134,"props":2163,"children":2164},{"style":157},[2165],{"type":49,"value":2166},"web",{"type":43,"tag":134,"props":2168,"children":2169},{"style":223},[2170],{"type":49,"value":293},{"type":43,"tag":134,"props":2172,"children":2174},{"class":136,"line":2173},34,[2175,2180],{"type":43,"tag":134,"props":2176,"children":2177},{"style":223},[2178],{"type":49,"value":2179},"    ?",{"type":43,"tag":134,"props":2181,"children":2182},{"style":382},[2183],{"type":49,"value":2184}," useFunctionalVariable\n",{"type":43,"tag":134,"props":2186,"children":2188},{"class":136,"line":2187},35,[2189,2194,2199,2204,2208,2212,2216,2221,2226,2231,2236,2240,2244,2248,2253],{"type":43,"tag":134,"props":2190,"children":2191},{"style":223},[2192],{"type":49,"value":2193},"    :",{"type":43,"tag":134,"props":2195,"children":2196},{"style":223},[2197],{"type":49,"value":2198}," (",{"type":43,"tag":134,"props":2200,"children":2201},{"style":1762},[2202],{"type":49,"value":2203},"variable",{"type":43,"tag":134,"props":2205,"children":2206},{"style":223},[2207],{"type":49,"value":251},{"type":43,"tag":134,"props":2209,"children":2210},{"style":151},[2211],{"type":49,"value":1822},{"type":43,"tag":134,"props":2213,"children":2214},{"style":223},[2215],{"type":49,"value":424},{"type":43,"tag":134,"props":2217,"children":2218},{"style":238},[2219],{"type":49,"value":2220}," =>",{"type":43,"tag":134,"props":2222,"children":2223},{"style":223},[2224],{"type":49,"value":2225}," `",{"type":43,"tag":134,"props":2227,"children":2228},{"style":157},[2229],{"type":49,"value":2230},"var(",{"type":43,"tag":134,"props":2232,"children":2233},{"style":223},[2234],{"type":49,"value":2235},"${",{"type":43,"tag":134,"props":2237,"children":2238},{"style":382},[2239],{"type":49,"value":2203},{"type":43,"tag":134,"props":2241,"children":2242},{"style":223},[2243],{"type":49,"value":390},{"type":43,"tag":134,"props":2245,"children":2246},{"style":157},[2247],{"type":49,"value":424},{"type":43,"tag":134,"props":2249,"children":2250},{"style":223},[2251],{"type":49,"value":2252},"`",{"type":43,"tag":134,"props":2254,"children":2255},{"style":223},[2256],{"type":49,"value":429},{"type":43,"tag":134,"props":2258,"children":2260},{"class":136,"line":2259},36,[2261],{"type":43,"tag":134,"props":2262,"children":2263},{"emptyLinePlaceholder":488},[2264],{"type":49,"value":491},{"type":43,"tag":134,"props":2266,"children":2268},{"class":136,"line":2267},37,[2269],{"type":43,"tag":134,"props":2270,"children":2271},{"style":141},[2272],{"type":49,"value":2273},"\u002F\u002F View\n",{"type":43,"tag":134,"props":2275,"children":2277},{"class":136,"line":2276},38,[2278,2282,2287,2292,2296,2300,2304,2308,2312,2316,2320,2324],{"type":43,"tag":134,"props":2279,"children":2280},{"style":502},[2281],{"type":49,"value":722},{"type":43,"tag":134,"props":2283,"children":2284},{"style":238},[2285],{"type":49,"value":2286}," type",{"type":43,"tag":134,"props":2288,"children":2289},{"style":151},[2290],{"type":49,"value":2291}," ViewProps",{"type":43,"tag":134,"props":2293,"children":2294},{"style":223},[2295],{"type":49,"value":395},{"type":43,"tag":134,"props":2297,"children":2298},{"style":151},[2299],{"type":49,"value":1774},{"type":43,"tag":134,"props":2301,"children":2302},{"style":223},[2303],{"type":49,"value":1779},{"type":43,"tag":134,"props":2305,"children":2306},{"style":151},[2307],{"type":49,"value":1784},{"type":43,"tag":134,"props":2309,"children":2310},{"style":223},[2311],{"type":49,"value":1789},{"type":43,"tag":134,"props":2313,"children":2314},{"style":382},[2315],{"type":49,"value":1566},{"type":43,"tag":134,"props":2317,"children":2318},{"style":223},[2319],{"type":49,"value":1798},{"type":43,"tag":134,"props":2321,"children":2322},{"style":223},[2323],{"type":49,"value":1803},{"type":43,"tag":134,"props":2325,"children":2326},{"style":223},[2327],{"type":49,"value":256},{"type":43,"tag":134,"props":2329,"children":2331},{"class":136,"line":2330},39,[2332,2337,2341,2345],{"type":43,"tag":134,"props":2333,"children":2334},{"style":617},[2335],{"type":49,"value":2336},"  className",{"type":43,"tag":134,"props":2338,"children":2339},{"style":223},[2340],{"type":49,"value":1817},{"type":43,"tag":134,"props":2342,"children":2343},{"style":151},[2344],{"type":49,"value":1822},{"type":43,"tag":134,"props":2346,"children":2347},{"style":223},[2348],{"type":49,"value":429},{"type":43,"tag":134,"props":2350,"children":2352},{"class":136,"line":2351},40,[2353],{"type":43,"tag":134,"props":2354,"children":2355},{"style":223},[2356],{"type":49,"value":787},{"type":43,"tag":134,"props":2358,"children":2360},{"class":136,"line":2359},41,[2361],{"type":43,"tag":134,"props":2362,"children":2363},{"emptyLinePlaceholder":488},[2364],{"type":49,"value":491},{"type":43,"tag":134,"props":2366,"children":2368},{"class":136,"line":2367},42,[2369,2373,2377,2382,2386,2390,2395,2399,2403,2407,2411],{"type":43,"tag":134,"props":2370,"children":2371},{"style":502},[2372],{"type":49,"value":722},{"type":43,"tag":134,"props":2374,"children":2375},{"style":238},[2376],{"type":49,"value":1742},{"type":43,"tag":134,"props":2378,"children":2379},{"style":382},[2380],{"type":49,"value":2381}," View ",{"type":43,"tag":134,"props":2383,"children":2384},{"style":223},[2385],{"type":49,"value":547},{"type":43,"tag":134,"props":2387,"children":2388},{"style":223},[2389],{"type":49,"value":2198},{"type":43,"tag":134,"props":2391,"children":2392},{"style":1762},[2393],{"type":49,"value":2394},"props",{"type":43,"tag":134,"props":2396,"children":2397},{"style":223},[2398],{"type":49,"value":251},{"type":43,"tag":134,"props":2400,"children":2401},{"style":151},[2402],{"type":49,"value":2291},{"type":43,"tag":134,"props":2404,"children":2405},{"style":223},[2406],{"type":49,"value":424},{"type":43,"tag":134,"props":2408,"children":2409},{"style":238},[2410],{"type":49,"value":2220},{"type":43,"tag":134,"props":2412,"children":2413},{"style":223},[2414],{"type":49,"value":256},{"type":43,"tag":134,"props":2416,"children":2418},{"class":136,"line":2417},43,[2419,2423,2427,2431,2436,2440,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480],{"type":43,"tag":134,"props":2420,"children":2421},{"style":502},[2422],{"type":49,"value":1853},{"type":43,"tag":134,"props":2424,"children":2425},{"style":398},[2426],{"type":49,"value":1858},{"type":43,"tag":134,"props":2428,"children":2429},{"style":617},[2430],{"type":49,"value":406},{"type":43,"tag":134,"props":2432,"children":2433},{"style":382},[2434],{"type":49,"value":2435},"RNView",{"type":43,"tag":134,"props":2437,"children":2438},{"style":223},[2439],{"type":49,"value":597},{"type":43,"tag":134,"props":2441,"children":2442},{"style":382},[2443],{"type":49,"value":1876},{"type":43,"tag":134,"props":2445,"children":2446},{"style":223},[2447],{"type":49,"value":597},{"type":43,"tag":134,"props":2449,"children":2450},{"style":223},[2451],{"type":49,"value":379},{"type":43,"tag":134,"props":2453,"children":2454},{"style":617},[2455],{"type":49,"value":1812},{"type":43,"tag":134,"props":2457,"children":2458},{"style":223},[2459],{"type":49,"value":251},{"type":43,"tag":134,"props":2461,"children":2462},{"style":223},[2463],{"type":49,"value":283},{"type":43,"tag":134,"props":2465,"children":2466},{"style":157},[2467],{"type":49,"value":1901},{"type":43,"tag":134,"props":2469,"children":2470},{"style":223},[2471],{"type":49,"value":246},{"type":43,"tag":134,"props":2473,"children":2474},{"style":223},[2475],{"type":49,"value":1450},{"type":43,"tag":134,"props":2477,"children":2478},{"style":617},[2479],{"type":49,"value":424},{"type":43,"tag":134,"props":2481,"children":2482},{"style":223},[2483],{"type":49,"value":429},{"type":43,"tag":134,"props":2485,"children":2487},{"class":136,"line":2486},44,[2488],{"type":43,"tag":134,"props":2489,"children":2490},{"style":223},[2491],{"type":49,"value":787},{"type":43,"tag":134,"props":2493,"children":2495},{"class":136,"line":2494},45,[2496,2501,2505,2510,2514,2518,2523,2527],{"type":43,"tag":134,"props":2497,"children":2498},{"style":382},[2499],{"type":49,"value":2500},"View",{"type":43,"tag":134,"props":2502,"children":2503},{"style":223},[2504],{"type":49,"value":1779},{"type":43,"tag":134,"props":2506,"children":2507},{"style":382},[2508],{"type":49,"value":2509},"displayName ",{"type":43,"tag":134,"props":2511,"children":2512},{"style":223},[2513],{"type":49,"value":547},{"type":43,"tag":134,"props":2515,"children":2516},{"style":223},[2517],{"type":49,"value":283},{"type":43,"tag":134,"props":2519,"children":2520},{"style":157},[2521],{"type":49,"value":2522},"CSS(View)",{"type":43,"tag":134,"props":2524,"children":2525},{"style":223},[2526],{"type":49,"value":246},{"type":43,"tag":134,"props":2528,"children":2529},{"style":223},[2530],{"type":49,"value":429},{"type":43,"tag":134,"props":2532,"children":2534},{"class":136,"line":2533},46,[2535],{"type":43,"tag":134,"props":2536,"children":2537},{"emptyLinePlaceholder":488},[2538],{"type":49,"value":491},{"type":43,"tag":134,"props":2540,"children":2542},{"class":136,"line":2541},47,[2543],{"type":43,"tag":134,"props":2544,"children":2545},{"style":141},[2546],{"type":49,"value":2547},"\u002F\u002F Text\n",{"type":43,"tag":134,"props":2549,"children":2551},{"class":136,"line":2550},48,[2552,2556,2560,2565,2569],{"type":43,"tag":134,"props":2553,"children":2554},{"style":502},[2555],{"type":49,"value":722},{"type":43,"tag":134,"props":2557,"children":2558},{"style":238},[2559],{"type":49,"value":1742},{"type":43,"tag":134,"props":2561,"children":2562},{"style":382},[2563],{"type":49,"value":2564}," Text ",{"type":43,"tag":134,"props":2566,"children":2567},{"style":223},[2568],{"type":49,"value":547},{"type":43,"tag":134,"props":2570,"children":2571},{"style":382},[2572],{"type":49,"value":1756},{"type":43,"tag":134,"props":2574,"children":2576},{"class":136,"line":2575},49,[2577,2581,2585,2589,2593,2597,2601,2605,2609,2613,2617,2621,2625,2629],{"type":43,"tag":134,"props":2578,"children":2579},{"style":1762},[2580],{"type":49,"value":1765},{"type":43,"tag":134,"props":2582,"children":2583},{"style":223},[2584],{"type":49,"value":251},{"type":43,"tag":134,"props":2586,"children":2587},{"style":151},[2588],{"type":49,"value":1774},{"type":43,"tag":134,"props":2590,"children":2591},{"style":223},[2592],{"type":49,"value":1779},{"type":43,"tag":134,"props":2594,"children":2595},{"style":151},[2596],{"type":49,"value":1784},{"type":43,"tag":134,"props":2598,"children":2599},{"style":223},[2600],{"type":49,"value":1789},{"type":43,"tag":134,"props":2602,"children":2603},{"style":382},[2604],{"type":49,"value":1587},{"type":43,"tag":134,"props":2606,"children":2607},{"style":223},[2608],{"type":49,"value":1798},{"type":43,"tag":134,"props":2610,"children":2611},{"style":223},[2612],{"type":49,"value":1803},{"type":43,"tag":134,"props":2614,"children":2615},{"style":223},[2616],{"type":49,"value":379},{"type":43,"tag":134,"props":2618,"children":2619},{"style":617},[2620],{"type":49,"value":1812},{"type":43,"tag":134,"props":2622,"children":2623},{"style":223},[2624],{"type":49,"value":1817},{"type":43,"tag":134,"props":2626,"children":2627},{"style":151},[2628],{"type":49,"value":1822},{"type":43,"tag":134,"props":2630,"children":2631},{"style":223},[2632],{"type":49,"value":1827},{"type":43,"tag":134,"props":2634,"children":2636},{"class":136,"line":2635},50,[2637,2641,2645],{"type":43,"tag":134,"props":2638,"children":2639},{"style":382},[2640],{"type":49,"value":1835},{"type":43,"tag":134,"props":2642,"children":2643},{"style":238},[2644],{"type":49,"value":1840},{"type":43,"tag":134,"props":2646,"children":2647},{"style":223},[2648],{"type":49,"value":256},{"type":43,"tag":134,"props":2650,"children":2652},{"class":136,"line":2651},51,[2653,2657,2661,2665,2670,2674,2678,2682,2686,2690,2694,2698,2702,2706,2710,2714],{"type":43,"tag":134,"props":2654,"children":2655},{"style":502},[2656],{"type":49,"value":1853},{"type":43,"tag":134,"props":2658,"children":2659},{"style":398},[2660],{"type":49,"value":1858},{"type":43,"tag":134,"props":2662,"children":2663},{"style":617},[2664],{"type":49,"value":406},{"type":43,"tag":134,"props":2666,"children":2667},{"style":382},[2668],{"type":49,"value":2669},"RNText",{"type":43,"tag":134,"props":2671,"children":2672},{"style":223},[2673],{"type":49,"value":597},{"type":43,"tag":134,"props":2675,"children":2676},{"style":382},[2677],{"type":49,"value":1876},{"type":43,"tag":134,"props":2679,"children":2680},{"style":223},[2681],{"type":49,"value":597},{"type":43,"tag":134,"props":2683,"children":2684},{"style":223},[2685],{"type":49,"value":379},{"type":43,"tag":134,"props":2687,"children":2688},{"style":617},[2689],{"type":49,"value":1812},{"type":43,"tag":134,"props":2691,"children":2692},{"style":223},[2693],{"type":49,"value":251},{"type":43,"tag":134,"props":2695,"children":2696},{"style":223},[2697],{"type":49,"value":283},{"type":43,"tag":134,"props":2699,"children":2700},{"style":157},[2701],{"type":49,"value":1901},{"type":43,"tag":134,"props":2703,"children":2704},{"style":223},[2705],{"type":49,"value":246},{"type":43,"tag":134,"props":2707,"children":2708},{"style":223},[2709],{"type":49,"value":1450},{"type":43,"tag":134,"props":2711,"children":2712},{"style":617},[2713],{"type":49,"value":424},{"type":43,"tag":134,"props":2715,"children":2716},{"style":223},[2717],{"type":49,"value":429},{"type":43,"tag":134,"props":2719,"children":2721},{"class":136,"line":2720},52,[2722],{"type":43,"tag":134,"props":2723,"children":2724},{"style":223},[2725],{"type":49,"value":787},{"type":43,"tag":134,"props":2727,"children":2729},{"class":136,"line":2728},53,[2730,2735,2739,2743,2747,2751,2756,2760],{"type":43,"tag":134,"props":2731,"children":2732},{"style":382},[2733],{"type":49,"value":2734},"Text",{"type":43,"tag":134,"props":2736,"children":2737},{"style":223},[2738],{"type":49,"value":1779},{"type":43,"tag":134,"props":2740,"children":2741},{"style":382},[2742],{"type":49,"value":2509},{"type":43,"tag":134,"props":2744,"children":2745},{"style":223},[2746],{"type":49,"value":547},{"type":43,"tag":134,"props":2748,"children":2749},{"style":223},[2750],{"type":49,"value":283},{"type":43,"tag":134,"props":2752,"children":2753},{"style":157},[2754],{"type":49,"value":2755},"CSS(Text)",{"type":43,"tag":134,"props":2757,"children":2758},{"style":223},[2759],{"type":49,"value":246},{"type":43,"tag":134,"props":2761,"children":2762},{"style":223},[2763],{"type":49,"value":429},{"type":43,"tag":134,"props":2765,"children":2767},{"class":136,"line":2766},54,[2768],{"type":43,"tag":134,"props":2769,"children":2770},{"emptyLinePlaceholder":488},[2771],{"type":49,"value":491},{"type":43,"tag":134,"props":2773,"children":2775},{"class":136,"line":2774},55,[2776],{"type":43,"tag":134,"props":2777,"children":2778},{"style":141},[2779],{"type":49,"value":2780},"\u002F\u002F ScrollView\n",{"type":43,"tag":134,"props":2782,"children":2784},{"class":136,"line":2783},56,[2785,2789,2793,2798,2802],{"type":43,"tag":134,"props":2786,"children":2787},{"style":502},[2788],{"type":49,"value":722},{"type":43,"tag":134,"props":2790,"children":2791},{"style":238},[2792],{"type":49,"value":1742},{"type":43,"tag":134,"props":2794,"children":2795},{"style":382},[2796],{"type":49,"value":2797}," ScrollView ",{"type":43,"tag":134,"props":2799,"children":2800},{"style":223},[2801],{"type":49,"value":547},{"type":43,"tag":134,"props":2803,"children":2804},{"style":382},[2805],{"type":49,"value":1756},{"type":43,"tag":134,"props":2807,"children":2809},{"class":136,"line":2808},57,[2810,2814,2818,2822,2826,2830,2834,2838,2842,2846],{"type":43,"tag":134,"props":2811,"children":2812},{"style":1762},[2813],{"type":49,"value":1765},{"type":43,"tag":134,"props":2815,"children":2816},{"style":223},[2817],{"type":49,"value":251},{"type":43,"tag":134,"props":2819,"children":2820},{"style":151},[2821],{"type":49,"value":1774},{"type":43,"tag":134,"props":2823,"children":2824},{"style":223},[2825],{"type":49,"value":1779},{"type":43,"tag":134,"props":2827,"children":2828},{"style":151},[2829],{"type":49,"value":1784},{"type":43,"tag":134,"props":2831,"children":2832},{"style":223},[2833],{"type":49,"value":1789},{"type":43,"tag":134,"props":2835,"children":2836},{"style":382},[2837],{"type":49,"value":1629},{"type":43,"tag":134,"props":2839,"children":2840},{"style":223},[2841],{"type":49,"value":1798},{"type":43,"tag":134,"props":2843,"children":2844},{"style":223},[2845],{"type":49,"value":1803},{"type":43,"tag":134,"props":2847,"children":2848},{"style":223},[2849],{"type":49,"value":256},{"type":43,"tag":134,"props":2851,"children":2853},{"class":136,"line":2852},58,[2854,2859,2863,2867],{"type":43,"tag":134,"props":2855,"children":2856},{"style":617},[2857],{"type":49,"value":2858},"    className",{"type":43,"tag":134,"props":2860,"children":2861},{"style":223},[2862],{"type":49,"value":1817},{"type":43,"tag":134,"props":2864,"children":2865},{"style":151},[2866],{"type":49,"value":1822},{"type":43,"tag":134,"props":2868,"children":2869},{"style":223},[2870],{"type":49,"value":429},{"type":43,"tag":134,"props":2872,"children":2874},{"class":136,"line":2873},59,[2875,2880,2884,2888],{"type":43,"tag":134,"props":2876,"children":2877},{"style":617},[2878],{"type":49,"value":2879},"    contentContainerClassName",{"type":43,"tag":134,"props":2881,"children":2882},{"style":223},[2883],{"type":49,"value":1817},{"type":43,"tag":134,"props":2885,"children":2886},{"style":151},[2887],{"type":49,"value":1822},{"type":43,"tag":134,"props":2889,"children":2890},{"style":223},[2891],{"type":49,"value":429},{"type":43,"tag":134,"props":2893,"children":2895},{"class":136,"line":2894},60,[2896],{"type":43,"tag":134,"props":2897,"children":2898},{"style":223},[2899],{"type":49,"value":302},{"type":43,"tag":134,"props":2901,"children":2903},{"class":136,"line":2902},61,[2904,2908,2912],{"type":43,"tag":134,"props":2905,"children":2906},{"style":382},[2907],{"type":49,"value":1835},{"type":43,"tag":134,"props":2909,"children":2910},{"style":238},[2911],{"type":49,"value":1840},{"type":43,"tag":134,"props":2913,"children":2914},{"style":223},[2915],{"type":49,"value":256},{"type":43,"tag":134,"props":2917,"children":2919},{"class":136,"line":2918},62,[2920,2924,2928,2932,2937,2941,2945,2949],{"type":43,"tag":134,"props":2921,"children":2922},{"style":502},[2923],{"type":49,"value":1853},{"type":43,"tag":134,"props":2925,"children":2926},{"style":398},[2927],{"type":49,"value":1858},{"type":43,"tag":134,"props":2929,"children":2930},{"style":617},[2931],{"type":49,"value":406},{"type":43,"tag":134,"props":2933,"children":2934},{"style":382},[2935],{"type":49,"value":2936},"RNScrollView",{"type":43,"tag":134,"props":2938,"children":2939},{"style":223},[2940],{"type":49,"value":597},{"type":43,"tag":134,"props":2942,"children":2943},{"style":382},[2944],{"type":49,"value":1876},{"type":43,"tag":134,"props":2946,"children":2947},{"style":223},[2948],{"type":49,"value":597},{"type":43,"tag":134,"props":2950,"children":2951},{"style":223},[2952],{"type":49,"value":256},{"type":43,"tag":134,"props":2954,"children":2956},{"class":136,"line":2955},63,[2957,2961,2965,2969,2973,2977],{"type":43,"tag":134,"props":2958,"children":2959},{"style":617},[2960],{"type":49,"value":2858},{"type":43,"tag":134,"props":2962,"children":2963},{"style":223},[2964],{"type":49,"value":251},{"type":43,"tag":134,"props":2966,"children":2967},{"style":223},[2968],{"type":49,"value":283},{"type":43,"tag":134,"props":2970,"children":2971},{"style":157},[2972],{"type":49,"value":1901},{"type":43,"tag":134,"props":2974,"children":2975},{"style":223},[2976],{"type":49,"value":246},{"type":43,"tag":134,"props":2978,"children":2979},{"style":223},[2980],{"type":49,"value":635},{"type":43,"tag":134,"props":2982,"children":2984},{"class":136,"line":2983},64,[2985,2989,2993,2997,3002,3006],{"type":43,"tag":134,"props":2986,"children":2987},{"style":617},[2988],{"type":49,"value":2879},{"type":43,"tag":134,"props":2990,"children":2991},{"style":223},[2992],{"type":49,"value":251},{"type":43,"tag":134,"props":2994,"children":2995},{"style":223},[2996],{"type":49,"value":283},{"type":43,"tag":134,"props":2998,"children":2999},{"style":157},[3000],{"type":49,"value":3001},"contentContainerStyle",{"type":43,"tag":134,"props":3003,"children":3004},{"style":223},[3005],{"type":49,"value":246},{"type":43,"tag":134,"props":3007,"children":3008},{"style":223},[3009],{"type":49,"value":635},{"type":43,"tag":134,"props":3011,"children":3013},{"class":136,"line":3012},65,[3014,3019,3023],{"type":43,"tag":134,"props":3015,"children":3016},{"style":223},[3017],{"type":49,"value":3018},"  }",{"type":43,"tag":134,"props":3020,"children":3021},{"style":617},[3022],{"type":49,"value":424},{"type":43,"tag":134,"props":3024,"children":3025},{"style":223},[3026],{"type":49,"value":429},{"type":43,"tag":134,"props":3028,"children":3030},{"class":136,"line":3029},66,[3031],{"type":43,"tag":134,"props":3032,"children":3033},{"style":223},[3034],{"type":49,"value":787},{"type":43,"tag":134,"props":3036,"children":3038},{"class":136,"line":3037},67,[3039,3044,3048,3052,3056,3060,3065,3069],{"type":43,"tag":134,"props":3040,"children":3041},{"style":382},[3042],{"type":49,"value":3043},"ScrollView",{"type":43,"tag":134,"props":3045,"children":3046},{"style":223},[3047],{"type":49,"value":1779},{"type":43,"tag":134,"props":3049,"children":3050},{"style":382},[3051],{"type":49,"value":2509},{"type":43,"tag":134,"props":3053,"children":3054},{"style":223},[3055],{"type":49,"value":547},{"type":43,"tag":134,"props":3057,"children":3058},{"style":223},[3059],{"type":49,"value":283},{"type":43,"tag":134,"props":3061,"children":3062},{"style":157},[3063],{"type":49,"value":3064},"CSS(ScrollView)",{"type":43,"tag":134,"props":3066,"children":3067},{"style":223},[3068],{"type":49,"value":246},{"type":43,"tag":134,"props":3070,"children":3071},{"style":223},[3072],{"type":49,"value":429},{"type":43,"tag":134,"props":3074,"children":3076},{"class":136,"line":3075},68,[3077],{"type":43,"tag":134,"props":3078,"children":3079},{"emptyLinePlaceholder":488},[3080],{"type":49,"value":491},{"type":43,"tag":134,"props":3082,"children":3084},{"class":136,"line":3083},69,[3085],{"type":43,"tag":134,"props":3086,"children":3087},{"style":141},[3088],{"type":49,"value":3089},"\u002F\u002F Pressable\n",{"type":43,"tag":134,"props":3091,"children":3093},{"class":136,"line":3092},70,[3094,3098,3102,3107,3111],{"type":43,"tag":134,"props":3095,"children":3096},{"style":502},[3097],{"type":49,"value":722},{"type":43,"tag":134,"props":3099,"children":3100},{"style":238},[3101],{"type":49,"value":1742},{"type":43,"tag":134,"props":3103,"children":3104},{"style":382},[3105],{"type":49,"value":3106}," Pressable ",{"type":43,"tag":134,"props":3108,"children":3109},{"style":223},[3110],{"type":49,"value":547},{"type":43,"tag":134,"props":3112,"children":3113},{"style":382},[3114],{"type":49,"value":1756},{"type":43,"tag":134,"props":3116,"children":3118},{"class":136,"line":3117},71,[3119,3123,3127,3131,3135,3139,3143,3147,3151,3155,3159,3163,3167,3171],{"type":43,"tag":134,"props":3120,"children":3121},{"style":1762},[3122],{"type":49,"value":1765},{"type":43,"tag":134,"props":3124,"children":3125},{"style":223},[3126],{"type":49,"value":251},{"type":43,"tag":134,"props":3128,"children":3129},{"style":151},[3130],{"type":49,"value":1774},{"type":43,"tag":134,"props":3132,"children":3133},{"style":223},[3134],{"type":49,"value":1779},{"type":43,"tag":134,"props":3136,"children":3137},{"style":151},[3138],{"type":49,"value":1784},{"type":43,"tag":134,"props":3140,"children":3141},{"style":223},[3142],{"type":49,"value":1789},{"type":43,"tag":134,"props":3144,"children":3145},{"style":382},[3146],{"type":49,"value":1608},{"type":43,"tag":134,"props":3148,"children":3149},{"style":223},[3150],{"type":49,"value":1798},{"type":43,"tag":134,"props":3152,"children":3153},{"style":223},[3154],{"type":49,"value":1803},{"type":43,"tag":134,"props":3156,"children":3157},{"style":223},[3158],{"type":49,"value":379},{"type":43,"tag":134,"props":3160,"children":3161},{"style":617},[3162],{"type":49,"value":1812},{"type":43,"tag":134,"props":3164,"children":3165},{"style":223},[3166],{"type":49,"value":1817},{"type":43,"tag":134,"props":3168,"children":3169},{"style":151},[3170],{"type":49,"value":1822},{"type":43,"tag":134,"props":3172,"children":3173},{"style":223},[3174],{"type":49,"value":1827},{"type":43,"tag":134,"props":3176,"children":3178},{"class":136,"line":3177},72,[3179,3183,3187],{"type":43,"tag":134,"props":3180,"children":3181},{"style":382},[3182],{"type":49,"value":1835},{"type":43,"tag":134,"props":3184,"children":3185},{"style":238},[3186],{"type":49,"value":1840},{"type":43,"tag":134,"props":3188,"children":3189},{"style":223},[3190],{"type":49,"value":256},{"type":43,"tag":134,"props":3192,"children":3194},{"class":136,"line":3193},73,[3195,3199,3203,3207,3212,3216,3220,3224,3228,3232,3236,3240,3244,3248,3252,3256],{"type":43,"tag":134,"props":3196,"children":3197},{"style":502},[3198],{"type":49,"value":1853},{"type":43,"tag":134,"props":3200,"children":3201},{"style":398},[3202],{"type":49,"value":1858},{"type":43,"tag":134,"props":3204,"children":3205},{"style":617},[3206],{"type":49,"value":406},{"type":43,"tag":134,"props":3208,"children":3209},{"style":382},[3210],{"type":49,"value":3211},"RNPressable",{"type":43,"tag":134,"props":3213,"children":3214},{"style":223},[3215],{"type":49,"value":597},{"type":43,"tag":134,"props":3217,"children":3218},{"style":382},[3219],{"type":49,"value":1876},{"type":43,"tag":134,"props":3221,"children":3222},{"style":223},[3223],{"type":49,"value":597},{"type":43,"tag":134,"props":3225,"children":3226},{"style":223},[3227],{"type":49,"value":379},{"type":43,"tag":134,"props":3229,"children":3230},{"style":617},[3231],{"type":49,"value":1812},{"type":43,"tag":134,"props":3233,"children":3234},{"style":223},[3235],{"type":49,"value":251},{"type":43,"tag":134,"props":3237,"children":3238},{"style":223},[3239],{"type":49,"value":283},{"type":43,"tag":134,"props":3241,"children":3242},{"style":157},[3243],{"type":49,"value":1901},{"type":43,"tag":134,"props":3245,"children":3246},{"style":223},[3247],{"type":49,"value":246},{"type":43,"tag":134,"props":3249,"children":3250},{"style":223},[3251],{"type":49,"value":1450},{"type":43,"tag":134,"props":3253,"children":3254},{"style":617},[3255],{"type":49,"value":424},{"type":43,"tag":134,"props":3257,"children":3258},{"style":223},[3259],{"type":49,"value":429},{"type":43,"tag":134,"props":3261,"children":3263},{"class":136,"line":3262},74,[3264],{"type":43,"tag":134,"props":3265,"children":3266},{"style":223},[3267],{"type":49,"value":787},{"type":43,"tag":134,"props":3269,"children":3271},{"class":136,"line":3270},75,[3272,3277,3281,3285,3289,3293,3298,3302],{"type":43,"tag":134,"props":3273,"children":3274},{"style":382},[3275],{"type":49,"value":3276},"Pressable",{"type":43,"tag":134,"props":3278,"children":3279},{"style":223},[3280],{"type":49,"value":1779},{"type":43,"tag":134,"props":3282,"children":3283},{"style":382},[3284],{"type":49,"value":2509},{"type":43,"tag":134,"props":3286,"children":3287},{"style":223},[3288],{"type":49,"value":547},{"type":43,"tag":134,"props":3290,"children":3291},{"style":223},[3292],{"type":49,"value":283},{"type":43,"tag":134,"props":3294,"children":3295},{"style":157},[3296],{"type":49,"value":3297},"CSS(Pressable)",{"type":43,"tag":134,"props":3299,"children":3300},{"style":223},[3301],{"type":49,"value":246},{"type":43,"tag":134,"props":3303,"children":3304},{"style":223},[3305],{"type":49,"value":429},{"type":43,"tag":134,"props":3307,"children":3309},{"class":136,"line":3308},76,[3310],{"type":43,"tag":134,"props":3311,"children":3312},{"emptyLinePlaceholder":488},[3313],{"type":49,"value":491},{"type":43,"tag":134,"props":3315,"children":3317},{"class":136,"line":3316},77,[3318],{"type":43,"tag":134,"props":3319,"children":3320},{"style":141},[3321],{"type":49,"value":3322},"\u002F\u002F TextInput\n",{"type":43,"tag":134,"props":3324,"children":3326},{"class":136,"line":3325},78,[3327,3331,3335,3340,3344],{"type":43,"tag":134,"props":3328,"children":3329},{"style":502},[3330],{"type":49,"value":722},{"type":43,"tag":134,"props":3332,"children":3333},{"style":238},[3334],{"type":49,"value":1742},{"type":43,"tag":134,"props":3336,"children":3337},{"style":382},[3338],{"type":49,"value":3339}," TextInput ",{"type":43,"tag":134,"props":3341,"children":3342},{"style":223},[3343],{"type":49,"value":547},{"type":43,"tag":134,"props":3345,"children":3346},{"style":382},[3347],{"type":49,"value":1756},{"type":43,"tag":134,"props":3349,"children":3351},{"class":136,"line":3350},79,[3352,3356,3360,3364,3368,3372,3376,3380,3384,3388,3392,3396,3400,3404],{"type":43,"tag":134,"props":3353,"children":3354},{"style":1762},[3355],{"type":49,"value":1765},{"type":43,"tag":134,"props":3357,"children":3358},{"style":223},[3359],{"type":49,"value":251},{"type":43,"tag":134,"props":3361,"children":3362},{"style":151},[3363],{"type":49,"value":1774},{"type":43,"tag":134,"props":3365,"children":3366},{"style":223},[3367],{"type":49,"value":1779},{"type":43,"tag":134,"props":3369,"children":3370},{"style":151},[3371],{"type":49,"value":1784},{"type":43,"tag":134,"props":3373,"children":3374},{"style":223},[3375],{"type":49,"value":1789},{"type":43,"tag":134,"props":3377,"children":3378},{"style":382},[3379],{"type":49,"value":1671},{"type":43,"tag":134,"props":3381,"children":3382},{"style":223},[3383],{"type":49,"value":1798},{"type":43,"tag":134,"props":3385,"children":3386},{"style":223},[3387],{"type":49,"value":1803},{"type":43,"tag":134,"props":3389,"children":3390},{"style":223},[3391],{"type":49,"value":379},{"type":43,"tag":134,"props":3393,"children":3394},{"style":617},[3395],{"type":49,"value":1812},{"type":43,"tag":134,"props":3397,"children":3398},{"style":223},[3399],{"type":49,"value":1817},{"type":43,"tag":134,"props":3401,"children":3402},{"style":151},[3403],{"type":49,"value":1822},{"type":43,"tag":134,"props":3405,"children":3406},{"style":223},[3407],{"type":49,"value":1827},{"type":43,"tag":134,"props":3409,"children":3411},{"class":136,"line":3410},80,[3412,3416,3420],{"type":43,"tag":134,"props":3413,"children":3414},{"style":382},[3415],{"type":49,"value":1835},{"type":43,"tag":134,"props":3417,"children":3418},{"style":238},[3419],{"type":49,"value":1840},{"type":43,"tag":134,"props":3421,"children":3422},{"style":223},[3423],{"type":49,"value":256},{"type":43,"tag":134,"props":3425,"children":3427},{"class":136,"line":3426},81,[3428,3432,3436,3440,3445,3449,3453,3457,3461,3465,3469,3473,3477,3481,3485,3489],{"type":43,"tag":134,"props":3429,"children":3430},{"style":502},[3431],{"type":49,"value":1853},{"type":43,"tag":134,"props":3433,"children":3434},{"style":398},[3435],{"type":49,"value":1858},{"type":43,"tag":134,"props":3437,"children":3438},{"style":617},[3439],{"type":49,"value":406},{"type":43,"tag":134,"props":3441,"children":3442},{"style":382},[3443],{"type":49,"value":3444},"RNTextInput",{"type":43,"tag":134,"props":3446,"children":3447},{"style":223},[3448],{"type":49,"value":597},{"type":43,"tag":134,"props":3450,"children":3451},{"style":382},[3452],{"type":49,"value":1876},{"type":43,"tag":134,"props":3454,"children":3455},{"style":223},[3456],{"type":49,"value":597},{"type":43,"tag":134,"props":3458,"children":3459},{"style":223},[3460],{"type":49,"value":379},{"type":43,"tag":134,"props":3462,"children":3463},{"style":617},[3464],{"type":49,"value":1812},{"type":43,"tag":134,"props":3466,"children":3467},{"style":223},[3468],{"type":49,"value":251},{"type":43,"tag":134,"props":3470,"children":3471},{"style":223},[3472],{"type":49,"value":283},{"type":43,"tag":134,"props":3474,"children":3475},{"style":157},[3476],{"type":49,"value":1901},{"type":43,"tag":134,"props":3478,"children":3479},{"style":223},[3480],{"type":49,"value":246},{"type":43,"tag":134,"props":3482,"children":3483},{"style":223},[3484],{"type":49,"value":1450},{"type":43,"tag":134,"props":3486,"children":3487},{"style":617},[3488],{"type":49,"value":424},{"type":43,"tag":134,"props":3490,"children":3491},{"style":223},[3492],{"type":49,"value":429},{"type":43,"tag":134,"props":3494,"children":3496},{"class":136,"line":3495},82,[3497],{"type":43,"tag":134,"props":3498,"children":3499},{"style":223},[3500],{"type":49,"value":787},{"type":43,"tag":134,"props":3502,"children":3504},{"class":136,"line":3503},83,[3505,3510,3514,3518,3522,3526,3531,3535],{"type":43,"tag":134,"props":3506,"children":3507},{"style":382},[3508],{"type":49,"value":3509},"TextInput",{"type":43,"tag":134,"props":3511,"children":3512},{"style":223},[3513],{"type":49,"value":1779},{"type":43,"tag":134,"props":3515,"children":3516},{"style":382},[3517],{"type":49,"value":2509},{"type":43,"tag":134,"props":3519,"children":3520},{"style":223},[3521],{"type":49,"value":547},{"type":43,"tag":134,"props":3523,"children":3524},{"style":223},[3525],{"type":49,"value":283},{"type":43,"tag":134,"props":3527,"children":3528},{"style":157},[3529],{"type":49,"value":3530},"CSS(TextInput)",{"type":43,"tag":134,"props":3532,"children":3533},{"style":223},[3534],{"type":49,"value":246},{"type":43,"tag":134,"props":3536,"children":3537},{"style":223},[3538],{"type":49,"value":429},{"type":43,"tag":134,"props":3540,"children":3542},{"class":136,"line":3541},84,[3543],{"type":43,"tag":134,"props":3544,"children":3545},{"emptyLinePlaceholder":488},[3546],{"type":49,"value":491},{"type":43,"tag":134,"props":3548,"children":3550},{"class":136,"line":3549},85,[3551],{"type":43,"tag":134,"props":3552,"children":3553},{"style":141},[3554],{"type":49,"value":3555},"\u002F\u002F AnimatedScrollView\n",{"type":43,"tag":134,"props":3557,"children":3559},{"class":136,"line":3558},86,[3560,3564,3568,3573,3577],{"type":43,"tag":134,"props":3561,"children":3562},{"style":502},[3563],{"type":49,"value":722},{"type":43,"tag":134,"props":3565,"children":3566},{"style":238},[3567],{"type":49,"value":1742},{"type":43,"tag":134,"props":3569,"children":3570},{"style":382},[3571],{"type":49,"value":3572}," AnimatedScrollView ",{"type":43,"tag":134,"props":3574,"children":3575},{"style":223},[3576],{"type":49,"value":547},{"type":43,"tag":134,"props":3578,"children":3579},{"style":382},[3580],{"type":49,"value":1756},{"type":43,"tag":134,"props":3582,"children":3584},{"class":136,"line":3583},87,[3585,3589,3593,3597,3601,3605,3609,3614,3618,3622,3626,3630],{"type":43,"tag":134,"props":3586,"children":3587},{"style":1762},[3588],{"type":49,"value":1765},{"type":43,"tag":134,"props":3590,"children":3591},{"style":223},[3592],{"type":49,"value":251},{"type":43,"tag":134,"props":3594,"children":3595},{"style":151},[3596],{"type":49,"value":1774},{"type":43,"tag":134,"props":3598,"children":3599},{"style":223},[3600],{"type":49,"value":1779},{"type":43,"tag":134,"props":3602,"children":3603},{"style":151},[3604],{"type":49,"value":1784},{"type":43,"tag":134,"props":3606,"children":3607},{"style":223},[3608],{"type":49,"value":1789},{"type":43,"tag":134,"props":3610,"children":3611},{"style":382},[3612],{"type":49,"value":3613}," Animated",{"type":43,"tag":134,"props":3615,"children":3616},{"style":223},[3617],{"type":49,"value":1779},{"type":43,"tag":134,"props":3619,"children":3620},{"style":382},[3621],{"type":49,"value":3043},{"type":43,"tag":134,"props":3623,"children":3624},{"style":223},[3625],{"type":49,"value":1798},{"type":43,"tag":134,"props":3627,"children":3628},{"style":223},[3629],{"type":49,"value":1803},{"type":43,"tag":134,"props":3631,"children":3632},{"style":223},[3633],{"type":49,"value":256},{"type":43,"tag":134,"props":3635,"children":3637},{"class":136,"line":3636},88,[3638,3642,3646,3650],{"type":43,"tag":134,"props":3639,"children":3640},{"style":617},[3641],{"type":49,"value":2858},{"type":43,"tag":134,"props":3643,"children":3644},{"style":223},[3645],{"type":49,"value":1817},{"type":43,"tag":134,"props":3647,"children":3648},{"style":151},[3649],{"type":49,"value":1822},{"type":43,"tag":134,"props":3651,"children":3652},{"style":223},[3653],{"type":49,"value":429},{"type":43,"tag":134,"props":3655,"children":3657},{"class":136,"line":3656},89,[3658,3663,3667,3671],{"type":43,"tag":134,"props":3659,"children":3660},{"style":617},[3661],{"type":49,"value":3662},"    contentClassName",{"type":43,"tag":134,"props":3664,"children":3665},{"style":223},[3666],{"type":49,"value":1817},{"type":43,"tag":134,"props":3668,"children":3669},{"style":151},[3670],{"type":49,"value":1822},{"type":43,"tag":134,"props":3672,"children":3673},{"style":223},[3674],{"type":49,"value":429},{"type":43,"tag":134,"props":3676,"children":3678},{"class":136,"line":3677},90,[3679,3683,3687,3691],{"type":43,"tag":134,"props":3680,"children":3681},{"style":617},[3682],{"type":49,"value":2879},{"type":43,"tag":134,"props":3684,"children":3685},{"style":223},[3686],{"type":49,"value":1817},{"type":43,"tag":134,"props":3688,"children":3689},{"style":151},[3690],{"type":49,"value":1822},{"type":43,"tag":134,"props":3692,"children":3693},{"style":223},[3694],{"type":49,"value":429},{"type":43,"tag":134,"props":3696,"children":3698},{"class":136,"line":3697},91,[3699],{"type":43,"tag":134,"props":3700,"children":3701},{"style":223},[3702],{"type":49,"value":302},{"type":43,"tag":134,"props":3704,"children":3706},{"class":136,"line":3705},92,[3707,3711,3715],{"type":43,"tag":134,"props":3708,"children":3709},{"style":382},[3710],{"type":49,"value":1835},{"type":43,"tag":134,"props":3712,"children":3713},{"style":238},[3714],{"type":49,"value":1840},{"type":43,"tag":134,"props":3716,"children":3717},{"style":223},[3718],{"type":49,"value":256},{"type":43,"tag":134,"props":3720,"children":3722},{"class":136,"line":3721},93,[3723,3727,3731,3735,3740,3744,3748,3752,3756,3760],{"type":43,"tag":134,"props":3724,"children":3725},{"style":502},[3726],{"type":49,"value":1853},{"type":43,"tag":134,"props":3728,"children":3729},{"style":398},[3730],{"type":49,"value":1858},{"type":43,"tag":134,"props":3732,"children":3733},{"style":617},[3734],{"type":49,"value":406},{"type":43,"tag":134,"props":3736,"children":3737},{"style":382},[3738],{"type":49,"value":3739},"Animated",{"type":43,"tag":134,"props":3741,"children":3742},{"style":223},[3743],{"type":49,"value":1779},{"type":43,"tag":134,"props":3745,"children":3746},{"style":382},[3747],{"type":49,"value":3043},{"type":43,"tag":134,"props":3749,"children":3750},{"style":223},[3751],{"type":49,"value":597},{"type":43,"tag":134,"props":3753,"children":3754},{"style":382},[3755],{"type":49,"value":1876},{"type":43,"tag":134,"props":3757,"children":3758},{"style":223},[3759],{"type":49,"value":597},{"type":43,"tag":134,"props":3761,"children":3762},{"style":223},[3763],{"type":49,"value":256},{"type":43,"tag":134,"props":3765,"children":3767},{"class":136,"line":3766},94,[3768,3772,3776,3780,3784,3788],{"type":43,"tag":134,"props":3769,"children":3770},{"style":617},[3771],{"type":49,"value":2858},{"type":43,"tag":134,"props":3773,"children":3774},{"style":223},[3775],{"type":49,"value":251},{"type":43,"tag":134,"props":3777,"children":3778},{"style":223},[3779],{"type":49,"value":283},{"type":43,"tag":134,"props":3781,"children":3782},{"style":157},[3783],{"type":49,"value":1901},{"type":43,"tag":134,"props":3785,"children":3786},{"style":223},[3787],{"type":49,"value":246},{"type":43,"tag":134,"props":3789,"children":3790},{"style":223},[3791],{"type":49,"value":635},{"type":43,"tag":134,"props":3793,"children":3795},{"class":136,"line":3794},95,[3796,3800,3804,3808,3812,3816],{"type":43,"tag":134,"props":3797,"children":3798},{"style":617},[3799],{"type":49,"value":3662},{"type":43,"tag":134,"props":3801,"children":3802},{"style":223},[3803],{"type":49,"value":251},{"type":43,"tag":134,"props":3805,"children":3806},{"style":223},[3807],{"type":49,"value":283},{"type":43,"tag":134,"props":3809,"children":3810},{"style":157},[3811],{"type":49,"value":3001},{"type":43,"tag":134,"props":3813,"children":3814},{"style":223},[3815],{"type":49,"value":246},{"type":43,"tag":134,"props":3817,"children":3818},{"style":223},[3819],{"type":49,"value":635},{"type":43,"tag":134,"props":3821,"children":3823},{"class":136,"line":3822},96,[3824,3828,3832,3836,3840,3844],{"type":43,"tag":134,"props":3825,"children":3826},{"style":617},[3827],{"type":49,"value":2879},{"type":43,"tag":134,"props":3829,"children":3830},{"style":223},[3831],{"type":49,"value":251},{"type":43,"tag":134,"props":3833,"children":3834},{"style":223},[3835],{"type":49,"value":283},{"type":43,"tag":134,"props":3837,"children":3838},{"style":157},[3839],{"type":49,"value":3001},{"type":43,"tag":134,"props":3841,"children":3842},{"style":223},[3843],{"type":49,"value":246},{"type":43,"tag":134,"props":3845,"children":3846},{"style":223},[3847],{"type":49,"value":635},{"type":43,"tag":134,"props":3849,"children":3851},{"class":136,"line":3850},97,[3852,3856,3860],{"type":43,"tag":134,"props":3853,"children":3854},{"style":223},[3855],{"type":49,"value":3018},{"type":43,"tag":134,"props":3857,"children":3858},{"style":617},[3859],{"type":49,"value":424},{"type":43,"tag":134,"props":3861,"children":3862},{"style":223},[3863],{"type":49,"value":429},{"type":43,"tag":134,"props":3865,"children":3867},{"class":136,"line":3866},98,[3868],{"type":43,"tag":134,"props":3869,"children":3870},{"style":223},[3871],{"type":49,"value":787},{"type":43,"tag":134,"props":3873,"children":3875},{"class":136,"line":3874},99,[3876],{"type":43,"tag":134,"props":3877,"children":3878},{"emptyLinePlaceholder":488},[3879],{"type":49,"value":491},{"type":43,"tag":134,"props":3881,"children":3883},{"class":136,"line":3882},100,[3884],{"type":43,"tag":134,"props":3885,"children":3886},{"style":141},[3887],{"type":49,"value":3888},"\u002F\u002F TouchableHighlight with underlayColor extraction\n",{"type":43,"tag":134,"props":3890,"children":3892},{"class":136,"line":3891},101,[3893,3898,3903],{"type":43,"tag":134,"props":3894,"children":3895},{"style":238},[3896],{"type":49,"value":3897},"function",{"type":43,"tag":134,"props":3899,"children":3900},{"style":398},[3901],{"type":49,"value":3902}," XXTouchableHighlight",{"type":43,"tag":134,"props":3904,"children":3905},{"style":223},[3906],{"type":49,"value":3907},"(\n",{"type":43,"tag":134,"props":3909,"children":3911},{"class":136,"line":3910},102,[3912,3916,3920,3924,3928,3932,3936,3940],{"type":43,"tag":134,"props":3913,"children":3914},{"style":1762},[3915],{"type":49,"value":1765},{"type":43,"tag":134,"props":3917,"children":3918},{"style":223},[3919],{"type":49,"value":251},{"type":43,"tag":134,"props":3921,"children":3922},{"style":151},[3923],{"type":49,"value":1774},{"type":43,"tag":134,"props":3925,"children":3926},{"style":223},[3927],{"type":49,"value":1779},{"type":43,"tag":134,"props":3929,"children":3930},{"style":151},[3931],{"type":49,"value":1784},{"type":43,"tag":134,"props":3933,"children":3934},{"style":223},[3935],{"type":49,"value":1789},{"type":43,"tag":134,"props":3937,"children":3938},{"style":382},[3939],{"type":49,"value":1650},{"type":43,"tag":134,"props":3941,"children":3942},{"style":223},[3943],{"type":49,"value":3944},">\n",{"type":43,"tag":134,"props":3946,"children":3948},{"class":136,"line":3947},103,[3949,3953],{"type":43,"tag":134,"props":3950,"children":3951},{"style":223},[3952],{"type":49,"value":424},{"type":43,"tag":134,"props":3954,"children":3955},{"style":223},[3956],{"type":49,"value":256},{"type":43,"tag":134,"props":3958,"children":3960},{"class":136,"line":3959},104,[3961,3966,3970,3975,3979,3984,3988,3992,3996,4001,4005,4010,4014,4018,4022,4026,4030,4035],{"type":43,"tag":134,"props":3962,"children":3963},{"style":238},[3964],{"type":49,"value":3965},"  const",{"type":43,"tag":134,"props":3967,"children":3968},{"style":223},[3969],{"type":49,"value":379},{"type":43,"tag":134,"props":3971,"children":3972},{"style":382},[3973],{"type":49,"value":3974}," underlayColor",{"type":43,"tag":134,"props":3976,"children":3977},{"style":223},[3978],{"type":49,"value":597},{"type":43,"tag":134,"props":3980,"children":3981},{"style":223},[3982],{"type":49,"value":3983}," ...",{"type":43,"tag":134,"props":3985,"children":3986},{"style":382},[3987],{"type":49,"value":1901},{"type":43,"tag":134,"props":3989,"children":3990},{"style":223},[3991],{"type":49,"value":1450},{"type":43,"tag":134,"props":3993,"children":3994},{"style":223},[3995],{"type":49,"value":395},{"type":43,"tag":134,"props":3997,"children":3998},{"style":382},[3999],{"type":49,"value":4000}," StyleSheet",{"type":43,"tag":134,"props":4002,"children":4003},{"style":223},[4004],{"type":49,"value":1779},{"type":43,"tag":134,"props":4006,"children":4007},{"style":398},[4008],{"type":49,"value":4009},"flatten",{"type":43,"tag":134,"props":4011,"children":4012},{"style":617},[4013],{"type":49,"value":406},{"type":43,"tag":134,"props":4015,"children":4016},{"style":382},[4017],{"type":49,"value":2394},{"type":43,"tag":134,"props":4019,"children":4020},{"style":223},[4021],{"type":49,"value":1779},{"type":43,"tag":134,"props":4023,"children":4024},{"style":382},[4025],{"type":49,"value":1901},{"type":43,"tag":134,"props":4027,"children":4028},{"style":617},[4029],{"type":49,"value":1835},{"type":43,"tag":134,"props":4031,"children":4032},{"style":223},[4033],{"type":49,"value":4034},"||",{"type":43,"tag":134,"props":4036,"children":4037},{"style":223},[4038],{"type":49,"value":4039}," {};\n",{"type":43,"tag":134,"props":4041,"children":4043},{"class":136,"line":4042},105,[4044,4048],{"type":43,"tag":134,"props":4045,"children":4046},{"style":502},[4047],{"type":49,"value":1853},{"type":43,"tag":134,"props":4049,"children":4050},{"style":617},[4051],{"type":49,"value":1756},{"type":43,"tag":134,"props":4053,"children":4055},{"class":136,"line":4054},106,[4056,4061],{"type":43,"tag":134,"props":4057,"children":4058},{"style":223},[4059],{"type":49,"value":4060},"    \u003C",{"type":43,"tag":134,"props":4062,"children":4063},{"style":151},[4064],{"type":49,"value":4065},"RNTouchableHighlight\n",{"type":43,"tag":134,"props":4067,"children":4069},{"class":136,"line":4068},107,[4070,4075,4080,4085],{"type":43,"tag":134,"props":4071,"children":4072},{"style":238},[4073],{"type":49,"value":4074},"      underlayColor",{"type":43,"tag":134,"props":4076,"children":4077},{"style":223},[4078],{"type":49,"value":4079},"={",{"type":43,"tag":134,"props":4081,"children":4082},{"style":382},[4083],{"type":49,"value":4084},"underlayColor",{"type":43,"tag":134,"props":4086,"children":4087},{"style":223},[4088],{"type":49,"value":311},{"type":43,"tag":134,"props":4090,"children":4092},{"class":136,"line":4091},108,[4093,4098,4102],{"type":43,"tag":134,"props":4094,"children":4095},{"style":223},[4096],{"type":49,"value":4097},"      {...",{"type":43,"tag":134,"props":4099,"children":4100},{"style":382},[4101],{"type":49,"value":2394},{"type":43,"tag":134,"props":4103,"children":4104},{"style":223},[4105],{"type":49,"value":311},{"type":43,"tag":134,"props":4107,"children":4109},{"class":136,"line":4108},109,[4110,4115,4119,4123],{"type":43,"tag":134,"props":4111,"children":4112},{"style":238},[4113],{"type":49,"value":4114},"      style",{"type":43,"tag":134,"props":4116,"children":4117},{"style":223},[4118],{"type":49,"value":4079},{"type":43,"tag":134,"props":4120,"children":4121},{"style":382},[4122],{"type":49,"value":1901},{"type":43,"tag":134,"props":4124,"children":4125},{"style":223},[4126],{"type":49,"value":311},{"type":43,"tag":134,"props":4128,"children":4130},{"class":136,"line":4129},110,[4131],{"type":43,"tag":134,"props":4132,"children":4133},{"style":223},[4134],{"type":49,"value":4135},"    \u002F>\n",{"type":43,"tag":134,"props":4137,"children":4139},{"class":136,"line":4138},111,[4140,4145],{"type":43,"tag":134,"props":4141,"children":4142},{"style":617},[4143],{"type":49,"value":4144},"  )",{"type":43,"tag":134,"props":4146,"children":4147},{"style":223},[4148],{"type":49,"value":429},{"type":43,"tag":134,"props":4150,"children":4152},{"class":136,"line":4151},112,[4153],{"type":43,"tag":134,"props":4154,"children":4155},{"style":223},[4156],{"type":49,"value":311},{"type":43,"tag":134,"props":4158,"children":4160},{"class":136,"line":4159},113,[4161],{"type":43,"tag":134,"props":4162,"children":4163},{"emptyLinePlaceholder":488},[4164],{"type":49,"value":491},{"type":43,"tag":134,"props":4166,"children":4168},{"class":136,"line":4167},114,[4169,4173,4177,4182,4186],{"type":43,"tag":134,"props":4170,"children":4171},{"style":502},[4172],{"type":49,"value":722},{"type":43,"tag":134,"props":4174,"children":4175},{"style":238},[4176],{"type":49,"value":1742},{"type":43,"tag":134,"props":4178,"children":4179},{"style":382},[4180],{"type":49,"value":4181}," TouchableHighlight ",{"type":43,"tag":134,"props":4183,"children":4184},{"style":223},[4185],{"type":49,"value":547},{"type":43,"tag":134,"props":4187,"children":4188},{"style":382},[4189],{"type":49,"value":1756},{"type":43,"tag":134,"props":4191,"children":4193},{"class":136,"line":4192},115,[4194,4198,4202,4206,4210,4214,4218,4222],{"type":43,"tag":134,"props":4195,"children":4196},{"style":1762},[4197],{"type":49,"value":1765},{"type":43,"tag":134,"props":4199,"children":4200},{"style":223},[4201],{"type":49,"value":251},{"type":43,"tag":134,"props":4203,"children":4204},{"style":151},[4205],{"type":49,"value":1774},{"type":43,"tag":134,"props":4207,"children":4208},{"style":223},[4209],{"type":49,"value":1779},{"type":43,"tag":134,"props":4211,"children":4212},{"style":151},[4213],{"type":49,"value":1784},{"type":43,"tag":134,"props":4215,"children":4216},{"style":223},[4217],{"type":49,"value":1789},{"type":43,"tag":134,"props":4219,"children":4220},{"style":382},[4221],{"type":49,"value":1650},{"type":43,"tag":134,"props":4223,"children":4224},{"style":223},[4225],{"type":49,"value":3944},{"type":43,"tag":134,"props":4227,"children":4229},{"class":136,"line":4228},116,[4230,4234,4238],{"type":43,"tag":134,"props":4231,"children":4232},{"style":382},[4233],{"type":49,"value":1835},{"type":43,"tag":134,"props":4235,"children":4236},{"style":238},[4237],{"type":49,"value":1840},{"type":43,"tag":134,"props":4239,"children":4240},{"style":223},[4241],{"type":49,"value":256},{"type":43,"tag":134,"props":4243,"children":4245},{"class":136,"line":4244},117,[4246,4250,4254,4258,4263,4267,4271,4275,4279,4283,4287,4291,4295,4299,4303,4307],{"type":43,"tag":134,"props":4247,"children":4248},{"style":502},[4249],{"type":49,"value":1853},{"type":43,"tag":134,"props":4251,"children":4252},{"style":398},[4253],{"type":49,"value":1858},{"type":43,"tag":134,"props":4255,"children":4256},{"style":617},[4257],{"type":49,"value":406},{"type":43,"tag":134,"props":4259,"children":4260},{"style":382},[4261],{"type":49,"value":4262},"XXTouchableHighlight",{"type":43,"tag":134,"props":4264,"children":4265},{"style":223},[4266],{"type":49,"value":597},{"type":43,"tag":134,"props":4268,"children":4269},{"style":382},[4270],{"type":49,"value":1876},{"type":43,"tag":134,"props":4272,"children":4273},{"style":223},[4274],{"type":49,"value":597},{"type":43,"tag":134,"props":4276,"children":4277},{"style":223},[4278],{"type":49,"value":379},{"type":43,"tag":134,"props":4280,"children":4281},{"style":617},[4282],{"type":49,"value":1812},{"type":43,"tag":134,"props":4284,"children":4285},{"style":223},[4286],{"type":49,"value":251},{"type":43,"tag":134,"props":4288,"children":4289},{"style":223},[4290],{"type":49,"value":283},{"type":43,"tag":134,"props":4292,"children":4293},{"style":157},[4294],{"type":49,"value":1901},{"type":43,"tag":134,"props":4296,"children":4297},{"style":223},[4298],{"type":49,"value":246},{"type":43,"tag":134,"props":4300,"children":4301},{"style":223},[4302],{"type":49,"value":1450},{"type":43,"tag":134,"props":4304,"children":4305},{"style":617},[4306],{"type":49,"value":424},{"type":43,"tag":134,"props":4308,"children":4309},{"style":223},[4310],{"type":49,"value":429},{"type":43,"tag":134,"props":4312,"children":4314},{"class":136,"line":4313},118,[4315],{"type":43,"tag":134,"props":4316,"children":4317},{"style":223},[4318],{"type":49,"value":787},{"type":43,"tag":134,"props":4320,"children":4322},{"class":136,"line":4321},119,[4323,4328,4332,4336,4340,4344,4349,4353],{"type":43,"tag":134,"props":4324,"children":4325},{"style":382},[4326],{"type":49,"value":4327},"TouchableHighlight",{"type":43,"tag":134,"props":4329,"children":4330},{"style":223},[4331],{"type":49,"value":1779},{"type":43,"tag":134,"props":4333,"children":4334},{"style":382},[4335],{"type":49,"value":2509},{"type":43,"tag":134,"props":4337,"children":4338},{"style":223},[4339],{"type":49,"value":547},{"type":43,"tag":134,"props":4341,"children":4342},{"style":223},[4343],{"type":49,"value":283},{"type":43,"tag":134,"props":4345,"children":4346},{"style":157},[4347],{"type":49,"value":4348},"CSS(TouchableHighlight)",{"type":43,"tag":134,"props":4350,"children":4351},{"style":223},[4352],{"type":49,"value":246},{"type":43,"tag":134,"props":4354,"children":4355},{"style":223},[4356],{"type":49,"value":429},{"type":43,"tag":332,"props":4358,"children":4360},{"id":4359},"image-component-srctwimagetsx",[4361,4363,4369],{"type":49,"value":4362},"Image Component (",{"type":43,"tag":130,"props":4364,"children":4366},{"className":4365},[],[4367],{"type":49,"value":4368},"src\u002Ftw\u002Fimage.tsx",{"type":49,"value":424},{"type":43,"tag":122,"props":4371,"children":4373},{"className":1333,"code":4372,"language":1335,"meta":127,"style":127},"import { useCssElement } from \"react-native-css\";\nimport React from \"react\";\nimport { StyleSheet } from \"react-native\";\nimport Animated from \"react-native-reanimated\";\nimport { Image as RNImage } from \"expo-image\";\n\nconst AnimatedExpoImage = Animated.createAnimatedComponent(RNImage);\n\nexport type ImageProps = React.ComponentProps\u003Ctypeof Image>;\n\nfunction CSSImage(props: React.ComponentProps\u003Ctypeof AnimatedExpoImage>) {\n  \u002F\u002F @ts-expect-error: Remap objectFit style to contentFit property\n  const { objectFit, objectPosition, ...style } =\n    StyleSheet.flatten(props.style) || {};\n\n  return (\n    \u003CAnimatedExpoImage\n      contentFit={objectFit}\n      contentPosition={objectPosition}\n      {...props}\n      source={\n        typeof props.source === \"string\" ? { uri: props.source } : props.source\n      }\n      \u002F\u002F @ts-expect-error: Style is remapped above\n      style={style}\n    \u002F>\n  );\n}\n\nexport const Image = (\n  props: React.ComponentProps\u003Ctypeof CSSImage> & { className?: string }\n) => {\n  return useCssElement(CSSImage, props, { className: \"style\" });\n};\n\nImage.displayName = \"CSS(Image)\";\n",[4374],{"type":43,"tag":130,"props":4375,"children":4376},{"__ignoreMap":127},[4377,4416,4447,4486,4517,4567,4574,4612,4619,4664,4671,4725,4733,4779,4823,4830,4841,4853,4874,4895,4910,4923,5014,5022,5030,5049,5056,5067,5074,5081,5105,5164,5179,5247,5254,5261],{"type":43,"tag":134,"props":4378,"children":4379},{"class":136,"line":137},[4380,4384,4388,4392,4396,4400,4404,4408,4412],{"type":43,"tag":134,"props":4381,"children":4382},{"style":502},[4383],{"type":49,"value":1347},{"type":43,"tag":134,"props":4385,"children":4386},{"style":223},[4387],{"type":49,"value":379},{"type":43,"tag":134,"props":4389,"children":4390},{"style":382},[4391],{"type":49,"value":1858},{"type":43,"tag":134,"props":4393,"children":4394},{"style":223},[4395],{"type":49,"value":1450},{"type":43,"tag":134,"props":4397,"children":4398},{"style":502},[4399],{"type":49,"value":1397},{"type":43,"tag":134,"props":4401,"children":4402},{"style":223},[4403],{"type":49,"value":283},{"type":43,"tag":134,"props":4405,"children":4406},{"style":157},[4407],{"type":49,"value":92},{"type":43,"tag":134,"props":4409,"children":4410},{"style":223},[4411],{"type":49,"value":246},{"type":43,"tag":134,"props":4413,"children":4414},{"style":223},[4415],{"type":49,"value":429},{"type":43,"tag":134,"props":4417,"children":4418},{"class":136,"line":147},[4419,4423,4427,4431,4435,4439,4443],{"type":43,"tag":134,"props":4420,"children":4421},{"style":502},[4422],{"type":49,"value":1347},{"type":43,"tag":134,"props":4424,"children":4425},{"style":382},[4426],{"type":49,"value":1517},{"type":43,"tag":134,"props":4428,"children":4429},{"style":502},[4430],{"type":49,"value":1488},{"type":43,"tag":134,"props":4432,"children":4433},{"style":223},[4434],{"type":49,"value":283},{"type":43,"tag":134,"props":4436,"children":4437},{"style":157},[4438],{"type":49,"value":1530},{"type":43,"tag":134,"props":4440,"children":4441},{"style":223},[4442],{"type":49,"value":246},{"type":43,"tag":134,"props":4444,"children":4445},{"style":223},[4446],{"type":49,"value":429},{"type":43,"tag":134,"props":4448,"children":4449},{"class":136,"line":229},[4450,4454,4458,4462,4466,4470,4474,4478,4482],{"type":43,"tag":134,"props":4451,"children":4452},{"style":502},[4453],{"type":49,"value":1347},{"type":43,"tag":134,"props":4455,"children":4456},{"style":223},[4457],{"type":49,"value":379},{"type":43,"tag":134,"props":4459,"children":4460},{"style":382},[4461],{"type":49,"value":4000},{"type":43,"tag":134,"props":4463,"children":4464},{"style":223},[4465],{"type":49,"value":1450},{"type":43,"tag":134,"props":4467,"children":4468},{"style":502},[4469],{"type":49,"value":1397},{"type":43,"tag":134,"props":4471,"children":4472},{"style":223},[4473],{"type":49,"value":283},{"type":43,"tag":134,"props":4475,"children":4476},{"style":157},[4477],{"type":49,"value":1707},{"type":43,"tag":134,"props":4479,"children":4480},{"style":223},[4481],{"type":49,"value":246},{"type":43,"tag":134,"props":4483,"children":4484},{"style":223},[4485],{"type":49,"value":429},{"type":43,"tag":134,"props":4487,"children":4488},{"class":136,"line":259},[4489,4493,4497,4501,4505,4509,4513],{"type":43,"tag":134,"props":4490,"children":4491},{"style":502},[4492],{"type":49,"value":1347},{"type":43,"tag":134,"props":4494,"children":4495},{"style":382},[4496],{"type":49,"value":1483},{"type":43,"tag":134,"props":4498,"children":4499},{"style":502},[4500],{"type":49,"value":1488},{"type":43,"tag":134,"props":4502,"children":4503},{"style":223},[4504],{"type":49,"value":283},{"type":43,"tag":134,"props":4506,"children":4507},{"style":157},[4508],{"type":49,"value":1497},{"type":43,"tag":134,"props":4510,"children":4511},{"style":223},[4512],{"type":49,"value":246},{"type":43,"tag":134,"props":4514,"children":4515},{"style":223},[4516],{"type":49,"value":429},{"type":43,"tag":134,"props":4518,"children":4519},{"class":136,"line":296},[4520,4524,4528,4533,4537,4542,4546,4550,4554,4559,4563],{"type":43,"tag":134,"props":4521,"children":4522},{"style":502},[4523],{"type":49,"value":1347},{"type":43,"tag":134,"props":4525,"children":4526},{"style":223},[4527],{"type":49,"value":379},{"type":43,"tag":134,"props":4529,"children":4530},{"style":382},[4531],{"type":49,"value":4532}," Image",{"type":43,"tag":134,"props":4534,"children":4535},{"style":502},[4536],{"type":49,"value":1376},{"type":43,"tag":134,"props":4538,"children":4539},{"style":382},[4540],{"type":49,"value":4541}," RNImage",{"type":43,"tag":134,"props":4543,"children":4544},{"style":223},[4545],{"type":49,"value":1450},{"type":43,"tag":134,"props":4547,"children":4548},{"style":502},[4549],{"type":49,"value":1397},{"type":43,"tag":134,"props":4551,"children":4552},{"style":223},[4553],{"type":49,"value":283},{"type":43,"tag":134,"props":4555,"children":4556},{"style":157},[4557],{"type":49,"value":4558},"expo-image",{"type":43,"tag":134,"props":4560,"children":4561},{"style":223},[4562],{"type":49,"value":246},{"type":43,"tag":134,"props":4564,"children":4565},{"style":223},[4566],{"type":49,"value":429},{"type":43,"tag":134,"props":4568,"children":4569},{"class":136,"line":305},[4570],{"type":43,"tag":134,"props":4571,"children":4572},{"emptyLinePlaceholder":488},[4573],{"type":49,"value":491},{"type":43,"tag":134,"props":4575,"children":4576},{"class":136,"line":564},[4577,4581,4586,4590,4594,4598,4603,4608],{"type":43,"tag":134,"props":4578,"children":4579},{"style":238},[4580],{"type":49,"value":374},{"type":43,"tag":134,"props":4582,"children":4583},{"style":382},[4584],{"type":49,"value":4585}," AnimatedExpoImage ",{"type":43,"tag":134,"props":4587,"children":4588},{"style":223},[4589],{"type":49,"value":547},{"type":43,"tag":134,"props":4591,"children":4592},{"style":382},[4593],{"type":49,"value":3613},{"type":43,"tag":134,"props":4595,"children":4596},{"style":223},[4597],{"type":49,"value":1779},{"type":43,"tag":134,"props":4599,"children":4600},{"style":398},[4601],{"type":49,"value":4602},"createAnimatedComponent",{"type":43,"tag":134,"props":4604,"children":4605},{"style":382},[4606],{"type":49,"value":4607},"(RNImage)",{"type":43,"tag":134,"props":4609,"children":4610},{"style":223},[4611],{"type":49,"value":429},{"type":43,"tag":134,"props":4613,"children":4614},{"class":136,"line":572},[4615],{"type":43,"tag":134,"props":4616,"children":4617},{"emptyLinePlaceholder":488},[4618],{"type":49,"value":491},{"type":43,"tag":134,"props":4620,"children":4621},{"class":136,"line":604},[4622,4626,4630,4635,4639,4643,4647,4651,4655,4659],{"type":43,"tag":134,"props":4623,"children":4624},{"style":502},[4625],{"type":49,"value":722},{"type":43,"tag":134,"props":4627,"children":4628},{"style":238},[4629],{"type":49,"value":2286},{"type":43,"tag":134,"props":4631,"children":4632},{"style":151},[4633],{"type":49,"value":4634}," ImageProps",{"type":43,"tag":134,"props":4636,"children":4637},{"style":223},[4638],{"type":49,"value":395},{"type":43,"tag":134,"props":4640,"children":4641},{"style":151},[4642],{"type":49,"value":1774},{"type":43,"tag":134,"props":4644,"children":4645},{"style":223},[4646],{"type":49,"value":1779},{"type":43,"tag":134,"props":4648,"children":4649},{"style":151},[4650],{"type":49,"value":1784},{"type":43,"tag":134,"props":4652,"children":4653},{"style":223},[4654],{"type":49,"value":1789},{"type":43,"tag":134,"props":4656,"children":4657},{"style":382},[4658],{"type":49,"value":4532},{"type":43,"tag":134,"props":4660,"children":4661},{"style":223},[4662],{"type":49,"value":4663},">;\n",{"type":43,"tag":134,"props":4665,"children":4666},{"class":136,"line":613},[4667],{"type":43,"tag":134,"props":4668,"children":4669},{"emptyLinePlaceholder":488},[4670],{"type":49,"value":491},{"type":43,"tag":134,"props":4672,"children":4673},{"class":136,"line":638},[4674,4678,4683,4687,4691,4695,4699,4703,4707,4711,4716,4721],{"type":43,"tag":134,"props":4675,"children":4676},{"style":238},[4677],{"type":49,"value":3897},{"type":43,"tag":134,"props":4679,"children":4680},{"style":398},[4681],{"type":49,"value":4682}," CSSImage",{"type":43,"tag":134,"props":4684,"children":4685},{"style":223},[4686],{"type":49,"value":406},{"type":43,"tag":134,"props":4688,"children":4689},{"style":1762},[4690],{"type":49,"value":2394},{"type":43,"tag":134,"props":4692,"children":4693},{"style":223},[4694],{"type":49,"value":251},{"type":43,"tag":134,"props":4696,"children":4697},{"style":151},[4698],{"type":49,"value":1774},{"type":43,"tag":134,"props":4700,"children":4701},{"style":223},[4702],{"type":49,"value":1779},{"type":43,"tag":134,"props":4704,"children":4705},{"style":151},[4706],{"type":49,"value":1784},{"type":43,"tag":134,"props":4708,"children":4709},{"style":223},[4710],{"type":49,"value":1789},{"type":43,"tag":134,"props":4712,"children":4713},{"style":382},[4714],{"type":49,"value":4715}," AnimatedExpoImage",{"type":43,"tag":134,"props":4717,"children":4718},{"style":223},[4719],{"type":49,"value":4720},">)",{"type":43,"tag":134,"props":4722,"children":4723},{"style":223},[4724],{"type":49,"value":256},{"type":43,"tag":134,"props":4726,"children":4727},{"class":136,"line":647},[4728],{"type":43,"tag":134,"props":4729,"children":4730},{"style":141},[4731],{"type":49,"value":4732},"  \u002F\u002F @ts-expect-error: Remap objectFit style to contentFit property\n",{"type":43,"tag":134,"props":4734,"children":4735},{"class":136,"line":668},[4736,4740,4744,4749,4753,4758,4762,4766,4770,4774],{"type":43,"tag":134,"props":4737,"children":4738},{"style":238},[4739],{"type":49,"value":3965},{"type":43,"tag":134,"props":4741,"children":4742},{"style":223},[4743],{"type":49,"value":379},{"type":43,"tag":134,"props":4745,"children":4746},{"style":382},[4747],{"type":49,"value":4748}," objectFit",{"type":43,"tag":134,"props":4750,"children":4751},{"style":223},[4752],{"type":49,"value":597},{"type":43,"tag":134,"props":4754,"children":4755},{"style":382},[4756],{"type":49,"value":4757}," objectPosition",{"type":43,"tag":134,"props":4759,"children":4760},{"style":223},[4761],{"type":49,"value":597},{"type":43,"tag":134,"props":4763,"children":4764},{"style":223},[4765],{"type":49,"value":3983},{"type":43,"tag":134,"props":4767,"children":4768},{"style":382},[4769],{"type":49,"value":1901},{"type":43,"tag":134,"props":4771,"children":4772},{"style":223},[4773],{"type":49,"value":1450},{"type":43,"tag":134,"props":4775,"children":4776},{"style":223},[4777],{"type":49,"value":4778}," =\n",{"type":43,"tag":134,"props":4780,"children":4781},{"class":136,"line":1062},[4782,4787,4791,4795,4799,4803,4807,4811,4815,4819],{"type":43,"tag":134,"props":4783,"children":4784},{"style":382},[4785],{"type":49,"value":4786},"    StyleSheet",{"type":43,"tag":134,"props":4788,"children":4789},{"style":223},[4790],{"type":49,"value":1779},{"type":43,"tag":134,"props":4792,"children":4793},{"style":398},[4794],{"type":49,"value":4009},{"type":43,"tag":134,"props":4796,"children":4797},{"style":617},[4798],{"type":49,"value":406},{"type":43,"tag":134,"props":4800,"children":4801},{"style":382},[4802],{"type":49,"value":2394},{"type":43,"tag":134,"props":4804,"children":4805},{"style":223},[4806],{"type":49,"value":1779},{"type":43,"tag":134,"props":4808,"children":4809},{"style":382},[4810],{"type":49,"value":1901},{"type":43,"tag":134,"props":4812,"children":4813},{"style":617},[4814],{"type":49,"value":1835},{"type":43,"tag":134,"props":4816,"children":4817},{"style":223},[4818],{"type":49,"value":4034},{"type":43,"tag":134,"props":4820,"children":4821},{"style":223},[4822],{"type":49,"value":4039},{"type":43,"tag":134,"props":4824,"children":4825},{"class":136,"line":1070},[4826],{"type":43,"tag":134,"props":4827,"children":4828},{"emptyLinePlaceholder":488},[4829],{"type":49,"value":491},{"type":43,"tag":134,"props":4831,"children":4832},{"class":136,"line":1087},[4833,4837],{"type":43,"tag":134,"props":4834,"children":4835},{"style":502},[4836],{"type":49,"value":1853},{"type":43,"tag":134,"props":4838,"children":4839},{"style":617},[4840],{"type":49,"value":1756},{"type":43,"tag":134,"props":4842,"children":4843},{"class":136,"line":1103},[4844,4848],{"type":43,"tag":134,"props":4845,"children":4846},{"style":223},[4847],{"type":49,"value":4060},{"type":43,"tag":134,"props":4849,"children":4850},{"style":151},[4851],{"type":49,"value":4852},"AnimatedExpoImage\n",{"type":43,"tag":134,"props":4854,"children":4855},{"class":136,"line":1124},[4856,4861,4865,4870],{"type":43,"tag":134,"props":4857,"children":4858},{"style":238},[4859],{"type":49,"value":4860},"      contentFit",{"type":43,"tag":134,"props":4862,"children":4863},{"style":223},[4864],{"type":49,"value":4079},{"type":43,"tag":134,"props":4866,"children":4867},{"style":382},[4868],{"type":49,"value":4869},"objectFit",{"type":43,"tag":134,"props":4871,"children":4872},{"style":223},[4873],{"type":49,"value":311},{"type":43,"tag":134,"props":4875,"children":4876},{"class":136,"line":1145},[4877,4882,4886,4891],{"type":43,"tag":134,"props":4878,"children":4879},{"style":238},[4880],{"type":49,"value":4881},"      contentPosition",{"type":43,"tag":134,"props":4883,"children":4884},{"style":223},[4885],{"type":49,"value":4079},{"type":43,"tag":134,"props":4887,"children":4888},{"style":382},[4889],{"type":49,"value":4890},"objectPosition",{"type":43,"tag":134,"props":4892,"children":4893},{"style":223},[4894],{"type":49,"value":311},{"type":43,"tag":134,"props":4896,"children":4897},{"class":136,"line":1166},[4898,4902,4906],{"type":43,"tag":134,"props":4899,"children":4900},{"style":223},[4901],{"type":49,"value":4097},{"type":43,"tag":134,"props":4903,"children":4904},{"style":382},[4905],{"type":49,"value":2394},{"type":43,"tag":134,"props":4907,"children":4908},{"style":223},[4909],{"type":49,"value":311},{"type":43,"tag":134,"props":4911,"children":4912},{"class":136,"line":1187},[4913,4918],{"type":43,"tag":134,"props":4914,"children":4915},{"style":238},[4916],{"type":49,"value":4917},"      source",{"type":43,"tag":134,"props":4919,"children":4920},{"style":223},[4921],{"type":49,"value":4922},"={\n",{"type":43,"tag":134,"props":4924,"children":4925},{"class":136,"line":1195},[4926,4931,4935,4939,4944,4949,4953,4958,4962,4967,4971,4976,4980,4984,4988,4992,4996,5001,5005,5009],{"type":43,"tag":134,"props":4927,"children":4928},{"style":223},[4929],{"type":49,"value":4930},"        typeof",{"type":43,"tag":134,"props":4932,"children":4933},{"style":382},[4934],{"type":49,"value":1876},{"type":43,"tag":134,"props":4936,"children":4937},{"style":223},[4938],{"type":49,"value":1779},{"type":43,"tag":134,"props":4940,"children":4941},{"style":382},[4942],{"type":49,"value":4943},"source ",{"type":43,"tag":134,"props":4945,"children":4946},{"style":223},[4947],{"type":49,"value":4948},"===",{"type":43,"tag":134,"props":4950,"children":4951},{"style":223},[4952],{"type":49,"value":283},{"type":43,"tag":134,"props":4954,"children":4955},{"style":157},[4956],{"type":49,"value":4957},"string",{"type":43,"tag":134,"props":4959,"children":4960},{"style":223},[4961],{"type":49,"value":246},{"type":43,"tag":134,"props":4963,"children":4964},{"style":223},[4965],{"type":49,"value":4966}," ?",{"type":43,"tag":134,"props":4968,"children":4969},{"style":223},[4970],{"type":49,"value":379},{"type":43,"tag":134,"props":4972,"children":4973},{"style":617},[4974],{"type":49,"value":4975}," uri",{"type":43,"tag":134,"props":4977,"children":4978},{"style":223},[4979],{"type":49,"value":251},{"type":43,"tag":134,"props":4981,"children":4982},{"style":382},[4983],{"type":49,"value":1876},{"type":43,"tag":134,"props":4985,"children":4986},{"style":223},[4987],{"type":49,"value":1779},{"type":43,"tag":134,"props":4989,"children":4990},{"style":382},[4991],{"type":49,"value":4943},{"type":43,"tag":134,"props":4993,"children":4994},{"style":223},[4995],{"type":49,"value":390},{"type":43,"tag":134,"props":4997,"children":4998},{"style":223},[4999],{"type":49,"value":5000}," :",{"type":43,"tag":134,"props":5002,"children":5003},{"style":382},[5004],{"type":49,"value":1876},{"type":43,"tag":134,"props":5006,"children":5007},{"style":223},[5008],{"type":49,"value":1779},{"type":43,"tag":134,"props":5010,"children":5011},{"style":382},[5012],{"type":49,"value":5013},"source\n",{"type":43,"tag":134,"props":5015,"children":5016},{"class":136,"line":1847},[5017],{"type":43,"tag":134,"props":5018,"children":5019},{"style":223},[5020],{"type":49,"value":5021},"      }\n",{"type":43,"tag":134,"props":5023,"children":5024},{"class":136,"line":1920},[5025],{"type":43,"tag":134,"props":5026,"children":5027},{"style":141},[5028],{"type":49,"value":5029},"      \u002F\u002F @ts-expect-error: Style is remapped above\n",{"type":43,"tag":134,"props":5031,"children":5032},{"class":136,"line":1928},[5033,5037,5041,5045],{"type":43,"tag":134,"props":5034,"children":5035},{"style":238},[5036],{"type":49,"value":4114},{"type":43,"tag":134,"props":5038,"children":5039},{"style":223},[5040],{"type":49,"value":4079},{"type":43,"tag":134,"props":5042,"children":5043},{"style":382},[5044],{"type":49,"value":1901},{"type":43,"tag":134,"props":5046,"children":5047},{"style":223},[5048],{"type":49,"value":311},{"type":43,"tag":134,"props":5050,"children":5051},{"class":136,"line":1936},[5052],{"type":43,"tag":134,"props":5053,"children":5054},{"style":223},[5055],{"type":49,"value":4135},{"type":43,"tag":134,"props":5057,"children":5058},{"class":136,"line":1975},[5059,5063],{"type":43,"tag":134,"props":5060,"children":5061},{"style":617},[5062],{"type":49,"value":4144},{"type":43,"tag":134,"props":5064,"children":5065},{"style":223},[5066],{"type":49,"value":429},{"type":43,"tag":134,"props":5068,"children":5069},{"class":136,"line":2013},[5070],{"type":43,"tag":134,"props":5071,"children":5072},{"style":223},[5073],{"type":49,"value":311},{"type":43,"tag":134,"props":5075,"children":5076},{"class":136,"line":2051},[5077],{"type":43,"tag":134,"props":5078,"children":5079},{"emptyLinePlaceholder":488},[5080],{"type":49,"value":491},{"type":43,"tag":134,"props":5082,"children":5083},{"class":136,"line":2089},[5084,5088,5092,5097,5101],{"type":43,"tag":134,"props":5085,"children":5086},{"style":502},[5087],{"type":49,"value":722},{"type":43,"tag":134,"props":5089,"children":5090},{"style":238},[5091],{"type":49,"value":1742},{"type":43,"tag":134,"props":5093,"children":5094},{"style":382},[5095],{"type":49,"value":5096}," Image ",{"type":43,"tag":134,"props":5098,"children":5099},{"style":223},[5100],{"type":49,"value":547},{"type":43,"tag":134,"props":5102,"children":5103},{"style":382},[5104],{"type":49,"value":1756},{"type":43,"tag":134,"props":5106,"children":5107},{"class":136,"line":2097},[5108,5112,5116,5120,5124,5128,5132,5136,5140,5144,5148,5152,5156,5160],{"type":43,"tag":134,"props":5109,"children":5110},{"style":1762},[5111],{"type":49,"value":1765},{"type":43,"tag":134,"props":5113,"children":5114},{"style":223},[5115],{"type":49,"value":251},{"type":43,"tag":134,"props":5117,"children":5118},{"style":151},[5119],{"type":49,"value":1774},{"type":43,"tag":134,"props":5121,"children":5122},{"style":223},[5123],{"type":49,"value":1779},{"type":43,"tag":134,"props":5125,"children":5126},{"style":151},[5127],{"type":49,"value":1784},{"type":43,"tag":134,"props":5129,"children":5130},{"style":223},[5131],{"type":49,"value":1789},{"type":43,"tag":134,"props":5133,"children":5134},{"style":382},[5135],{"type":49,"value":4682},{"type":43,"tag":134,"props":5137,"children":5138},{"style":223},[5139],{"type":49,"value":1798},{"type":43,"tag":134,"props":5141,"children":5142},{"style":223},[5143],{"type":49,"value":1803},{"type":43,"tag":134,"props":5145,"children":5146},{"style":223},[5147],{"type":49,"value":379},{"type":43,"tag":134,"props":5149,"children":5150},{"style":617},[5151],{"type":49,"value":1812},{"type":43,"tag":134,"props":5153,"children":5154},{"style":223},[5155],{"type":49,"value":1817},{"type":43,"tag":134,"props":5157,"children":5158},{"style":151},[5159],{"type":49,"value":1822},{"type":43,"tag":134,"props":5161,"children":5162},{"style":223},[5163],{"type":49,"value":1827},{"type":43,"tag":134,"props":5165,"children":5166},{"class":136,"line":2106},[5167,5171,5175],{"type":43,"tag":134,"props":5168,"children":5169},{"style":382},[5170],{"type":49,"value":1835},{"type":43,"tag":134,"props":5172,"children":5173},{"style":238},[5174],{"type":49,"value":1840},{"type":43,"tag":134,"props":5176,"children":5177},{"style":223},[5178],{"type":49,"value":256},{"type":43,"tag":134,"props":5180,"children":5181},{"class":136,"line":2128},[5182,5186,5190,5194,5199,5203,5207,5211,5215,5219,5223,5227,5231,5235,5239,5243],{"type":43,"tag":134,"props":5183,"children":5184},{"style":502},[5185],{"type":49,"value":1853},{"type":43,"tag":134,"props":5187,"children":5188},{"style":398},[5189],{"type":49,"value":1858},{"type":43,"tag":134,"props":5191,"children":5192},{"style":617},[5193],{"type":49,"value":406},{"type":43,"tag":134,"props":5195,"children":5196},{"style":382},[5197],{"type":49,"value":5198},"CSSImage",{"type":43,"tag":134,"props":5200,"children":5201},{"style":223},[5202],{"type":49,"value":597},{"type":43,"tag":134,"props":5204,"children":5205},{"style":382},[5206],{"type":49,"value":1876},{"type":43,"tag":134,"props":5208,"children":5209},{"style":223},[5210],{"type":49,"value":597},{"type":43,"tag":134,"props":5212,"children":5213},{"style":223},[5214],{"type":49,"value":379},{"type":43,"tag":134,"props":5216,"children":5217},{"style":617},[5218],{"type":49,"value":1812},{"type":43,"tag":134,"props":5220,"children":5221},{"style":223},[5222],{"type":49,"value":251},{"type":43,"tag":134,"props":5224,"children":5225},{"style":223},[5226],{"type":49,"value":283},{"type":43,"tag":134,"props":5228,"children":5229},{"style":157},[5230],{"type":49,"value":1901},{"type":43,"tag":134,"props":5232,"children":5233},{"style":223},[5234],{"type":49,"value":246},{"type":43,"tag":134,"props":5236,"children":5237},{"style":223},[5238],{"type":49,"value":1450},{"type":43,"tag":134,"props":5240,"children":5241},{"style":617},[5242],{"type":49,"value":424},{"type":43,"tag":134,"props":5244,"children":5245},{"style":223},[5246],{"type":49,"value":429},{"type":43,"tag":134,"props":5248,"children":5249},{"class":136,"line":2173},[5250],{"type":43,"tag":134,"props":5251,"children":5252},{"style":223},[5253],{"type":49,"value":787},{"type":43,"tag":134,"props":5255,"children":5256},{"class":136,"line":2187},[5257],{"type":43,"tag":134,"props":5258,"children":5259},{"emptyLinePlaceholder":488},[5260],{"type":49,"value":491},{"type":43,"tag":134,"props":5262,"children":5263},{"class":136,"line":2259},[5264,5269,5273,5277,5281,5285,5290,5294],{"type":43,"tag":134,"props":5265,"children":5266},{"style":382},[5267],{"type":49,"value":5268},"Image",{"type":43,"tag":134,"props":5270,"children":5271},{"style":223},[5272],{"type":49,"value":1779},{"type":43,"tag":134,"props":5274,"children":5275},{"style":382},[5276],{"type":49,"value":2509},{"type":43,"tag":134,"props":5278,"children":5279},{"style":223},[5280],{"type":49,"value":547},{"type":43,"tag":134,"props":5282,"children":5283},{"style":223},[5284],{"type":49,"value":283},{"type":43,"tag":134,"props":5286,"children":5287},{"style":157},[5288],{"type":49,"value":5289},"CSS(Image)",{"type":43,"tag":134,"props":5291,"children":5292},{"style":223},[5293],{"type":49,"value":246},{"type":43,"tag":134,"props":5295,"children":5296},{"style":223},[5297],{"type":49,"value":429},{"type":43,"tag":332,"props":5299,"children":5301},{"id":5300},"animated-components-srctwanimatedtsx",[5302,5304,5310],{"type":49,"value":5303},"Animated Components (",{"type":43,"tag":130,"props":5305,"children":5307},{"className":5306},[],[5308],{"type":49,"value":5309},"src\u002Ftw\u002Fanimated.tsx",{"type":49,"value":424},{"type":43,"tag":122,"props":5312,"children":5314},{"className":1333,"code":5313,"language":1335,"meta":127,"style":127},"import * as TW from \".\u002Findex\";\nimport RNAnimated from \"react-native-reanimated\";\n\nexport const Animated = {\n  ...RNAnimated,\n  View: RNAnimated.createAnimatedComponent(TW.View),\n};\n",[5315],{"type":43,"tag":130,"props":5316,"children":5317},{"__ignoreMap":127},[5318,5360,5392,5399,5422,5439,5481],{"type":43,"tag":134,"props":5319,"children":5320},{"class":136,"line":137},[5321,5325,5330,5334,5339,5343,5347,5352,5356],{"type":43,"tag":134,"props":5322,"children":5323},{"style":502},[5324],{"type":49,"value":1347},{"type":43,"tag":134,"props":5326,"children":5327},{"style":223},[5328],{"type":49,"value":5329}," *",{"type":43,"tag":134,"props":5331,"children":5332},{"style":502},[5333],{"type":49,"value":1376},{"type":43,"tag":134,"props":5335,"children":5336},{"style":382},[5337],{"type":49,"value":5338}," TW ",{"type":43,"tag":134,"props":5340,"children":5341},{"style":502},[5342],{"type":49,"value":1488},{"type":43,"tag":134,"props":5344,"children":5345},{"style":223},[5346],{"type":49,"value":283},{"type":43,"tag":134,"props":5348,"children":5349},{"style":157},[5350],{"type":49,"value":5351},".\u002Findex",{"type":43,"tag":134,"props":5353,"children":5354},{"style":223},[5355],{"type":49,"value":246},{"type":43,"tag":134,"props":5357,"children":5358},{"style":223},[5359],{"type":49,"value":429},{"type":43,"tag":134,"props":5361,"children":5362},{"class":136,"line":147},[5363,5367,5372,5376,5380,5384,5388],{"type":43,"tag":134,"props":5364,"children":5365},{"style":502},[5366],{"type":49,"value":1347},{"type":43,"tag":134,"props":5368,"children":5369},{"style":382},[5370],{"type":49,"value":5371}," RNAnimated ",{"type":43,"tag":134,"props":5373,"children":5374},{"style":502},[5375],{"type":49,"value":1488},{"type":43,"tag":134,"props":5377,"children":5378},{"style":223},[5379],{"type":49,"value":283},{"type":43,"tag":134,"props":5381,"children":5382},{"style":157},[5383],{"type":49,"value":1497},{"type":43,"tag":134,"props":5385,"children":5386},{"style":223},[5387],{"type":49,"value":246},{"type":43,"tag":134,"props":5389,"children":5390},{"style":223},[5391],{"type":49,"value":429},{"type":43,"tag":134,"props":5393,"children":5394},{"class":136,"line":229},[5395],{"type":43,"tag":134,"props":5396,"children":5397},{"emptyLinePlaceholder":488},[5398],{"type":49,"value":491},{"type":43,"tag":134,"props":5400,"children":5401},{"class":136,"line":259},[5402,5406,5410,5414,5418],{"type":43,"tag":134,"props":5403,"children":5404},{"style":502},[5405],{"type":49,"value":722},{"type":43,"tag":134,"props":5407,"children":5408},{"style":238},[5409],{"type":49,"value":1742},{"type":43,"tag":134,"props":5411,"children":5412},{"style":382},[5413],{"type":49,"value":1483},{"type":43,"tag":134,"props":5415,"children":5416},{"style":223},[5417],{"type":49,"value":547},{"type":43,"tag":134,"props":5419,"children":5420},{"style":223},[5421],{"type":49,"value":256},{"type":43,"tag":134,"props":5423,"children":5424},{"class":136,"line":296},[5425,5430,5435],{"type":43,"tag":134,"props":5426,"children":5427},{"style":223},[5428],{"type":49,"value":5429},"  ...",{"type":43,"tag":134,"props":5431,"children":5432},{"style":382},[5433],{"type":49,"value":5434},"RNAnimated",{"type":43,"tag":134,"props":5436,"children":5437},{"style":223},[5438],{"type":49,"value":635},{"type":43,"tag":134,"props":5440,"children":5441},{"class":136,"line":305},[5442,5446,5450,5455,5459,5463,5468,5472,5477],{"type":43,"tag":134,"props":5443,"children":5444},{"style":617},[5445],{"type":49,"value":1557},{"type":43,"tag":134,"props":5447,"children":5448},{"style":223},[5449],{"type":49,"value":251},{"type":43,"tag":134,"props":5451,"children":5452},{"style":382},[5453],{"type":49,"value":5454}," RNAnimated",{"type":43,"tag":134,"props":5456,"children":5457},{"style":223},[5458],{"type":49,"value":1779},{"type":43,"tag":134,"props":5460,"children":5461},{"style":398},[5462],{"type":49,"value":4602},{"type":43,"tag":134,"props":5464,"children":5465},{"style":382},[5466],{"type":49,"value":5467},"(TW",{"type":43,"tag":134,"props":5469,"children":5470},{"style":223},[5471],{"type":49,"value":1779},{"type":43,"tag":134,"props":5473,"children":5474},{"style":382},[5475],{"type":49,"value":5476},"View)",{"type":43,"tag":134,"props":5478,"children":5479},{"style":223},[5480],{"type":49,"value":635},{"type":43,"tag":134,"props":5482,"children":5483},{"class":136,"line":564},[5484],{"type":43,"tag":134,"props":5485,"children":5486},{"style":223},[5487],{"type":49,"value":787},{"type":43,"tag":58,"props":5489,"children":5491},{"id":5490},"usage",[5492],{"type":49,"value":5493},"Usage",{"type":43,"tag":52,"props":5495,"children":5496},{},[5497],{"type":49,"value":5498},"Import CSS-wrapped components from your tw directory:",{"type":43,"tag":122,"props":5500,"children":5502},{"className":1333,"code":5501,"language":1335,"meta":127,"style":127},"import { View, Text, ScrollView, Image } from \"@\u002Ftw\";\n\nexport default function MyScreen() {\n  return (\n    \u003CScrollView className=\"flex-1 bg-white\">\n      \u003CView className=\"p-4 gap-4\">\n        \u003CText className=\"text-xl font-bold text-gray-900\">Hello Tailwind!\u003C\u002FText>\n        \u003CImage\n          className=\"w-full h-48 rounded-lg object-cover\"\n          source={{ uri: \"https:\u002F\u002Fexample.com\u002Fimage.jpg\" }}\n        \u002F>\n      \u003C\u002FView>\n    \u003C\u002FScrollView>\n  );\n}\n",[5503],{"type":43,"tag":130,"props":5504,"children":5505},{"__ignoreMap":127},[5506,5573,5580,5610,5621,5657,5694,5749,5761,5786,5825,5833,5849,5865,5876],{"type":43,"tag":134,"props":5507,"children":5508},{"class":136,"line":137},[5509,5513,5517,5522,5526,5531,5535,5540,5544,5548,5552,5556,5560,5565,5569],{"type":43,"tag":134,"props":5510,"children":5511},{"style":502},[5512],{"type":49,"value":1347},{"type":43,"tag":134,"props":5514,"children":5515},{"style":223},[5516],{"type":49,"value":379},{"type":43,"tag":134,"props":5518,"children":5519},{"style":382},[5520],{"type":49,"value":5521}," View",{"type":43,"tag":134,"props":5523,"children":5524},{"style":223},[5525],{"type":49,"value":597},{"type":43,"tag":134,"props":5527,"children":5528},{"style":382},[5529],{"type":49,"value":5530}," Text",{"type":43,"tag":134,"props":5532,"children":5533},{"style":223},[5534],{"type":49,"value":597},{"type":43,"tag":134,"props":5536,"children":5537},{"style":382},[5538],{"type":49,"value":5539}," ScrollView",{"type":43,"tag":134,"props":5541,"children":5542},{"style":223},[5543],{"type":49,"value":597},{"type":43,"tag":134,"props":5545,"children":5546},{"style":382},[5547],{"type":49,"value":4532},{"type":43,"tag":134,"props":5549,"children":5550},{"style":223},[5551],{"type":49,"value":1450},{"type":43,"tag":134,"props":5553,"children":5554},{"style":502},[5555],{"type":49,"value":1397},{"type":43,"tag":134,"props":5557,"children":5558},{"style":223},[5559],{"type":49,"value":283},{"type":43,"tag":134,"props":5561,"children":5562},{"style":157},[5563],{"type":49,"value":5564},"@\u002Ftw",{"type":43,"tag":134,"props":5566,"children":5567},{"style":223},[5568],{"type":49,"value":246},{"type":43,"tag":134,"props":5570,"children":5571},{"style":223},[5572],{"type":49,"value":429},{"type":43,"tag":134,"props":5574,"children":5575},{"class":136,"line":147},[5576],{"type":43,"tag":134,"props":5577,"children":5578},{"emptyLinePlaceholder":488},[5579],{"type":49,"value":491},{"type":43,"tag":134,"props":5581,"children":5582},{"class":136,"line":229},[5583,5587,5591,5596,5601,5606],{"type":43,"tag":134,"props":5584,"children":5585},{"style":502},[5586],{"type":49,"value":722},{"type":43,"tag":134,"props":5588,"children":5589},{"style":502},[5590],{"type":49,"value":727},{"type":43,"tag":134,"props":5592,"children":5593},{"style":238},[5594],{"type":49,"value":5595}," function",{"type":43,"tag":134,"props":5597,"children":5598},{"style":398},[5599],{"type":49,"value":5600}," MyScreen",{"type":43,"tag":134,"props":5602,"children":5603},{"style":223},[5604],{"type":49,"value":5605},"()",{"type":43,"tag":134,"props":5607,"children":5608},{"style":223},[5609],{"type":49,"value":256},{"type":43,"tag":134,"props":5611,"children":5612},{"class":136,"line":259},[5613,5617],{"type":43,"tag":134,"props":5614,"children":5615},{"style":502},[5616],{"type":49,"value":1853},{"type":43,"tag":134,"props":5618,"children":5619},{"style":617},[5620],{"type":49,"value":1756},{"type":43,"tag":134,"props":5622,"children":5623},{"class":136,"line":296},[5624,5628,5632,5636,5640,5644,5649,5653],{"type":43,"tag":134,"props":5625,"children":5626},{"style":223},[5627],{"type":49,"value":4060},{"type":43,"tag":134,"props":5629,"children":5630},{"style":151},[5631],{"type":49,"value":3043},{"type":43,"tag":134,"props":5633,"children":5634},{"style":238},[5635],{"type":49,"value":1812},{"type":43,"tag":134,"props":5637,"children":5638},{"style":223},[5639],{"type":49,"value":547},{"type":43,"tag":134,"props":5641,"children":5642},{"style":223},[5643],{"type":49,"value":246},{"type":43,"tag":134,"props":5645,"children":5646},{"style":157},[5647],{"type":49,"value":5648},"flex-1 bg-white",{"type":43,"tag":134,"props":5650,"children":5651},{"style":223},[5652],{"type":49,"value":246},{"type":43,"tag":134,"props":5654,"children":5655},{"style":223},[5656],{"type":49,"value":3944},{"type":43,"tag":134,"props":5658,"children":5659},{"class":136,"line":305},[5660,5665,5669,5673,5677,5681,5686,5690],{"type":43,"tag":134,"props":5661,"children":5662},{"style":223},[5663],{"type":49,"value":5664},"      \u003C",{"type":43,"tag":134,"props":5666,"children":5667},{"style":151},[5668],{"type":49,"value":2500},{"type":43,"tag":134,"props":5670,"children":5671},{"style":238},[5672],{"type":49,"value":1812},{"type":43,"tag":134,"props":5674,"children":5675},{"style":223},[5676],{"type":49,"value":547},{"type":43,"tag":134,"props":5678,"children":5679},{"style":223},[5680],{"type":49,"value":246},{"type":43,"tag":134,"props":5682,"children":5683},{"style":157},[5684],{"type":49,"value":5685},"p-4 gap-4",{"type":43,"tag":134,"props":5687,"children":5688},{"style":223},[5689],{"type":49,"value":246},{"type":43,"tag":134,"props":5691,"children":5692},{"style":223},[5693],{"type":49,"value":3944},{"type":43,"tag":134,"props":5695,"children":5696},{"class":136,"line":564},[5697,5702,5706,5710,5714,5718,5723,5727,5731,5736,5741,5745],{"type":43,"tag":134,"props":5698,"children":5699},{"style":223},[5700],{"type":49,"value":5701},"        \u003C",{"type":43,"tag":134,"props":5703,"children":5704},{"style":151},[5705],{"type":49,"value":2734},{"type":43,"tag":134,"props":5707,"children":5708},{"style":238},[5709],{"type":49,"value":1812},{"type":43,"tag":134,"props":5711,"children":5712},{"style":223},[5713],{"type":49,"value":547},{"type":43,"tag":134,"props":5715,"children":5716},{"style":223},[5717],{"type":49,"value":246},{"type":43,"tag":134,"props":5719,"children":5720},{"style":157},[5721],{"type":49,"value":5722},"text-xl font-bold text-gray-900",{"type":43,"tag":134,"props":5724,"children":5725},{"style":223},[5726],{"type":49,"value":246},{"type":43,"tag":134,"props":5728,"children":5729},{"style":223},[5730],{"type":49,"value":1798},{"type":43,"tag":134,"props":5732,"children":5733},{"style":382},[5734],{"type":49,"value":5735},"Hello Tailwind!",{"type":43,"tag":134,"props":5737,"children":5738},{"style":223},[5739],{"type":49,"value":5740},"\u003C\u002F",{"type":43,"tag":134,"props":5742,"children":5743},{"style":151},[5744],{"type":49,"value":2734},{"type":43,"tag":134,"props":5746,"children":5747},{"style":223},[5748],{"type":49,"value":3944},{"type":43,"tag":134,"props":5750,"children":5751},{"class":136,"line":572},[5752,5756],{"type":43,"tag":134,"props":5753,"children":5754},{"style":223},[5755],{"type":49,"value":5701},{"type":43,"tag":134,"props":5757,"children":5758},{"style":151},[5759],{"type":49,"value":5760},"Image\n",{"type":43,"tag":134,"props":5762,"children":5763},{"class":136,"line":604},[5764,5769,5773,5777,5782],{"type":43,"tag":134,"props":5765,"children":5766},{"style":238},[5767],{"type":49,"value":5768},"          className",{"type":43,"tag":134,"props":5770,"children":5771},{"style":223},[5772],{"type":49,"value":547},{"type":43,"tag":134,"props":5774,"children":5775},{"style":223},[5776],{"type":49,"value":246},{"type":43,"tag":134,"props":5778,"children":5779},{"style":157},[5780],{"type":49,"value":5781},"w-full h-48 rounded-lg object-cover",{"type":43,"tag":134,"props":5783,"children":5784},{"style":223},[5785],{"type":49,"value":293},{"type":43,"tag":134,"props":5787,"children":5788},{"class":136,"line":613},[5789,5794,5799,5803,5807,5811,5816,5820],{"type":43,"tag":134,"props":5790,"children":5791},{"style":238},[5792],{"type":49,"value":5793},"          source",{"type":43,"tag":134,"props":5795,"children":5796},{"style":223},[5797],{"type":49,"value":5798},"={{",{"type":43,"tag":134,"props":5800,"children":5801},{"style":617},[5802],{"type":49,"value":4975},{"type":43,"tag":134,"props":5804,"children":5805},{"style":223},[5806],{"type":49,"value":251},{"type":43,"tag":134,"props":5808,"children":5809},{"style":223},[5810],{"type":49,"value":283},{"type":43,"tag":134,"props":5812,"children":5813},{"style":157},[5814],{"type":49,"value":5815},"https:\u002F\u002Fexample.com\u002Fimage.jpg",{"type":43,"tag":134,"props":5817,"children":5818},{"style":223},[5819],{"type":49,"value":246},{"type":43,"tag":134,"props":5821,"children":5822},{"style":223},[5823],{"type":49,"value":5824}," }}\n",{"type":43,"tag":134,"props":5826,"children":5827},{"class":136,"line":638},[5828],{"type":43,"tag":134,"props":5829,"children":5830},{"style":223},[5831],{"type":49,"value":5832},"        \u002F>\n",{"type":43,"tag":134,"props":5834,"children":5835},{"class":136,"line":647},[5836,5841,5845],{"type":43,"tag":134,"props":5837,"children":5838},{"style":223},[5839],{"type":49,"value":5840},"      \u003C\u002F",{"type":43,"tag":134,"props":5842,"children":5843},{"style":151},[5844],{"type":49,"value":2500},{"type":43,"tag":134,"props":5846,"children":5847},{"style":223},[5848],{"type":49,"value":3944},{"type":43,"tag":134,"props":5850,"children":5851},{"class":136,"line":668},[5852,5857,5861],{"type":43,"tag":134,"props":5853,"children":5854},{"style":223},[5855],{"type":49,"value":5856},"    \u003C\u002F",{"type":43,"tag":134,"props":5858,"children":5859},{"style":151},[5860],{"type":49,"value":3043},{"type":43,"tag":134,"props":5862,"children":5863},{"style":223},[5864],{"type":49,"value":3944},{"type":43,"tag":134,"props":5866,"children":5867},{"class":136,"line":1062},[5868,5872],{"type":43,"tag":134,"props":5869,"children":5870},{"style":617},[5871],{"type":49,"value":4144},{"type":43,"tag":134,"props":5873,"children":5874},{"style":223},[5875],{"type":49,"value":429},{"type":43,"tag":134,"props":5877,"children":5878},{"class":136,"line":1070},[5879],{"type":43,"tag":134,"props":5880,"children":5881},{"style":223},[5882],{"type":49,"value":311},{"type":43,"tag":58,"props":5884,"children":5886},{"id":5885},"custom-theme-variables",[5887],{"type":49,"value":5888},"Custom Theme Variables",{"type":43,"tag":52,"props":5890,"children":5891},{},[5892,5894,5900],{"type":49,"value":5893},"Add custom theme variables in your global.css using ",{"type":43,"tag":130,"props":5895,"children":5897},{"className":5896},[],[5898],{"type":49,"value":5899},"@theme",{"type":49,"value":251},{"type":43,"tag":122,"props":5902,"children":5904},{"className":807,"code":5903,"language":809,"meta":127,"style":127},"@layer theme {\n  @theme {\n    \u002F* Custom fonts *\u002F\n    --font-rounded: \"SF Pro Rounded\", sans-serif;\n\n    \u002F* Custom line heights *\u002F\n    --text-xs--line-height: calc(1em \u002F 0.75);\n    --text-sm--line-height: calc(1.25em \u002F 0.875);\n    --text-base--line-height: calc(1.5em \u002F 1);\n\n    \u002F* Custom leading scales *\u002F\n    --leading-tight: 1.25em;\n    --leading-snug: 1.375em;\n    --leading-normal: 1.5em;\n  }\n}\n",[5905],{"type":43,"tag":130,"props":5906,"children":5907},{"__ignoreMap":127},[5908,5925,5937,5945,5966,5973,5981,6002,6037,6059,6066,6074,6082,6090,6098,6105],{"type":43,"tag":134,"props":5909,"children":5910},{"class":136,"line":137},[5911,5916,5921],{"type":43,"tag":134,"props":5912,"children":5913},{"style":502},[5914],{"type":49,"value":5915},"@layer",{"type":43,"tag":134,"props":5917,"children":5918},{"style":382},[5919],{"type":49,"value":5920}," theme ",{"type":43,"tag":134,"props":5922,"children":5923},{"style":223},[5924],{"type":49,"value":226},{"type":43,"tag":134,"props":5926,"children":5927},{"class":136,"line":147},[5928,5933],{"type":43,"tag":134,"props":5929,"children":5930},{"style":502},[5931],{"type":49,"value":5932},"  @theme",{"type":43,"tag":134,"props":5934,"children":5935},{"style":223},[5936],{"type":49,"value":256},{"type":43,"tag":134,"props":5938,"children":5939},{"class":136,"line":229},[5940],{"type":43,"tag":134,"props":5941,"children":5942},{"style":141},[5943],{"type":49,"value":5944},"    \u002F* Custom fonts *\u002F\n",{"type":43,"tag":134,"props":5946,"children":5947},{"class":136,"line":259},[5948,5953,5957,5962],{"type":43,"tag":134,"props":5949,"children":5950},{"style":382},[5951],{"type":49,"value":5952},"    --font-rounded: \"SF Pro Rounded\"",{"type":43,"tag":134,"props":5954,"children":5955},{"style":223},[5956],{"type":49,"value":597},{"type":43,"tag":134,"props":5958,"children":5959},{"style":151},[5960],{"type":49,"value":5961}," sans-serif",{"type":43,"tag":134,"props":5963,"children":5964},{"style":382},[5965],{"type":49,"value":429},{"type":43,"tag":134,"props":5967,"children":5968},{"class":136,"line":296},[5969],{"type":43,"tag":134,"props":5970,"children":5971},{"emptyLinePlaceholder":488},[5972],{"type":49,"value":491},{"type":43,"tag":134,"props":5974,"children":5975},{"class":136,"line":305},[5976],{"type":43,"tag":134,"props":5977,"children":5978},{"style":141},[5979],{"type":49,"value":5980},"    \u002F* Custom line heights *\u002F\n",{"type":43,"tag":134,"props":5982,"children":5983},{"class":136,"line":564},[5984,5989,5993,5998],{"type":43,"tag":134,"props":5985,"children":5986},{"style":382},[5987],{"type":49,"value":5988},"    --text-xs--line-height: calc(1em \u002F 0",{"type":43,"tag":134,"props":5990,"children":5991},{"style":223},[5992],{"type":49,"value":1779},{"type":43,"tag":134,"props":5994,"children":5995},{"style":151},[5996],{"type":49,"value":5997},"75",{"type":43,"tag":134,"props":5999,"children":6000},{"style":382},[6001],{"type":49,"value":853},{"type":43,"tag":134,"props":6003,"children":6004},{"class":136,"line":572},[6005,6010,6014,6019,6024,6028,6033],{"type":43,"tag":134,"props":6006,"children":6007},{"style":382},[6008],{"type":49,"value":6009},"    --text-sm--line-height: calc(1",{"type":43,"tag":134,"props":6011,"children":6012},{"style":223},[6013],{"type":49,"value":1779},{"type":43,"tag":134,"props":6015,"children":6016},{"style":151},[6017],{"type":49,"value":6018},"25em",{"type":43,"tag":134,"props":6020,"children":6021},{"style":382},[6022],{"type":49,"value":6023}," \u002F 0",{"type":43,"tag":134,"props":6025,"children":6026},{"style":223},[6027],{"type":49,"value":1779},{"type":43,"tag":134,"props":6029,"children":6030},{"style":151},[6031],{"type":49,"value":6032},"875",{"type":43,"tag":134,"props":6034,"children":6035},{"style":382},[6036],{"type":49,"value":853},{"type":43,"tag":134,"props":6038,"children":6039},{"class":136,"line":604},[6040,6045,6049,6054],{"type":43,"tag":134,"props":6041,"children":6042},{"style":382},[6043],{"type":49,"value":6044},"    --text-base--line-height: calc(1",{"type":43,"tag":134,"props":6046,"children":6047},{"style":223},[6048],{"type":49,"value":1779},{"type":43,"tag":134,"props":6050,"children":6051},{"style":151},[6052],{"type":49,"value":6053},"5em",{"type":43,"tag":134,"props":6055,"children":6056},{"style":382},[6057],{"type":49,"value":6058}," \u002F 1);\n",{"type":43,"tag":134,"props":6060,"children":6061},{"class":136,"line":613},[6062],{"type":43,"tag":134,"props":6063,"children":6064},{"emptyLinePlaceholder":488},[6065],{"type":49,"value":491},{"type":43,"tag":134,"props":6067,"children":6068},{"class":136,"line":638},[6069],{"type":43,"tag":134,"props":6070,"children":6071},{"style":141},[6072],{"type":49,"value":6073},"    \u002F* Custom leading scales *\u002F\n",{"type":43,"tag":134,"props":6075,"children":6076},{"class":136,"line":647},[6077],{"type":43,"tag":134,"props":6078,"children":6079},{"style":382},[6080],{"type":49,"value":6081},"    --leading-tight: 1.25em;\n",{"type":43,"tag":134,"props":6083,"children":6084},{"class":136,"line":668},[6085],{"type":43,"tag":134,"props":6086,"children":6087},{"style":382},[6088],{"type":49,"value":6089},"    --leading-snug: 1.375em;\n",{"type":43,"tag":134,"props":6091,"children":6092},{"class":136,"line":1062},[6093],{"type":43,"tag":134,"props":6094,"children":6095},{"style":382},[6096],{"type":49,"value":6097},"    --leading-normal: 1.5em;\n",{"type":43,"tag":134,"props":6099,"children":6100},{"class":136,"line":1070},[6101],{"type":43,"tag":134,"props":6102,"children":6103},{"style":382},[6104],{"type":49,"value":302},{"type":43,"tag":134,"props":6106,"children":6107},{"class":136,"line":1087},[6108],{"type":43,"tag":134,"props":6109,"children":6110},{"style":382},[6111],{"type":49,"value":311},{"type":43,"tag":58,"props":6113,"children":6115},{"id":6114},"platform-specific-styles",[6116],{"type":49,"value":6117},"Platform-Specific Styles",{"type":43,"tag":52,"props":6119,"children":6120},{},[6121],{"type":49,"value":6122},"Use platform media queries for platform-specific styling:",{"type":43,"tag":122,"props":6124,"children":6126},{"className":807,"code":6125,"language":809,"meta":127,"style":127},"@media ios {\n  :root {\n    --font-sans: system-ui;\n    --font-rounded: ui-rounded;\n  }\n}\n\n@media android {\n  :root {\n    --font-sans: normal;\n    --font-rounded: normal;\n  }\n}\n",[6127],{"type":43,"tag":130,"props":6128,"children":6129},{"__ignoreMap":127},[6130,6145,6160,6179,6198,6205,6212,6219,6234,6249,6268,6287,6294],{"type":43,"tag":134,"props":6131,"children":6132},{"class":136,"line":137},[6133,6137,6141],{"type":43,"tag":134,"props":6134,"children":6135},{"style":502},[6136],{"type":49,"value":937},{"type":43,"tag":134,"props":6138,"children":6139},{"style":382},[6140],{"type":49,"value":1080},{"type":43,"tag":134,"props":6142,"children":6143},{"style":223},[6144],{"type":49,"value":226},{"type":43,"tag":134,"props":6146,"children":6147},{"class":136,"line":147},[6148,6152,6156],{"type":43,"tag":134,"props":6149,"children":6150},{"style":223},[6151],{"type":49,"value":954},{"type":43,"tag":134,"props":6153,"children":6154},{"style":238},[6155],{"type":49,"value":40},{"type":43,"tag":134,"props":6157,"children":6158},{"style":223},[6159],{"type":49,"value":256},{"type":43,"tag":134,"props":6161,"children":6162},{"class":136,"line":229},[6163,6167,6171,6175],{"type":43,"tag":134,"props":6164,"children":6165},{"style":382},[6166],{"type":49,"value":1033},{"type":43,"tag":134,"props":6168,"children":6169},{"style":223},[6170],{"type":49,"value":251},{"type":43,"tag":134,"props":6172,"children":6173},{"style":382},[6174],{"type":49,"value":1159},{"type":43,"tag":134,"props":6176,"children":6177},{"style":223},[6178],{"type":49,"value":429},{"type":43,"tag":134,"props":6180,"children":6181},{"class":136,"line":259},[6182,6186,6190,6194],{"type":43,"tag":134,"props":6183,"children":6184},{"style":382},[6185],{"type":49,"value":991},{"type":43,"tag":134,"props":6187,"children":6188},{"style":223},[6189],{"type":49,"value":251},{"type":43,"tag":134,"props":6191,"children":6192},{"style":382},[6193],{"type":49,"value":1180},{"type":43,"tag":134,"props":6195,"children":6196},{"style":223},[6197],{"type":49,"value":429},{"type":43,"tag":134,"props":6199,"children":6200},{"class":136,"line":296},[6201],{"type":43,"tag":134,"props":6202,"children":6203},{"style":223},[6204],{"type":49,"value":302},{"type":43,"tag":134,"props":6206,"children":6207},{"class":136,"line":305},[6208],{"type":43,"tag":134,"props":6209,"children":6210},{"style":223},[6211],{"type":49,"value":311},{"type":43,"tag":134,"props":6213,"children":6214},{"class":136,"line":564},[6215],{"type":43,"tag":134,"props":6216,"children":6217},{"emptyLinePlaceholder":488},[6218],{"type":49,"value":491},{"type":43,"tag":134,"props":6220,"children":6221},{"class":136,"line":572},[6222,6226,6230],{"type":43,"tag":134,"props":6223,"children":6224},{"style":502},[6225],{"type":49,"value":937},{"type":43,"tag":134,"props":6227,"children":6228},{"style":382},[6229],{"type":49,"value":942},{"type":43,"tag":134,"props":6231,"children":6232},{"style":223},[6233],{"type":49,"value":226},{"type":43,"tag":134,"props":6235,"children":6236},{"class":136,"line":604},[6237,6241,6245],{"type":43,"tag":134,"props":6238,"children":6239},{"style":223},[6240],{"type":49,"value":954},{"type":43,"tag":134,"props":6242,"children":6243},{"style":238},[6244],{"type":49,"value":40},{"type":43,"tag":134,"props":6246,"children":6247},{"style":223},[6248],{"type":49,"value":256},{"type":43,"tag":134,"props":6250,"children":6251},{"class":136,"line":613},[6252,6256,6260,6264],{"type":43,"tag":134,"props":6253,"children":6254},{"style":382},[6255],{"type":49,"value":1033},{"type":43,"tag":134,"props":6257,"children":6258},{"style":223},[6259],{"type":49,"value":251},{"type":43,"tag":134,"props":6261,"children":6262},{"style":382},[6263],{"type":49,"value":1000},{"type":43,"tag":134,"props":6265,"children":6266},{"style":223},[6267],{"type":49,"value":429},{"type":43,"tag":134,"props":6269,"children":6270},{"class":136,"line":638},[6271,6275,6279,6283],{"type":43,"tag":134,"props":6272,"children":6273},{"style":382},[6274],{"type":49,"value":991},{"type":43,"tag":134,"props":6276,"children":6277},{"style":223},[6278],{"type":49,"value":251},{"type":43,"tag":134,"props":6280,"children":6281},{"style":382},[6282],{"type":49,"value":1000},{"type":43,"tag":134,"props":6284,"children":6285},{"style":223},[6286],{"type":49,"value":429},{"type":43,"tag":134,"props":6288,"children":6289},{"class":136,"line":647},[6290],{"type":43,"tag":134,"props":6291,"children":6292},{"style":223},[6293],{"type":49,"value":302},{"type":43,"tag":134,"props":6295,"children":6296},{"class":136,"line":668},[6297],{"type":43,"tag":134,"props":6298,"children":6299},{"style":223},[6300],{"type":49,"value":311},{"type":43,"tag":58,"props":6302,"children":6304},{"id":6303},"apple-system-colors-with-css-variables",[6305],{"type":49,"value":6306},"Apple System Colors with CSS Variables",{"type":43,"tag":52,"props":6308,"children":6309},{},[6310],{"type":49,"value":6311},"Create a CSS file for Apple semantic colors:",{"type":43,"tag":122,"props":6313,"children":6315},{"className":807,"code":6314,"language":809,"meta":127,"style":127},"\u002F* src\u002Fcss\u002Fsf.css *\u002F\n@layer base {\n  html {\n    color-scheme: light;\n  }\n}\n\n:root {\n  \u002F* Accent colors with light\u002Fdark mode *\u002F\n  --sf-blue: light-dark(rgb(0 122 255), rgb(10 132 255));\n  --sf-green: light-dark(rgb(52 199 89), rgb(48 209 89));\n  --sf-red: light-dark(rgb(255 59 48), rgb(255 69 58));\n\n  \u002F* Gray scales *\u002F\n  --sf-gray: light-dark(rgb(142 142 147), rgb(142 142 147));\n  --sf-gray-2: light-dark(rgb(174 174 178), rgb(99 99 102));\n\n  \u002F* Text colors *\u002F\n  --sf-text: light-dark(rgb(0 0 0), rgb(255 255 255));\n  --sf-text-2: light-dark(rgb(60 60 67 \u002F 0.6), rgb(235 235 245 \u002F 0.6));\n\n  \u002F* Background colors *\u002F\n  --sf-bg: light-dark(rgb(255 255 255), rgb(0 0 0));\n  --sf-bg-2: light-dark(rgb(242 242 247), rgb(28 28 30));\n}\n\n\u002F* iOS native colors via platformColor *\u002F\n@media ios {\n  :root {\n    --sf-blue: platformColor(systemBlue);\n    --sf-green: platformColor(systemGreen);\n    --sf-red: platformColor(systemRed);\n    --sf-gray: platformColor(systemGray);\n    --sf-text: platformColor(label);\n    --sf-text-2: platformColor(secondaryLabel);\n    --sf-bg: platformColor(systemBackground);\n    --sf-bg-2: platformColor(secondarySystemBackground);\n  }\n}\n\n\u002F* Register as Tailwind theme colors *\u002F\n@layer theme {\n  @theme {\n    --color-sf-blue: var(--sf-blue);\n    --color-sf-green: var(--sf-green);\n    --color-sf-red: var(--sf-red);\n    --color-sf-gray: var(--sf-gray);\n    --color-sf-text: var(--sf-text);\n    --color-sf-text-2: var(--sf-text-2);\n    --color-sf-bg: var(--sf-bg);\n    --color-sf-bg-2: var(--sf-bg-2);\n  }\n}\n",[6316],{"type":43,"tag":130,"props":6317,"children":6318},{"__ignoreMap":127},[6319,6327,6343,6355,6377,6384,6391,6398,6413,6421,6503,6580,6657,6664,6672,6747,6825,6832,6840,6913,7009,7016,7024,7096,7174,7181,7188,7196,7211,7226,7247,7268,7289,7310,7331,7352,7373,7394,7401,7408,7415,7423,7438,7449,7457,7465,7473,7481,7489,7497,7505,7513,7520],{"type":43,"tag":134,"props":6320,"children":6321},{"class":136,"line":137},[6322],{"type":43,"tag":134,"props":6323,"children":6324},{"style":141},[6325],{"type":49,"value":6326},"\u002F* src\u002Fcss\u002Fsf.css *\u002F\n",{"type":43,"tag":134,"props":6328,"children":6329},{"class":136,"line":147},[6330,6334,6339],{"type":43,"tag":134,"props":6331,"children":6332},{"style":502},[6333],{"type":49,"value":5915},{"type":43,"tag":134,"props":6335,"children":6336},{"style":382},[6337],{"type":49,"value":6338}," base ",{"type":43,"tag":134,"props":6340,"children":6341},{"style":223},[6342],{"type":49,"value":226},{"type":43,"tag":134,"props":6344,"children":6345},{"class":136,"line":229},[6346,6351],{"type":43,"tag":134,"props":6347,"children":6348},{"style":151},[6349],{"type":49,"value":6350},"  html",{"type":43,"tag":134,"props":6352,"children":6353},{"style":223},[6354],{"type":49,"value":256},{"type":43,"tag":134,"props":6356,"children":6357},{"class":136,"line":259},[6358,6364,6368,6373],{"type":43,"tag":134,"props":6359,"children":6361},{"style":6360},"--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6",[6362],{"type":49,"value":6363},"    color-scheme",{"type":43,"tag":134,"props":6365,"children":6366},{"style":223},[6367],{"type":49,"value":251},{"type":43,"tag":134,"props":6369,"children":6370},{"style":382},[6371],{"type":49,"value":6372}," light",{"type":43,"tag":134,"props":6374,"children":6375},{"style":223},[6376],{"type":49,"value":429},{"type":43,"tag":134,"props":6378,"children":6379},{"class":136,"line":296},[6380],{"type":43,"tag":134,"props":6381,"children":6382},{"style":223},[6383],{"type":49,"value":302},{"type":43,"tag":134,"props":6385,"children":6386},{"class":136,"line":305},[6387],{"type":43,"tag":134,"props":6388,"children":6389},{"style":223},[6390],{"type":49,"value":311},{"type":43,"tag":134,"props":6392,"children":6393},{"class":136,"line":564},[6394],{"type":43,"tag":134,"props":6395,"children":6396},{"emptyLinePlaceholder":488},[6397],{"type":49,"value":491},{"type":43,"tag":134,"props":6399,"children":6400},{"class":136,"line":572},[6401,6405,6409],{"type":43,"tag":134,"props":6402,"children":6403},{"style":223},[6404],{"type":49,"value":251},{"type":43,"tag":134,"props":6406,"children":6407},{"style":238},[6408],{"type":49,"value":40},{"type":43,"tag":134,"props":6410,"children":6411},{"style":223},[6412],{"type":49,"value":256},{"type":43,"tag":134,"props":6414,"children":6415},{"class":136,"line":604},[6416],{"type":43,"tag":134,"props":6417,"children":6418},{"style":141},[6419],{"type":49,"value":6420},"  \u002F* Accent colors with light\u002Fdark mode *\u002F\n",{"type":43,"tag":134,"props":6422,"children":6423},{"class":136,"line":613},[6424,6429,6433,6438,6443,6447,6453,6458,6463,6468,6473,6477,6482,6487,6491,6495,6499],{"type":43,"tag":134,"props":6425,"children":6426},{"style":382},[6427],{"type":49,"value":6428},"  --sf-blue",{"type":43,"tag":134,"props":6430,"children":6431},{"style":223},[6432],{"type":49,"value":251},{"type":43,"tag":134,"props":6434,"children":6435},{"style":382},[6436],{"type":49,"value":6437}," light-dark(",{"type":43,"tag":134,"props":6439,"children":6440},{"style":398},[6441],{"type":49,"value":6442},"rgb",{"type":43,"tag":134,"props":6444,"children":6445},{"style":223},[6446],{"type":49,"value":406},{"type":43,"tag":134,"props":6448,"children":6450},{"style":6449},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[6451],{"type":49,"value":6452},"0",{"type":43,"tag":134,"props":6454,"children":6455},{"style":6449},[6456],{"type":49,"value":6457}," 122",{"type":43,"tag":134,"props":6459,"children":6460},{"style":6449},[6461],{"type":49,"value":6462}," 255",{"type":43,"tag":134,"props":6464,"children":6465},{"style":223},[6466],{"type":49,"value":6467},"),",{"type":43,"tag":134,"props":6469,"children":6470},{"style":398},[6471],{"type":49,"value":6472}," rgb",{"type":43,"tag":134,"props":6474,"children":6475},{"style":223},[6476],{"type":49,"value":406},{"type":43,"tag":134,"props":6478,"children":6479},{"style":6449},[6480],{"type":49,"value":6481},"10",{"type":43,"tag":134,"props":6483,"children":6484},{"style":6449},[6485],{"type":49,"value":6486}," 132",{"type":43,"tag":134,"props":6488,"children":6489},{"style":6449},[6490],{"type":49,"value":6462},{"type":43,"tag":134,"props":6492,"children":6493},{"style":223},[6494],{"type":49,"value":424},{"type":43,"tag":134,"props":6496,"children":6497},{"style":382},[6498],{"type":49,"value":424},{"type":43,"tag":134,"props":6500,"children":6501},{"style":223},[6502],{"type":49,"value":429},{"type":43,"tag":134,"props":6504,"children":6505},{"class":136,"line":638},[6506,6511,6515,6519,6523,6527,6532,6537,6542,6546,6550,6554,6559,6564,6568,6572,6576],{"type":43,"tag":134,"props":6507,"children":6508},{"style":382},[6509],{"type":49,"value":6510},"  --sf-green",{"type":43,"tag":134,"props":6512,"children":6513},{"style":223},[6514],{"type":49,"value":251},{"type":43,"tag":134,"props":6516,"children":6517},{"style":382},[6518],{"type":49,"value":6437},{"type":43,"tag":134,"props":6520,"children":6521},{"style":398},[6522],{"type":49,"value":6442},{"type":43,"tag":134,"props":6524,"children":6525},{"style":223},[6526],{"type":49,"value":406},{"type":43,"tag":134,"props":6528,"children":6529},{"style":6449},[6530],{"type":49,"value":6531},"52",{"type":43,"tag":134,"props":6533,"children":6534},{"style":6449},[6535],{"type":49,"value":6536}," 199",{"type":43,"tag":134,"props":6538,"children":6539},{"style":6449},[6540],{"type":49,"value":6541}," 89",{"type":43,"tag":134,"props":6543,"children":6544},{"style":223},[6545],{"type":49,"value":6467},{"type":43,"tag":134,"props":6547,"children":6548},{"style":398},[6549],{"type":49,"value":6472},{"type":43,"tag":134,"props":6551,"children":6552},{"style":223},[6553],{"type":49,"value":406},{"type":43,"tag":134,"props":6555,"children":6556},{"style":6449},[6557],{"type":49,"value":6558},"48",{"type":43,"tag":134,"props":6560,"children":6561},{"style":6449},[6562],{"type":49,"value":6563}," 209",{"type":43,"tag":134,"props":6565,"children":6566},{"style":6449},[6567],{"type":49,"value":6541},{"type":43,"tag":134,"props":6569,"children":6570},{"style":223},[6571],{"type":49,"value":424},{"type":43,"tag":134,"props":6573,"children":6574},{"style":382},[6575],{"type":49,"value":424},{"type":43,"tag":134,"props":6577,"children":6578},{"style":223},[6579],{"type":49,"value":429},{"type":43,"tag":134,"props":6581,"children":6582},{"class":136,"line":647},[6583,6588,6592,6596,6600,6604,6609,6614,6619,6623,6627,6631,6635,6640,6645,6649,6653],{"type":43,"tag":134,"props":6584,"children":6585},{"style":382},[6586],{"type":49,"value":6587},"  --sf-red",{"type":43,"tag":134,"props":6589,"children":6590},{"style":223},[6591],{"type":49,"value":251},{"type":43,"tag":134,"props":6593,"children":6594},{"style":382},[6595],{"type":49,"value":6437},{"type":43,"tag":134,"props":6597,"children":6598},{"style":398},[6599],{"type":49,"value":6442},{"type":43,"tag":134,"props":6601,"children":6602},{"style":223},[6603],{"type":49,"value":406},{"type":43,"tag":134,"props":6605,"children":6606},{"style":6449},[6607],{"type":49,"value":6608},"255",{"type":43,"tag":134,"props":6610,"children":6611},{"style":6449},[6612],{"type":49,"value":6613}," 59",{"type":43,"tag":134,"props":6615,"children":6616},{"style":6449},[6617],{"type":49,"value":6618}," 48",{"type":43,"tag":134,"props":6620,"children":6621},{"style":223},[6622],{"type":49,"value":6467},{"type":43,"tag":134,"props":6624,"children":6625},{"style":398},[6626],{"type":49,"value":6472},{"type":43,"tag":134,"props":6628,"children":6629},{"style":223},[6630],{"type":49,"value":406},{"type":43,"tag":134,"props":6632,"children":6633},{"style":6449},[6634],{"type":49,"value":6608},{"type":43,"tag":134,"props":6636,"children":6637},{"style":6449},[6638],{"type":49,"value":6639}," 69",{"type":43,"tag":134,"props":6641,"children":6642},{"style":6449},[6643],{"type":49,"value":6644}," 58",{"type":43,"tag":134,"props":6646,"children":6647},{"style":223},[6648],{"type":49,"value":424},{"type":43,"tag":134,"props":6650,"children":6651},{"style":382},[6652],{"type":49,"value":424},{"type":43,"tag":134,"props":6654,"children":6655},{"style":223},[6656],{"type":49,"value":429},{"type":43,"tag":134,"props":6658,"children":6659},{"class":136,"line":668},[6660],{"type":43,"tag":134,"props":6661,"children":6662},{"emptyLinePlaceholder":488},[6663],{"type":49,"value":491},{"type":43,"tag":134,"props":6665,"children":6666},{"class":136,"line":1062},[6667],{"type":43,"tag":134,"props":6668,"children":6669},{"style":141},[6670],{"type":49,"value":6671},"  \u002F* Gray scales *\u002F\n",{"type":43,"tag":134,"props":6673,"children":6674},{"class":136,"line":1070},[6675,6680,6684,6688,6692,6696,6701,6706,6711,6715,6719,6723,6727,6731,6735,6739,6743],{"type":43,"tag":134,"props":6676,"children":6677},{"style":382},[6678],{"type":49,"value":6679},"  --sf-gray",{"type":43,"tag":134,"props":6681,"children":6682},{"style":223},[6683],{"type":49,"value":251},{"type":43,"tag":134,"props":6685,"children":6686},{"style":382},[6687],{"type":49,"value":6437},{"type":43,"tag":134,"props":6689,"children":6690},{"style":398},[6691],{"type":49,"value":6442},{"type":43,"tag":134,"props":6693,"children":6694},{"style":223},[6695],{"type":49,"value":406},{"type":43,"tag":134,"props":6697,"children":6698},{"style":6449},[6699],{"type":49,"value":6700},"142",{"type":43,"tag":134,"props":6702,"children":6703},{"style":6449},[6704],{"type":49,"value":6705}," 142",{"type":43,"tag":134,"props":6707,"children":6708},{"style":6449},[6709],{"type":49,"value":6710}," 147",{"type":43,"tag":134,"props":6712,"children":6713},{"style":223},[6714],{"type":49,"value":6467},{"type":43,"tag":134,"props":6716,"children":6717},{"style":398},[6718],{"type":49,"value":6472},{"type":43,"tag":134,"props":6720,"children":6721},{"style":223},[6722],{"type":49,"value":406},{"type":43,"tag":134,"props":6724,"children":6725},{"style":6449},[6726],{"type":49,"value":6700},{"type":43,"tag":134,"props":6728,"children":6729},{"style":6449},[6730],{"type":49,"value":6705},{"type":43,"tag":134,"props":6732,"children":6733},{"style":6449},[6734],{"type":49,"value":6710},{"type":43,"tag":134,"props":6736,"children":6737},{"style":223},[6738],{"type":49,"value":424},{"type":43,"tag":134,"props":6740,"children":6741},{"style":382},[6742],{"type":49,"value":424},{"type":43,"tag":134,"props":6744,"children":6745},{"style":223},[6746],{"type":49,"value":429},{"type":43,"tag":134,"props":6748,"children":6749},{"class":136,"line":1087},[6750,6755,6759,6763,6767,6771,6776,6781,6786,6790,6794,6798,6803,6808,6813,6817,6821],{"type":43,"tag":134,"props":6751,"children":6752},{"style":382},[6753],{"type":49,"value":6754},"  --sf-gray-2",{"type":43,"tag":134,"props":6756,"children":6757},{"style":223},[6758],{"type":49,"value":251},{"type":43,"tag":134,"props":6760,"children":6761},{"style":382},[6762],{"type":49,"value":6437},{"type":43,"tag":134,"props":6764,"children":6765},{"style":398},[6766],{"type":49,"value":6442},{"type":43,"tag":134,"props":6768,"children":6769},{"style":223},[6770],{"type":49,"value":406},{"type":43,"tag":134,"props":6772,"children":6773},{"style":6449},[6774],{"type":49,"value":6775},"174",{"type":43,"tag":134,"props":6777,"children":6778},{"style":6449},[6779],{"type":49,"value":6780}," 174",{"type":43,"tag":134,"props":6782,"children":6783},{"style":6449},[6784],{"type":49,"value":6785}," 178",{"type":43,"tag":134,"props":6787,"children":6788},{"style":223},[6789],{"type":49,"value":6467},{"type":43,"tag":134,"props":6791,"children":6792},{"style":398},[6793],{"type":49,"value":6472},{"type":43,"tag":134,"props":6795,"children":6796},{"style":223},[6797],{"type":49,"value":406},{"type":43,"tag":134,"props":6799,"children":6800},{"style":6449},[6801],{"type":49,"value":6802},"99",{"type":43,"tag":134,"props":6804,"children":6805},{"style":6449},[6806],{"type":49,"value":6807}," 99",{"type":43,"tag":134,"props":6809,"children":6810},{"style":6449},[6811],{"type":49,"value":6812}," 102",{"type":43,"tag":134,"props":6814,"children":6815},{"style":223},[6816],{"type":49,"value":424},{"type":43,"tag":134,"props":6818,"children":6819},{"style":382},[6820],{"type":49,"value":424},{"type":43,"tag":134,"props":6822,"children":6823},{"style":223},[6824],{"type":49,"value":429},{"type":43,"tag":134,"props":6826,"children":6827},{"class":136,"line":1103},[6828],{"type":43,"tag":134,"props":6829,"children":6830},{"emptyLinePlaceholder":488},[6831],{"type":49,"value":491},{"type":43,"tag":134,"props":6833,"children":6834},{"class":136,"line":1124},[6835],{"type":43,"tag":134,"props":6836,"children":6837},{"style":141},[6838],{"type":49,"value":6839},"  \u002F* Text colors *\u002F\n",{"type":43,"tag":134,"props":6841,"children":6842},{"class":136,"line":1145},[6843,6848,6852,6856,6860,6864,6868,6873,6877,6881,6885,6889,6893,6897,6901,6905,6909],{"type":43,"tag":134,"props":6844,"children":6845},{"style":382},[6846],{"type":49,"value":6847},"  --sf-text",{"type":43,"tag":134,"props":6849,"children":6850},{"style":223},[6851],{"type":49,"value":251},{"type":43,"tag":134,"props":6853,"children":6854},{"style":382},[6855],{"type":49,"value":6437},{"type":43,"tag":134,"props":6857,"children":6858},{"style":398},[6859],{"type":49,"value":6442},{"type":43,"tag":134,"props":6861,"children":6862},{"style":223},[6863],{"type":49,"value":406},{"type":43,"tag":134,"props":6865,"children":6866},{"style":6449},[6867],{"type":49,"value":6452},{"type":43,"tag":134,"props":6869,"children":6870},{"style":6449},[6871],{"type":49,"value":6872}," 0",{"type":43,"tag":134,"props":6874,"children":6875},{"style":6449},[6876],{"type":49,"value":6872},{"type":43,"tag":134,"props":6878,"children":6879},{"style":223},[6880],{"type":49,"value":6467},{"type":43,"tag":134,"props":6882,"children":6883},{"style":398},[6884],{"type":49,"value":6472},{"type":43,"tag":134,"props":6886,"children":6887},{"style":223},[6888],{"type":49,"value":406},{"type":43,"tag":134,"props":6890,"children":6891},{"style":6449},[6892],{"type":49,"value":6608},{"type":43,"tag":134,"props":6894,"children":6895},{"style":6449},[6896],{"type":49,"value":6462},{"type":43,"tag":134,"props":6898,"children":6899},{"style":6449},[6900],{"type":49,"value":6462},{"type":43,"tag":134,"props":6902,"children":6903},{"style":223},[6904],{"type":49,"value":424},{"type":43,"tag":134,"props":6906,"children":6907},{"style":382},[6908],{"type":49,"value":424},{"type":43,"tag":134,"props":6910,"children":6911},{"style":223},[6912],{"type":49,"value":429},{"type":43,"tag":134,"props":6914,"children":6915},{"class":136,"line":1166},[6916,6921,6925,6929,6933,6937,6942,6947,6952,6957,6962,6966,6970,6974,6979,6984,6989,6993,6997,7001,7005],{"type":43,"tag":134,"props":6917,"children":6918},{"style":382},[6919],{"type":49,"value":6920},"  --sf-text-2",{"type":43,"tag":134,"props":6922,"children":6923},{"style":223},[6924],{"type":49,"value":251},{"type":43,"tag":134,"props":6926,"children":6927},{"style":382},[6928],{"type":49,"value":6437},{"type":43,"tag":134,"props":6930,"children":6931},{"style":398},[6932],{"type":49,"value":6442},{"type":43,"tag":134,"props":6934,"children":6935},{"style":223},[6936],{"type":49,"value":406},{"type":43,"tag":134,"props":6938,"children":6939},{"style":6449},[6940],{"type":49,"value":6941},"60",{"type":43,"tag":134,"props":6943,"children":6944},{"style":6449},[6945],{"type":49,"value":6946}," 60",{"type":43,"tag":134,"props":6948,"children":6949},{"style":6449},[6950],{"type":49,"value":6951}," 67",{"type":43,"tag":134,"props":6953,"children":6954},{"style":382},[6955],{"type":49,"value":6956}," \u002F ",{"type":43,"tag":134,"props":6958,"children":6959},{"style":6449},[6960],{"type":49,"value":6961},"0.6",{"type":43,"tag":134,"props":6963,"children":6964},{"style":223},[6965],{"type":49,"value":6467},{"type":43,"tag":134,"props":6967,"children":6968},{"style":398},[6969],{"type":49,"value":6472},{"type":43,"tag":134,"props":6971,"children":6972},{"style":223},[6973],{"type":49,"value":406},{"type":43,"tag":134,"props":6975,"children":6976},{"style":6449},[6977],{"type":49,"value":6978},"235",{"type":43,"tag":134,"props":6980,"children":6981},{"style":6449},[6982],{"type":49,"value":6983}," 235",{"type":43,"tag":134,"props":6985,"children":6986},{"style":6449},[6987],{"type":49,"value":6988}," 245",{"type":43,"tag":134,"props":6990,"children":6991},{"style":382},[6992],{"type":49,"value":6956},{"type":43,"tag":134,"props":6994,"children":6995},{"style":6449},[6996],{"type":49,"value":6961},{"type":43,"tag":134,"props":6998,"children":6999},{"style":223},[7000],{"type":49,"value":424},{"type":43,"tag":134,"props":7002,"children":7003},{"style":382},[7004],{"type":49,"value":424},{"type":43,"tag":134,"props":7006,"children":7007},{"style":223},[7008],{"type":49,"value":429},{"type":43,"tag":134,"props":7010,"children":7011},{"class":136,"line":1187},[7012],{"type":43,"tag":134,"props":7013,"children":7014},{"emptyLinePlaceholder":488},[7015],{"type":49,"value":491},{"type":43,"tag":134,"props":7017,"children":7018},{"class":136,"line":1195},[7019],{"type":43,"tag":134,"props":7020,"children":7021},{"style":141},[7022],{"type":49,"value":7023},"  \u002F* Background colors *\u002F\n",{"type":43,"tag":134,"props":7025,"children":7026},{"class":136,"line":1847},[7027,7032,7036,7040,7044,7048,7052,7056,7060,7064,7068,7072,7076,7080,7084,7088,7092],{"type":43,"tag":134,"props":7028,"children":7029},{"style":382},[7030],{"type":49,"value":7031},"  --sf-bg",{"type":43,"tag":134,"props":7033,"children":7034},{"style":223},[7035],{"type":49,"value":251},{"type":43,"tag":134,"props":7037,"children":7038},{"style":382},[7039],{"type":49,"value":6437},{"type":43,"tag":134,"props":7041,"children":7042},{"style":398},[7043],{"type":49,"value":6442},{"type":43,"tag":134,"props":7045,"children":7046},{"style":223},[7047],{"type":49,"value":406},{"type":43,"tag":134,"props":7049,"children":7050},{"style":6449},[7051],{"type":49,"value":6608},{"type":43,"tag":134,"props":7053,"children":7054},{"style":6449},[7055],{"type":49,"value":6462},{"type":43,"tag":134,"props":7057,"children":7058},{"style":6449},[7059],{"type":49,"value":6462},{"type":43,"tag":134,"props":7061,"children":7062},{"style":223},[7063],{"type":49,"value":6467},{"type":43,"tag":134,"props":7065,"children":7066},{"style":398},[7067],{"type":49,"value":6472},{"type":43,"tag":134,"props":7069,"children":7070},{"style":223},[7071],{"type":49,"value":406},{"type":43,"tag":134,"props":7073,"children":7074},{"style":6449},[7075],{"type":49,"value":6452},{"type":43,"tag":134,"props":7077,"children":7078},{"style":6449},[7079],{"type":49,"value":6872},{"type":43,"tag":134,"props":7081,"children":7082},{"style":6449},[7083],{"type":49,"value":6872},{"type":43,"tag":134,"props":7085,"children":7086},{"style":223},[7087],{"type":49,"value":424},{"type":43,"tag":134,"props":7089,"children":7090},{"style":382},[7091],{"type":49,"value":424},{"type":43,"tag":134,"props":7093,"children":7094},{"style":223},[7095],{"type":49,"value":429},{"type":43,"tag":134,"props":7097,"children":7098},{"class":136,"line":1920},[7099,7104,7108,7112,7116,7120,7125,7130,7135,7139,7143,7147,7152,7157,7162,7166,7170],{"type":43,"tag":134,"props":7100,"children":7101},{"style":382},[7102],{"type":49,"value":7103},"  --sf-bg-2",{"type":43,"tag":134,"props":7105,"children":7106},{"style":223},[7107],{"type":49,"value":251},{"type":43,"tag":134,"props":7109,"children":7110},{"style":382},[7111],{"type":49,"value":6437},{"type":43,"tag":134,"props":7113,"children":7114},{"style":398},[7115],{"type":49,"value":6442},{"type":43,"tag":134,"props":7117,"children":7118},{"style":223},[7119],{"type":49,"value":406},{"type":43,"tag":134,"props":7121,"children":7122},{"style":6449},[7123],{"type":49,"value":7124},"242",{"type":43,"tag":134,"props":7126,"children":7127},{"style":6449},[7128],{"type":49,"value":7129}," 242",{"type":43,"tag":134,"props":7131,"children":7132},{"style":6449},[7133],{"type":49,"value":7134}," 247",{"type":43,"tag":134,"props":7136,"children":7137},{"style":223},[7138],{"type":49,"value":6467},{"type":43,"tag":134,"props":7140,"children":7141},{"style":398},[7142],{"type":49,"value":6472},{"type":43,"tag":134,"props":7144,"children":7145},{"style":223},[7146],{"type":49,"value":406},{"type":43,"tag":134,"props":7148,"children":7149},{"style":6449},[7150],{"type":49,"value":7151},"28",{"type":43,"tag":134,"props":7153,"children":7154},{"style":6449},[7155],{"type":49,"value":7156}," 28",{"type":43,"tag":134,"props":7158,"children":7159},{"style":6449},[7160],{"type":49,"value":7161}," 30",{"type":43,"tag":134,"props":7163,"children":7164},{"style":223},[7165],{"type":49,"value":424},{"type":43,"tag":134,"props":7167,"children":7168},{"style":382},[7169],{"type":49,"value":424},{"type":43,"tag":134,"props":7171,"children":7172},{"style":223},[7173],{"type":49,"value":429},{"type":43,"tag":134,"props":7175,"children":7176},{"class":136,"line":1928},[7177],{"type":43,"tag":134,"props":7178,"children":7179},{"style":223},[7180],{"type":49,"value":311},{"type":43,"tag":134,"props":7182,"children":7183},{"class":136,"line":1936},[7184],{"type":43,"tag":134,"props":7185,"children":7186},{"emptyLinePlaceholder":488},[7187],{"type":49,"value":491},{"type":43,"tag":134,"props":7189,"children":7190},{"class":136,"line":1975},[7191],{"type":43,"tag":134,"props":7192,"children":7193},{"style":141},[7194],{"type":49,"value":7195},"\u002F* iOS native colors via platformColor *\u002F\n",{"type":43,"tag":134,"props":7197,"children":7198},{"class":136,"line":2013},[7199,7203,7207],{"type":43,"tag":134,"props":7200,"children":7201},{"style":502},[7202],{"type":49,"value":937},{"type":43,"tag":134,"props":7204,"children":7205},{"style":382},[7206],{"type":49,"value":1080},{"type":43,"tag":134,"props":7208,"children":7209},{"style":223},[7210],{"type":49,"value":226},{"type":43,"tag":134,"props":7212,"children":7213},{"class":136,"line":2051},[7214,7218,7222],{"type":43,"tag":134,"props":7215,"children":7216},{"style":223},[7217],{"type":49,"value":954},{"type":43,"tag":134,"props":7219,"children":7220},{"style":238},[7221],{"type":49,"value":40},{"type":43,"tag":134,"props":7223,"children":7224},{"style":223},[7225],{"type":49,"value":256},{"type":43,"tag":134,"props":7227,"children":7228},{"class":136,"line":2089},[7229,7234,7238,7243],{"type":43,"tag":134,"props":7230,"children":7231},{"style":382},[7232],{"type":49,"value":7233},"    --sf-blue",{"type":43,"tag":134,"props":7235,"children":7236},{"style":223},[7237],{"type":49,"value":251},{"type":43,"tag":134,"props":7239,"children":7240},{"style":382},[7241],{"type":49,"value":7242}," platformColor(systemBlue)",{"type":43,"tag":134,"props":7244,"children":7245},{"style":223},[7246],{"type":49,"value":429},{"type":43,"tag":134,"props":7248,"children":7249},{"class":136,"line":2097},[7250,7255,7259,7264],{"type":43,"tag":134,"props":7251,"children":7252},{"style":382},[7253],{"type":49,"value":7254},"    --sf-green",{"type":43,"tag":134,"props":7256,"children":7257},{"style":223},[7258],{"type":49,"value":251},{"type":43,"tag":134,"props":7260,"children":7261},{"style":382},[7262],{"type":49,"value":7263}," platformColor(systemGreen)",{"type":43,"tag":134,"props":7265,"children":7266},{"style":223},[7267],{"type":49,"value":429},{"type":43,"tag":134,"props":7269,"children":7270},{"class":136,"line":2106},[7271,7276,7280,7285],{"type":43,"tag":134,"props":7272,"children":7273},{"style":382},[7274],{"type":49,"value":7275},"    --sf-red",{"type":43,"tag":134,"props":7277,"children":7278},{"style":223},[7279],{"type":49,"value":251},{"type":43,"tag":134,"props":7281,"children":7282},{"style":382},[7283],{"type":49,"value":7284}," platformColor(systemRed)",{"type":43,"tag":134,"props":7286,"children":7287},{"style":223},[7288],{"type":49,"value":429},{"type":43,"tag":134,"props":7290,"children":7291},{"class":136,"line":2128},[7292,7297,7301,7306],{"type":43,"tag":134,"props":7293,"children":7294},{"style":382},[7295],{"type":49,"value":7296},"    --sf-gray",{"type":43,"tag":134,"props":7298,"children":7299},{"style":223},[7300],{"type":49,"value":251},{"type":43,"tag":134,"props":7302,"children":7303},{"style":382},[7304],{"type":49,"value":7305}," platformColor(systemGray)",{"type":43,"tag":134,"props":7307,"children":7308},{"style":223},[7309],{"type":49,"value":429},{"type":43,"tag":134,"props":7311,"children":7312},{"class":136,"line":2173},[7313,7318,7322,7327],{"type":43,"tag":134,"props":7314,"children":7315},{"style":382},[7316],{"type":49,"value":7317},"    --sf-text",{"type":43,"tag":134,"props":7319,"children":7320},{"style":223},[7321],{"type":49,"value":251},{"type":43,"tag":134,"props":7323,"children":7324},{"style":382},[7325],{"type":49,"value":7326}," platformColor(label)",{"type":43,"tag":134,"props":7328,"children":7329},{"style":223},[7330],{"type":49,"value":429},{"type":43,"tag":134,"props":7332,"children":7333},{"class":136,"line":2187},[7334,7339,7343,7348],{"type":43,"tag":134,"props":7335,"children":7336},{"style":382},[7337],{"type":49,"value":7338},"    --sf-text-2",{"type":43,"tag":134,"props":7340,"children":7341},{"style":223},[7342],{"type":49,"value":251},{"type":43,"tag":134,"props":7344,"children":7345},{"style":382},[7346],{"type":49,"value":7347}," platformColor(secondaryLabel)",{"type":43,"tag":134,"props":7349,"children":7350},{"style":223},[7351],{"type":49,"value":429},{"type":43,"tag":134,"props":7353,"children":7354},{"class":136,"line":2259},[7355,7360,7364,7369],{"type":43,"tag":134,"props":7356,"children":7357},{"style":382},[7358],{"type":49,"value":7359},"    --sf-bg",{"type":43,"tag":134,"props":7361,"children":7362},{"style":223},[7363],{"type":49,"value":251},{"type":43,"tag":134,"props":7365,"children":7366},{"style":382},[7367],{"type":49,"value":7368}," platformColor(systemBackground)",{"type":43,"tag":134,"props":7370,"children":7371},{"style":223},[7372],{"type":49,"value":429},{"type":43,"tag":134,"props":7374,"children":7375},{"class":136,"line":2267},[7376,7381,7385,7390],{"type":43,"tag":134,"props":7377,"children":7378},{"style":382},[7379],{"type":49,"value":7380},"    --sf-bg-2",{"type":43,"tag":134,"props":7382,"children":7383},{"style":223},[7384],{"type":49,"value":251},{"type":43,"tag":134,"props":7386,"children":7387},{"style":382},[7388],{"type":49,"value":7389}," platformColor(secondarySystemBackground)",{"type":43,"tag":134,"props":7391,"children":7392},{"style":223},[7393],{"type":49,"value":429},{"type":43,"tag":134,"props":7395,"children":7396},{"class":136,"line":2276},[7397],{"type":43,"tag":134,"props":7398,"children":7399},{"style":223},[7400],{"type":49,"value":302},{"type":43,"tag":134,"props":7402,"children":7403},{"class":136,"line":2330},[7404],{"type":43,"tag":134,"props":7405,"children":7406},{"style":223},[7407],{"type":49,"value":311},{"type":43,"tag":134,"props":7409,"children":7410},{"class":136,"line":2351},[7411],{"type":43,"tag":134,"props":7412,"children":7413},{"emptyLinePlaceholder":488},[7414],{"type":49,"value":491},{"type":43,"tag":134,"props":7416,"children":7417},{"class":136,"line":2359},[7418],{"type":43,"tag":134,"props":7419,"children":7420},{"style":141},[7421],{"type":49,"value":7422},"\u002F* Register as Tailwind theme colors *\u002F\n",{"type":43,"tag":134,"props":7424,"children":7425},{"class":136,"line":2367},[7426,7430,7434],{"type":43,"tag":134,"props":7427,"children":7428},{"style":502},[7429],{"type":49,"value":5915},{"type":43,"tag":134,"props":7431,"children":7432},{"style":382},[7433],{"type":49,"value":5920},{"type":43,"tag":134,"props":7435,"children":7436},{"style":223},[7437],{"type":49,"value":226},{"type":43,"tag":134,"props":7439,"children":7440},{"class":136,"line":2417},[7441,7445],{"type":43,"tag":134,"props":7442,"children":7443},{"style":502},[7444],{"type":49,"value":5932},{"type":43,"tag":134,"props":7446,"children":7447},{"style":223},[7448],{"type":49,"value":256},{"type":43,"tag":134,"props":7450,"children":7451},{"class":136,"line":2486},[7452],{"type":43,"tag":134,"props":7453,"children":7454},{"style":382},[7455],{"type":49,"value":7456},"    --color-sf-blue: var(--sf-blue);\n",{"type":43,"tag":134,"props":7458,"children":7459},{"class":136,"line":2494},[7460],{"type":43,"tag":134,"props":7461,"children":7462},{"style":382},[7463],{"type":49,"value":7464},"    --color-sf-green: var(--sf-green);\n",{"type":43,"tag":134,"props":7466,"children":7467},{"class":136,"line":2533},[7468],{"type":43,"tag":134,"props":7469,"children":7470},{"style":382},[7471],{"type":49,"value":7472},"    --color-sf-red: var(--sf-red);\n",{"type":43,"tag":134,"props":7474,"children":7475},{"class":136,"line":2541},[7476],{"type":43,"tag":134,"props":7477,"children":7478},{"style":382},[7479],{"type":49,"value":7480},"    --color-sf-gray: var(--sf-gray);\n",{"type":43,"tag":134,"props":7482,"children":7483},{"class":136,"line":2550},[7484],{"type":43,"tag":134,"props":7485,"children":7486},{"style":382},[7487],{"type":49,"value":7488},"    --color-sf-text: var(--sf-text);\n",{"type":43,"tag":134,"props":7490,"children":7491},{"class":136,"line":2575},[7492],{"type":43,"tag":134,"props":7493,"children":7494},{"style":382},[7495],{"type":49,"value":7496},"    --color-sf-text-2: var(--sf-text-2);\n",{"type":43,"tag":134,"props":7498,"children":7499},{"class":136,"line":2635},[7500],{"type":43,"tag":134,"props":7501,"children":7502},{"style":382},[7503],{"type":49,"value":7504},"    --color-sf-bg: var(--sf-bg);\n",{"type":43,"tag":134,"props":7506,"children":7507},{"class":136,"line":2651},[7508],{"type":43,"tag":134,"props":7509,"children":7510},{"style":382},[7511],{"type":49,"value":7512},"    --color-sf-bg-2: var(--sf-bg-2);\n",{"type":43,"tag":134,"props":7514,"children":7515},{"class":136,"line":2720},[7516],{"type":43,"tag":134,"props":7517,"children":7518},{"style":223},[7519],{"type":49,"value":302},{"type":43,"tag":134,"props":7521,"children":7522},{"class":136,"line":2728},[7523],{"type":43,"tag":134,"props":7524,"children":7525},{"style":223},[7526],{"type":49,"value":311},{"type":43,"tag":52,"props":7528,"children":7529},{},[7530],{"type":49,"value":7531},"Then use in components:",{"type":43,"tag":122,"props":7533,"children":7535},{"className":1333,"code":7534,"language":1335,"meta":127,"style":127},"\u003CText className=\"text-sf-text\">Primary text\u003C\u002FText>\n\u003CText className=\"text-sf-text-2\">Secondary text\u003C\u002FText>\n\u003CView className=\"bg-sf-bg\">...\u003C\u002FView>\n",[7536],{"type":43,"tag":130,"props":7537,"children":7538},{"__ignoreMap":127},[7539,7593,7646],{"type":43,"tag":134,"props":7540,"children":7541},{"class":136,"line":137},[7542,7547,7551,7555,7559,7563,7568,7572,7576,7581,7585,7589],{"type":43,"tag":134,"props":7543,"children":7544},{"style":223},[7545],{"type":49,"value":7546},"\u003C",{"type":43,"tag":134,"props":7548,"children":7549},{"style":151},[7550],{"type":49,"value":2734},{"type":43,"tag":134,"props":7552,"children":7553},{"style":238},[7554],{"type":49,"value":1812},{"type":43,"tag":134,"props":7556,"children":7557},{"style":223},[7558],{"type":49,"value":547},{"type":43,"tag":134,"props":7560,"children":7561},{"style":223},[7562],{"type":49,"value":246},{"type":43,"tag":134,"props":7564,"children":7565},{"style":157},[7566],{"type":49,"value":7567},"text-sf-text",{"type":43,"tag":134,"props":7569,"children":7570},{"style":223},[7571],{"type":49,"value":246},{"type":43,"tag":134,"props":7573,"children":7574},{"style":223},[7575],{"type":49,"value":1798},{"type":43,"tag":134,"props":7577,"children":7578},{"style":382},[7579],{"type":49,"value":7580},"Primary text",{"type":43,"tag":134,"props":7582,"children":7583},{"style":223},[7584],{"type":49,"value":5740},{"type":43,"tag":134,"props":7586,"children":7587},{"style":151},[7588],{"type":49,"value":2734},{"type":43,"tag":134,"props":7590,"children":7591},{"style":223},[7592],{"type":49,"value":3944},{"type":43,"tag":134,"props":7594,"children":7595},{"class":136,"line":147},[7596,7600,7604,7608,7612,7616,7621,7625,7629,7634,7638,7642],{"type":43,"tag":134,"props":7597,"children":7598},{"style":223},[7599],{"type":49,"value":7546},{"type":43,"tag":134,"props":7601,"children":7602},{"style":151},[7603],{"type":49,"value":2734},{"type":43,"tag":134,"props":7605,"children":7606},{"style":238},[7607],{"type":49,"value":1812},{"type":43,"tag":134,"props":7609,"children":7610},{"style":223},[7611],{"type":49,"value":547},{"type":43,"tag":134,"props":7613,"children":7614},{"style":223},[7615],{"type":49,"value":246},{"type":43,"tag":134,"props":7617,"children":7618},{"style":157},[7619],{"type":49,"value":7620},"text-sf-text-2",{"type":43,"tag":134,"props":7622,"children":7623},{"style":223},[7624],{"type":49,"value":246},{"type":43,"tag":134,"props":7626,"children":7627},{"style":223},[7628],{"type":49,"value":1798},{"type":43,"tag":134,"props":7630,"children":7631},{"style":382},[7632],{"type":49,"value":7633},"Secondary text",{"type":43,"tag":134,"props":7635,"children":7636},{"style":223},[7637],{"type":49,"value":5740},{"type":43,"tag":134,"props":7639,"children":7640},{"style":151},[7641],{"type":49,"value":2734},{"type":43,"tag":134,"props":7643,"children":7644},{"style":223},[7645],{"type":49,"value":3944},{"type":43,"tag":134,"props":7647,"children":7648},{"class":136,"line":229},[7649,7653,7657,7661,7665,7669,7674,7678,7682,7687,7691,7695],{"type":43,"tag":134,"props":7650,"children":7651},{"style":223},[7652],{"type":49,"value":7546},{"type":43,"tag":134,"props":7654,"children":7655},{"style":151},[7656],{"type":49,"value":2500},{"type":43,"tag":134,"props":7658,"children":7659},{"style":238},[7660],{"type":49,"value":1812},{"type":43,"tag":134,"props":7662,"children":7663},{"style":223},[7664],{"type":49,"value":547},{"type":43,"tag":134,"props":7666,"children":7667},{"style":223},[7668],{"type":49,"value":246},{"type":43,"tag":134,"props":7670,"children":7671},{"style":157},[7672],{"type":49,"value":7673},"bg-sf-bg",{"type":43,"tag":134,"props":7675,"children":7676},{"style":223},[7677],{"type":49,"value":246},{"type":43,"tag":134,"props":7679,"children":7680},{"style":223},[7681],{"type":49,"value":1798},{"type":43,"tag":134,"props":7683,"children":7684},{"style":382},[7685],{"type":49,"value":7686},"...",{"type":43,"tag":134,"props":7688,"children":7689},{"style":223},[7690],{"type":49,"value":5740},{"type":43,"tag":134,"props":7692,"children":7693},{"style":151},[7694],{"type":49,"value":2500},{"type":43,"tag":134,"props":7696,"children":7697},{"style":223},[7698],{"type":49,"value":3944},{"type":43,"tag":58,"props":7700,"children":7702},{"id":7701},"using-css-variables-in-javascript",[7703],{"type":49,"value":7704},"Using CSS Variables in JavaScript",{"type":43,"tag":52,"props":7706,"children":7707},{},[7708,7710,7716],{"type":49,"value":7709},"Use the ",{"type":43,"tag":130,"props":7711,"children":7713},{"className":7712},[],[7714],{"type":49,"value":7715},"useCSSVariable",{"type":49,"value":7717}," hook:",{"type":43,"tag":122,"props":7719,"children":7721},{"className":1333,"code":7720,"language":1335,"meta":127,"style":127},"import { useCSSVariable } from \"@\u002Ftw\";\n\nfunction MyComponent() {\n  const blue = useCSSVariable(\"--sf-blue\");\n\n  return \u003CView style={{ borderColor: blue }} \u002F>;\n}\n",[7722],{"type":43,"tag":130,"props":7723,"children":7724},{"__ignoreMap":127},[7725,7765,7772,7792,7837,7844,7888],{"type":43,"tag":134,"props":7726,"children":7727},{"class":136,"line":137},[7728,7732,7736,7741,7745,7749,7753,7757,7761],{"type":43,"tag":134,"props":7729,"children":7730},{"style":502},[7731],{"type":49,"value":1347},{"type":43,"tag":134,"props":7733,"children":7734},{"style":223},[7735],{"type":49,"value":379},{"type":43,"tag":134,"props":7737,"children":7738},{"style":382},[7739],{"type":49,"value":7740}," useCSSVariable",{"type":43,"tag":134,"props":7742,"children":7743},{"style":223},[7744],{"type":49,"value":1450},{"type":43,"tag":134,"props":7746,"children":7747},{"style":502},[7748],{"type":49,"value":1397},{"type":43,"tag":134,"props":7750,"children":7751},{"style":223},[7752],{"type":49,"value":283},{"type":43,"tag":134,"props":7754,"children":7755},{"style":157},[7756],{"type":49,"value":5564},{"type":43,"tag":134,"props":7758,"children":7759},{"style":223},[7760],{"type":49,"value":246},{"type":43,"tag":134,"props":7762,"children":7763},{"style":223},[7764],{"type":49,"value":429},{"type":43,"tag":134,"props":7766,"children":7767},{"class":136,"line":147},[7768],{"type":43,"tag":134,"props":7769,"children":7770},{"emptyLinePlaceholder":488},[7771],{"type":49,"value":491},{"type":43,"tag":134,"props":7773,"children":7774},{"class":136,"line":229},[7775,7779,7784,7788],{"type":43,"tag":134,"props":7776,"children":7777},{"style":238},[7778],{"type":49,"value":3897},{"type":43,"tag":134,"props":7780,"children":7781},{"style":398},[7782],{"type":49,"value":7783}," MyComponent",{"type":43,"tag":134,"props":7785,"children":7786},{"style":223},[7787],{"type":49,"value":5605},{"type":43,"tag":134,"props":7789,"children":7790},{"style":223},[7791],{"type":49,"value":256},{"type":43,"tag":134,"props":7793,"children":7794},{"class":136,"line":259},[7795,7799,7804,7808,7812,7816,7820,7825,7829,7833],{"type":43,"tag":134,"props":7796,"children":7797},{"style":238},[7798],{"type":49,"value":3965},{"type":43,"tag":134,"props":7800,"children":7801},{"style":382},[7802],{"type":49,"value":7803}," blue",{"type":43,"tag":134,"props":7805,"children":7806},{"style":223},[7807],{"type":49,"value":395},{"type":43,"tag":134,"props":7809,"children":7810},{"style":398},[7811],{"type":49,"value":7740},{"type":43,"tag":134,"props":7813,"children":7814},{"style":617},[7815],{"type":49,"value":406},{"type":43,"tag":134,"props":7817,"children":7818},{"style":223},[7819],{"type":49,"value":246},{"type":43,"tag":134,"props":7821,"children":7822},{"style":157},[7823],{"type":49,"value":7824},"--sf-blue",{"type":43,"tag":134,"props":7826,"children":7827},{"style":223},[7828],{"type":49,"value":246},{"type":43,"tag":134,"props":7830,"children":7831},{"style":617},[7832],{"type":49,"value":424},{"type":43,"tag":134,"props":7834,"children":7835},{"style":223},[7836],{"type":49,"value":429},{"type":43,"tag":134,"props":7838,"children":7839},{"class":136,"line":296},[7840],{"type":43,"tag":134,"props":7841,"children":7842},{"emptyLinePlaceholder":488},[7843],{"type":49,"value":491},{"type":43,"tag":134,"props":7845,"children":7846},{"class":136,"line":305},[7847,7851,7856,7860,7865,7869,7874,7878,7883],{"type":43,"tag":134,"props":7848,"children":7849},{"style":502},[7850],{"type":49,"value":1853},{"type":43,"tag":134,"props":7852,"children":7853},{"style":223},[7854],{"type":49,"value":7855}," \u003C",{"type":43,"tag":134,"props":7857,"children":7858},{"style":151},[7859],{"type":49,"value":2500},{"type":43,"tag":134,"props":7861,"children":7862},{"style":238},[7863],{"type":49,"value":7864}," style",{"type":43,"tag":134,"props":7866,"children":7867},{"style":223},[7868],{"type":49,"value":5798},{"type":43,"tag":134,"props":7870,"children":7871},{"style":617},[7872],{"type":49,"value":7873}," borderColor",{"type":43,"tag":134,"props":7875,"children":7876},{"style":223},[7877],{"type":49,"value":251},{"type":43,"tag":134,"props":7879,"children":7880},{"style":382},[7881],{"type":49,"value":7882}," blue ",{"type":43,"tag":134,"props":7884,"children":7885},{"style":223},[7886],{"type":49,"value":7887},"}} \u002F>;\n",{"type":43,"tag":134,"props":7889,"children":7890},{"class":136,"line":564},[7891],{"type":43,"tag":134,"props":7892,"children":7893},{"style":223},[7894],{"type":49,"value":311},{"type":43,"tag":58,"props":7896,"children":7898},{"id":7897},"key-differences-from-nativewind-v4-tailwind-v3",[7899],{"type":49,"value":7900},"Key Differences from NativeWind v4 \u002F Tailwind v3",{"type":43,"tag":7902,"props":7903,"children":7904},"ol",{},[7905,7915,7938,7963,7985,8003],{"type":43,"tag":74,"props":7906,"children":7907},{},[7908,7913],{"type":43,"tag":78,"props":7909,"children":7910},{},[7911],{"type":49,"value":7912},"No babel.config.js",{"type":49,"value":7914}," - Configuration is now CSS-first",{"type":43,"tag":74,"props":7916,"children":7917},{},[7918,7923,7925,7930,7932],{"type":43,"tag":78,"props":7919,"children":7920},{},[7921],{"type":49,"value":7922},"PostCSS plugin",{"type":49,"value":7924}," - Uses ",{"type":43,"tag":130,"props":7926,"children":7928},{"className":7927},[],[7929],{"type":49,"value":112},{"type":49,"value":7931}," instead of ",{"type":43,"tag":130,"props":7933,"children":7935},{"className":7934},[],[7936],{"type":49,"value":7937},"tailwindcss",{"type":43,"tag":74,"props":7939,"children":7940},{},[7941,7946,7948,7954,7955,7961],{"type":43,"tag":78,"props":7942,"children":7943},{},[7944],{"type":49,"value":7945},"CSS imports",{"type":49,"value":7947}," - Use ",{"type":43,"tag":130,"props":7949,"children":7951},{"className":7950},[],[7952],{"type":49,"value":7953},"@import \"tailwindcss\u002F...\"",{"type":49,"value":7931},{"type":43,"tag":130,"props":7956,"children":7958},{"className":7957},[],[7959],{"type":49,"value":7960},"@tailwind",{"type":49,"value":7962}," directives",{"type":43,"tag":74,"props":7964,"children":7965},{},[7966,7971,7972,7977,7979],{"type":43,"tag":78,"props":7967,"children":7968},{},[7969],{"type":49,"value":7970},"Theme config",{"type":49,"value":7947},{"type":43,"tag":130,"props":7973,"children":7975},{"className":7974},[],[7976],{"type":49,"value":5899},{"type":49,"value":7978}," in CSS instead of ",{"type":43,"tag":130,"props":7980,"children":7982},{"className":7981},[],[7983],{"type":49,"value":7984},"tailwind.config.js",{"type":43,"tag":74,"props":7986,"children":7987},{},[7988,7993,7995,8001],{"type":43,"tag":78,"props":7989,"children":7990},{},[7991],{"type":49,"value":7992},"Component wrappers",{"type":49,"value":7994}," - Must wrap components with ",{"type":43,"tag":130,"props":7996,"children":7998},{"className":7997},[],[7999],{"type":49,"value":8000},"useCssElement",{"type":49,"value":8002}," for className support",{"type":43,"tag":74,"props":8004,"children":8005},{},[8006,8011,8012,8018,8020,8026],{"type":43,"tag":78,"props":8007,"children":8008},{},[8009],{"type":49,"value":8010},"Metro config",{"type":49,"value":7947},{"type":43,"tag":130,"props":8013,"children":8015},{"className":8014},[],[8016],{"type":49,"value":8017},"withNativewind",{"type":49,"value":8019}," with different options (",{"type":43,"tag":130,"props":8021,"children":8023},{"className":8022},[],[8024],{"type":49,"value":8025},"inlineVariables: false",{"type":49,"value":424},{"type":43,"tag":58,"props":8028,"children":8030},{"id":8029},"troubleshooting",[8031],{"type":49,"value":8032},"Troubleshooting",{"type":43,"tag":332,"props":8034,"children":8036},{"id":8035},"styles-not-applying",[8037],{"type":49,"value":8038},"Styles not applying",{"type":43,"tag":7902,"props":8040,"children":8041},{},[8042,8047,8057],{"type":43,"tag":74,"props":8043,"children":8044},{},[8045],{"type":49,"value":8046},"Ensure you have the CSS file imported in your app entry",{"type":43,"tag":74,"props":8048,"children":8049},{},[8050,8052],{"type":49,"value":8051},"Check that components are wrapped with ",{"type":43,"tag":130,"props":8053,"children":8055},{"className":8054},[],[8056],{"type":49,"value":8000},{"type":43,"tag":74,"props":8058,"children":8059},{},[8060,8062,8067],{"type":49,"value":8061},"Verify Metro config has ",{"type":43,"tag":130,"props":8063,"children":8065},{"className":8064},[],[8066],{"type":49,"value":8017},{"type":49,"value":8068}," applied",{"type":43,"tag":332,"props":8070,"children":8072},{"id":8071},"platform-colors-not-working",[8073],{"type":49,"value":8074},"Platform colors not working",{"type":43,"tag":7902,"props":8076,"children":8077},{},[8078,8099],{"type":43,"tag":74,"props":8079,"children":8080},{},[8081,8083,8089,8091,8097],{"type":49,"value":8082},"Use ",{"type":43,"tag":130,"props":8084,"children":8086},{"className":8085},[],[8087],{"type":49,"value":8088},"platformColor()",{"type":49,"value":8090}," in ",{"type":43,"tag":130,"props":8092,"children":8094},{"className":8093},[],[8095],{"type":49,"value":8096},"@media ios",{"type":49,"value":8098}," blocks",{"type":43,"tag":74,"props":8100,"children":8101},{},[8102,8104,8110],{"type":49,"value":8103},"Fall back to ",{"type":43,"tag":130,"props":8105,"children":8107},{"className":8106},[],[8108],{"type":49,"value":8109},"light-dark()",{"type":49,"value":8111}," for web\u002FAndroid",{"type":43,"tag":332,"props":8113,"children":8115},{"id":8114},"typescript-errors",[8116],{"type":49,"value":8117},"TypeScript errors",{"type":43,"tag":52,"props":8119,"children":8120},{},[8121],{"type":49,"value":8122},"Add className to component props:",{"type":43,"tag":122,"props":8124,"children":8126},{"className":1333,"code":8125,"language":1335,"meta":127,"style":127},"type Props = React.ComponentProps\u003Ctypeof RNView> & { className?: string };\n",[8127],{"type":43,"tag":130,"props":8128,"children":8129},{"__ignoreMap":127},[8130],{"type":43,"tag":134,"props":8131,"children":8132},{"class":136,"line":137},[8133,8137,8142,8146,8150,8154,8158,8162,8166,8170,8174,8178,8182,8186,8190],{"type":43,"tag":134,"props":8134,"children":8135},{"style":238},[8136],{"type":49,"value":511},{"type":43,"tag":134,"props":8138,"children":8139},{"style":151},[8140],{"type":49,"value":8141}," Props",{"type":43,"tag":134,"props":8143,"children":8144},{"style":223},[8145],{"type":49,"value":395},{"type":43,"tag":134,"props":8147,"children":8148},{"style":151},[8149],{"type":49,"value":1774},{"type":43,"tag":134,"props":8151,"children":8152},{"style":223},[8153],{"type":49,"value":1779},{"type":43,"tag":134,"props":8155,"children":8156},{"style":151},[8157],{"type":49,"value":1784},{"type":43,"tag":134,"props":8159,"children":8160},{"style":223},[8161],{"type":49,"value":1789},{"type":43,"tag":134,"props":8163,"children":8164},{"style":382},[8165],{"type":49,"value":1566},{"type":43,"tag":134,"props":8167,"children":8168},{"style":223},[8169],{"type":49,"value":1798},{"type":43,"tag":134,"props":8171,"children":8172},{"style":223},[8173],{"type":49,"value":1803},{"type":43,"tag":134,"props":8175,"children":8176},{"style":223},[8177],{"type":49,"value":379},{"type":43,"tag":134,"props":8179,"children":8180},{"style":617},[8181],{"type":49,"value":1812},{"type":43,"tag":134,"props":8183,"children":8184},{"style":223},[8185],{"type":49,"value":1817},{"type":43,"tag":134,"props":8187,"children":8188},{"style":151},[8189],{"type":49,"value":1822},{"type":43,"tag":134,"props":8191,"children":8192},{"style":223},[8193],{"type":49,"value":8194}," };\n",{"type":43,"tag":1901,"props":8196,"children":8197},{},[8198],{"type":49,"value":8199},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":8201,"total":8318},[8202,8219,8235,8247,8267,8286,8306],{"slug":8203,"name":8203,"fn":8204,"description":8205,"org":8206,"tags":8207,"stars":25,"repoUrl":26,"updatedAt":8218},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8208,8211,8214,8217],{"name":8209,"slug":8210,"type":15},"Accessibility","accessibility",{"name":8212,"slug":8213,"type":15},"Charts","charts",{"name":8215,"slug":8216,"type":15},"Data Visualization","data-visualization",{"name":23,"slug":24,"type":15},"2026-06-30T19:00:57.102",{"slug":8220,"name":8220,"fn":8221,"description":8222,"org":8223,"tags":8224,"stars":25,"repoUrl":26,"updatedAt":8234},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8225,8228,8231],{"name":8226,"slug":8227,"type":15},"Agents","agents",{"name":8229,"slug":8230,"type":15},"Browser Automation","browser-automation",{"name":8232,"slug":8233,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":8236,"name":8236,"fn":8237,"description":8238,"org":8239,"tags":8240,"stars":25,"repoUrl":26,"updatedAt":8246},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8241,8242,8245],{"name":8229,"slug":8230,"type":15},{"name":8243,"slug":8244,"type":15},"Local Development","local-development",{"name":8232,"slug":8233,"type":15},"2026-04-06T18:41:17.526867",{"slug":8248,"name":8248,"fn":8249,"description":8250,"org":8251,"tags":8252,"stars":25,"repoUrl":26,"updatedAt":8266},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8253,8254,8257,8260,8263],{"name":8226,"slug":8227,"type":15},{"name":8255,"slug":8256,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":8258,"slug":8259,"type":15},"SDK","sdk",{"name":8261,"slug":8262,"type":15},"Serverless","serverless",{"name":8264,"slug":8265,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":8268,"name":8268,"fn":8269,"description":8270,"org":8271,"tags":8272,"stars":25,"repoUrl":26,"updatedAt":8285},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8273,8274,8276,8279,8282],{"name":20,"slug":21,"type":15},{"name":8275,"slug":1530,"type":15},"React",{"name":8277,"slug":8278,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":8280,"slug":8281,"type":15},"UI Components","ui-components",{"name":8283,"slug":8284,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":8287,"name":8287,"fn":8288,"description":8289,"org":8290,"tags":8291,"stars":25,"repoUrl":26,"updatedAt":8305},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8292,8295,8298,8301,8304],{"name":8293,"slug":8294,"type":15},"AI Infrastructure","ai-infrastructure",{"name":8296,"slug":8297,"type":15},"Cost Optimization","cost-optimization",{"name":8299,"slug":8300,"type":15},"LLM","llm",{"name":8302,"slug":8303,"type":15},"Performance","performance",{"name":8283,"slug":8284,"type":15},"2026-04-06T18:40:44.377464",{"slug":8307,"name":8307,"fn":8308,"description":8309,"org":8310,"tags":8311,"stars":25,"repoUrl":26,"updatedAt":8317},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8312,8313,8316],{"name":8296,"slug":8297,"type":15},{"name":8314,"slug":8315,"type":15},"Database","database",{"name":8299,"slug":8300,"type":15},"2026-04-06T18:41:08.513425",600,{"items":8320,"total":8517},[8321,8342,8365,8382,8398,8415,8434,8446,8460,8474,8486,8501],{"slug":8322,"name":8322,"fn":8323,"description":8324,"org":8325,"tags":8326,"stars":8339,"repoUrl":8340,"updatedAt":8341},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8327,8330,8333,8336],{"name":8328,"slug":8329,"type":15},"Documents","documents",{"name":8331,"slug":8332,"type":15},"Healthcare","healthcare",{"name":8334,"slug":8335,"type":15},"Insurance","insurance",{"name":8337,"slug":8338,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":8343,"name":8343,"fn":8344,"description":8345,"org":8346,"tags":8347,"stars":8362,"repoUrl":8363,"updatedAt":8364},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8348,8351,8353,8356,8359],{"name":8349,"slug":8350,"type":15},".NET","dotnet",{"name":8352,"slug":8343,"type":15},"ASP.NET Core",{"name":8354,"slug":8355,"type":15},"Blazor","blazor",{"name":8357,"slug":8358,"type":15},"C#","csharp",{"name":8360,"slug":8361,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":8366,"name":8366,"fn":8367,"description":8368,"org":8369,"tags":8370,"stars":8362,"repoUrl":8363,"updatedAt":8381},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8371,8374,8377,8380],{"name":8372,"slug":8373,"type":15},"Apps SDK","apps-sdk",{"name":8375,"slug":8376,"type":15},"ChatGPT","chatgpt",{"name":8378,"slug":8379,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":8383,"name":8383,"fn":8384,"description":8385,"org":8386,"tags":8387,"stars":8362,"repoUrl":8363,"updatedAt":8397},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8388,8391,8394],{"name":8389,"slug":8390,"type":15},"API Development","api-development",{"name":8392,"slug":8393,"type":15},"CLI","cli",{"name":8395,"slug":8396,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":8399,"name":8399,"fn":8400,"description":8401,"org":8402,"tags":8403,"stars":8362,"repoUrl":8363,"updatedAt":8414},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8404,8407,8410,8411],{"name":8405,"slug":8406,"type":15},"Cloudflare","cloudflare",{"name":8408,"slug":8409,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":8255,"slug":8256,"type":15},{"name":8412,"slug":8413,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":8416,"name":8416,"fn":8417,"description":8418,"org":8419,"tags":8420,"stars":8362,"repoUrl":8363,"updatedAt":8433},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8421,8424,8427,8430],{"name":8422,"slug":8423,"type":15},"Productivity","productivity",{"name":8425,"slug":8426,"type":15},"Project Management","project-management",{"name":8428,"slug":8429,"type":15},"Strategy","strategy",{"name":8431,"slug":8432,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":8435,"name":8435,"fn":8436,"description":8437,"org":8438,"tags":8439,"stars":8362,"repoUrl":8363,"updatedAt":8445},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8440,8441,8443,8444],{"name":23,"slug":24,"type":15},{"name":8442,"slug":8435,"type":15},"Figma",{"name":20,"slug":21,"type":15},{"name":8378,"slug":8379,"type":15},"2026-04-12T05:06:47.939943",{"slug":8447,"name":8447,"fn":8448,"description":8449,"org":8450,"tags":8451,"stars":8362,"repoUrl":8363,"updatedAt":8459},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8452,8453,8456,8457,8458],{"name":23,"slug":24,"type":15},{"name":8454,"slug":8455,"type":15},"Design System","design-system",{"name":8442,"slug":8435,"type":15},{"name":20,"slug":21,"type":15},{"name":8280,"slug":8281,"type":15},"2026-05-10T05:59:52.971881",{"slug":8461,"name":8461,"fn":8462,"description":8463,"org":8464,"tags":8465,"stars":8362,"repoUrl":8363,"updatedAt":8473},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8466,8467,8468,8471,8472],{"name":23,"slug":24,"type":15},{"name":8454,"slug":8455,"type":15},{"name":8469,"slug":8470,"type":15},"Documentation","documentation",{"name":8442,"slug":8435,"type":15},{"name":20,"slug":21,"type":15},"2026-05-16T06:07:47.821474",{"slug":8475,"name":8475,"fn":8476,"description":8477,"org":8478,"tags":8479,"stars":8362,"repoUrl":8363,"updatedAt":8485},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8480,8481,8482,8483,8484],{"name":23,"slug":24,"type":15},{"name":8442,"slug":8435,"type":15},{"name":20,"slug":21,"type":15},{"name":8280,"slug":8281,"type":15},{"name":8360,"slug":8361,"type":15},"2026-05-16T06:07:40.583615",{"slug":8487,"name":8487,"fn":8488,"description":8489,"org":8490,"tags":8491,"stars":8362,"repoUrl":8363,"updatedAt":8500},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8492,8495,8496,8499],{"name":8493,"slug":8494,"type":15},"Animation","animation",{"name":8395,"slug":8396,"type":15},{"name":8497,"slug":8498,"type":15},"Creative","creative",{"name":23,"slug":24,"type":15},"2026-05-02T05:31:48.48485",{"slug":8502,"name":8502,"fn":8503,"description":8504,"org":8505,"tags":8506,"stars":8362,"repoUrl":8363,"updatedAt":8516},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8507,8508,8509,8512,8515],{"name":8497,"slug":8498,"type":15},{"name":23,"slug":24,"type":15},{"name":8510,"slug":8511,"type":15},"Image Generation","image-generation",{"name":8513,"slug":8514,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]