diff --git a/lib/src/app/musicpod.dart b/lib/src/app/musicpod.dart index 13e53c24a..5f4fac30f 100644 --- a/lib/src/app/musicpod.dart +++ b/lib/src/app/musicpod.dart @@ -23,8 +23,9 @@ class MusicPod extends StatelessWidget { return GtkApplication( child: MusicPodApp( lightTheme: yaruThemeData.theme, - darkTheme: yaruThemeData.darkTheme - ?.copyWith(scaffoldBackgroundColor: const Color(0xFF1e1e1e)), + darkTheme: yaruThemeData.darkTheme?.copyWith( + scaffoldBackgroundColor: const Color(0xFF1e1e1e), + ), ), ); }, @@ -49,7 +50,7 @@ class MusicPodApp extends StatelessWidget { @override Widget build(BuildContext context) { - const dividerColor = Color.fromARGB(28, 255, 255, 255); + const dividerColor = Color.fromARGB(19, 255, 255, 255); return MaterialApp( debugShowCheckedModeBanner: false, theme: lightTheme, diff --git a/lib/src/common/audio_card.dart b/lib/src/common/audio_card.dart index 6ab909de3..e15a79a94 100644 --- a/lib/src/common/audio_card.dart +++ b/lib/src/common/audio_card.dart @@ -59,7 +59,7 @@ class _AudioCardState extends State { Shimmer.fromColors( baseColor: light ? kCardColorLight : kCardColorDark, highlightColor: light - ? kCardColorLight.scale(lightness: -0.03) + ? kCardColorLight.scale(lightness: -0.01) : kCardColorDark.scale(lightness: 0.01), child: Container( color: light ? kCardColorLight : kCardColorDark, @@ -143,8 +143,10 @@ class Banner extends StatelessWidget { border: elevation == 0 ? null : Border.all( - width: light ? 0.8 : 0.5, - color: theme.colorScheme.onSurface.withOpacity(0.01), + width: 1, + color: light + ? theme.colorScheme.onSurface.withOpacity(0.05) + : Colors.white.withOpacity(0.005), ), ), width: double.infinity, diff --git a/lib/src/common/audio_card_bottom.dart b/lib/src/common/audio_card_bottom.dart index 0b066d238..d751c3a69 100644 --- a/lib/src/common/audio_card_bottom.dart +++ b/lib/src/common/audio_card_bottom.dart @@ -41,8 +41,8 @@ class AudioCardBottom extends StatelessWidget { child: Shimmer.fromColors( baseColor: light ? kCardColorLight : kCardColorDark, highlightColor: light - ? kCardColorLight.scale(lightness: 0.1) - : kCardColorDark.scale(lightness: 0.1), + ? kCardColorLight.scale(lightness: -0.1) + : kCardColorDark.scale(lightness: 0.05), child: Container( color: light ? kCardColorLight : kCardColorDark, ),