// Theme mixin // ******************************************************************************* @mixin template-common-theme($background, $color: null) { @include text-variant('.text-primary', $background); @include bg-variant('.bg-primary', $background); @include bg-label-variant('.bg-label-primary', $background); @include bg-label-hover-variant('.bg-label-hover-primary', $background); @include bg-gradient-variant('.bg-gradient-primary', $background); @include bg-glow-variant('.bg-primary', $background); @include template-pagination-theme($background, $color); @include template-pagination-outline-variant('.pagination-outline-primary', $background); @include template-progress-bar-theme($background, $color); @include template-progress-shadow-theme('.progress-bar', $background); @include template-modal-onboarding-theme($background, $color); @include template-list-group-theme($background, $color); @include template-list-group-timeline-variant('.list-group-timeline-primary', $background); @include template-alert-variant('.alert-primary', $background); @include template-alert-outline-variant('.alert-outline-primary', $background); @include template-alert-solid-variant('.alert-solid-primary', $background); @include template-tooltip-variant( '.tooltip-primary, .tooltip-primary > .tooltip, .ngb-tooltip-primary + ngb-tooltip-window', $background, $color ); @include template-popover-variant( '.popover-primary, .popover-primary > .popover, .ngb-popover-primary + ngb-popover-window', $background, $color ); // Need to add shift-color as BS5 updated with table variant colors like this @include template-table-variant('primary', shift-color($background, $table-bg-scale)); @include template-button-variant('.btn-primary', $background, $color); @include template-button-label-variant('.btn-label-primary', $background, $color); @include template-button-text-variant('.btn-text-primary', $background, $color); @include template-button-outline-variant('.btn-outline-primary', $background, $color); @include template-dropdown-theme(rgba-to-hex(rgba($background, 0.16), $card-bg), $background); @include template-nav-theme($background, $color); @include template-form-control-theme($background); @include template-form-check-theme($background, $color); @include template-form-switch-theme($background); @include template-file-input-theme($background); @include template-switch-variant('', $background, $color); // For default switch @include template-switch-variant('.switch-primary', $background, $color); @include template-timeline-point-variant('.timeline-point-primary', $background); @include template-timeline-indicator-variant('.timeline-indicator-primary', $background); @include template-text-divider-variant('.divider-primary', $background); @include template-navbar-style('.navbar.bg-primary', $background); @include template-menu-style('.menu.bg-primary', $background); @include template-footer-style('.footer.bg-primary', $background); @include template-float-label-theme($background); @include template-svg-color($background); @include template-treeview-clicked-bg($background); @include template-card-border-shadow-variant('.card-border-shadow-primary', $background); @include template-card-hover-border-variant('.card-hover-border-primary', $background); html:not([dir='rtl']) .border-primary, html[dir='rtl'] .border-primary { border-color: $background !important; } a { color: $background; &:hover { color: tint-color($background, 10%); } } .fill-primary { fill: $background; } }