apheleia/test/formatters/samplecode/prettier-scss/in.scss
2022-09-10 17:24:54 -07:00

1 line
209 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;}