fix colors name
This commit is contained in:
parent
86daf8c020
commit
24ccc33e05
|
@ -36,7 +36,7 @@ const PlayButton = React.memo(({ loading, paused, onPress, disabled, isReadyToPl
|
|||
{loading ? (
|
||||
<RCActivityIndicator />
|
||||
) : (
|
||||
<CustomIcon name={customIconName} size={24} color={disabled ? colors.tintDisabled : colors.buttonFontOnPrimary} />
|
||||
<CustomIcon name={customIconName} size={24} color={disabled ? colors.tintDisabled : colors.buttonFontPrimary} />
|
||||
)}
|
||||
</Touchable>
|
||||
);
|
||||
|
|
|
@ -27,7 +27,7 @@ const PlaybackSpeed = ({
|
|||
onPress={onPress}
|
||||
style={[styles.containerPlaybackSpeed, { backgroundColor: colors.buttonBackgroundSecondaryDefault }]}
|
||||
>
|
||||
<Text style={[styles.playbackSpeedText, { color: colors.buttonFontOnSecondary }]}>{rate}x</Text>
|
||||
<Text style={[styles.playbackSpeedText, { color: colors.buttonFontSecondary }]}>{rate}x</Text>
|
||||
</Touchable>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -104,8 +104,8 @@ export const colors = {
|
|||
overlayColor: '#1F2329B2',
|
||||
buttonBackgroundPrimaryDefault: '#156FF5',
|
||||
buttonBackgroundSecondaryDefault: '#E4E7EA',
|
||||
buttonFontOnPrimary: '#FFFFFF',
|
||||
buttonFontOnSecondary: '#1F2329',
|
||||
buttonFontPrimary: '#FFFFFF',
|
||||
buttonFontSecondary: '#1F2329',
|
||||
fontDefault: '#2F343D',
|
||||
strokeExtraLight: '#EBECEF',
|
||||
strokeLight: '#CBCED1',
|
||||
|
@ -190,9 +190,9 @@ export const colors = {
|
|||
statusFontOnWarning: '#B88D00',
|
||||
overlayColor: '#1F2329B2',
|
||||
buttonBackgroundPrimaryDefault: '#3976D1',
|
||||
buttonBackgroundSecondaryDefault: '#353B45',
|
||||
buttonFontOnPrimary: '#FFFFFF',
|
||||
buttonFontOnSecondary: '#E4E7EA',
|
||||
buttonBackgroundSecondaryDefault: '#2F343D',
|
||||
buttonFontPrimary: '#FFFFFF',
|
||||
buttonFontSecondary: '#E4E7EA',
|
||||
fontDefault: '#E4E7EA',
|
||||
strokeExtraLight: '#2F343D',
|
||||
strokeLight: '#333842',
|
||||
|
@ -277,9 +277,9 @@ export const colors = {
|
|||
statusFontOnWarning: '#B88D00',
|
||||
overlayColor: '#1F2329B2',
|
||||
buttonBackgroundPrimaryDefault: '#3976D1',
|
||||
buttonBackgroundSecondaryDefault: '#353B45',
|
||||
buttonFontOnPrimary: '#FFFFFF',
|
||||
buttonFontOnSecondary: '#E4E7EA',
|
||||
buttonBackgroundSecondaryDefault: '#2F343D',
|
||||
buttonFontPrimary: '#FFFFFF',
|
||||
buttonFontSecondary: '#E4E7EA',
|
||||
fontDefault: '#E4E7EA',
|
||||
strokeExtraLight: '#2F343D',
|
||||
strokeLight: '#333842',
|
||||
|
|
Loading…
Reference in New Issue