2015-11-03 18:57:40 +03:00
|
|
|
@import 'mixins-shared';
|
2014-10-03 15:58:24 +04:00
|
|
|
|
2015-11-03 20:28:56 +03:00
|
|
|
@mixin generic-variations-colors($mixin-name, $extra, $default, $contrast-factor, $material-param-1) {
|
2015-11-03 17:21:39 +03:00
|
|
|
|
2015-11-03 03:41:17 +03:00
|
|
|
$material-color-names: "red" "pink" "purple" "deep-purple" "indigo" "blue" "light-blue" "cyan" "teal" "green" "light-green" "lime" "yellow" "amber" "orange" "deep-orange" "brown" "grey" "blue-grey";
|
2015-11-03 17:21:39 +03:00
|
|
|
@each $material-color-name in $material-color-names {
|
|
|
|
//// given a color build multiples depths
|
|
|
|
//$material-color-numbers: "" "-50" "-100" "-200" "-300" "-400" "-500" "-600" "-700" "-800" "-900" "-A100" "-A200" "-A400" "-A700";
|
|
|
|
//@each $material-color-number in $material-color-numbers {
|
2015-11-03 18:57:40 +03:00
|
|
|
// @include generic-variations-color($mixin-name, $extra, $default, $contrast-factor, $material-color-name, $material-color-number)
|
2015-11-03 17:21:39 +03:00
|
|
|
//}
|
2015-11-02 23:39:13 +03:00
|
|
|
|
2015-11-03 17:21:39 +03:00
|
|
|
// build a single depth color palette
|
|
|
|
$material-color-number: "";
|
2015-11-03 20:28:56 +03:00
|
|
|
@include generic-variations-color($mixin-name, $extra, $default, $contrast-factor, $material-color-name, $material-color-number, $material-param-1)
|
2015-11-03 17:21:39 +03:00
|
|
|
}
|
2014-10-08 16:52:08 +04:00
|
|
|
}
|