0.1.1 • Published 6 years ago

lightordark v0.1.1

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

Lightordark

install

npm install lightordark

在文件中引入:

var lightordark = require('lightordark');

Usage

getLuminance

获取亮度

lightordark.getLuminance('#cdf'); // 0.7177027204456372

getContrast

获取对比度

lightordark.getContrast('#666', '#fff'); // 5.74183648145415
lightordark.getContrast(lightordark.mixColor('rgba(0,0,0,.6)', '#fff'), '#fff'); // 5.74183648145415

mixColor

Alpha 混合 支持前景色半透明

lightordark.mixColor('rgba(0,0,0,.6)', '#fff'); // #666666
lightordark.mixColor('#666', '#fff'); // #666666

contrast

判断是浅色还是暗色 支持调节最小对比度

lightordark.contrast('#888'); // dark
lightordark.contrast('#888', 7); // light
0.1.1

6 years ago

0.1.0

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago