Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to convert oklch to hex #245

Closed
bfg-coding opened this issue Oct 25, 2024 · 0 comments
Closed

How to convert oklch to hex #245

bfg-coding opened this issue Oct 25, 2024 · 0 comments

Comments

@bfg-coding
Copy link

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

function oklchToHex(oklchStr: string): string {
	const [l, c, h] = oklchStr
		.split(",")
		.map((val) => val.replace("%", ""))
		.map(Number);
	const color = oklch({ mode: "oklch", l: l / 100, c, h });

	return formatHex(color);
}
@Evercoder Evercoder locked and limited conversation to collaborators Oct 25, 2024
@danburzo danburzo converted this issue into discussion #246 Oct 25, 2024

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant