SCSS to LESS Converter
Paste SCSS code and get LESS output — variables, mixins, and includes converted to LESS equivalents.
Last updated: May 21, 2026
Find this tool useful? Support the project to keep it free!
Buy me a coffeeWhat is SCSS to LESS Converter?
SCSS and LESS are both CSS preprocessors but use different syntax for variables and mixins. SCSS uses `$variable` notation and the `@mixin`/`@include` keywords, while LESS uses `@variable` and parametric mixins defined as `.name() {}` and called as `.name()`.
This converter handles the most common syntactic differences: variable declarations, mixin definitions, mixin includes, and extend rules. Both preprocessors support nesting with the same syntax, so nested selectors pass through unchanged.
How to Use SCSS to LESS Converter
Paste SCSS code into the input panel (or click Load Sample)
The LESS output appears instantly in the right panel
Copy or download the converted .less file
Review complex features like @use/@forward that have no direct LESS equivalent
Common Use Cases
- Developers migrating a project from SCSS to LESS.
- Teams integrating SCSS components into a LESS-based codebase.
- Developers comparing equivalent syntax between the two preprocessors.
Example Input and Output
Convert SCSS variables and mixin to LESS equivalents.
$primary: #0f766e;
@mixin flex-center() {
display: flex;
}@primary: #0f766e;
.flex-center() {
display: flex;
}Privacy
All conversion happens in your browser. No code is sent to any server.

