import 'package:flutter/material.dart'; /// ثيم Tripz — أساس بسيط، خط عربي (mohanad) وألوان. ThemeData buildTheme() { const seed = Color(0xFF0E7C66); // أخضر تركوازي return ThemeData( useMaterial3: true, colorScheme: ColorScheme.fromSeed(seedColor: seed), fontFamily: 'mohanad', inputDecorationTheme: const InputDecorationTheme( border: OutlineInputBorder(), contentPadding: EdgeInsets.symmetric(horizontal: 16, vertical: 14), ), filledButtonTheme: FilledButtonThemeData( style: FilledButton.styleFrom( minimumSize: const Size.fromHeight(52), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)), ), ), ); }