cmc/cleberg.net

My personal web garden & blog.

clone: git clone https://gitbay.org/cmc/cleberg.net.git

c9715768e01108f7e74ffab01aa368f8adfc3f15

unsigned

author: Christian Cleberg <hello@cleberg.net> · 2025-06-11T04:31:23Z

feat: update favicon
 theme/static/favicon.ico      | Bin 3696 -> 28345 bytes
 theme/static/favicon_dark.ico | Bin 3686 -> 0 bytes
 theme/templates/base.html     |   3 +--
 3 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/theme/static/favicon.ico b/theme/static/favicon.ico
index 399f17d..81f54ad 100644
Binary files a/theme/static/favicon.ico and b/theme/static/favicon.ico differ
diff --git a/theme/static/favicon_dark.ico b/theme/static/favicon_dark.ico
deleted file mode 100644
index aee46ba..0000000
Binary files a/theme/static/favicon_dark.ico and /dev/null differ
diff --git a/theme/templates/base.html b/theme/templates/base.html
index c993f97..daa43d0 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -12,8 +12,7 @@
     {% if site_description is defined %}<meta name="description" content="{{ site_description }}" >{% endif %}
     {% if site_keywords is defined %}<meta name="keywords" content="{{ site_keywords }}" >{% endif %}
     <link rel="stylesheet" href="{{ url_for("static", file="styles.min.css") }}" type="text/css">
-    <link rel="icon" type="image/x-icon" href="{{ url_for("static", file="favicon.ico") }}" media="(prefers-color-scheme: light)">
-    <link rel="icon" type="image/x-icon" href="{{ url_for("static", file="favicon_dark.ico") }}" media="(prefers-color-scheme: dark)">
+    <link rel="icon" type="image/x-icon" href="{{ url_for("static", file="favicon.ico") }}">
     {% block meta %}{% endblock %}
     {% endblock %}
 </head>