Skip to content

Commit a4da518

Browse files
committed
fix: colors in AlertView.swift
1 parent c605f7e commit a4da518

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Core/Core/View/Base/AlertView.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -268,19 +268,19 @@ public struct AlertView: View {
268268
}, label: {
269269
ZStack {
270270
Text(CoreLocalization.Alert.logout)
271-
.foregroundColor(Theme.Colors.primaryButtonTextColor)
271+
.foregroundColor(.black)
272272
.font(Theme.Fonts.labelLarge)
273273
.frame(maxWidth: .infinity)
274274
.padding(.horizontal, 16)
275275
Image(systemName: "rectangle.portrait.and.arrow.right")
276-
.foregroundColor(Theme.Colors.white)
276+
.foregroundColor(.black)
277277
.frame(minWidth: 190, minHeight: 48, alignment: .trailing)
278278
}
279279
.frame(maxWidth: 215, minHeight: 48)
280280
})
281281
.background(
282282
Theme.Shapes.buttonShape
283-
.fill(Theme.Colors.accentColor)
283+
.fill(Theme.Colors.warning)
284284
)
285285
.overlay(
286286
RoundedRectangle(cornerRadius: 8)

0 commit comments

Comments
 (0)