diff --git a/fonts/futura_bold.otf b/fonts/futura_bold.otf deleted file mode 100644 index 5f98f1b..0000000 Binary files a/fonts/futura_bold.otf and /dev/null differ diff --git a/lib/theme.dart b/lib/theme.dart deleted file mode 100644 index a57f4de..0000000 --- a/lib/theme.dart +++ /dev/null @@ -1,46 +0,0 @@ -import 'package:flutter/material.dart'; - -class CustomTheme { - static const String _fontFamily = - 'FuturaBold'; // Match the name in pubspec.yaml - - // Define your custom colors - Color kYellow = Color(0xFFFDBB2C); - Color kBlue = Color(0xFF222375); - Color lightkBlue = Color(0xFF535393); - Color kLightBlue = Color(0xFFE8F1F8); - Color kBlack = Color(0xFF343434); - Color shimmerSkeletonColor = Color(0xff4e4f91); - Color hintColor = Colors.black54; - - // Define your custom theme data - ThemeData myTheme = ThemeData( - fontFamily: _fontFamily, - // Define primary colors - primaryColor: const Color(0xFF222375), - hintColor: const Color.fromARGB(255, 105, 103, 103), - - // Define text themes - textTheme: const TextTheme( - displayLarge: TextStyle( - fontSize: 19, - fontWeight: FontWeight.bold, - fontFamily: _fontFamily, - color: Colors.white, - ), - displayMedium: TextStyle( - fontSize: 16, - fontWeight: FontWeight.w800, - fontFamily: _fontFamily, - color: Colors.black, - ), - bodyLarge: TextStyle( - fontSize: 16, - fontFamily: _fontFamily, - color: Colors.white, - ), - ), - - // Define other theme properties such as fonts, buttons, etc. - ); -}