diff options
Diffstat (limited to 'src/screens/Onboarding/StepAlgoFeeds')
-rw-r--r-- | src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx | 16 | ||||
-rw-r--r-- | src/screens/Onboarding/StepAlgoFeeds/index.tsx | 21 |
2 files changed, 26 insertions, 11 deletions
diff --git a/src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx b/src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx index c7f1e6e4d..dec53d2ed 100644 --- a/src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx +++ b/src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx @@ -8,7 +8,7 @@ import {msg} from '@lingui/macro' import {useTheme, atoms as a} from '#/alf' import * as Toggle from '#/components/forms/Toggle' import {useFeedSourceInfoQuery, FeedSourceInfo} from '#/state/queries/feed' -import {Text, H3} from '#/components/Typography' +import {Text} from '#/components/Typography' import {RichText} from '#/components/RichText' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' @@ -94,14 +94,14 @@ function PrimaryFeedCardInner({ </View> <View style={[a.pt_xs, a.flex_grow]}> - <H3 + <Text style={[ a.text_lg, a.font_bold, ctx.selected && styles.textSelected, ]}> {feed.displayName} - </H3> + </Text> <Text style={[ @@ -137,7 +137,7 @@ function PrimaryFeedCardInner({ }, a.mt_md, a.w_full, - t.name === 'light' ? t.atoms.border : t.atoms.border_contrast, + t.atoms.border_contrast_low, ctx.selected && { borderTopColor: t.palette.white, }, @@ -239,14 +239,14 @@ function FeedCardInner({feed}: {feed: FeedSourceInfo; config: FeedConfig}) { </View> <View style={[a.pt_2xs, a.flex_grow]}> - <H3 + <Text style={[ a.text_md, a.font_bold, ctx.selected && styles.textSelected, ]}> {feed.displayName} - </H3> + </Text> <Text style={[ {opacity: 0.8}, @@ -281,7 +281,7 @@ function FeedCardInner({feed}: {feed: FeedSourceInfo; config: FeedConfig}) { }, a.mt_md, a.w_full, - t.name === 'light' ? t.atoms.border : t.atoms.border_contrast, + t.atoms.border_contrast_low, ctx.selected && { borderTopColor: t.palette.primary_200, }, @@ -360,7 +360,7 @@ export function FeedCardPlaceholder({primary}: {primary?: boolean}) { }, a.mt_md, a.w_full, - t.atoms.border, + t.atoms.border_contrast_low, ]} /> diff --git a/src/screens/Onboarding/StepAlgoFeeds/index.tsx b/src/screens/Onboarding/StepAlgoFeeds/index.tsx index 7a87318e8..33e519207 100644 --- a/src/screens/Onboarding/StepAlgoFeeds/index.tsx +++ b/src/screens/Onboarding/StepAlgoFeeds/index.tsx @@ -115,12 +115,22 @@ export function StepAlgoFeeds() { onChange={setPrimaryFeedUris} label={_(msg`Select your primary algorithmic feeds`)}> <Text - style={[a.text_md, a.pt_4xl, a.pb_md, t.atoms.text_contrast_700]}> + style={[ + a.text_md, + a.pt_4xl, + a.pb_md, + t.atoms.text_contrast_medium, + ]}> <Trans>We recommend our "Discover" feed:</Trans> </Text> <FeedCard config={PRIMARY_FEEDS[0]} /> <Text - style={[a.text_md, a.pt_4xl, a.pb_lg, t.atoms.text_contrast_700]}> + style={[ + a.text_md, + a.pt_4xl, + a.pb_lg, + t.atoms.text_contrast_medium, + ]}> <Trans>We also think you'll like "For You" by Skygaze:</Trans> </Text> <FeedCard config={PRIMARY_FEEDS[1]} /> @@ -131,7 +141,12 @@ export function StepAlgoFeeds() { onChange={setSeconaryFeedUris} label={_(msg`Select your secondary algorithmic feeds`)}> <Text - style={[a.text_md, a.pt_4xl, a.pb_lg, t.atoms.text_contrast_700]}> + style={[ + a.text_md, + a.pt_4xl, + a.pb_lg, + t.atoms.text_contrast_medium, + ]}> <Trans>There are many feeds to try:</Trans> </Text> <View style={[a.gap_md]}> |