todos-contra-el-fuego-mobile/lib/theme.dart
2026-03-05 01:18:27 +01:00

22 lines
624 B
Dart

import 'package:flutter/material.dart';
import 'colors.dart';
final ThemeData firesTheme = _buildFiresTheme();
ThemeData _buildFiresTheme() {
final ThemeData base = ThemeData.light(); // light or dark
return base.copyWith(
accentColor: fires900,
primaryColor: fires600,
buttonColor: fires900,
scaffoldBackgroundColor: firesSurfaceWhite,
cardColor: firesBackgroundWhite,
textSelectionTheme: TextSelectionThemeData(selectionColor: fires300),
errorColor: firesErrorRed,
//TODO: Add the text themes (103)
//TODO: Add the icon themes (103)
//TODO: Decorate the inputs (103)
);
}