@charset "utf-8";

/*mode*/
:root[color-theme='light'] {
    --background: #fff;
    --fontColor: #000;
    --swiperBackgorund_up: rgba(255, 31, 31, 1);
    --swiperBackgorund_down: rgb(50, 105, 255, 1);
}
  
:root[color-theme='dark'] {
    --background: #26262b;
    --fontColor: #fff;
    --swiperBackgorund_up: rgba(255, 31, 31, .4);
    --swiperBackgorund_down: rgb(50, 105, 255, .4);
}
  
html, body {
    background: var(--background) !important;
}