You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I stumbled across this library while working on a project of mine. I'm working to extract daisyui colors, which are in oklch format and use them in my canvas system. I'm struggling getting the conversion to work and would love ideas on how to do this better. This library looks like it should be the right answer to this kind of situation
functionoklchToHex(oklchStr: string): string{const[l,c,h]=oklchStr.split(",").map((val)=>val.replace("%","")).map(Number);constcolor=oklch({mode: "oklch",l: l/100, c, h });returnformatHex(color);}
The text was updated successfully, but these errors were encountered:
Hello, I stumbled across this library while working on a project of mine. I'm working to extract daisyui colors, which are in oklch format and use them in my canvas system. I'm struggling getting the conversion to work and would love ideas on how to do this better. This library looks like it should be the right answer to this kind of situation
The text was updated successfully, but these errors were encountered: