UButton custom variants with UI3
Hello dear kapa
I was creating custom variants in Nuxt UI2 to choose from when creating a button, I fail to see how to do it with Nuxt UI3
Ideally, I would like to create custom colors and custom variants and mix them at will
Thanks 🙂
11 Replies
Hi @Omnislash. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
In Nuxt UI 3, the theming system has been updated to use the Tailwind Variants API, which changes how you create custom variants for components like UButton.
Creating Custom Variants in Nuxt UI 3
To create custom colors and variants for UButton in Nuxt UI 3, you need to use the updated theming system. Here's how to do it:
1. Custom Colors
First, you can define custom colors in your
vite.config.ts
file:
2. Custom Variants
To create custom variants, you need to modify the button theme in your app.config.ts
:
This approach allows you to:
1. Create custom colors
2. Create custom variant types (like "rounded")
3. Define compound variants for specific combinations
The migration from Nuxt UI 2 to 3 involved significant changes to the theming system. In UI 3, the component styling uses the Tailwind Variants API, which makes previous overrides in app.config.ts
and the ui
prop work differently as explained in the migration guide.
When using your custom variants:
This approach gives you the flexibility to create and mix custom colors and variants as needed in Nuxt UI 3.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@305772639438503936> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
@kapa.ai I tried this way, looks like it doesn't work :
Let me check the knowledge base for you again. One moment! :books:
----------------------
I see the issue with your custom variant implementation in Nuxt UI 3. The problem is that you're trying to add a completely new variant type called "shape" which isn't part of the default button variants.
In Nuxt UI 3, you need to properly extend the component theme structure. Here's how to correctly implement your custom "shape" variant:
Correct Implementation
You need to modify your
app.config.ts
like this:
Alternatively, if you're using Vite directly, you would configure it in your vite.config.ts
:
The key points to make this work:
1. Make sure you're properly extending the existing button theme structure
2. Add your new variant type to the variants
object
3. Update the defaultVariants
to include your new variant type
4. Ensure your component is properly using the Tailwind Variants API
Then your button usage should work as expected:
This approach follows the Nuxt UI 3 theming system which uses the Tailwind Variants API for component styling.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@305772639438503936> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
@kapa.ai sorry code was incomplete, this is my code :
it still doesn't work
Let me check the knowledge base for you again. One moment! :books:
----------------------
I see the issue with your code. The problem is that your
defineAppConfig
object is missing a closing bracket for the ui
property. Let's fix that and make sure the structure is correct for Nuxt UI 3.
Here's the corrected version:
The key issues in your code were:
1. Missing closing bracket for the ui
object
2. Missing defaultVariants
property which is important for registering your custom variant
According to the Nuxt UI theming documentation, when adding new variants, you should also update the defaultVariants
object to include your new variant type, even if it's set to null
.
Also, make sure you're using the latest version of Nuxt UI 3, as the theming system has been completely updated from v2 to use the Tailwind Variants API.
If you're still having issues after making these changes, you might want to try the Vite configuration approach instead, as shown in some of the documentation examples.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@305772639438503936> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
@kapa.ai it still doesn't work, can I defined solid and the others existing variants ?
Let me check the knowledge base for you again. One moment! :books:
----------------------
I understand you're still having issues with custom variants in Nuxt UI 3. Let's look at how to properly define both custom variants and work with existing variants like "solid".
Based on the documentation, here's how you can define both custom variants and use existing ones like "solid" in Nuxt UI 3:
Looking at the theme documentation for components like Button, Alert, and Badge, I can see that the proper structure includes:
1. The
variants
object with different variant types
2. The compoundVariants
array for combinations of variants
3. The defaultVariants
object to set defaults
For example, the Button component has these existing variant types:
- color
(primary, secondary, etc.)
- variant
(solid, outline, soft, subtle, ghost, link)
- size
(xs, sm, md, lg, xl)
If you want to customize the existing "solid" variant, you should use the compoundVariants
array:
This approach follows the Tailwind Variants API structure used by Nuxt UI 3. Make sure your configuration matches this structure exactly, as the theming system is quite specific about how variants are defined.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@305772639438503936> Kapa.ai is still learning and improving, please let me know how I did by reacting below.