23 lines
440 B
SCSS
23 lines
440 B
SCSS
@import "./_vals.scss";
|
|
|
|
$background: #000000;
|
|
$on-background: white;
|
|
$disabled-brightness: 1.1;
|
|
|
|
@mixin Elevation ($dp, $imp:false) {
|
|
@if $imp==true {
|
|
background: lighten($background, 10% + floor($dp * .7%)) !important;
|
|
}
|
|
|
|
@else {
|
|
background: lighten($background, 10% + floor($dp * .7%));
|
|
}
|
|
|
|
z-index: $dp;
|
|
}
|
|
|
|
@mixin ElevationTransition() {
|
|
transition: background .5s;
|
|
}
|
|
|
|
@import "./_maketheme.scss"; |