An open API service indexing awesome lists of open source software.

https://github.com/danielrohers/color

Plugin for color manipulation
https://github.com/danielrohers/color

Last synced: over 1 year ago
JSON representation

Plugin for color manipulation

Awesome Lists containing this project

README

          

# Color

Plugin for color manipulation

#### color.increaseBrightness()
```js
var element = document.getElementById('element');
element.style.backgroundColor = color.increaseBrightness('#352FED', 30);
```

#### color.rgbToHex()
```js
var element = document.getElementById('element');
element.style.backgroundColor = color.rgbToHex('rgb(114, 85, 199)');
element.style.backgroundColor = color.rgbToHex([114, 85, 199]);
```