From cc6246e79874caae8942f25892690458bbc553cd Mon Sep 17 00:00:00 2001 From: BigDuck Date: Sat, 10 Jan 2026 13:57:28 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20page.dart?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/app/home/page.dart | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/app/home/page.dart b/lib/app/home/page.dart index 2d73d5c70..b6308fc9d 100644 --- a/lib/app/home/page.dart +++ b/lib/app/home/page.dart @@ -799,7 +799,9 @@ class _HomePageState extends State with WidgetsBindingObserver { color: color.withValues(alpha: 0.15), borderRadius: BorderRadius.circular(8), border: Border.all( - color: Colors.white.withValues(alpha: 0.25), + color: Theme.of(context).brightness == Brightness.dark + ? Colors.white.withValues(alpha: 0.25) + : const Color.fromARGB(255, 0, 0, 0).withValues(alpha: 0.3), width: 0.5, ), ), @@ -809,14 +811,19 @@ class _HomePageState extends State with WidgetsBindingObserver { Text( label, style: context.texts.labelSmall?.copyWith( - color: Colors.white.withValues(alpha: 0.8), + color: Theme.of(context).brightness == Brightness.dark + ? Colors.white + : const Color.fromARGB(255, 60, 60, 60), + fontWeight: FontWeight.w700, fontSize: 8, ), ), Text( value, style: context.texts.bodySmall?.copyWith( - color: Colors.white, + color: Theme.of(context).brightness == Brightness.dark + ? Colors.white + : const Color.fromARGB(255, 60, 60, 60), fontWeight: FontWeight.w600, fontSize: 11, ), From 905f1fdebdace69719d0a90284bec85a896a6304 Mon Sep 17 00:00:00 2001 From: BigDuck Date: Mon, 12 Jan 2026 22:24:01 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20page.dart?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/app/home/page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/app/home/page.dart b/lib/app/home/page.dart index b6308fc9d..b50efd17a 100644 --- a/lib/app/home/page.dart +++ b/lib/app/home/page.dart @@ -800,7 +800,7 @@ class _HomePageState extends State with WidgetsBindingObserver { borderRadius: BorderRadius.circular(8), border: Border.all( color: Theme.of(context).brightness == Brightness.dark - ? Colors.white.withValues(alpha: 0.25) + ? Colors.white.withValues(alpha: 0.3) : const Color.fromARGB(255, 0, 0, 0).withValues(alpha: 0.3), width: 0.5, ), @@ -813,7 +813,7 @@ class _HomePageState extends State with WidgetsBindingObserver { style: context.texts.labelSmall?.copyWith( color: Theme.of(context).brightness == Brightness.dark ? Colors.white - : const Color.fromARGB(255, 60, 60, 60), + : const Color.fromARGB(255, 90, 90, 90), fontWeight: FontWeight.w700, fontSize: 8, ), From f1e7030579e4adf9cebd250b2b1fbcee06cbdaa9 Mon Sep 17 00:00:00 2001 From: BigDuck Date: Mon, 12 Jan 2026 22:30:38 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20page.dart?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/app/home/page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/app/home/page.dart b/lib/app/home/page.dart index b50efd17a..1ab217402 100644 --- a/lib/app/home/page.dart +++ b/lib/app/home/page.dart @@ -800,8 +800,8 @@ class _HomePageState extends State with WidgetsBindingObserver { borderRadius: BorderRadius.circular(8), border: Border.all( color: Theme.of(context).brightness == Brightness.dark - ? Colors.white.withValues(alpha: 0.3) - : const Color.fromARGB(255, 0, 0, 0).withValues(alpha: 0.3), + ? Colors.white.withValues(alpha: 0.25) + : const Color.fromARGB(255, 0, 0, 0).withValues(alpha: 0.25), width: 0.5, ), ),