Skip to content

Commit

Permalink
feat: add skin colors to space settings
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Feb 3, 2025
1 parent d6660c9 commit a75bc35
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/schemas/space.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit a75bc35

Please sign in to comment.