Skip to content

Commit 4a35989

Browse files
committed
오타 수정
1 parent 43d77f8 commit 4a35989

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Todo/Asset/Color.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import SwiftUI
99

1010
extension Color {
1111
struct Todo {
12-
static let show: Color = Color(hex: "#FFFFFF")
12+
static let snow: Color = Color(hex: "#FFFFFF")
1313
static let black: Color = Color(hex: "#000000")
1414
static let grayGuGu: Color = Color(hex: "#999999")
1515
static let grayAbby: Color = Color(hex: "#ABABAB")

Todo/View/Favorite/FavoriteView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct FavoriteView: View {
7878
Text(isShowDoneTaskButtonTitle)
7979
.padding(EdgeInsets(top: 8, leading: 10, bottom: 8, trailing: 10))
8080
.font(.Todo.m13)
81-
.foregroundStyle(Color.Todo.show)
81+
.foregroundStyle(Color.Todo.snow)
8282
.background(
8383
RoundedRectangle(cornerRadius: 3)
8484
.fill(isShowDoneTask ? Color.Todo.black : Color.Todo.red)

Todo/View/Main/MainView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct MainView: View {
7878
Text(isShowDoneTaskButtonTitle)
7979
.padding(EdgeInsets(top: 8, leading: 10, bottom: 8, trailing: 10))
8080
.font(.Todo.m13)
81-
.foregroundStyle(Color.Todo.show)
81+
.foregroundStyle(Color.Todo.snow)
8282
.background(
8383
RoundedRectangle(cornerRadius: 3)
8484
.fill(isShowDoneTask ? Color.Todo.black : Color.Todo.red)

Todo/View/Toast.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ struct Toast: View {
1616
Text(message)
1717
.frame(height: 48, alignment: .center)
1818
.frame(maxWidth: .infinity)
19-
.foregroundStyle(Color.Todo.show)
19+
.foregroundStyle(Color.Todo.snow)
2020
.font(.Todo.r16)
2121
.background(
2222
RoundedRectangle(cornerRadius: 8)

0 commit comments

Comments
 (0)