Bluesky app fork with some witchin' additions 💫

Tweak greens (#9177)

* tweak greens

* undo test code

authored by samuel.fm and committed by

GitHub 6cd6a344 ec8c36e6

+13 -13
+1 -1
src/components/AccountList.tsx
··· 172 172 </View> 173 173 174 174 {isCurrentAccount ? ( 175 - <Check size="sm" style={[{color: t.palette.positive_600}]} /> 175 + <Check size="sm" style={[{color: t.palette.positive_500}]} /> 176 176 ) : ( 177 177 <Chevron size="sm" style={[t.atoms.text]} /> 178 178 )}
+1 -1
src/components/PostControls/RepostButton.tsx
··· 57 57 <PostControlButton 58 58 testID="repostBtn" 59 59 active={isReposted} 60 - activeColor={t.palette.positive_600} 60 + activeColor={t.palette.positive_500} 61 61 big={big} 62 62 onPress={onPress} 63 63 onLongPress={onLongPress}
+2 -2
src/components/PostControls/RepostButton.web.tsx
··· 47 47 <PostControlButton 48 48 testID="repostBtn" 49 49 active={isReposted} 50 - activeColor={t.palette.positive_600} 50 + activeColor={t.palette.positive_500} 51 51 label={props.accessibilityLabel} 52 52 big={big} 53 53 {...props}> ··· 100 100 <PostControlButton 101 101 onPress={() => requireAuth(() => {})} 102 102 active={isReposted} 103 - activeColor={t.palette.positive_600} 103 + activeColor={t.palette.positive_500} 104 104 label={_(msg`Repost or quote post`)} 105 105 big={big}> 106 106 <PostControlButtonIcon icon={Repost} />
+1 -1
src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx
··· 159 159 a.pt_lg, 160 160 a.pb_md, 161 161 ]}> 162 - <SuccessIcon size="sm" fill={t.palette.positive_600} /> 162 + <SuccessIcon size="sm" fill={t.palette.positive_500} /> 163 163 <Text style={[a.text_xl, a.font_bold]}> 164 164 <Trans>Success</Trans> 165 165 </Text>
+1 -1
src/components/dialogs/EmailDialog/screens/Update.tsx
··· 281 281 <Divider /> 282 282 <View style={[a.gap_sm]}> 283 283 <View style={[a.flex_row, a.gap_sm, a.align_center]}> 284 - <Check fill={t.palette.positive_600} size="xs" /> 284 + <Check fill={t.palette.positive_500} size="xs" /> 285 285 <Text style={[a.text_md, a.font_bold]}> 286 286 <Trans>Success!</Trans> 287 287 </Text>
+2 -2
src/components/dialogs/EmailDialog/screens/Verify.tsx
··· 176 176 <View style={[a.gap_sm]}> 177 177 <Text style={[a.text_xl, a.font_bold]}> 178 178 <Span style={{top: 1}}> 179 - <Check size="sm" fill={t.palette.positive_600} /> 179 + <Check size="sm" fill={t.palette.positive_500} /> 180 180 </Span> 181 181 {' '} 182 182 <Trans>Email verification complete!</Trans> ··· 202 202 state.mutationStatus === 'success' ? ( 203 203 <> 204 204 <Span style={{top: 1}}> 205 - <Check size="sm" fill={t.palette.positive_600} /> 205 + <Check size="sm" fill={t.palette.positive_500} /> 206 206 </Span> 207 207 {' '} 208 208 <Trans>Email sent!</Trans>
+1 -1
src/screens/Search/modules/ExploreTrendingTopics.tsx
··· 194 194 case 'new': { 195 195 Icon = TrendingIcon 196 196 text = _(msg`New`) 197 - color = t.palette.positive_700 197 + color = t.palette.positive_600 198 198 backgroundColor = t.palette.positive_50 199 199 break 200 200 }
+1 -1
src/screens/Settings/components/ChangeHandleDialog.tsx
··· 636 636 a.rounded_full, 637 637 a.align_center, 638 638 a.justify_center, 639 - {backgroundColor: t.palette.positive_600}, 639 + {backgroundColor: t.palette.positive_500}, 640 640 ]}> 641 641 <CheckIcon fill={t.palette.white} size="xs" /> 642 642 </View>
+1 -1
src/screens/Signup/StepHandle/index.tsx
··· 169 169 {isHandleAvailable?.available && ( 170 170 <CheckIcon 171 171 testID="handleAvailableCheck" 172 - style={[{color: t.palette.positive_600}, a.z_20]} 172 + style={[{color: t.palette.positive_500}, a.z_20]} 173 173 /> 174 174 )} 175 175 </TextField.Root>
+2 -2
src/view/com/notifications/NotificationFeedItem.tsx
··· 307 307 ) : ( 308 308 <Trans>{firstAuthorLink} reposted your post</Trans> 309 309 ) 310 - icon = <RepostIcon size="xl" style={{color: t.palette.positive_600}} /> 310 + icon = <RepostIcon size="xl" style={{color: t.palette.positive_500}} /> 311 311 } else if (item.type === 'follow') { 312 312 let isFollowBack = false 313 313 ··· 519 519 ) : ( 520 520 <Trans>{firstAuthorLink} reposted your repost</Trans> 521 521 ) 522 - icon = <RepostIcon size="xl" style={{color: t.palette.positive_600}} /> 522 + icon = <RepostIcon size="xl" style={{color: t.palette.positive_500}} /> 523 523 } else if (item.type === 'subscribed-post') { 524 524 const postsCount = 1 + (item.additional?.length || 0) 525 525 a11yLabel = hasMultipleAuthors