From 74f43038670bf4bac5388da7ed7ac24fcd20b4c0 Mon Sep 17 00:00:00 2001 From: dimaboga <146439158+dimaboga@users.noreply.github.com> Date: Mon, 9 Oct 2023 16:58:55 +0600 Subject: [PATCH 1/3] Create read.me --- feature/read.me | 1 + 1 file changed, 1 insertion(+) create mode 100644 feature/read.me diff --git a/feature/read.me b/feature/read.me new file mode 100644 index 0000000..e965047 --- /dev/null +++ b/feature/read.me @@ -0,0 +1 @@ +Hello From 3893171dae71e3cfb4702103a97fe1b78a3f5fe7 Mon Sep 17 00:00:00 2001 From: dimaboga Date: Mon, 9 Oct 2023 17:05:42 +0600 Subject: [PATCH 2/3] Color change text --- WordleClone/Views/GameView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordleClone/Views/GameView.swift b/WordleClone/Views/GameView.swift index 2a3f644..7aa3a7f 100644 --- a/WordleClone/Views/GameView.swift +++ b/WordleClone/Views/GameView.swift @@ -42,7 +42,7 @@ struct GameView: View { Text("WORDLE") .font(.largeTitle) .fontWeight(.heavy) - .foregroundColor(.primary) + .foregroundColor(.red) } ToolbarItem(placement: .navigationBarTrailing) { HStack { From 7373e0fd043148573fb123c003af15149601ce7c Mon Sep 17 00:00:00 2001 From: dimaboga Date: Mon, 9 Oct 2023 17:05:51 +0600 Subject: [PATCH 3/3] color change label --- WordleClone/Views/GuessView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordleClone/Views/GuessView.swift b/WordleClone/Views/GuessView.swift index 1c2fd78..c505de8 100644 --- a/WordleClone/Views/GuessView.swift +++ b/WordleClone/Views/GuessView.swift @@ -15,7 +15,7 @@ struct GuessView: View { HStack(spacing: 3) { ForEach(0...4, id: \.self) { index in Text(guess.guessLetters[index]) - .foregroundColor(.primary) + .foregroundColor(.red) .frame(minWidth: 0, maxWidth: .infinity, minHeight: 0,