Skip to content

Richienb/hex-csb

Repository files navigation

hex-csb Travis CI Build Status

Convert a HEX colour to Scratch CSB.

NPM Badge

Install

npm install hex-csb

Usage

const hexCsb = require("hex-csb");

hexCsb("FFFFFF");
//=> [0, 0, 100]

hexCsb("000000");
//=> [0, 0, 0]

hexCsb("#FFD800");
//=> [14, 100, 100]

API

hexCsb(input)

input

Type: string

The HEX code to convert.

Related

  • csb-hex - Convert a Scratch CSB colour to HEX