|
@@ -109,35 +109,35 @@
|
|
.has-text-color {}
|
|
.has-text-color {}
|
|
|
|
|
|
.has-primary-color[class] {
|
|
.has-primary-color[class] {
|
|
- color: #{map-deep-get($config-global, "color", "primary", "default")} !important;
|
|
|
|
|
|
+ color: #{map-deep-get($config-global, "color", "primary", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-secondary-color[class] {
|
|
.has-secondary-color[class] {
|
|
- color: #{map-deep-get($config-global, "color", "secondary", "default")} !important;
|
|
|
|
|
|
+ color: #{map-deep-get($config-global, "color", "secondary", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-foreground-color[class] {
|
|
.has-foreground-color[class] {
|
|
- color: #{map-deep-get($config-global, "color", "foreground", "default")} !important;
|
|
|
|
|
|
+ color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-foreground-light-color[class] {
|
|
.has-foreground-light-color[class] {
|
|
- color: #{map-deep-get($config-global, "color", "foreground", "light")} !important;
|
|
|
|
|
|
+ color: #{map-deep-get($config-global, "color", "foreground", "light")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-foreground-dark-color[class] {
|
|
.has-foreground-dark-color[class] {
|
|
- color: #{map-deep-get($config-global, "color", "foreground", "dark")} !important;
|
|
|
|
|
|
+ color: #{map-deep-get($config-global, "color", "foreground", "dark")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-background-light-color[class] {
|
|
.has-background-light-color[class] {
|
|
- color: #{map-deep-get($config-global, "color", "background", "light")} !important;
|
|
|
|
|
|
+ color: #{map-deep-get($config-global, "color", "background", "light")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-background-dark-color[class] {
|
|
.has-background-dark-color[class] {
|
|
- color: #{map-deep-get($config-global, "color", "background", "dark")} !important;
|
|
|
|
|
|
+ color: #{map-deep-get($config-global, "color", "background", "dark")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-background-color[class] {
|
|
.has-background-color[class] {
|
|
- color: #{map-deep-get($config-global, "color", "background", "default")} !important;
|
|
|
|
|
|
+ color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
// Gutenberg background-color options
|
|
// Gutenberg background-color options
|
|
@@ -149,42 +149,42 @@
|
|
}
|
|
}
|
|
|
|
|
|
.has-primary-background-color[class] {
|
|
.has-primary-background-color[class] {
|
|
- background-color: #{map-deep-get($config-global, "color", "primary", "default")} !important;
|
|
|
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "primary", "default")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-secondary-background-color[class] {
|
|
.has-secondary-background-color[class] {
|
|
- background-color: #{map-deep-get($config-global, "color", "secondary", "default")} !important;
|
|
|
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "secondary", "default")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-foreground-background-color[class] {
|
|
.has-foreground-background-color[class] {
|
|
- background-color: #{map-deep-get($config-global, "color", "foreground", "default")} !important;
|
|
|
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-foreground-light-background-color[class] {
|
|
.has-foreground-light-background-color[class] {
|
|
- background-color: #{map-deep-get($config-global, "color", "foreground", "light")} !important;
|
|
|
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "foreground", "light")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-foreground-dark-background-color[class] {
|
|
.has-foreground-dark-background-color[class] {
|
|
- background-color: #{map-deep-get($config-global, "color", "foreground", "dark")} !important;
|
|
|
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "foreground", "dark")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-background-light-background-color[class] {
|
|
.has-background-light-background-color[class] {
|
|
- background-color: #{map-deep-get($config-global, "color", "background", "light")} !important;
|
|
|
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "background", "light")};
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-background-dark-background-color[class] {
|
|
.has-background-dark-background-color[class] {
|
|
- background-color: #{map-deep-get($config-global, "color", "background", "dark")} !important;
|
|
|
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "background", "dark")};
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
}
|
|
}
|
|
|
|
|
|
.has-background-background-color[class] {
|
|
.has-background-background-color[class] {
|
|
- background-color: #{map-deep-get($config-global, "color", "background", "default")} !important;
|
|
|
|
|
|
+ background-color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
}
|
|
}
|
|
|
|
|