diff --git a/clients/ios/Views/InputBarView.swift b/clients/ios/Views/InputBarView.swift index 33fde65bc44..122cdc95b3e 100644 --- a/clients/ios/Views/InputBarView.swift +++ b/clients/ios/Views/InputBarView.swift @@ -187,7 +187,7 @@ struct InputBarView: View { VButton( label: "Stop generation", iconOnly: VIcon.square.rawValue, - style: .contrast, + style: .primary, action: onStop ) } else { diff --git a/clients/macos/vellum-assistant/Features/Chat/ComposerView.swift b/clients/macos/vellum-assistant/Features/Chat/ComposerView.swift index 050d0af43f8..5a11e059d6a 100644 --- a/clients/macos/vellum-assistant/Features/Chat/ComposerView.swift +++ b/clients/macos/vellum-assistant/Features/Chat/ComposerView.swift @@ -427,7 +427,7 @@ struct ComposerView: View { VButton( label: "Stop generation", iconOnly: VIcon.square.rawValue, - style: .contrast, + style: .primary, iconSize: composerActionButtonSize, action: onStop ) @@ -612,7 +612,7 @@ VStreamingWaveform( VButton( label: manager.state == .listening ? "Mute" : "Unmute", iconOnly: manager.state == .listening ? VIcon.mic.rawValue : VIcon.micOff.rawValue, - style: .contrast, + style: .primary, iconSize: composerActionButtonSize, action: { manager.toggleListening() } ) diff --git a/clients/shared/DesignSystem/Gallery/Sections/ButtonsGallerySection.swift b/clients/shared/DesignSystem/Gallery/Sections/ButtonsGallerySection.swift index 0b286805b26..bdc916e0773 100644 --- a/clients/shared/DesignSystem/Gallery/Sections/ButtonsGallerySection.swift +++ b/clients/shared/DesignSystem/Gallery/Sections/ButtonsGallerySection.swift @@ -30,7 +30,6 @@ struct ButtonsGallerySection: View { (label: "Danger", tag: VButton.Style.danger), (label: "Danger Outline", tag: VButton.Style.dangerOutline), (label: "Ghost", tag: VButton.Style.ghost), - (label: "Contrast", tag: VButton.Style.contrast), ], selection: $selectedStyle ) @@ -76,7 +75,7 @@ struct ButtonsGallerySection: View { VCard { HStack(spacing: VSpacing.xl) { - ForEach([VButton.Style.primary, .outlined, .danger, .dangerOutline, .ghost, .contrast], id: \.self) { style in + ForEach([VButton.Style.primary, .outlined, .danger, .dangerOutline, .ghost], id: \.self) { style in VStack(spacing: VSpacing.md) { VButton(label: styleName(style), style: style) {} VButton(label: "Disabled", style: style, isDisabled: true) {} @@ -155,10 +154,6 @@ struct ButtonsGallerySection: View { Text("Danger").font(VFont.labelDefault).foregroundStyle(VColor.contentTertiary) VButton(label: "Delete", iconOnly: VIcon.trash.rawValue, style: .danger) {} } - VStack(alignment: .leading, spacing: VSpacing.md) { - Text("Contrast").font(VFont.labelDefault).foregroundStyle(VColor.contentTertiary) - VButton(label: "Stop", iconOnly: VIcon.square.rawValue, style: .contrast) {} - } } }