nextjs shadcn toast component text color
Unanswered
bscdev#1145 posted this in #help-forum
How to chnage nextjs shadcn toast component text color.
import { Toaster } from "@/components/ui/toaster";2 Replies
@bscdev#1145 How to chnage nextjs shadcn toast component text color.
`import { Toaster } from "@/components/ui/toaster";`
you can use the
With that you can change the color of the p-tag directly and because you using the asChild prop, this will be your new title.
Iirc you can also directly change the styles and classnames of the title
asChild prop and set it to true on the title component and then you can use any child, that you want to use. For example:<p style={{color: "white"}}>Some Title</p>With that you can change the color of the p-tag directly and because you using the asChild prop, this will be your new title.
Iirc you can also directly change the styles and classnames of the title
@bscdev#1145 solved?