1.14.0 • Published 7 months ago

palette-aldente v1.14.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Palette Aldente 🍝

github sponsor count npm version

Introducing the ultimate color palette companion: Palette Aldente alˈdɛnte! Curate your favorite color schemes and share them effortlessly.

  • Makes sure your yml or json is actually valid
  • Exports it to JSON
  • Provides a handy JS wrapper that works everyhere. (Node, Browser, Codepen etc..)
  • Exports a static SVG of all the palettes
  • Exports PNG images of each palette.
  • Provides a HTML templete with all the palletes. (Ideal for github pages)
  • Ability to name your colors and palettes automatically
  • Coverts almost any color format to any other.
  • Possibility to additionally convert to different color formats: lab, lch, oklab, hsl, etc...
  • Exports Palettes for Photoshop, Illustrator, Gimp, Sketch whatever you can dream of.

Open-sourcing your color palettes allows others to use and improve them, helps build your design expertise, and fosters collaboration within the community. This tool was built to make the process as easy and streamlined as possible.

Palette Aldente Flow Diagram

Quickstart

npx palette-aldente ./src/palettes.yml --formats name,rgb,hsl --namelist bestOf --palettefiles ase

Use to publish your palettes

  1. npm install palette-aldente --save-dev
  2. Create a json or yml file containing your colors.
  3. Edit your package.json to build your actual palette ex:
//...
"scripts": {
    "build": "palette-aldente ./yourcolors.json",
}
  1. npm run build to build the project.
  2. Find your build in the dist/ folder.
  3. Optionally use this workflow to automatically publish all changes to github pages.

CLI Manual

$ npx palette-aldente ./mypalettes.yml 
$ palette-aldente --help

Usage: palette-aldente [options] <file>
Usage: palette-aldente [options] <file>

CLI to manage color palettes

Arguments:
  file                          path to input yaml or json file

Options:
  -V, --version                 output the version number
  -O, --out <directory>         path to output directory (default: "./dist")
  -A, --autoname <boolean>      if true, the palette name will be generated from the colors contained (default: true)
  --no-autoname                 unnamed palettes will be have "Untitled <n>" as name
  -F, --formats <string>        comma separated list of formats to convert to
  -D, --defaultformat <string>  default color format outputted in your target file (default: "hex")
  -N, --namelist <string>       specify color name list to use to name colors on export (default: "bestOf")
  -S, --svg <boolean>           export an overview SVG of the palettes (default: true)
  --no-svg                      do not export an overview SVG of the palettes
  -J, --js <boolean>            export a JS wrapper file with the palettes an a minimal API (default: true)
  --no-js                       do not export an JS file
  -H, --html <boolean>          export a HTML file that showcases the palettes (default: true)
  --no-html                     do not export an HTML file
  -I, --img <boolen>            export PNG images of the palettes (default: true)
  --no-img                      do not export PNG images of the palettes
  -P, --palettefiles <string>   comma separated list of palette files to export (default: false)
  -h, --help                    display help for command

A collection of color palettes I want to reuse. Feel free to clone this and use it to create your own palette library

Build

  1. Edit your palettes in palettes.yml
  2. Install all things that are needed to build your palette. (npm ci)
  3. Run npm run build (Check the console output for eventual error)
  4. Enjoy your files in the dist/ folder

Use

To use this in your JS code import or include dist/palettes.js. It exposes the following props:

  • palettes an array of objects containing name (string with the palette name) and colors (an array of hex values as strings)
  • get(paletteName) will return an object of the palete with a given name
  • random() returns a random palette
  • addPalettes(object) merges in new palettes

Publish

Github Pages

By default, palette-aldente exports an HTML file that you can publish on github pages. To do so automaically whenevery you edit your palette file, you can copy (this workflow](https://github.com/meodai/palette-aldente/blob/main/.github/workflows/node.js.yml) to your own .github/workflows/ directory or simply use the "actions" tab on your repository.

After the workflow successfully passed, make sure to turn on "Pages" in your github repository (settings > pages).

NPM

If you want to reuse your palettes in ofther prjects you might want to use NPM to publush them. Just add the following to your package.json

  "main": "dist/palettes.js",
  "type": "module",
  "exports": {
    "import": "./dist/palettes.esm.js",
    "require": "./dist/palettes.js"
  },

after that you can import your palettes easily:

import { colorPalettes } from "omorovdcolors"; 
// or
import { colorPalettes } from "https://cdn.skypack.dev/somorovdcolors@1.0.1";

Used by

York Town Hall Colors

Example PNG Export

List of Palettes as PNG

Example SVG Export

List of Palettes as SVG

1.14.0

7 months ago

1.13.0

1 year ago

1.12.1

1 year ago

1.12.0

1 year ago

1.11.1

1 year ago

1.11.0

1 year ago

1.10.0

1 year ago

1.9.0

1 year ago

1.8.3

1 year ago

1.8.2

1 year ago

1.8.1

1 year ago

1.8.0

1 year ago

1.7.2

1 year ago

1.7.0

1 year ago

1.6.4

1 year ago

1.6.2

1 year ago

1.6.0

1 year ago

1.5.0

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.0

1 year ago

1.2.0

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago