diff --git a/lib/widget/settings.dart b/lib/widget/settings.dart index 2a6e8ad7..22e99f58 100644 --- a/lib/widget/settings.dart +++ b/lib/widget/settings.dart @@ -233,7 +233,10 @@ class _SettingsState extends State { Row( mainAxisSize: MainAxisSize.max, children: [ - Icon(Icons.brightness_low), + Icon( + Icons.brightness_low, + color: AppTheme.getSecondaryTextColor(context), + ), Expanded( child: StatefulSlider( initialValue: brightness, @@ -249,7 +252,10 @@ class _SettingsState extends State { }, ), ), - Icon(Icons.brightness_high), + Icon( + Icons.brightness_high, + color: AppTheme.getSecondaryTextColor(context), + ), ], ), ],