From d2c26e62037351f0caa1a6cc40ac54fdd391bb22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Tue, 13 Jan 2026 16:49:17 +0100 Subject: [PATCH] Style upload progress snackbar with accent color (nyan) --- b0esche_cloud/lib/pages/file_explorer.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/b0esche_cloud/lib/pages/file_explorer.dart b/b0esche_cloud/lib/pages/file_explorer.dart index a1f9524..5ce83a6 100644 --- a/b0esche_cloud/lib/pages/file_explorer.dart +++ b/b0esche_cloud/lib/pages/file_explorer.dart @@ -718,8 +718,8 @@ class _FileExplorerState extends State { child: CircularProgressIndicator( value: totalProgress, strokeWidth: 2, - color: Colors.white, - backgroundColor: Colors.white24, + color: AppTheme.accentColor, + backgroundColor: AppTheme.accentColor.withValues(alpha: 0.3), ), ), const SizedBox(width: 12), @@ -727,6 +727,7 @@ class _FileExplorerState extends State { child: Text( 'Uploading $fileName... ${(totalProgress * 100).toInt()}%', overflow: TextOverflow.ellipsis, + style: const TextStyle(color: AppTheme.primaryText), ), ), ],