Skip to content

Instantly share code, notes, and snippets.

@Richienb
Last active August 7, 2020 06:00
Show Gist options
  • Save Richienb/294078f0e36a6372f8d28584cc01e9e6 to your computer and use it in GitHub Desktop.
Save Richienb/294078f0e36a6372f8d28584cc01e9e6 to your computer and use it in GitHub Desktop.
Convert between HEX and Scratch CSB

Convert between HEX and Scratch CSB

Example

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

hexCsb("#90dffe")
//=> [82, 41, 33]

csbHex([82, 41, 33])
//=> 95E0FE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment