1$x: rgb(0, 255, 255);
2
3div {
4  color: rgb(255, $blue: 0, $green: 255);
5  background: rgb(123, 45, 6);
6  flah: rgba(0, 0, 0, 1) + #111;
7  grah: rgba(#f0e, $alpha: .5);
8  blah: rgba(1,2,3,.6);
9
10  floo: $x;
11  bloo: rgba($x, 0.7);
12  groo: $x;
13
14  $x: rgb(123, 45, 6);
15
16  hoo: red($x);
17  moo: green($x);
18  poo: blue($x);
19
20  goo: mix(rgba(255, 0, 0, 0.5), #00f);
21
22  boo: invert(#123456);
23}
24