Svelte Guideline: Styling — Use CSS variables for theming. Description: Dynamic styling. Do: CSS custom properties. Don't: Inline styles for themes. Good Example: style="--color: {color}". Bad Example: style="color: {color}". Severity: Low. Docs: .