Fixed: Progress bar text colour in Dark theme

(cherry picked from commit ca61efa57fc04a7f6753aedb4b8044d17e345429)
pull/3241/head
Zak Saunders 2 years ago committed by Qstick
parent 84a758064c
commit 2b510c61e5

@ -20,7 +20,11 @@
.frontTextContainer { .frontTextContainer {
z-index: 1; z-index: 1;
color: var(--white); color: var(--progressBarFrontTextColor);
}
.backTextContainer {
color: var(--progressBarBackTextColor);
} }
.backTextContainer, .backTextContainer,

@ -234,6 +234,8 @@ module.exports = {
// //
// misc // misc
progressBarFrontTextColor: white,
progressBarBackTextColor: white,
progressBarBackgroundColor: '#727070', progressBarBackgroundColor: '#727070',
logEventsBackgroundColor: '#2a2a2a' logEventsBackgroundColor: '#2a2a2a'
}; };

@ -228,6 +228,8 @@ module.exports = {
// //
// misc // misc
progressBarBackgroundColor: '#fff', progressBarFrontTextColor: white,
logEventsBackgroundColor: '#fff' progressBarBackTextColor: darkGray,
progressBarBackgroundColor: white,
logEventsBackgroundColor: white
}; };

Loading…
Cancel
Save