Initial commit

This commit is contained in:
2017-12-22 16:13:54 +01:00
commit 59b24a92a1
2019 changed files with 97208 additions and 0 deletions

28
src/colors.json Normal file
View File

@@ -0,0 +1,28 @@
{
"$schema": "http://json-schema.org/draft-06/schema#",
"description": "DLite color definition",
"type": "array",
"items": {
"type": "object",
"description": "Color definition",
"properties": {
"name": {
"type": "string",
"description": "Color name used as identifier"
},
"red": {
"type": "number",
"description": "Color value 0..255"
},
"green": {
"type": "number",
"description": "Color value 0..255"
},
"blue": {
"type": "number",
"description": "Color value 0..255"
}
}
}
}