@@ -31,6 +31,7 @@ import { useCanDismiss, useNavigation } from "@/src/lib/navigation/hooks"
31
31
import { useSetModalScreenOptions } from "@/src/lib/navigation/ScreenOptionsContext"
32
32
import { FeedSummary } from "@/src/modules/discover/FeedSummary"
33
33
import { FeedViewSelector } from "@/src/modules/feed/view-selector"
34
+ import { useColor } from "@/src/theme/colors"
34
35
35
36
const formSchema = z . object ( {
36
37
view : z . coerce . number ( ) ,
@@ -80,6 +81,7 @@ export function FollowUrl(props: { url: string }) {
80
81
function FollowImpl ( props : { feedId : string } ) {
81
82
const { t } = useTranslation ( )
82
83
const { t : tCommon } = useTranslation ( "common" )
84
+ const textLabelColor = useColor ( "label" )
83
85
const { feedId : id } = props
84
86
85
87
const feed = useFeedById ( id )
@@ -182,7 +184,7 @@ function FollowImpl(props: { feedId: string }) {
182
184
>
183
185
< View className = "ml-11 mt-2 flex-row items-center gap-3 opacity-60" >
184
186
< View className = "flex-row items-center gap-1" >
185
- < User3CuteReIcon width = { 12 } height = { 12 } />
187
+ < User3CuteReIcon color = { textLabelColor } width = { 12 } height = { 12 } />
186
188
< Text className = "text-text text-sm" >
187
189
{ typeof feed . subscriptionCount === "number" ? (
188
190
formatNumber ( feed . subscriptionCount || 0 )
@@ -196,14 +198,14 @@ function FollowImpl(props: { feedId: string }) {
196
198
</ View >
197
199
{ feed . updatesPerWeek ? (
198
200
< View className = "flex-row items-center gap-1" >
199
- < SafetyCertificateCuteReIcon width = { 12 } height = { 12 } />
201
+ < SafetyCertificateCuteReIcon color = { textLabelColor } width = { 12 } height = { 12 } />
200
202
< Text className = "text-text text-sm" >
201
203
{ tCommon ( "feed.entry_week" , { count : feed . updatesPerWeek } ) }
202
204
</ Text >
203
205
</ View >
204
206
) : feed . latestEntryPublishedAt ? (
205
207
< View className = "flex-row items-center gap-1" >
206
- < SafeAlertCuteReIcon width = { 12 } height = { 12 } />
208
+ < SafeAlertCuteReIcon color = { textLabelColor } width = { 12 } height = { 12 } />
207
209
< Text className = "text-text text-sm" >
208
210
{ tCommon ( "feed.updated_at" ) }
209
211
< RelativeDateTime date = { feed . latestEntryPublishedAt } />
0 commit comments