Skip to content

Commit

Permalink
Make system colors the default on android 12+
Browse files Browse the repository at this point in the history
  • Loading branch information
veloce committed Feb 25, 2024
1 parent 0f0613c commit bf0ad4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/model/settings/board_preferences.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class BoardPrefs with _$BoardPrefs {

static const defaults = BoardPrefs(
pieceSet: PieceSet.staunty,
boardTheme: BoardTheme.brown,
boardTheme: BoardTheme.system,
hapticFeedback: true,
showLegalMoves: true,
boardHighlights: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/model/settings/general_preferences.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class GeneralPrefsState with _$GeneralPrefsState {
themeMode: ThemeMode.system,
isSoundEnabled: true,
soundTheme: SoundTheme.standard,
systemColors: false,
systemColors: true,
);

factory GeneralPrefsState.fromJson(Map<String, dynamic> json) {
Expand Down

0 comments on commit bf0ad4c

Please sign in to comment.