//
// Styles for light, dark and os default border theme
// Background colors examples
// - .border-tl-dark      | Dark border on light theme
// - .border-td-yellow    | Yellow border on dark theme

@if $enable-dark-mode {
    [data-bs-theme="light"] {
        @each $name, $value in $theme-colors {
            .border-tl-#{$name} {
                border-color: $value !important;
            }
        }
    }

    [data-bs-theme="dark"] {
        @each $name, $value in $theme-colors {
            .border-td-#{$name} {
                border-color: $value !important;
            }
        }
    }
}