diff --git a/src/schemas/space.json b/src/schemas/space.json index b9f65124e..013595898 100644 --- a/src/schemas/space.json +++ b/src/schemas/space.json @@ -475,6 +475,47 @@ }, "required": ["enabled", "bribeEnabled"], "additionalProperties": false + }, + "colors": { + "type": "object", + "properties": { + "bg_color": { + "type": "string", + "format": "color" + }, + "link_color": { + "type": "string", + "format": "color" + }, + "text_color": { + "type": "string", + "format": "color" + }, + "content_color": { + "type": "string", + "format": "color" + }, + "border_color" : { + "type": "string", + "format": "color" + }, + "heading_color" : { + "type": "string", + "format": "color" + }, + "primary_color": { + "type": "string", + "format": "color" + }, + "header_color": { + "type": "string", + "format": "color" + }, + "theme": { + "type": "string", + "enum": ["light", "dark"] + } + } } }, "required": ["name", "network", "strategies"],