design-tokens
Installation
SKILL.md
Design Tokens
The complete Material 3 design system foundation for Android. Every color, spacing value, elevation, and shape in a production app must come from this system. 22 rules covering all categories globally.
CRITICAL — Color System
Rule 1: Always Use Semantic Color Roles — Never Hardcode
// ✅ Every color references MaterialTheme
Text(color = MaterialTheme.colorScheme.onSurface) // primary text
Text(color = MaterialTheme.colorScheme.onSurfaceVariant) // secondary text
Box(Modifier.background(MaterialTheme.colorScheme.surfaceContainerLow)) // card bg
Icon(tint = MaterialTheme.colorScheme.onSurfaceVariant) // secondary icon