File: //proc/self/root/home/parhudrw/anqa.it/wp-content/themes/essentials/inc/scss/elements/_dark.scss
.pix-dark, .pix-dark-hover:hover {
.text-body-default, &.text-body-default {
color: $dark-body-color !important;
&.btn {
&:hover {
opacity: 0.75;
color: darken($dark-body-color, 10%) !important;
}
&:focus,
&:active {
color: darken($dark-body-color, 10%) !important;
}
}
}
.svg-body-default {
color: $dark-body-color !important;
svg, svg path {
fill: $dark-body-color !important;
}
&:hover,
&:focus,
&:active {
svg, svg path {
fill: darken($dark-body-color, 10%) !important;
}
}
}
a.text-body-default {
&:hover,
&:focus,
&:active {
color: darken($dark-body-color, 10%) !important;
}
}
.text-heading-default, &.text-heading-default {
color: $dark-heading-color !important;
svg {
fill: $dark-heading-color;
}
&:hover,
&:focus,
&:active {
svg, svg path {
fill: darken($dark-heading-color, 10%) !important;
}
}
}
.svg-heading-default {
color: $dark-heading-color;
svg, svg path {
fill: $dark-heading-color;
}
&:hover,
&:focus,
&:active {
svg, svg path {
fill: darken($dark-heading-color, 10%) !important;
}
}
}
a.text-heading-default {
&:hover,
&:focus,
&:active {
color: darken($dark-heading-color, 10%) !important;
}
}
// Contextual colors
.text-white { color: $black !important; }
.text-black { color: $white !important; }
-webkit-transition: $transition-base;
transition: $transition-base;
@each $color, $value in $opacity-values {
@include text-emphasis-transparent-variant(".text-dark-#{$color}", #ffffff, $value, "dark-#{$color}");
@include text-emphasis-transparent-variant(".text-light-#{$color}", darken($primary, 55%) , $value, "light-#{$color}");
}
.text-body { color: $dark-body-color !important; }
.text-muted { color: $text-muted !important; }
.text-black-50 { color: rgba($white, .5) !important; }
.text-white-50 { color: rgba($black, .5) !important; }
$dark-gray-colors: () !default;
// stylelint-disable-next-line scss/dollar-variable-default
$dark-gray-colors: map-merge(
(
"gray-1": $gray-900,
"gray-2": $gray-800,
"gray-3": $gray-700,
"gray-4": $gray-600,
"gray-5": $gray-500,
"gray-6": $gray-400,
"gray-7": $gray-300,
"gray-8": $gray-200,
"gray-9": $gray-100
),
$dark-gray-colors
);
@each $color, $value in $dark-gray-colors {
@include bg-variant(".bg-#{$color}", $value);
}
.bg-white { background: $black !important; }
.bg-black { background: $white !important; }
.pix-post-format-btn .pix-post-format-a:hover {
background: $black !important;
i {
color: $dark-heading-color;
}
svg path {
fill: $dark-heading-color;
}
}
.pix-post-format-btn .pix-post-format-a.pix-post-btn-dark:hover {
background: $white !important;
i {
color: $heading-color;
}
svg path {
fill: $heading-color;
}
}
a.bg-white:hover {
background-color: lighten($black, 20%) !important;
}
a.bg-black:hover {
background-color: lighten($white, 20%) !important;
}
}