Skip to content

Commit

Permalink
fix: allow $material-dark-elevation-colors to be overridden (#12340)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbclark committed Oct 5, 2020
1 parent 2ac01d4 commit 41cbb3a
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions packages/vuetify/src/styles/settings/_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@
$material-dark-elevation-colors: () !default;
// https://material.io/design/color/dark-theme.html#properties
// https://material.io/design/environment/elevation.html#default-elevations
$material-dark-elevation-colors: (
'0': #000000,
'1': #1E1E1E,
'2': #222222,
'3': #252525,
'4': #272727,
'6': #2C2C2C,
'8': #2E2E2E,
'12': #333333,
'16': #363636,
'24': #373737
$material-dark-elevation-colors: map-deep-merge(
(
'0': #000000,
'1': #1E1E1E,
'2': #222222,
'3': #252525,
'4': #272727,
'6': #2C2C2C,
'8': #2E2E2E,
'12': #333333,
'16': #363636,
'24': #373737
),
$material-dark-elevation-colors
);

$material-dark: () !default;
Expand Down

0 comments on commit 41cbb3a

Please sign in to comment.