refactoring theme updates (removing flutterflow theme).

This commit is contained in:
Ashton
2024-07-05 23:07:55 -06:00
parent dfa84c4acf
commit 12481487d9
37 changed files with 1073 additions and 598 deletions
+26
View File
@@ -0,0 +1,26 @@
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.purple;
static const primaryBackground = Colors.purple;
static const secondaryBackground = Colors.purpleAccent;
static const primaryText = Colors.white;
static const secondaryText = Colors.white;
static const bodyMedium = TextStyle(color: Colors.white, fontSize: 12);
static const error = Colors.red;
static const labelMedium = TextStyle(color: Colors.grey, fontSize: 16);
static const labelLarge = TextStyle(color: Colors.black, fontSize: 24);
static const headlineMedium = 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);
}