diff --git a/lib/main.dart b/lib/main.dart index 3046664..4e9d61a 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -909,7 +909,8 @@ class _ChannelPill extends StatelessWidget { Color _accent(ColorScheme cs) { switch (channel) { case 'production': - return cs.error; + // "Live & healthy", not an error — red here read as a fault. + return ChainColors.success; case 'beta': return ChainColors.warning; case 'dev': @@ -1023,7 +1024,8 @@ class _CollapsedChannelChip extends StatelessWidget { Color _accent(ColorScheme cs) { switch (channel) { case 'production': - return cs.error; + // "Live & healthy", not an error — red here read as a fault. + return ChainColors.success; case 'beta': return ChainColors.warning; case 'dev':