17 lines
331 B
SCSS
17 lines
331 B
SCSS
@function gtkalpha($c,$a) {
|
|
@return unquote("alpha(#{$c},#{$a})");
|
|
}
|
|
|
|
@function gtkmix($c1,$c2,$r) {
|
|
$ratio: 1 - $r / 100%; // match SCSS mix()
|
|
@return unquote("mix(#{$c1},#{$c2},#{$ratio})");
|
|
}
|
|
|
|
@function gtkshade($c,$s) {
|
|
@return unquote("shade(#{$c},#{$s})");
|
|
}
|
|
|
|
@function gtkcolor($c) {
|
|
@return unquote("@#{$c}");
|
|
}
|