Sha256: 926baf7de1a2f7b23a560fb78b071cb44871c028d38ca8f40bcddffde95bf0b5

Contents?: true

Size: 396 Bytes

Versions: 1

Compression:

Stored size: 396 Bytes

Contents

---
---

//this mode is like colors-auto but if the device does not support @media prefers-color-scheme it will deafault to dark mode

@import "colors";

:root {
    @include colors;
    @include dark-colors;
  }

@media print, (prefers-color-scheme: light) {//we would not like to apply dark mode if content is on printer as that would use a lot of ink
  :root {
    @include light-colors;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-minimalist-0.1.0 assets/css/colors-auto-default-dark.scss