Advertisement
pedrolemoz

Theme Data

Jun 16th, 2020
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.23 KB | None | 0 0
  1. ThemeData(
  2.         visualDensity: VisualDensity.adaptivePlatformDensity,
  3.         brightness: Brightness.light,
  4.         backgroundColor: Color(0xFFEEEEEE),
  5.         scaffoldBackgroundColor: Color(0xFFEEEEEE),
  6.         primaryColor: Color(0xFF6b18b2),
  7.         textTheme: TextTheme(
  8.           headline5: TextStyle(
  9.             fontFamily: 'Nunito Sans',
  10.             fontSize: 24.0,
  11.             fontWeight: FontWeight.w700,
  12.             letterSpacing: 0,
  13.           ),
  14.           headline6: TextStyle(
  15.             fontFamily: 'Nunito Sans',
  16.             fontSize: 20.0,
  17.             fontWeight: FontWeight.w700,
  18.             letterSpacing: 0.15,
  19.           ),
  20.           subtitle1: TextStyle(
  21.             fontFamily: 'Nunito Sans',
  22.             fontSize: 16.0,
  23.             fontWeight: FontWeight.w600,
  24.             letterSpacing: 0.5,
  25.           ),
  26.           subtitle2: TextStyle(
  27.             fontFamily: 'Nunito Sans',
  28.             fontSize: 14.0,
  29.             fontWeight: FontWeight.w400,
  30.             letterSpacing: 0.25,
  31.           ),
  32.           caption: TextStyle(
  33.             fontFamily: 'Nunito Sans',
  34.             fontSize: 12.0,
  35.             fontWeight: FontWeight.w400,
  36.             letterSpacing: 0.4,
  37.           ),
  38.         ),
  39.       );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement