Free online tools for developers
Sudo's Tools
Navigation
Formatters
Converters
Diff Checkers
Encoders & Decoders
Misc
Sass Compiler
Use this tool to compile sass quickly in the browser.
1
2
3
4
5
6
7
8
9
10
11
$primary:
black
;
$secondary:
rgba
(
$primary
,
.5
)
;
.my-class
{
color:
$secondary
;
body.loaded
&
{
color:
$primary
;
}
}
1
2
3
4
5
6
7
8
.my-class
{
color:
rgba
(
0
,
0
,
0
,
0.5
)
;
}
body.loaded
.my-class
{
color:
black
;
}
Options
Style
Nested
Expanded
Compact
Compress
Comments
Indent
2
4
6