weebiTheme top-level property

ThemeData weebiTheme
final

Implementation

final weebiTheme = ThemeData(
  fontFamily: 'PT_Sans-Narrow',
  inputDecorationTheme: InputDecorationTheme(
    errorBorder: UnderlineInputBorder(
      borderSide: BorderSide(color: WeebiColors.red),
    ),
    focusedBorder: UnderlineInputBorder(
        borderSide: BorderSide(color: WeebiColors.buttonColor)),
  ),
  appBarTheme: const AppBarTheme(color: WeebiColors.blackAppBar),
  primaryColor: WeebiColors.blackAppBar,
  buttonTheme: const ButtonThemeData(
    buttonColor: WeebiColors.buttonColor,
    textTheme: ButtonTextTheme.primary,
  ),
  indicatorColor: WeebiColors.yellowIndicator,
  tabBarTheme: const TabBarTheme(
    indicator: BoxDecoration(
      border: Border(
        bottom:
            BorderSide(color: Colors.teal, width: 8, style: BorderStyle.solid),
      ),
      color: WeebiColors.blackAppBar,
    ),
  ),
);