light constant

SyncTheme const light

Tema padrão claro

Implementation

static const SyncTheme light = SyncTheme(
  primary: Color(0xFF2196F3), // Azul
  success: Color(0xFF4CAF50), // Verde
  error: Color(0xFFF44336), // Vermelho
  warning: Color(0xFFFF9800), // Laranja
  textSecondary: Color(0xFF757575), // Cinza
  textPrimary: Color(0xFF212121), // Preto
  background: Color(0xFFFFFFFF), // Branco
  surface: Color(0xFFF5F5F5), // Cinza claro
  titleStyle: TextStyle(
    fontSize: 22,
    fontWeight: FontWeight.bold,
    color: Color(0xFF212121),
  ),
  subtitleStyle: TextStyle(
    fontSize: 18,
    fontWeight: FontWeight.w600,
    color: Color(0xFF212121),
  ),
  bodyStyle: TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.normal,
    color: Color(0xFF212121),
  ),
  buttonStyle: TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w500,
    color: Color(0xFFFFFFFF),
  ),
  captionStyle: TextStyle(
    fontSize: 14,
    fontWeight: FontWeight.normal,
    color: Color(0xFF757575),
  ),
);