Theme/src/dark.scss

16 lines
300 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;
@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;
}
@mixin ElevationTransition() {
transition: background .5s;
}
2019-07-05 10:12:26 +00:00
@import "./_maketheme.scss";