tangled
alpha
login
or
join now
cosmik.network
/
semble
43
fork
atom
A social knowledge tool for researchers built on ATProto
43
fork
atom
overview
issues
13
pulls
pipelines
feat: replace default title colour with "bright"
Pouria Delfanazari
4 months ago
513edfa6
8227ed2e
+9
-4
4 changed files
expand all
collapse all
unified
split
src
webapp
features
cards
components
urlCard
UrlCard.tsx
collections
components
collectionCard
CollectionCard.tsx
feeds
components
feedActivityStatus
FeedActivityStatus.tsx
profile
components
profileMenu
ProfileMenu.tsx
+1
-1
src/webapp/features/cards/components/urlCard/UrlCard.tsx
···
67
67
</Anchor>
68
68
</Tooltip>
69
69
{props.cardContent.title && (
70
70
-
<Text fw={500} lineClamp={2}>
70
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
37
-
<Text fw={500} lineClamp={1}>
37
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
44
-
<Text component={Link} href={`/profile/${props.user.handle}`} fw={600}>
44
44
+
<Text
45
45
+
component={Link}
46
46
+
href={`/profile/${props.user.handle}`}
47
47
+
fw={600}
48
48
+
c={'var(--mantine-color-bright)'}
49
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
73
-
color={computedColorScheme === 'dark' ? 'gray' : 'dark'}
73
73
+
color={'var(--mantine-color-bright)'}
74
74
fz="md"
75
75
radius="md"
76
76
size="lg"