WebToolsPlanet
Converter Tools

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

Client-Side Processing
Input Data Stays on Device
Instant Local Execution

Find this tool useful? Support the project to keep it free!

Buy me a coffee

What 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

1

Paste your SCSS code into the input panel (or click Load Sample)

2

The converted SASS output appears instantly in the right panel

3

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.

SCSS input
.card {
  background: white;
  @include flex-center;
}
SASS output
.card
  background: white
  +flex-center

Privacy

All conversion happens in your browser. No code is sent to any server.

Frequently Asked Questions

Are SCSS and SASS the same language?
Yes — both are syntaxes for the Sass preprocessor and compile to the same CSS output. SCSS was introduced to be more accessible to CSS developers (it's a strict superset of CSS), while SASS is the older, terser indented syntax.
Is the conversion lossless?
For standard SCSS patterns — variables, nesting, mixins, includes — the conversion is accurate. Complex multi-brace constructs or unusual formatting may need manual review.