0.4.0 • Published 1 year ago

ctpvert v0.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

ctpvert

Get the closest Catppuccin color.

npx ctpvert@latest
pnpm dlx ctpvert@latest
bunx ctpvert@latest

API

import { closest } from "https://deno.land/x/ctpvert/main.ts";

const myTheme = {
	foreground: "#000000",
	background: "#FFFFFF",
	accent: "#00ff00",
};

const catppuccinLatteTheme = Object.fromEntries(
	Object.entries(myTheme).map(([property, color]) => [
		property,
		closest(color)["latte"].hex,
	])
);

console.log(catppuccinLatteTheme);
/* { foreground: "#4c4f69", background: "#eff1f5", accent: "#40a02b" } */

License

MIT

0.4.0

1 year ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago