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
- Host: GitHub
- URL: https://github.com/bitbloxhub/colorjson
- Owner: bitbloxhub
- License: isc
- Created: 2021-11-15T21:53:19.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-15T21:53:21.000Z (over 3 years ago)
- Last Synced: 2025-02-15T05:25:39.827Z (4 months ago)
- Topics: color-palette, color-scheme, json-format
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
}
```