From 6078c136bb92a19a0c5f06bb15f37041dfa1ac1f Mon Sep 17 00:00:00 2001 From: weishu Date: Wed, 24 Dec 2025 14:47:32 +0800 Subject: [PATCH] style: unify button and link colors to black/white theme --- web/src/index.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/index.css b/web/src/index.css index f6ebcc3f..19035d05 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -6,8 +6,8 @@ --app-bg: var(--tg-theme-bg-color, #ffffff); --app-fg: var(--tg-theme-text-color, #111827); --app-hint: var(--tg-theme-hint-color, #6b7280); - --app-link: var(--tg-theme-link-color, #2563eb); - --app-button: var(--tg-theme-button-color, #2563eb); + --app-link: var(--tg-theme-link-color, #111827); + --app-button: var(--tg-theme-button-color, #111827); --app-button-text: var(--tg-theme-button-text-color, #ffffff); --app-secondary-bg: var(--tg-theme-secondary-bg-color, #f3f4f6); @@ -48,9 +48,9 @@ --app-bg: var(--tg-theme-bg-color, #1c1c1e); --app-fg: var(--tg-theme-text-color, #ffffff); --app-hint: var(--tg-theme-hint-color, #8e8e93); - --app-link: var(--tg-theme-link-color, #0a84ff); - --app-button: var(--tg-theme-button-color, #0a84ff); - --app-button-text: var(--tg-theme-button-text-color, #ffffff); + --app-link: var(--tg-theme-link-color, #ffffff); + --app-button: var(--tg-theme-button-color, #ffffff); + --app-button-text: var(--tg-theme-button-text-color, #111827); --app-secondary-bg: var(--tg-theme-secondary-bg-color, #2C2C2E); --app-border: rgba(255, 255, 255, 0.1);