]> BookStack Code Mirror - bookstack/blobdiff - resources/sass/_colors.scss
SASS: Updated to use modules and address deprecations
[bookstack] / resources / sass / _colors.scss
index c77c1d8b3880ea53d55a9accf5169e8cedeb206e..bf7a7a0fc03a53c02818aa71ab1b77f05fa0bb32 100644 (file)
@@ -1,3 +1,5 @@
+@use "mixins";
+
 /**
  * Background colors
  */
@@ -7,7 +9,7 @@
 }
 .primary-background-light {
   background-color: var(--color-primary-light);
-  @include whenDark {
+  @include mixins.whenDark {
     background: #000;
     .text-link {
       color: #AAA !important;
 }
 
 .text-muted {
-  @include lightDark(color, #575757, #888888, true);
+  @include mixins.lightDark(color, #575757, #888888, true);
   fill: currentColor !important;
 }
 
 .text-dark {
-  @include lightDark(color, #222, #ccc, true);
+  @include mixins.lightDark(color, #222, #ccc, true);
   fill: currentColor !important;
 }