Astro Guideline: Styling — Use CSS variables for theming. Description: Define tokens in :root. Do: CSS custom properties for themes. Don't: Hardcoded colors everywhere. Good Example: :root { --primary: #3b82f6; }. Bad Example: color: #3b82f6; everywhere. Severity: Medium. Docs: .