From 8b87733319479b5254afdbf2e7d7a64e289736d0 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 19 Sep 2022 16:45:54 +0100 Subject: [PATCH] Fix tags being blue in dark mode --- static/src/scss/_content.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/src/scss/_content.scss b/static/src/scss/_content.scss index c8d8293..85f02af 100644 --- a/static/src/scss/_content.scss +++ b/static/src/scss/_content.scss @@ -49,6 +49,11 @@ section.content { .tags.has-addons { @include dark-mode { filter: invert(100%); + + a { + // HACK: By inverting the colour, the above invert ends up showing the correct colour + color: color.invert($primary); + } } }