메인페이지, 팝업 다이얼로그 - 기본색상 9970ff -> 3bb9f1로 변경
This commit is contained in:
@@ -20,18 +20,18 @@ struct ContentMainNewContentThemeView: View {
|
||||
let theme = themes[index]
|
||||
Text(theme)
|
||||
.font(.custom(Font.medium.rawValue, size: 14.7))
|
||||
.foregroundColor(Color(hex: selectedTheme == theme ? "9970ff" : "777777"))
|
||||
.foregroundColor(Color(hex: selectedTheme == theme ? "3bb9f1" : "777777"))
|
||||
.padding(.horizontal, 13.3)
|
||||
.padding(.vertical, 9.3)
|
||||
.border(
|
||||
Color(hex: selectedTheme == theme ? "9970ff" : "eeeeee"),
|
||||
Color(hex: selectedTheme == theme ? "3bb9f1" : "eeeeee"),
|
||||
width: 0.5
|
||||
)
|
||||
.cornerRadius(16.7)
|
||||
.overlay(
|
||||
RoundedRectangle(cornerRadius: CGFloat(16.7))
|
||||
.stroke(lineWidth: 0.5)
|
||||
.foregroundColor(Color(hex: selectedTheme == theme ? "9970ff" : "eeeeee"))
|
||||
.foregroundColor(Color(hex: selectedTheme == theme ? "3bb9f1" : "eeeeee"))
|
||||
)
|
||||
.onTapGesture {
|
||||
if selectedTheme != theme {
|
||||
|
Reference in New Issue
Block a user