diff --git a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart index 7b35ccfa..d273509e 100644 --- a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart +++ b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart @@ -1193,7 +1193,7 @@ class _DashboardScreenState extends ConsumerState { Container( padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4), decoration: BoxDecoration( - color: statusColor.withValues(alpha: 31), + color: statusColor, borderRadius: BorderRadius.circular(999), ), child: Text( @@ -1203,9 +1203,9 @@ class _DashboardScreenState extends ConsumerState { 'ui.userfront.dashboard.status.revoked', fallback: '해지됨', ), - style: TextStyle( + style: const TextStyle( fontSize: 11, - color: statusColor, + color: Colors.white, fontWeight: FontWeight.w600, ), ),