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

https://github.com/perkovec/colorise-lua

Convert HEX, RGBA. RGB
https://github.com/perkovec/colorise-lua

hex lua luarocks rgba

Last synced: 12 months ago
JSON representation

Convert HEX, RGBA. RGB

Awesome Lists containing this project

README

          

Colorise
=======

Color converter for HEX, RGB and RGBA

```Lua
local color = require "colorise"

print(color.hex2rgb("D2527F")) -- or '#D2527F'
>> 210 82 127
print(color.hex2rgba("D2527FEE")) -- or '#D2527FEE'
>> 210 82 127 238
print(color.rgb2hex({210, 82, 127}))
>> #D2527F
print(color.rgb2hex({210, 82, 127, 238}))
>> #D2527FEE
```