So, I am currently using tailwindcss for a website I am building and I wanted to make a small circle with a custom color. Now I used this method
<span className={`h-3 w-3 rounded-full bg-[#${role.color.toString(16)}]`} />
Basically , role.color.toString(16) returns a hex code. I have checked it and yes it does send a valid hex code. Now when I looked at the website, it doesn't add color. Does anybody know the solution to this problem?