import 'package:flutter/material.dart';

ThemeData getTheme() {
  return ThemeData(
    appBarTheme: const AppBarTheme(
      backgroundColor: Colors.transparent,
      foregroundColor: Color(0xFF333333),
      elevation: 0,
    ),
    backgroundColor: Colors.white,
  );
}