# SCSS styling ## theme.scss compileren 1. Ga naar **Admin** → **Thema** 2. Klik **SCSS compileren** bij jouw thema 3. CSS wordt gegenereerd in `assets/css_compiled/theme.css` ## SCSS voorbeeld ```scss $primary-color: #0a369d; $font-stack: Helvetica, Arial, sans-serif; body { font-family: $font-stack; color: #333; } .header { background: $primary-color; color: #fff; } ```