A social knowledge tool for researchers built on ATProto

feat: replace default title colour with "bright"

+9 -4
+1 -1
src/webapp/features/cards/components/urlCard/UrlCard.tsx
··· 67 67 </Anchor> 68 68 </Tooltip> 69 69 {props.cardContent.title && ( 70 - <Text fw={500} lineClamp={2}> 70 + <Text fw={500} lineClamp={2} c={'var(--mantine-color-bright)'}> 71 71 {props.cardContent.title} 72 72 </Text> 73 73 )}
+1 -1
src/webapp/features/collections/components/collectionCard/CollectionCard.tsx
··· 34 34 > 35 35 <Stack justify="space-between" h={'100%'}> 36 36 <Stack gap={0}> 37 - <Text fw={500} lineClamp={1}> 37 + <Text fw={500} lineClamp={1} c={'var(--mantine-color-bright)'}> 38 38 {collection.name} 39 39 </Text> 40 40 {collection.description && (
+6 -1
src/webapp/features/feeds/components/feedActivityStatus/FeedActivityStatus.tsx
··· 41 41 42 42 return ( 43 43 <Text fw={500}> 44 - <Text component={Link} href={`/profile/${props.user.handle}`} fw={600}> 44 + <Text 45 + component={Link} 46 + href={`/profile/${props.user.handle}`} 47 + fw={600} 48 + c={'var(--mantine-color-bright)'} 49 + > 45 50 {sanitizeText(props.user.name)} 46 51 </Text>{' '} 47 52 {collections.length === 0 ? (
+1 -1
src/webapp/features/profile/components/profileMenu/ProfileMenu.tsx
··· 70 70 <Menu.Target> 71 71 <Button 72 72 variant="subtle" 73 - color={computedColorScheme === 'dark' ? 'gray' : 'dark'} 73 + color={'var(--mantine-color-bright)'} 74 74 fz="md" 75 75 radius="md" 76 76 size="lg"