potm35 Aşağıdaki şekilde bir css kalıbı kullanabilirsiniz.
body {
& when (@config-dark-mode = false) {
// light mode
}
& when (@config-dark-mode = true) {
// dark mode
}
}
body {
& when (@config-dark-mode = false) {
body {
background: url(‘lightmode.png’) repeat fixed right top #FFF;
}
.Scrubber-handle {
background: transparent;
}
}
& when (@config-dark-mode = true) {
body {
background: url(‘dark.png’) repeat fixed right top #FFF;
}
.Scrubber-handle {
background: transparent;
}
}
}
Umarım tam olarak nasıl kullanmanız gerektiğini anlamışsınızdır.