diff --git a/assets/css/base.pcss b/assets/css/base.pcss index 0ffbef73..96477b70 100644 --- a/assets/css/base.pcss +++ b/assets/css/base.pcss @@ -4,7 +4,7 @@ } blockquote { - @apply pl-4 border-l-3 border-blue-800 dark:border-blue-400; + @apply pl-4 border-l-3 border-blue-primary dark:border-blue-400; } code { diff --git a/assets/css/components.pcss b/assets/css/components.pcss index d2c7c324..c9b8504a 100644 --- a/assets/css/components.pcss +++ b/assets/css/components.pcss @@ -1,6 +1,6 @@ @layer components { .link { - @apply underline text-blue-800 hover:text-blue-900 dark:text-blue-400 dark:hover:text-white; + @apply underline text-blue-primary hover:text-blue-900 dark:text-blue-400 dark:hover:text-white; text-decoration-thickness: 1px; text-underline-offset: 0.1em; diff --git a/assets/css/utilities.pcss b/assets/css/utilities.pcss index eca348c0..b4845a8e 100644 --- a/assets/css/utilities.pcss +++ b/assets/css/utilities.pcss @@ -4,7 +4,7 @@ text-decoration-color: theme('colors.blue.400'); } - .text-decoration-blue-800 { + .text-decoration-blue-primary { text-decoration-color: theme('colors.blue.800'); } diff --git a/source/_pages/talks.html.twig b/source/_pages/talks.html.twig index b549aedc..93850a45 100644 --- a/source/_pages/talks.html.twig +++ b/source/_pages/talks.html.twig @@ -11,7 +11,7 @@ use: {% for talk in data.talks|sort((a,b) => a.sortable_date < b.sortable_date) %}

- + {{ talk.title }}

diff --git a/source/_partials/navbar.html.twig b/source/_partials/navbar.html.twig index e154d649..1b79f439 100644 --- a/source/_partials/navbar.html.twig +++ b/source/_partials/navbar.html.twig @@ -5,7 +5,7 @@

- + {{ post.title }}

diff --git a/tools/tailwindcss/colours.js b/tools/tailwindcss/colours.js index 277c9190..943753a7 100644 --- a/tools/tailwindcss/colours.js +++ b/tools/tailwindcss/colours.js @@ -2,6 +2,9 @@ let { gray } = require('tailwindcss/colors') module.exports = { black: '#000', + blue: { + primary: '#24608A', + }, current: 'currentColor', gray, inherit: 'inherit',