Skip to content

Commit 2878da2

Browse files
authored
Update index.astro
remove orange font to improve contrast
1 parent 1a07ad4 commit 2878da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/news/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ news.sort((a, b) => parseDate(b.data.date) - parseDate(a.data.date));
3232
<img src={entry.data?.cover?.source ?? "/assets/og/default.jpg"} alt="Article Cover" class="w-auto h-auto"/>
3333
</div>
3434
<a href={`/news/${entry.slug}`} class="flex px-6 pt-4 pb-6 flex-col gap-y-2">
35-
<time class="block font-light text-orange-600">{entry.data.date}</time>
35+
<time class="block font-light>{entry.data.date}</time>
3636
<span class="block text-xl font-bold">{entry.data.title}</span>
3737
{entry.data.summary && <span class="block text-sm font-light">{truncateStringToLength(entry.data.summary, 120)}</span>}
3838
</a>

0 commit comments

Comments
 (0)