import 'package:flutter/material.dart'; class AppTheme { static const primary = Colors.deepPurple; static const secondary = Colors.deepPurpleAccent; static const tertiary = Colors.white; static const alternate = Colors.deepPurple; static const accent1 = Colors.amber; static const accent4 = Colors.amber; static const primaryBackground = Colors.deepPurpleAccent; static const secondaryBackground = Colors.deepPurple; static const primaryTextColor = Colors.white; static const primaryText = TextStyle(color: primaryTextColor, fontSize: 12); static const secondaryText = Colors.white; static const bodyLarge = TextStyle(color: Colors.white, fontSize: 24); static const bodyMedium = TextStyle(color: Colors.white, fontSize: 12); static const bodySmall = TextStyle(color: Colors.white, fontSize: 10); static const error = Colors.red; static const info = Colors.grey; static const displaySmall = TextStyle(color: Colors.white, fontSize: 12); static const labelLarge = TextStyle(color: Colors.black, fontSize: 24); static const labelMedium = TextStyle(color: Colors.grey, fontSize: 16); static const labelSmall = TextStyle(color: Colors.grey, fontSize: 12); static const headlineLarge = TextStyle(color: Colors.blue, fontWeight: FontWeight.bold); static const headlineMedium = TextStyle(color: Colors.blue, fontWeight: FontWeight.bold); static const headlineSmall = TextStyle(color: Colors.blue, fontWeight: FontWeight.bold); static const titleLarge = TextStyle(fontFamily: 'Outfit', letterSpacing: 0, fontSize: 24); static const titleSmall = TextStyle(fontFamily: 'Outfit', letterSpacing: 0, fontSize: 16); }