2015-11-04 23:49:03 +03:00
|
|
|
// This file is NOT automatically converted and must be manually merged
|
2015-11-03 18:57:40 +03:00
|
|
|
@import 'mixins-shared';
|
2014-10-03 15:58:24 +04:00
|
|
|
|
2015-11-04 19:57:10 +03:00
|
|
|
@mixin generic-variations-colors($args) {
|
2015-11-03 17:21:39 +03:00
|
|
|
|
2015-11-04 21:03:16 +03:00
|
|
|
$material-colors: (
|
|
|
|
"red": $red,
|
|
|
|
"pink": $pink,
|
|
|
|
"purple": $purple,
|
|
|
|
"deep-purple": $deep-purple,
|
|
|
|
"indigo": $indigo,
|
|
|
|
"blue": $blue,
|
|
|
|
"light-blue": $light-blue,
|
|
|
|
"cyan": $cyan,
|
|
|
|
"teal": $teal,
|
|
|
|
"green": $green,
|
|
|
|
"light-green": $light-green,
|
|
|
|
"lime": $lime,
|
|
|
|
"yellow": $yellow,
|
|
|
|
"amber": $amber,
|
|
|
|
"orange": $orange,
|
|
|
|
"deep-orange": $deep-orange,
|
|
|
|
"brown": $brown,
|
|
|
|
"grey": $grey,
|
|
|
|
"blue-grey": $blue-grey
|
|
|
|
);
|
|
|
|
|
|
|
|
@each $material-color-name, $material-color in $material-colors {
|
2015-11-03 17:21:39 +03:00
|
|
|
// build a single depth color palette
|
2015-11-04 21:03:16 +03:00
|
|
|
$args-variation-color: map-merge($args, (
|
|
|
|
material-color-name: $material-color-name,
|
|
|
|
material-color: $material-color,
|
2015-11-04 19:57:10 +03:00
|
|
|
material-color-number: ""
|
|
|
|
));
|
|
|
|
|
2015-11-04 21:03:16 +03:00
|
|
|
@include generic-variations-color($args-variation-color)
|
2015-11-03 17:21:39 +03:00
|
|
|
}
|
2014-10-08 16:52:08 +04:00
|
|
|
}
|
2015-11-04 21:03:16 +03:00
|
|
|
|
|
|
|
// http://hugogiraudel.com/2014/01/27/casting-types-in-sass/
|
|
|
|
// https://github.com/HugoGiraudel/SassyJSON/blob/master/stylesheets/decode/helpers/color/_color.scss
|