Design System Rules MANDATORY — AppTheme Is the Single Source of Truth Every color, font, and spacing value in the app MUST come from . No exceptions. Before writing ANY view code, verify: 1. Does have a token for the color I need? If not, add one. 2. Does have a token for the font I need? If not, add one. 3. Am I using for padding/spacing? If not, switch to it. FORBIDDEN — Hardcoded Styling (Zero Tolerance) These patterns are BANNED everywhere in feature views. Violations MUST be caught and fixed. AppTheme Pattern Every app MUST use a centralized theme with nested enums for , , and . Do NOT…