123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import 'package:flutter/material.dart';
- import 'package:flutter/services.dart';
- //Colors
- const MaterialColor defaultColor = MaterialColor(
- 0xffE23D73,
- <int, Color>{
- 50: Color(0xffE23D73),
- 100: Color(0xffE23D73),
- 200: Color(0xffE23D73),
- 300: Color(0xffE23D73),
- 400: Color(0xffE23D73),
- 500: Color(0xffE23D73),
- 600: Color(0xffE23D73),
- 700: Color(0xffE23D73),
- 800: Color(0xffE23D73),
- 900: Color(0xffE23D73),
- },
- );
- ThemeData appTheme = ThemeData(
- buttonTheme: const ButtonThemeData(
- buttonColor: defaultColor,
- textTheme: ButtonTextTheme.primary,
- ),
- primarySwatch: defaultColor,
- scaffoldBackgroundColor: Colors.white,
- canvasColor: Colors.transparent,
- appBarTheme: const AppBarTheme(
- titleTextStyle: TextStyle(
- color: Colors.black,
- fontSize: 19.0,
- fontFamily: 'MonstMid',
- ),
- titleSpacing: 19.0,
- systemOverlayStyle: SystemUiOverlayStyle(
- statusBarColor: Colors.white,
- statusBarIconBrightness: Brightness.dark,
- ),
- backgroundColor: Colors.white,
- iconTheme: IconThemeData(
- color: Colors.black,
- ),
- elevation: 0.0,
- ),
- textTheme: const TextTheme(
- bodyLarge: TextStyle(
- fontSize: 17.0,
- fontWeight: FontWeight.w600,
- color: Colors.black,
- ),
- titleMedium: TextStyle(
- fontSize: 13.0,
- fontWeight: FontWeight.w600,
- color: Colors.black,
- height: 1.3,
- ),
- ),
- );
|