0.3.1 • Published 5 months ago

ctpvert v0.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months 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.3.1

5 months ago

0.3.0

5 months ago

0.2.0

5 months ago

0.1.1

6 months ago

0.1.0

6 months ago