Fixed: Progress bar text colour in Dark theme

pull/5332/head
Zak Saunders 2 years ago committed by GitHub
parent 30cbaf06fa
commit ca61efa57f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

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

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

Loading…
Cancel
Save