STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/static/sass/frontend/2-basics/colors.scss
SHA-256: c6a318662d6a370b6699922989c8ca83ff33775d9356b0b0f2e0e37ddc0390e7
body {
color: var(--theme-text-color);
::selection {
color: var(--theme-selection-text-color);
background-color: var(--theme-selection-background-color);
}
}
// headings
h1 {
color: var(--theme-heading-color, var(--theme-heading-1-color, var(--theme-headings-color)));
}
h2 {
color: var(--theme-heading-color, var(--theme-heading-2-color, var(--theme-headings-color)));
}
h3 {
color: var(--theme-heading-color, var(--theme-heading-3-color, var(--theme-headings-color)));
}
h4 {
color: var(--theme-heading-color, var(--theme-heading-4-color, var(--theme-headings-color)));
}
h5 {
color: var(--theme-heading-color, var(--theme-heading-5-color, var(--theme-headings-color)));
}
h6 {
color: var(--theme-heading-color, var(--theme-heading-6-color, var(--theme-headings-color)));
}
// headings when have a different wrapper tag
.ct-module-title,
.related-entry-title,
.woocommerce-loop-product__title,
.woocommerce-loop-category__title {
&:is(p, span) {
color: var(--theme-heading-color);
}
}
// hr line
hr {
background-color: var(--theme-form-field-border-initial-color);
}