import "package:flutter/material.dart"; ThemeData darkTheme = ThemeData( appBarTheme: const AppBarTheme( centerTitle: true, elevation: 0, ), colorScheme: const ColorScheme.dark( background: Color.fromARGB(255, 20, 20, 20), surface: Color.fromARGB(255, 20, 20, 20), primary: Color.fromARGB(255, 122, 122, 122), secondary: Color.fromARGB(255, 30, 30, 30), tertiary: Color.fromARGB(255, 47, 47, 47), inverseSurface: Colors.white, inversePrimary: Color.fromARGB(255, 133, 133, 133), ), );