Skip to content

Commit

Permalink
change text color
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzius committed May 29, 2024
1 parent 7dbe6aa commit ebde83f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/dms/DateDivider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,15 @@ let DateDivider = ({date: dateStr}: {date: string}): React.ReactNode => {
{top: '50%', left: 0, right: 0},
]}
/>
<Text style={[a.text_center, t.atoms.bg, a.px_md]}>{display}</Text>
<Text
style={[
a.text_center,
t.atoms.bg,
t.atoms.text_contrast_medium,
a.px_md,
]}>
{display}
</Text>
</View>
)
}
Expand Down

0 comments on commit ebde83f

Please sign in to comment.