Initial commit
This commit is contained in:
28
src/colors.json
Normal file
28
src/colors.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user