Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

improve toasts on oled dark mode (#7842)

authored by

Samuel Newman and committed by
GitHub
22aee970 3409a725

+7 -2
+7 -2
src/view/com/util/Toast.tsx
··· 171 171 onAccessibilityEscape={hideAndDestroyImmediately} 172 172 style={[ 173 173 a.flex_1, 174 - t.atoms.bg, 174 + t.name === 'dark' ? t.atoms.bg_contrast_25 : t.atoms.bg, 175 175 a.shadow_lg, 176 176 t.atoms.border_contrast_medium, 177 177 a.rounded_sm, ··· 185 185 a.flex_shrink_0, 186 186 a.rounded_full, 187 187 {width: 32, height: 32}, 188 - {backgroundColor: t.palette.primary_50}, 189 188 a.align_center, 190 189 a.justify_center, 190 + { 191 + backgroundColor: 192 + t.name === 'dark' 193 + ? t.palette.black 194 + : t.palette.primary_50, 195 + }, 191 196 ]}> 192 197 <FontAwesomeIcon 193 198 icon={icon}