bitandblack/colorpalette

Hex values of all PANTONE, HKS and RAL colors

0.1.2 2019-12-18 08:13 UTC

This package is auto-updated.

Last update: 2024-03-29 03:52:11 UTC


README

Codacy Badge License PHP version npm version

Color Palette

Hex values of all PANTONE, HKS and RAL colors.

Installation

This package is available for Composer and also for Node.

Yarn

Add it to your project by running $ yarn add bitandblack-colorpalette.

NPM

Add it to your project by running $ npm install bitandblack-colorpalette.

Composer

Add it to your project by running $ composer require bitandblack/colorpalette.

Usage

SCSS / SASS

The preferred way to add all those colors to your project is by including one or more of the scss files from the src folder.

@import "~bitandblack-colorpalette/src/pantone/pantone-plus-solid-coated";

body {
  color: map_get($pantone-plus-solid-coated, "pantone-7547-c");
}

This will result in:

body {
    color: #121f29;
}

If you don't have the possibility to use the scss files it's also possible to use the css files from the dist folder.

JavaScript

The color values can also be used with JavaScript:

import variables from "bitandblack-colorpalette/src/pantone/pantone-plus-solid-coated.scss";

console.log(variables["pantone-7547-c"]);

This will dump #121f29.

Help

If you have any questions feel free to contact us under hello@bitandblack.com.