Skip to content

Commit

Permalink
fix(theming): update contrast colors
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed May 3, 2018
1 parent c3b7209 commit ae1028d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/src/themes/ionic.theme.default.ios.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// ----------------------------------
$colors-ios: () !default;
$ion-colors-ios: ();
$colors-ios: ion-extend-colors($colors, $ion-colors-ios, $colors-ios);
$colors-ios: ion-extend-colors($colors, $ion-colors-ios, $colors-ios);

// iOS General
// --------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion core/src/themes/ionic.theme.default.md.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// ----------------------------------
$colors-md: () !default;
$ion-colors-md: ();
$colors-md: ion-extend-colors($colors, $ion-colors-md, $colors-md);
$colors-md: ion-extend-colors($colors, $ion-colors-md, $colors-md);

// Material Design General
// --------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions core/src/themes/ionic.theme.default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ $ion-colors: (
),
warning: (
base: $warning,
contrast: #000,
contrast: #fff,
shade: get-color-shade($warning),
tint: get-color-tint($warning)
),
Expand All @@ -67,7 +67,7 @@ $ion-colors: (
),
medium: (
base: $medium,
contrast: #000,
contrast: #fff,
shade: get-color-shade($medium),
tint: get-color-tint($medium)
),
Expand All @@ -78,7 +78,7 @@ $ion-colors: (
tint: get-color-tint($dark)
)
);
$colors: ion-extend-colors($ion-colors, $colors);
$colors: ion-extend-colors($ion-colors, $colors);

// Default General
// --------------------------------------------------
Expand Down

0 comments on commit ae1028d

Please sign in to comment.