getTheme method
Implementation
ThemeData getTheme() => ThemeData(
useMaterial3: true,
brightness: isDarkmode ? Brightness.dark : Brightness.light,
colorSchemeSeed: colorList[selectedColor],
appBarTheme: const AppBarTheme(centerTitle: false),
);