|
@@ -39,6 +39,10 @@
|
|
|
color: #{map-deep-get($config-global, "color", "background", "light")} !important;
|
|
|
}
|
|
|
|
|
|
+.has-background-dark-color[class] {
|
|
|
+ color: #{map-deep-get($config-global, "color", "background", "dark")} !important;
|
|
|
+}
|
|
|
+
|
|
|
.has-background-color[class] {
|
|
|
color: #{map-deep-get($config-global, "color", "background", "default")} !important;
|
|
|
}
|
|
@@ -94,6 +98,14 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+.has-background-dark-background-color[class] {
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "background", "dark")} !important;
|
|
|
+ color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
|
+ p, h1, h2, h3, h4, h5, h6 {
|
|
|
+ color: currentColor;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
.has-background-background-color[class] {
|
|
|
background-color: #{map-deep-get($config-global, "color", "background", "default")} !important;
|
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|