diff --git a/client/lib/aethex-toast.ts b/client/lib/aethex-toast.ts index c519048b..9bbb0a48 100644 --- a/client/lib/aethex-toast.ts +++ b/client/lib/aethex-toast.ts @@ -105,7 +105,19 @@ export const aethexToast = { }); }, - system: (message: string) => { + system: (message: string, accentColor?: string) => { + // If accentColor is provided, use arm variant + if (accentColor) { + return toast({ + title: "🔧 AeThex OS", + description: message, + duration: 4000, + variant: "arm" as any, + accentColor: accentColor, + }); + } + + // Otherwise use default aethex variant return toast({ title: "🔧 AeThex OS", description: message,