Playground
This is a playground for extending your variants/colors. You can add new variants/colors and see how all of it looks in the UI. Additionally, you can see the code and bring it to your project.
{ variant: "glass",
color: "tertiary" }
"use client"; import { Provider } from "pigment-ui"; import { ReactNode } from "react"; export function Providers({ children }: { children: ReactNode }) { return ( // other providers <> <Provider extendVariantAndColorStyles={{ variants: { variant: "glass", color: "tertiary" }, compoundVariants: [ { "variant": "glass", "className": "border-transparent bg-linear-to-br [background-size:200%_200%;]" }, { "variant": "glass", "isHovered": true, "className": "[background-position:100%_100%;]" }, { "variant": "glass", "color": "default", "className": "from-default/10 via-default/50 to-default/10 text-default" }, { "variant": "glass", "color": "inverted", "className": "from-inverted/10 via-inverted/50 to-inverted/10 text-inverted" }, { "variant": "glass", "color": "primary", "className": "from-primary/10 via-primary/50 to-primary/10 text-primary" }, { "variant": "glass", "color": "secondary", "className": "from-secondary/10 via-secondary/50 to-secondary/10 text-secondary" }, { "variant": "glass", "color": "tertiary", "className": "from-tertiary/10 via-tertiary/50 to-tertiary/10 text-tertiary" }, { "variant": "glass", "color": "info", "className": "from-info/10 via-info/50 to-info/10 text-info" }, { "variant": "glass", "color": "success", "className": "from-success/10 via-success/50 to-success/10 text-success" }, { "variant": "glass", "color": "warning", "className": "from-warning/10 via-warning/50 to-warning/10 text-warning" }, { "variant": "glass", "color": "error", "className": "from-error/10 via-error/50 to-error/10 text-error" } ], }} > {/* other providers */} <>{children}</> </Provider> </> ); }
<Providers />
tailwind.config.js
Usage