light property

ThemeData light
getter/setter pair

Implementation

static ThemeData light = ThemeData(
    brightness: Brightness.light,
    fontFamily: 'sf_ui',
    floatingActionButtonTheme: const FloatingActionButtonThemeData(
      shape: CircleBorder(),
    ),
    appBarTheme: const AppBarTheme(
        color: appBarColor,
        iconTheme: IconThemeData(color: iconColor),
        titleTextStyle: TextStyle(
            color: appbarTextColor,
            fontSize: 20,
            fontWeight: FontWeight.w700)),
    textTheme: const TextTheme(
      displayLarge: TextStyle(fontSize: 20, color: Color(0xff181818)),
      displayMedium: TextStyle(fontSize: 19, color: Color(0xff181818)),
      displaySmall: TextStyle(fontSize: 18, color: Color(0xff181818)),
      headlineLarge: TextStyle(fontSize: 17, color: Color(0xff181818)),
      headlineMedium: TextStyle(fontSize: 16, color: Color(0xff181818)),
      headlineSmall: TextStyle(fontSize: 15, color: Color(0xff181818)),
      titleLarge: TextStyle(fontSize: 14, color: Color(0xff181818)), //black
      titleMedium: TextStyle(fontSize: 13, color: Color(0xff181818)),
      titleSmall: TextStyle(fontSize: 12, color: Color(0xff181818)), //gray
      bodyLarge: TextStyle(fontSize: 11, color: Color(0xff181818)),
      bodyMedium: TextStyle(fontSize: 10, color: Color(0xff181818)),
      bodySmall: TextStyle(fontSize: 9, color: Color(0xff181818)),
      labelMedium: TextStyle(fontSize: 8, color: Color(0xff181818)),
      labelSmall: TextStyle(fontSize: 7, color: Color(0xff181818)),
    ));