25 lines
673 B
Dart
Raw Normal View History

2025-08-27 12:43:25 +07:00
import 'package:flutter/material.dart';
2025-08-27 15:07:49 +07:00
import '../../presentation/components/assets/fonts.gen.dart';
2025-08-27 12:43:25 +07:00
part 'app_color.dart';
part 'app_style.dart';
part 'app_value.dart';
class ThemeApp {
static ThemeData get theme => ThemeData(
2025-08-27 15:07:49 +07:00
useMaterial3: true,
fontFamily: FontFamily.quicksand,
primaryColor: AppColor.primary,
scaffoldBackgroundColor: AppColor.white,
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
backgroundColor: AppColor.primary,
foregroundColor: Colors.white,
elevation: 0,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(24)),
),
),
);
2025-08-27 12:43:25 +07:00
}