SASS to SCSS Converter
Paste SASS indented code to convert it to SCSS brace syntax — curly braces and semicolons added, mixin shorthand expanded automatically.
Last updated: May 21, 2026
Find this tool useful? Support the project to keep it free!
Buy me a coffeeWhat is SASS to SCSS Converter?
SASS (indented syntax) uses indentation instead of braces and omits semicolons. SCSS uses the familiar CSS brace and semicolon style. Both compile to the same CSS output using the Sass preprocessor.
Converting from SASS to SCSS involves: detecting block boundaries from indentation and inserting matching `{}` braces, adding semicolons after declarations, converting `=name` to `@mixin name`, and converting `+name` to `@include name`.
How to Use SASS to SCSS Converter
Paste your SASS (indented) code into the input panel (or click Load Sample)
The converted SCSS output appears instantly in the right panel
Copy the output or download it as a .scss file
Common Use Cases
- Developers migrating from SASS indented syntax to the more common SCSS syntax.
- Teams adopting SCSS as the project standard from existing SASS codebases.
- Developers who receive SASS files and need to integrate them into an SCSS project.
Example Input and Output
Convert a simple SASS component to SCSS brace syntax.
.card
background: white
+flex-center.card {
background: white;
@include flex-center;
}Privacy
All conversion happens in your browser. No code is sent to any server.

