diff options
author | Eric Bailey <git@esb.lol> | 2024-02-09 11:52:32 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 09:52:32 -0800 |
commit | d6235453c9b5f297b95edd58864fe26268239318 (patch) | |
tree | e33103843603eda398b27231eada8e0c445509f2 /src/screens/Onboarding/StepAlgoFeeds/index.tsx | |
parent | 43b447e5f4345bd6c3a6957cb5aa1587324799e8 (diff) | |
download | voidsky-d6235453c9b5f297b95edd58864fe26268239318.tar.zst |
Design system tweaks (#2822)
* Tweak palette, theme naming, update usages * Update Typography, replace the few usages
Diffstat (limited to 'src/screens/Onboarding/StepAlgoFeeds/index.tsx')
-rw-r--r-- | src/screens/Onboarding/StepAlgoFeeds/index.tsx | 21 |
1 files changed, 18 insertions, 3 deletions
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]}> |