From 94895a89389f9305c7eb5fd04244c393b94ac3c3 Mon Sep 17 00:00:00 2001 From: tfsq <156451907+tfsq@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:10:16 -0500 Subject: [PATCH] fix: improve text-muted contrast for better readability (#7095) --- ui/desktop/src/styles/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/desktop/src/styles/main.css b/ui/desktop/src/styles/main.css index 1a6c2f93..8dd1b225 100644 --- a/ui/desktop/src/styles/main.css +++ b/ui/desktop/src/styles/main.css @@ -74,7 +74,7 @@ --border-info: var(--color-blue-200); --text-default: var(--color-neutral-800); - --text-muted: var(--color-neutral-400); + --text-muted: var(--color-neutral-600); --text-inverse: var(--color-white); --text-danger: var(--color-red-200); --text-success: var(--color-green-200); @@ -126,7 +126,7 @@ --border-info: var(--color-blue-100); --text-default: var(--color-white); - --text-muted: var(--color-neutral-400); + --text-muted: var(--color-neutral-300); --text-inverse: var(--color-black); --text-danger: var(--color-red-100); --text-success: var(--color-green-100);