From 333d972e4001ec67d85d079d13df4271b8cfcfec Mon Sep 17 00:00:00 2001 From: Ricardo Date: Sat, 7 Mar 2026 17:40:36 +0100 Subject: [PATCH] fix: align sparkline colors with per-type domain colors Match sparkline wrapper colors to the post type icon colors used in the recent posts widget: replies=sky, reposts=green, likes=red, photos=purple. Articles, notes, bookmarks, and blog keep amber (writing domain). Confab-Link: http://localhost:8080/sessions/0ec83454-d346-4329-8aaf-6b12139bf596 --- likes.njk | 2 +- photos.njk | 2 +- replies.njk | 2 +- reposts.njk | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/likes.njk b/likes.njk index 589be0e..2160fc7 100644 --- a/likes.njk +++ b/likes.njk @@ -14,7 +14,7 @@ permalink: "likes/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumbe

Likes

{% set sparklineSvg = collections.likes | postingFrequency %} {% if sparklineSvg %} -
{{ sparklineSvg | safe }}
+
{{ sparklineSvg | safe }}
{% endif %}

diff --git a/photos.njk b/photos.njk index 3e5bbb4..488bbb5 100644 --- a/photos.njk +++ b/photos.njk @@ -14,7 +14,7 @@ permalink: "photos/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumb

Photos

{% set sparklineSvg = collections.photos | postingFrequency %} {% if sparklineSvg %} -
{{ sparklineSvg | safe }}
+
{{ sparklineSvg | safe }}
{% endif %}

diff --git a/replies.njk b/replies.njk index d010daf..5592ae5 100644 --- a/replies.njk +++ b/replies.njk @@ -14,7 +14,7 @@ permalink: "replies/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNum

Replies

{% set sparklineSvg = collections.replies | postingFrequency %} {% if sparklineSvg %} -
{{ sparklineSvg | safe }}
+
{{ sparklineSvg | safe }}
{% endif %}

diff --git a/reposts.njk b/reposts.njk index 6098633..f636ba9 100644 --- a/reposts.njk +++ b/reposts.njk @@ -14,7 +14,7 @@ permalink: "reposts/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNum

Reposts

{% set sparklineSvg = collections.reposts | postingFrequency %} {% if sparklineSvg %} -
{{ sparklineSvg | safe }}
+
{{ sparklineSvg | safe }}
{% endif %}