From edb46e2ef834c3ef95fd65b23b4d3ba0fb6612cc Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 16 May 2026 15:12:20 +0100 Subject: [PATCH] Fix unreadable founder-card title on About page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "Founded by" card sets a dark teal background and text-white, but its h2 had no color class, so the prose heading rule (--tw-prose-headings: var(--color-on-surface)) won and rendered the title near-black on the dark card — ~1.5:1 contrast, failing WCAG AA. Add text-white to the h2 so it matches the card's intended light-on-dark scheme, consistent with the paragraph's existing text-white/80. --- personal/templates/personal/about.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/personal/templates/personal/about.html b/personal/templates/personal/about.html index a302701..f1869d5 100644 --- a/personal/templates/personal/about.html +++ b/personal/templates/personal/about.html @@ -30,7 +30,7 @@

{% if page %}{{ page.categories_
-

{% if page %}{{ page.founder_title }}{% else %}Founded by Ephraim Kanyandula{% endif %}

+

{% if page %}{{ page.founder_title }}{% else %}Founded by Ephraim Kanyandula{% endif %}

{% if page %}{{ page.founder_body|linebreaksbr }}{% else %}NyasaBlog was created by Ephraim Kanyandula, a Malawian national, with the vision of building a platform that amplifies Malawian voices and showcases the best of Malawian creativity and innovation.{% endif %}