Free SCSS to CSS compiler — variables, nesting & mixins, powered by Dart Sass

Compilation runs entirely in your browser — nothing is uploaded.

SCSS to CSS — compile Sass in your browser

SCSS is a superset of CSS that adds variables, nesting, mixins and functions. Browsers only understand plain CSS, so SCSS must be compiled first. This tool runs Dart Sass — the canonical Sass implementation — entirely client-side, so you get reference-accurate output with no build step.

What it expands

  • Variables ($brand) → resolved values
  • Nesting & & parent selectors → flat selectors
  • Mixins (@mixin/@include) and control flow (@if/@each/@for)
  • The module system (@use, @forward) and sass:math/sass:color

Note: in-browser there is no file system, so @import/@use of external partials is unavailable — paste self-contained SCSS.

Related tools