Winged_Dev
DAY MODE CODE:
body when (@config-dark-mode = false) {
}
EXAMPLE DAY MODE HEADER BLUR:
/* DAY MODE - HEADER BLUR */
body when (@config-dark-mode = false) {
.app-header {
background-color: rgba(240, 240, 240, 0.7) !important;
}
.Search-input input {
background-color: rgba(255, 255, 255, 0.8) !important;
}
}
YOUR CODE:
/* DAY MODE - TAG AND MODERN FOOTER */
body when (@config-dark-mode = false) {
.Asirem-TagTile-info {
background: #f8f9fa !important;
}
footer, .foo-left, .foo-mid {
background: #f7f8f9 !important;
}
.foo-bottom {
background: #0051f9 !important;
}
footer .Social {
background-color: #0051f9 !important;
}
}
By the way, there was also a code like this in the modern footer's CSS.
body when (@config-dark-mode = false) {
:root {
--footer-1: #667d99;
--footer-2: #e7edf3;
}
}
body when (@config-dark-mode = true) {
:root {
--footer-1: #1b2028;
--footer-2: #6c7e93;
}
}