TKK_E32231115MAULANA/lib/core/theme/app_theme.dart

75 lines
2.4 KiB
Dart

import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
class AppTheme {
// Earthy color palette
static const Color primaryGreen = Color(0xFF2E7D32);
static const Color accentBrown = Color(0xFF795548);
static const Color backgroundBeige = Color(0xFFF5F5DC);
static const Color surfaceWhite = Color(0xFFFFFFFF);
static const Color textDark = Color(0xFF212121);
static const Color textLight = Color(0xFF757575);
static ThemeData get lightTheme {
return ThemeData(
useMaterial3: true,
colorScheme: ColorScheme.fromSeed(
seedColor: primaryGreen,
primary: primaryGreen,
secondary: accentBrown,
background: backgroundBeige,
surface: surfaceWhite,
),
scaffoldBackgroundColor: backgroundBeige,
textTheme: GoogleFonts.outfitTextTheme().copyWith(
displayLarge: GoogleFonts.outfit(
fontSize: 32,
fontWeight: FontWeight.bold,
color: textDark,
),
bodyLarge: GoogleFonts.outfit(
fontSize: 16,
color: textDark,
),
bodyMedium: GoogleFonts.outfit(
fontSize: 14,
color: textLight,
),
),
inputDecorationTheme: InputDecorationTheme(
filled: true,
fillColor: surfaceWhite,
contentPadding: const EdgeInsets.symmetric(horizontal: 20, vertical: 16),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(16),
borderSide: BorderSide.none,
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(16),
borderSide: BorderSide.none,
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(16),
borderSide: const BorderSide(color: primaryGreen, width: 2),
),
hintStyle: GoogleFonts.outfit(color: textLight),
),
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
backgroundColor: primaryGreen,
foregroundColor: Colors.white,
padding: const EdgeInsets.symmetric(vertical: 18),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
),
elevation: 4,
textStyle: GoogleFonts.outfit(
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
),
);
}
}