A tool for creating color palettes that can be exported to various formats, such as CSS, SCSS and Tailwind config.
The method of making the palette is based on the key colors, black and white. The rest of the color sets are generated by a base color, and then shades towards the defined black and white colors. This is done using the css color-mix() function.
The project is built using Svelte in TypeScript.
Prerequisites
- Node.js == 22
Install dependencies, run npm install in project root.
To build a dist of the project, run npm run build in the project root. That will output a built version into dist/, which can then be served by a webserver.
To start a local dev server, run npm run dev in the project root. This will launch a Vite dev server.