diff --git a/Bitkit/Components/ToastView.swift b/Bitkit/Components/ToastView.swift index bd6254963..b795a7624 100644 --- a/Bitkit/Components/ToastView.swift +++ b/Bitkit/Components/ToastView.swift @@ -92,7 +92,7 @@ struct ToastView: View { case .info: return .blueAccent case .lightning: return .purpleAccent case .warning: return .brandAccent - case .error: return .redAccent + case .error: return .brandAccent } } } diff --git a/changelog.d/next/594.changed.md b/changelog.d/next/594.changed.md new file mode 100644 index 000000000..28485f588 --- /dev/null +++ b/changelog.d/next/594.changed.md @@ -0,0 +1 @@ +Error toasts now use Bitkit's brand color instead of a separate red accent, matching the design across all toast types.