Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Dark mode color fixes

+11 -2
+1 -1
src/view/com/posts/FeedItem.tsx
··· 142 142 }> 143 143 <FontAwesomeIcon 144 144 icon="retweet" 145 - style={[styles.includeReasonIcon, s.gray5]} 145 + style={[styles.includeReasonIcon, {color: pal.colors.textLight}]} 146 146 /> 147 147 <Text 148 148 type="body2"
+10 -1
src/view/com/util/PostCtrls.tsx
··· 13 13 import {PostDropdownBtn} from './forms/DropdownButton' 14 14 import {UpIcon, UpIconSolid, CommentBottomArrow} from '../../lib/icons' 15 15 import {s, colors} from '../../lib/styles' 16 + import {useTheme} from '../../lib/ThemeContext' 16 17 import {useAnimatedValue} from '../../lib/hooks/useAnimatedValue' 17 18 18 19 interface PostCtrlsOpts { ··· 38 39 const HITSLOP = {top: 2, left: 2, bottom: 2, right: 2} 39 40 40 41 export function PostCtrls(opts: PostCtrlsOpts) { 42 + const theme = useTheme() 41 43 const interp1 = useAnimatedValue(0) 42 44 const interp2 = useAnimatedValue(0) 43 45 ··· 195 197 <FontAwesomeIcon 196 198 icon="ellipsis-h" 197 199 size={18} 198 - style={[s.mt2, s.mr5, {color: colors.gray3}]} 200 + style={[ 201 + s.mt2, 202 + s.mr5, 203 + { 204 + color: 205 + theme.colorScheme === 'light' ? colors.gray3 : colors.gray5, 206 + }, 207 + ]} 199 208 /> 200 209 </PostDropdownBtn> 201 210 )}