Initial commit
This commit is contained in:
commit
c4438365ab
78 changed files with 1900 additions and 0 deletions
22
lib/theme.dart
Normal file
22
lib/theme.dart
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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,
|
||||
textSelectionColor: fires300,
|
||||
errorColor: firesErrorRed,
|
||||
|
||||
//TODO: Add the text themes (103)
|
||||
//TODO: Add the icon themes (103)
|
||||
//TODO: Decorate the inputs (103)
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue