1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-19 11:30:44 +02:00

Change colors

This commit is contained in:
Martin.JM 2024-02-21 21:31:10 +01:00
parent a4eaf66386
commit 5968a04cf7

View File

@ -142,9 +142,9 @@ public class AlarmDetails extends AbstractGBActivity {
// Enabled or not can still be seen in the checkmark
// TODO: I'd like feedback on this
if (GBApplication.isDarkThemeEnabled())
cbSmartWakeup.setTextColor(getResources().getColor(R.color.primarytext_dark));
cbSmartWakeup.setTextColor(getResources().getColor(android.R.color.secondary_text_dark));
else
cbSmartWakeup.setTextColor(getResources().getColor(R.color.primarytext_light));
cbSmartWakeup.setTextColor(getResources().getColor(android.R.color.secondary_text_light));
}
if (smartAlarmIntervalSupported)
cbSmartWakeup.setText(R.string.alarm_smart_wakeup_interval);