I'm trying set a custom background color with hex ie: color=#a8f07a
This isn't this working, why??
<p className={`bg-[${color}]`}>hello message</p>
This does work (but I prefer tailwinds classes)
<p style={{ background: `${color}` }} >hello message</p>