Add dark mode support

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent 9cc4952c6d
commit 534a38a63c
5 changed files with 7 additions and 7 deletions

View file

@ -11,7 +11,7 @@ use:
{% for talk in data.posts %}
<article>
<h2 class="text-xl">
<a class="text-blue-700" href="{{ talk.url }}">
<a class="text-blue-700 dark:text-blue-400" href="{{ talk.url }}">
{{ talk.title }}
</a>
</h2>

View file

@ -11,7 +11,7 @@ use:
{% for talk in data.talks|sort((a,b) => a.sortable_date < b.sortable_date) %}
<article>
<h2 class="text-xl">
<a class="text-blue-700" href="{{ talk.url }}">
<a class="text-blue-700 dark:text-blue-400" href="{{ talk.url }}">
{{ talk.title }}
</a>
</h2>