SCSS to SASS Converter
Paste SCSS code to convert it to SASS indented syntax — braces and semicolons removed, mixin syntax updated automatically.
Last updated: May 21, 2026
Find this tool useful? Support the project to keep it free!
Buy me a coffeeWhat is SCSS to SASS Converter?
SCSS and SASS are two syntaxes for the same Sass preprocessor. SCSS uses curly braces and semicolons like CSS, while SASS uses indentation and omits braces and semicolons entirely. The two syntaxes are semantically identical — the same features are available in both.
Converting from SCSS to SASS involves: removing curly braces `{}`, removing semicolons `;`, converting `@mixin name` to `=name`, and converting `@include name` to `+name`. Variables (`$var`) are identical in both syntaxes.
How to Use SCSS to SASS Converter
Paste your SCSS code into the input panel (or click Load Sample)
The converted SASS output appears instantly in the right panel
Copy the output or download it as a .sass file
Common Use Cases
- Developers migrating a codebase from SCSS to the leaner SASS indented syntax.
- Developers who prefer SASS indentation style and want to convert team SCSS files.
- Learning the relationship between the two Sass syntax variants.
Example Input and Output
Convert a simple SCSS component to SASS indented syntax.
.card {
background: white;
@include flex-center;
}.card
background: white
+flex-centerPrivacy
All conversion happens in your browser. No code is sent to any server.

