svg-color-linter
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published


logo

SVG Color Linter

Linting tool to check if SVG files only use colors of a given color palette.

CLI Command

The tool can be executed with this command:

bunx svg-color-linter --config color-config.yml file1.svg file2.svg

It will fetch all the colors of a YAML file which must have the following structure:

colors:
  - "#FFEBEE"
  - "#FFCDD2"
  - "#EF9A9A"
  - "#E57373"
  - "#EF5350"
  - "#F44336"

It also supports glob file patterns to check multiple files matching the pattern like this:

bunx svg-color-linter --config color-config.yml ./images/**/*.svg ./another-dir/*.svg test.svg

Excluding Files

You can exclude specific files or patterns from the analysis by adding an exclude key in the color-config.yml file. The exclude key should contain a list of file patterns to be ignored. For example:

colors:
  - "#FFEBEE"
  - "#FFCDD2"
  - "#EF9A9A"
  - "#E57373"
  - "#EF5350"
  - "#F44336"

exclude:
  - "icons/icon1.svg"
  - "icons/icon2.svg"
  - ...

Programmatic use

The tool can be imported as module into existing JavaScript or TypeScript code. Therefor it is necessary to install it via package manager:

npm install svg-color-linter

The module can be imported like this:

import { isColorInPalette, getSuggestions } from 'svg-color-linter';

isColorInPalette('#FFFFFF', ['#EEEEEE', '#121212']);
// false

getSuggestions('#C0CA35', ['#EEEEEE', '#121212']);
// [
//   { hex: '#C0CA33', distance: 0.160467661071053 },
//   { hex: '#CDDC39', distance: 4.307076277707079 },
//   { hex: '#D4E157', distance: 5.606714639567858 },
//   { hex: '#AFB42B', distance: 5.713845679863578 },
//   { hex: '#DCE775', distance: 8.065940911169271 }
// ]

Readme

Keywords

Package Sidebar

Install

npm i svg-color-linter

Weekly Downloads

66

Version

3.0.0

License

MIT

Unpacked Size

23.8 kB

Total Files

48

Last publish

Collaborators

  • pkief