Improve snack bar colours in light mode

This commit is contained in:
Jackson Harper
2022-08-30 23:04:06 +08:00
parent e46d7c7c9e
commit 43c02f2987

View File

@ -27,7 +27,7 @@ public struct Snackbar: View {
HStack {
self.text
.font(.appCallout)
.foregroundColor(self.colorScheme == .light ? .appGrayText : .appTextDefault)
.foregroundColor(self.colorScheme == .light ? .white : .appTextDefault)
Spacer()
}
.padding()