From d94476a7df733ad3fa394ddc9e7715e897b22e5e Mon Sep 17 00:00:00 2001 From: Csongor Czezar Date: Wed, 31 Dec 2025 16:56:07 -0800 Subject: [PATCH] feat: added secondary and inverted styles --- src/components/ui/toggle-group/toggleGroup.variants.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ui/toggle-group/toggleGroup.variants.ts b/src/components/ui/toggle-group/toggleGroup.variants.ts index 40e6aa0af..4147caee8 100644 --- a/src/components/ui/toggle-group/toggleGroup.variants.ts +++ b/src/components/ui/toggle-group/toggleGroup.variants.ts @@ -25,14 +25,14 @@ export const toggleGroupItemVariants = cva({ 'data-[state=on]:bg-primary-background data-[state=on]:text-white' ], secondary: [ - 'data-[state=off]:bg-secondary-background-selected data-[state=off]:text-base-foreground', + 'data-[state=off]:bg-transparent data-[state=off]:text-muted-foreground', 'data-[state=off]:hover:bg-component-node-widget-background-hovered data-[state=off]:hover:text-white', 'data-[state=on]:bg-component-node-widget-background-selected data-[state=on]:text-base-foreground' ], inverted: [ - 'data-[state=off]:bg-base-background data-[state=off]:text-muted-foreground', - 'data-[state=off]:hover:bg-secondary-background-hover data-[state=off]:hover:text-white', - 'data-[state=on]:bg-base-background data-[state=on]:text-base-foreground' + 'data-[state=off]:bg-transparent data-[state=off]:text-muted-foreground', + 'data-[state=off]:hover:bg-component-node-widget-background-hovered data-[state=off]:hover:text-white', + 'data-[state=on]:bg-white data-[state=on]:text-base-background' ] } },