weui
Version:
A UI library by WeChat official design team, includes the most useful widgets/modules in mobile web applications.
35 lines (29 loc) • 691 B
text/less
@import 'fn';
body,
.wx-root {
.varsLight();
}
@media (prefers-color-scheme: dark) {
.wx-root:not([data-weui-theme='light']),
body:not([data-weui-theme='light']) {
.varsDark();
}
}
.wx-root[data-weui-theme='dark'],
body[data-weui-theme='dark'] {
.varsDark();
}
.wx-root[data-weui-mode='care'],
body[data-weui-mode='care'] {
.varsCareLight();
}
@media (prefers-color-scheme: dark) {
.wx-root[data-weui-mode='care']:not([data-weui-theme='light']),
body[data-weui-mode='care']:not([data-weui-theme='light']) {
.varsCareDark();
}
}
.wx-root[data-weui-mode='care'][data-weui-theme='dark'],
body[data-weui-mode='care'][data-weui-theme='dark'] {
.varsCareDark();
}