From 6fd86a3682fe07ad7481c72758a09512e6392af9 Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Mon, 22 Dec 2025 22:06:57 -0700 Subject: [PATCH] Make tag text bold for better readability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add font-weight: 600 to tag labels to improve text readability on solid colored backgrounds. The bold text provides better contrast and matches the visual weight of the desktop app. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- templates/tasks/_task_item.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/tasks/_task_item.html b/templates/tasks/_task_item.html index 8fb0a60..e31aeea 100644 --- a/templates/tasks/_task_item.html +++ b/templates/tasks/_task_item.html @@ -28,7 +28,7 @@ · {% endif %} {% for tag in task.tags.all %} - + {{ tag.name }} {% endfor %}