What problem does it solve? Android teams often end up with hardcoded colors, inconsistent typography, and mixed Material 2/Material 3 usage that breaks dark mode and brand identity. This Skill enforces a single, consistent Material 3 theming system for the Solvyx Compose project. ## Core Features & Use Cases - Semantic Color Schemes: Defines complete light and dark ColorScheme palettes using semantic tokens like primary, surface, and error instead of raw hex colors in Composables. - Typography and Shapes Standards: Provides a Nunito-based Typography scale and fixed RoundedCornerShape values accessed via MaterialTheme.typography and MaterialTheme.shapes. - Dynamic Color and Custom Tokens: Supports Android 12+ dynamic color behind a feature flag and extends the theme with Solvyx-specific tokens (SOS red, warning amber) via CompositionLocal. - Use Case: When building a new screen, wrap it in SolvyxTheme, style text with MaterialTheme.typography.headlineMedium, and color surfaces with MaterialTheme.colorScheme.surface so the UI works in both light and dark modes automatically. ## Quick Start Apply the Material 3 theming conventions from this skill to create or refactor the app's theme, colors, typography, and shapes in Jetpack Compose.