import 'package:flutter/material.dart'; class AppTheme { static ThemeData get theme { return ThemeData( useMaterial3: true, scaffoldBackgroundColor: const Color.fromRGBO(31, 32, 33, 1), colorScheme: ColorScheme.fromSeed( seedColor: Colors.amber, brightness: Brightness.dark, ), floatingActionButtonTheme: const FloatingActionButtonThemeData( backgroundColor: Colors.amber, foregroundColor: Colors.black, ), ); } }