refactor: Simplify themes and remove dead code

This commit is contained in:
Christian Pauly 2022-08-19 08:32:08 +02:00
commit 214f0f4805
5 changed files with 23 additions and 85 deletions

View file

@ -44,8 +44,8 @@ class SettingsStyleController extends State<SettingsStyle> {
);
AppConfig.colorSchemeSeed = color;
AdaptiveTheme.of(context).setTheme(
light: FluffyThemes.light(),
dark: FluffyThemes.dark(),
light: FluffyThemes.buildTheme(Brightness.light),
dark: FluffyThemes.buildTheme(Brightness.dark),
);
}