{"syntax":"scss","plugin":null,"sass":"// Sass v3.2.5\n\n@mixin debug-outline($color: red, $background-color: false) {\n outline: 1px solid $color;\n @if $background-color != false {\n background-color: $background-color;\n }\n}\n\n.foo {\n @include debug-outline();\n}\n.bar {\n @include debug-outline(green, $background-color: yellow);\n}\n.baz {\n @include debug-outline(purple);\n}"}