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

https://github.com/bitbloxhub/colorjson

color palletes, in json
https://github.com/bitbloxhub/colorjson

color-palette color-scheme json-format

Last synced: 2 months ago
JSON representation

color palletes, in json

Awesome Lists containing this project

README

        

# ColorJSON: color palletes, in json

colors are RGB 0-255

`colors` is a list of colors

`names` is a mapping of names to color indexes

example file:

```json
{
"colors": [
[255, 255, 255],
[0, 0, 0]
],
"names": {
"black": 0,
"white": 1
}
}
```