Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 943 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 943 Bytes

The simplest color tone function for JS

NPM version CI install size

Install

npm i make-tints

See it in action →

Usage

import {tint} from 'make-tints'

const tintBy = tint('#000')
tintBy(-20) //=> 000000 darker tints can be achieved by using negative percentages
tintBy(20) //=> 333333
tintBy(40) //=> 666666
tintBy(60) //=> 999999

License

MIT License © 2022 Reaper