From 56f26c0c3d18649791e0d4323c314c12eae02db1 Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Sat, 5 Dec 2020 23:01:10 +0800 Subject: [PATCH] AddFeedbinAccountView.swift foreground colour --- .../Shared/Add/Add Account Sheets/AddFeedbinAccountView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Multiplatform/Shared/Add/Add Account Sheets/AddFeedbinAccountView.swift b/Multiplatform/Shared/Add/Add Account Sheets/AddFeedbinAccountView.swift index 0d61cd738..c32f91908 100644 --- a/Multiplatform/Shared/Add/Add Account Sheets/AddFeedbinAccountView.swift +++ b/Multiplatform/Shared/Add/Add Account Sheets/AddFeedbinAccountView.swift @@ -159,8 +159,8 @@ struct AddFeedbinAccountView: View { HStack { Spacer() VStack(spacing: 8) { - Text("Sign in to your Feedbin account and sync your subscriptions across your devices. Your username and password and password will be encrypted and stored in Keychain.") - Text("Don't have a Feedbin account?") + Text("Sign in to your Feedbin account and sync your subscriptions across your devices. Your username and password and password will be encrypted and stored in Keychain.").foregroundColor(.secondary) + Text("Don't have a Feedbin account?").foregroundColor(.secondary) Button(action: {}, label: { Text("Sign Up Here").foregroundColor(.blue).multilineTextAlignment(.center) }).disabled(model.username.isEmpty || model.password.isEmpty)