Make Gruvbox Dark the default theme

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
rzuasti
2026-06-04 09:38:23 -04:00
co-authored by Claude Opus 4.8
parent 2817fc7cab
commit c7d948abac
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -22,6 +22,7 @@
## Frontend
- [x] Make gruvbox the default theme
- [x] Can we add front-end tests?
- [x] Break down oott_api.dart in modules
+2 -2
View File
@@ -61,8 +61,8 @@ final _themes = {
class AppState extends ChangeNotifier {
AppState() {
final saved = PrefUtil.getValue('theme', 'catppuccin_mocha') as String;
_themeKey = _themes.containsKey(saved) ? saved : 'catppuccin_mocha';
final saved = PrefUtil.getValue('theme', 'gruvbox_dark') as String;
_themeKey = _themes.containsKey(saved) ? saved : 'gruvbox_dark';
}
late String _themeKey;