Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
fix(theme): Declare error variables as !default (#3531)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasschopmans authored and williamernest committed Sep 10, 2018
1 parent 92fd9a7 commit eebdcdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mdc-theme/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ $mdc-theme-background: #fff !default; // White
$mdc-theme-surface: #fff !default;
$mdc-theme-on-surface: if(mdc-theme-contrast-tone($mdc-theme-surface) == "dark", #000, #fff) !default;

$mdc-theme-error: #b00020;
$mdc-theme-on-error: #fff;
$mdc-theme-error: #b00020 !default;
$mdc-theme-on-error: #fff !default;

//
// Text colors according to light vs dark and text type.
Expand Down

0 comments on commit eebdcdc

Please sign in to comment.