마이페이지 - 글자색, 배경색 변경

This commit is contained in:
Yu Sung
2024-01-03 13:05:02 +09:00
parent 86491cce95
commit 8857dd3e98
6 changed files with 8 additions and 12 deletions

View File

@@ -39,14 +39,14 @@ struct CanCardView: View {
Text("충전")
.font(.custom(Font.bold.rawValue, size: 12))
.foregroundColor(Color(hex: "fdca2f"))
.foregroundColor(Color(hex: "b38fff"))
}
.padding(.horizontal, 11.3)
.padding(.vertical, 7)
.overlay(
RoundedRectangle(cornerRadius: CGFloat(16.7))
.stroke(lineWidth: 1)
.foregroundColor(Color(hex: "fdca2f"))
.foregroundColor(Color(hex: "b38fff"))
)
.cornerRadius(16.7)
}