What problem does it solve? Setting up Tailwind CSS in an Expo React Native project involves coordinating Metro, PostCSS, global CSS, and component wrappers, and the v4/v5 toolchain differs significantly from older NativeWind setups, leading to misconfiguration and broken styles. ## Core Features & Use Cases - Complete toolchain configuration: Installs and wires up Tailwind CSS v4, NativeWind v5, react-native-css, Metro, and PostCSS with the correct options such as inlineVariables disabled. - CSS-enabled component wrappers: Provides typed wrapper components (View, Text, ScrollView, Image, Pressable, and more) built on useCssElement so className styling works across iOS, Android, and Web. - Theming and platform styling: Covers @theme custom variables, platform media queries, Apple system colors via platformColor, and the useCSSVariable hook for JavaScript access. - Use Case: You are starting a new Expo app and want universal Tailwind styling. Use this Skill to install dependencies, generate metro.config.js and postcss.config.mjs, create global.css, and scaffold the tw component directory in one pass. ## Quick Start Use the expo-tailwind-setup skill to configure Tailwind CSS v4 with NativeWind v5 and react-native-css in my Expo project, including the Metro and PostCSS configs and the CSS-wrapped components.