Skip to content

Commit

Permalink
dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
Benimautner committed May 22, 2024
1 parent 3fbf382 commit fe5810c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions lib/theme/theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,12 @@ ThemeData _buildVikunjaTheme(ThemeData base, {bool isDark = false}) {
.withLightness(max(_hslColor.lightness - 0.03, 0))
.toColor();
}(),
), colorScheme: base.colorScheme.copyWith(
primary: vPrimaryDark,
secondary: vPrimary,
).copyWith(error: vRed),
),
colorScheme: base.colorScheme
.copyWith(
primary: vPrimaryDark,
secondary: vPrimary,
)
.copyWith(error: vRed),
);
}

0 comments on commit fe5810c

Please sign in to comment.