Upload Colors
Upload an entire color library at once.
Select a properly formatted .json file from the file browser and click Open.
A properly formatted .json file should follow this structure:
{
“name”: “Your Library Name“,
“type”: “ink or textile“,
“isSystem”: false,
“colors”: [
{
“colorSpace”: “RGB”,
“name”: “Red”,
“value”: {
“red”: 255,
“green”: 0,
“blue”: 0
}
},
{
“colorSpace”: “RGB”,
“name”: “Green”,
“value”: {
“red”: 0,
“green”: 255,
“blue”: 0
}
},
{
“colorSpace”: “RGB”,
“name”: “Blue”,
“value”: {
“red”: 0,
“green”: 0,
“blue”: 255
}
}
]
}