apheleia/test/formatters/samplecode/css-beautify/out.scss
2023-11-26 10:49:21 +00:00

11 lines
230 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;
}