refactor: extract bitcoinOrange to AppColors constants

This commit is contained in:
Forte11Cuba
2026-03-29 21:53:50 -06:00
parent b9485d3296
commit c9781b2ff2
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -22,6 +22,7 @@ class AppColors {
// === ACCENT COLORS ===
static const Color primaryAction = Color(0xFFE35D33); // Naranja vibrante
static const Color secondaryAction = Color(0xFFFFB74D); // Amarillo pulpa/Bitcoin
static const Color bitcoinOrange = Color(0xFFF7931A); // Bitcoin brand orange
static const Color success = Color(0xFF00E676); // Verde neón
static const Color error = Color(0xFFFF5252); // Rojo suave
static const Color warning = Color(0xFFFFB74D); // Amarillo
+1 -1
View File
@@ -368,7 +368,7 @@ class _RequestScreenState extends State<RequestScreen> {
width: 48,
height: 48,
decoration: BoxDecoration(
color: const Color(0xFFF7931A),
color: AppColors.bitcoinOrange,
borderRadius: BorderRadius.circular(10),
border: Border.all(color: Colors.white, width: 4),
),