2019-06-18 20:52:51 +00:00
|
|
|
@import "./_vals.scss";
|
|
|
|
|
|
|
|
$background: #000000;
|
|
|
|
$on-background: white;
|
|
|
|
$disabled-brightness: 1.1;
|
|
|
|
|
|
|
|
@mixin Elevation ($dp) {
|
2019-07-03 21:11:31 +00:00
|
|
|
background: lighten($background, 10% + floor($dp * .7%));
|
2019-06-18 20:52:51 +00:00
|
|
|
z-index: $dp;
|
|
|
|
}
|
|
|
|
|
2019-07-27 14:29:27 +00:00
|
|
|
@mixin ElevationTransition() {
|
|
|
|
transition: background .5s;
|
|
|
|
}
|
|
|
|
|
2019-07-05 10:12:26 +00:00
|
|
|
@import "./_maketheme.scss";
|