apheleia/test/formatters/samplecode/prettier-scss/out.scss
2023-03-12 10:50:44 +00:00

9 lines
223 B
SCSS

/* Define standard variables and values for website */
$bgcolor: lightblue;
$textcolor: darkblue;
$fontsize: 18px; /* Use the variables */
body {
background-color: $bgcolor;
color: $textcolor;
font-size: $fontsize;
}