1
0
mirror of https://github.com/go-vikunja/app synced 2025-05-11 20:13:35 +00:00

dart format

This commit is contained in:
Benimautner 2024-05-23 00:43:57 +02:00
parent 3fbf382710
commit fe5810cc13

View File

@ -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),
);
}