12 lines
232 B
SCSS
12 lines
232 B
SCSS
|
@import "./_vals.scss";
|
||
|
|
||
|
$background: #000000;
|
||
|
$on-background: white;
|
||
|
$disabled-brightness: 1.1;
|
||
|
|
||
|
@mixin Elevation ($dp) {
|
||
|
background: lighten($background, floor(($dp + 3) * 1%));
|
||
|
z-index: $dp;
|
||
|
}
|
||
|
|
||
|
@import "./maketheme.scss";
|