From 43c02f2987ba9b93dbce06d82542fe8eaef0fd97 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 30 Aug 2022 23:04:06 +0800 Subject: [PATCH] Improve snack bar colours in light mode --- apple/OmnivoreKit/Sources/Views/SnackBar.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/OmnivoreKit/Sources/Views/SnackBar.swift b/apple/OmnivoreKit/Sources/Views/SnackBar.swift index d2fee56ed..a12d9ef5d 100644 --- a/apple/OmnivoreKit/Sources/Views/SnackBar.swift +++ b/apple/OmnivoreKit/Sources/Views/SnackBar.swift @@ -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()