From b50a388726b1c0429638cc1c063b189b12d0c4b5 Mon Sep 17 00:00:00 2001 From: Guido Vicino Date: Fri, 20 Feb 2026 19:59:39 +0100 Subject: [PATCH] Fix low contrast for muted/faint text in Obsidian theme --- default/themed/obsidian.css.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default/themed/obsidian.css.tpl b/default/themed/obsidian.css.tpl index 90b86244..e255b0e5 100644 --- a/default/themed/obsidian.css.tpl +++ b/default/themed/obsidian.css.tpl @@ -30,8 +30,8 @@ --interactive-accent-hover: {{ accent }}; /* Muted text */ - --text-muted: {{ color8 }}; - --text-faint: {{ color8 }}; + --text-muted: color-mix(in srgb, {{ foreground }} 70%, transparent); + --text-faint: color-mix(in srgb, {{ foreground }} 55%, transparent); /* Code */ --code-normal: {{ color6 }};