use white with opacity rather than gray
This commit is contained in:
@@ -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)}
|
||||||
|
|||||||
Reference in New Issue
Block a user