Skip to content

Commit aae4436

Browse files
committed
feat: add skin colors to space settings
1 parent d6660c9 commit aae4436

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

src/schemas/space.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,48 @@
475475
},
476476
"required": ["enabled", "bribeEnabled"],
477477
"additionalProperties": false
478+
},
479+
"colors": {
480+
"type": "object",
481+
"properties": {
482+
"bg_color": {
483+
"type": "string",
484+
"format": "color"
485+
},
486+
"link_color": {
487+
"type": "string",
488+
"format": "color"
489+
},
490+
"text_color": {
491+
"type": "string",
492+
"format": "color"
493+
},
494+
"content_color": {
495+
"type": "string",
496+
"format": "color"
497+
},
498+
"border_color" : {
499+
"type": "string",
500+
"format": "color"
501+
},
502+
"heading_color" : {
503+
"type": "string",
504+
"format": "color"
505+
},
506+
"primary_color": {
507+
"type": "string",
508+
"format": "color"
509+
},
510+
"header_color": {
511+
"type": "string",
512+
"format": "color"
513+
},
514+
"theme": {
515+
"type": "string",
516+
"enum": ["light", "dark"]
517+
}
518+
},
519+
"additionalProperties": false
478520
}
479521
},
480522
"required": ["name", "network", "strategies"],

0 commit comments

Comments
 (0)