More tint color changes

This commit is contained in:
Arnfried Griesert
2023-03-06 22:11:23 +01:00
parent 9705d935c9
commit d5d299a357
45 changed files with 187 additions and 43 deletions
@@ -36,7 +36,7 @@ struct FormPickerItem: View {
Spacer()
if selected {
Image("checkmark")
.foregroundColor(theme.colors.accent)
.foregroundColor(Color(ThemeService.shared().theme.tintColor))
}
}
.padding(.trailing)
@@ -67,7 +67,7 @@ struct RoomNotificationSettings: View {
.onAppear {
viewModel.process(viewAction: .load)
}
.accentColor(theme.colors.accent)
.accentColor(Color(ThemeService.shared().theme.tintColor))
.track(screen: .roomNotifications)
}
}