chore: Change default blue colour
This commit is contained in:
parent
d7e543ea4b
commit
efe36b53d8
7 changed files with 10 additions and 7 deletions
|
@ -11,7 +11,7 @@ use:
|
|||
{% for talk in data.talks|sort((a,b) => a.sortable_date < b.sortable_date) %}
|
||||
<article>
|
||||
<h2>
|
||||
<a class="text-blue-800 dark:text-blue-400" href="{{ talk.url }}">
|
||||
<a class="text-blue-primary dark:text-blue-400" href="{{ talk.url }}">
|
||||
{{ talk.title }}
|
||||
</a>
|
||||
</h2>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<a href="/">
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
class="w-16 h-16 text-blue-800 fill-current dark:text-blue-400 md:w-18 md:h-18"
|
||||
class="w-16 h-16 text-blue-primary fill-current dark:text-blue-400 md:w-18 md:h-18"
|
||||
viewBox="0 0 706 504"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<nav class="flex items-center mt-4 space-x-6 md:mt-0 md:flex-row">
|
||||
{% for item in site.menus.main %}
|
||||
{% set is_active = page.url matches '#' ~ item.is_active ~ '#' %}
|
||||
<a class="text-black dark:text-white border-b-3 py-2 hover:border-gray-300 {{ is_active ? 'border-blue-800 dark:border-blue-400' : 'border-transparent' }}" href="{{ item.href }}">{{ item.title }}</a>
|
||||
<a class="text-black dark:text-white border-b-3 py-2 hover:border-gray-300 {{ is_active ? 'border-blue-primary dark:border-blue-400' : 'border-transparent' }}" href="{{ item.href }}">{{ item.title }}</a>
|
||||
{% endfor %}
|
||||
</nav>
|
||||
</div>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<article>
|
||||
<h2>
|
||||
<a class="text-blue-800 dark:text-blue-400" href="{{ post.url }}">
|
||||
<a class="text-blue-primary dark:text-blue-400" href="{{ post.url }}">
|
||||
{{ post.title }}
|
||||
</a>
|
||||
</h2>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue