From 682830c032eaf8c1021891181117ea8c1b524806 Mon Sep 17 00:00:00 2001 From: CypherPoet Date: Fri, 12 Jun 2026 04:57:32 -0500 Subject: [PATCH] fix: align error toast color with brand --- Bitkit/Components/ToastView.swift | 2 +- changelog.d/next/594.changed.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog.d/next/594.changed.md 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.