Theme/src/dark.scss

23 lines
440 B
SCSS
Raw Normal View History

2019-06-18 20:52:51 +00:00
@import "./_vals.scss";
$background: #000000;
$on-background: white;
$disabled-brightness: 1.1;
2019-07-29 14:10:07 +00:00
@mixin Elevation ($dp, $imp:false) {
@if $imp==true {
background: lighten($background, 10% + floor($dp * .7%)) !important;
}
@else {
background: lighten($background, 10% + floor($dp * .7%));
}
2019-06-18 20:52:51 +00:00
z-index: $dp;
}
@mixin ElevationTransition() {
transition: background .5s;
}
2019-07-05 10:12:26 +00:00
@import "./_maketheme.scss";