apheleia/test/formatters/samplecode/prettier-scss/in.scss

2 lines
209 B
SCSS
Raw Normal View History

/* 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;}