/**
* onvz - Unicorn Design System
* This css is generated from the design tokens.
* */


@import './light.min.css';
@import './dark.min.css';
@import '../web/sm.min.css' (width > 576px) and (width <= 767px);
@import '../web/md.min.css' (width > 768px) and (width <= 991px);
@import '../web/lg.min.css' (width > 992px) and (width <= 1199px);
@import '../web/xl.min.css' (width > 1200px) and (width <= 1399px);
@import '../web/xxl.min.css' (width > 1400px);

:root {
    container: htmlRoot / normal;
    color-scheme: light;
    --color-scheme: light;
    &[data-color-scheme="dark"] {
        color-scheme: dark;
        --color-scheme: dark;
    }
    
}