36 lines
893 B
Dart
36 lines
893 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class HomeConfig {
|
|
// Dimensões dos cards
|
|
static const double cardwidthPadding = 400;
|
|
static const double cardheightPadding = 300;
|
|
|
|
// Cores principais
|
|
static const Color primaryColor = Colors.orange;
|
|
static const Color secondaryColor = Colors.blue;
|
|
static const Color accentColor = Colors.green;
|
|
|
|
// Estilos de texto
|
|
static TextStyle titleStyle = TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white,
|
|
);
|
|
|
|
static TextStyle subtitleStyle = TextStyle(
|
|
fontSize: 14,
|
|
color: Colors.white.withOpacity(0.8),
|
|
);
|
|
|
|
static TextStyle statValueStyle = TextStyle(
|
|
fontSize: 36,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white,
|
|
);
|
|
|
|
static TextStyle statLabelStyle = TextStyle(
|
|
fontSize: 12,
|
|
color: Colors.white.withOpacity(0.8),
|
|
letterSpacing: 1.5,
|
|
);
|
|
} |