summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/var-in-css-function.scss
blob: 72b371ba5750d35ed3ab808764e477c5a0d829e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$very_light: 98%;
$light: 90%;

$hue1: 110;
$saturation1: 50%;
$very_light1: hsl($hue1, $saturation1, $very_light); 
$light1: hsl($hue1, $saturation1, $light); 

$color: rgb(0, 255, 13);
.v-window-footer {
    background: linear-gradient(bottom, $very_light1, $light1);
    abc: rgba($color, .85);
}