From bc6d56c4ef58f19e9f618f03c4c0f959868abcfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20Gro=C3=9F?= Date: Mon, 8 Jan 2024 22:37:29 +0100 Subject: [PATCH] Export accent color Some browsers (e.g. Chromium on Android) make use of the theme color to highlight the tab bar in a different color. For now we hardcode the same accent color as "--primary-color" in the CSS files. In the future we should allow the consumer to configure the accent color in the configuration file and get the value from there. Unfortunately this is not possible at the moment, because zola is missing support for CSS templating, but an implementation is already in the pipeline [0], so with some luck we might soon be able to unify the accent color retrieval. [0] https://github.com/getzola/zola/pull/2242 --- templates/partials/header.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/partials/header.html b/templates/partials/header.html index 6b33ad8..1e751f1 100644 --- a/templates/partials/header.html +++ b/templates/partials/header.html @@ -31,6 +31,8 @@ {% endif -%} {% endif %} + + {# RSS #}