From 5f05489316ec9a7af83d16d3e399ac71b926a112 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 10 Jun 2026 14:15:16 +0700 Subject: [PATCH] fix(theme): shift teal-soft to sky blue for contrast vs mint-soft MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit teal-soft: #ccfbf1 (pale teal-green) → #bae6fd (pale sky blue) mint-soft: #d1fae5 (pale green) — unchanged Now the two tiles are clearly different: one is green-mint, the other is blue-cyan --- src/styles/global.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/global.css b/src/styles/global.css index 6d16f37..10c9e97 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -21,7 +21,7 @@ --color-purple: #7c3aed; --color-purple-soft: #ede9fe; --color-teal: #0d9488; - --color-teal-soft: #ccfbf1; + --color-teal-soft: #bae6fd; --color-mint: #10b981; --color-mint-soft: #d1fae5; --color-coral: #f97316;