hotfix: resolve loading screen color issues

This commit is contained in:
Andre Neves 2019-02-24 14:39:27 -05:00
parent 42d93323cc
commit 9ab1c07d0c
4 changed files with 5 additions and 2 deletions

View File

@ -108,8 +108,8 @@ class Component extends PureComponent<Props, State> {
progress={progress}
responsive
showPercentage={false}
progressColor={theme.colors.activeItem(this.props)}
bgColor={theme.colors.inactiveItem(this.props)}
progressColor={theme.colors.loadingScreenProgress({ theme })}
bgColor={theme.colors.loadingScreenBg({ theme })}
/>
</CircleWrapper>
<LoadingText value={message} />

View File

@ -121,4 +121,5 @@ export const DARK_COLORS = {
// Loading
loadingScreenBg: black,
loadingScreenText: white,
loadingScreenProgress: brand,
};

View File

@ -125,4 +125,5 @@ export const LIGHT_COLORS = {
// Loading
loadingScreenBg: black,
loadingScreenText: white,
loadingScreenProgress: logo,
};

View File

@ -113,6 +113,7 @@ type Colors = {
// Loading
loadingScreenBg: ThemeSet,
loadingScreenText: ThemeSet,
loadingScreenProgress: ThemeSet,
};
type FontSize = {