# SCSS styling ## Compiling theme.scss 1. Go to **Admin** → **Theme** 2. Click **Compile SCSS** for your theme 3. CSS is generated in `assets/css/theme.css` ## SCSS example ```scss $primary-color: #0a369d; $font-stack: Helvetica, Arial, sans-serif; body { font-family: $font-stack; color: #333; } .header { background: $primary-color; color: #fff; } ```