_root.scss 437 B

12345678910111213141516171819
  1. :root,
  2. [data-bs-theme="light"] {
  3. // Content Wrapper
  4. --#{$lte-prefix}main-color: #{$lte-main-color};
  5. --#{$lte-prefix}main-bg: #{$lte-main-bg};
  6. // Sidebar
  7. --#{$lte-prefix}sidebar-width: #{$lte-sidebar-width};
  8. }
  9. @if $enable-dark-mode {
  10. @include color-mode(dark, true) {
  11. color-scheme: dark;
  12. // Body Color
  13. --#{$lte-prefix}main-color: #{$lte-main-color-dark};
  14. --#{$lte-prefix}main-bg: #{$lte-main-bg-dark};
  15. }
  16. }