mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
19.19.2021 e0988ee1e2c2eab690cd9dc4c0046ae5d9212b87
assets/scss/_base_dark.scss
@@ -1,5 +1,4 @@
@mixin base_dark {
  color: $fg-color-dark;
  background-color: $bg-color-dark;
@@ -50,18 +49,18 @@
    border-left: 2px solid $alt-bg-color-dark;
  }
  table td, table th {
  table td,
  table th {
    border: 2px solid $alt-fg-color-dark;
  }
}
body.colorscheme-dark {
  @include base_dark()
  @include base_dark();
}
body.colorscheme-auto {
  @media (prefers-color-scheme: dark) {
    @include base_dark()
    @include base_dark();
  }
}