this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove hardcoded yellows (#10083)

authored by

Samuel Newman and committed by
GitHub
5bcb9090 e28f6d2f

+5 -4
+3 -2
src/components/NewskieDialog.tsx
··· 27 27 profile: AppBskyActorDefs.ProfileViewDetailed 28 28 disabled?: boolean 29 29 }) { 30 + const t = useTheme() 30 31 const {_} = useLingui() 31 32 const control = useDialogControl() 32 33 ··· 52 53 {({hovered, pressed}) => ( 53 54 <Newskie 54 55 size="lg" 55 - fill="#FFC404" 56 + fill={t.palette.yellow} 56 57 style={{ 57 58 opacity: hovered || pressed ? 0.5 : 1, 58 59 }} ··· 132 133 <Newskie 133 134 width={64} 134 135 height={64} 135 - fill="#FFC404" 136 + fill={t.palette.yellow} 136 137 style={[a.absolute, a.inset_0]} 137 138 /> 138 139 </View>
+2 -2
src/view/com/composer/drafts/DraftItem.tsx
··· 260 260 info: t.atoms.text_contrast_medium.color, 261 261 warning: select(t.name, { 262 262 light: '#C99A00', 263 - dark: '#FFC404', 264 - dim: '#FFC404', 263 + dark: t.palette.yellow, 264 + dim: t.palette.yellow, 265 265 }), 266 266 }[display] 267 267 return (