fix(sass): copy $colors map for $color-ios/$color-md

This commit is contained in:
Adam Bradley
2015-12-14 15:57:43 -06:00
parent b812cd86fb
commit a801a09991
2 changed files with 2 additions and 18 deletions

View File

@ -3,15 +3,7 @@
// iOS Default Theme
// ----------------------------------
$colors-ios: (
primary: #387ef5,
secondary: #32db64,
danger: #f53d3d,
light: #f4f4f4,
dark: #222,
) !default;
$colors-ios: copy-colors($colors) !default;
$text-ios-color: $text-color !default;

View File

@ -3,15 +3,7 @@
// Material Design Default Theme
// ----------------------------------
$colors-md: (
primary: #387ef5,
secondary: #32db64,
danger: #f53d3d,
light: #f4f4f4,
dark: #222,
) !default;
$colors-md: copy-colors($colors) !default;
$text-md-color: $text-color !default;