diff --git a/login(updated).dart b/login(updated).dart new file mode 100644 index 0000000..0573f51 --- /dev/null +++ b/login(updated).dart @@ -0,0 +1,17 @@ +import 'package:flutter/material.dart'; + +final loginTheme = ThemeData( + primaryColor: Colors.blue[900], + hintColor: Colors.blue[900], + primarySwatch: Colors.blue, + dividerColor: Colors.white, + scaffoldBackgroundColor: Colors.white, + cursorColor: Colors.blue[800], + brightness: Brightness.light, + + textTheme: TextTheme( + display3: TextStyle(fontSize: 12.0, color: Colors.white70), + button: TextStyle(fontSize: 16, color: Colors.white), //Used + caption: TextStyle(fontSize: 14, color: Colors.white), //Used + ), +);