use white with opacity rather than gray

This commit is contained in:
Samuel Newman
2025-01-17 01:45:45 +00:00
parent 70ea56a740
commit 3b58dc8640
+2 -5
View File
@@ -686,7 +686,6 @@ function Scrubber({
seekingAnimationSV: SharedValue<number> seekingAnimationSV: SharedValue<number>
}) { }) {
const {width: screenWidth} = useWindowDimensions() const {width: screenWidth} = useWindowDimensions()
const t = useTheme()
const insets = useSafeAreaInsets() const insets = useSafeAreaInsets()
const currentTimeSV = useSharedValue(0) const currentTimeSV = useSharedValue(0)
const durationSV = useSharedValue(0) const durationSV = useSharedValue(0)
@@ -805,13 +804,11 @@ function Scrubber({
<Text style={[a.text_5xl, {fontVariant: ['tabular-nums']}]}> <Text style={[a.text_5xl, {fontVariant: ['tabular-nums']}]}>
{formatTime(currentSeekTime)} {formatTime(currentSeekTime)}
</Text> </Text>
<Text style={[a.text_2xl, t.atoms.text_contrast_medium]}> <Text style={[a.text_2xl, {opacity: 0.8}]}>{' / '}</Text>
{' / '}
</Text>
<Text <Text
style={[ style={[
a.text_5xl, a.text_5xl,
t.atoms.text_contrast_medium, {opacity: 0.8},
{fontVariant: ['tabular-nums']}, {fontVariant: ['tabular-nums']},
]}> ]}>
{formatTime(duration)} {formatTime(duration)}