WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at main 36 lines 653 B view raw
1meta { 2 name: List Available Themes 3 type: http 4 seq: 1 5} 6 7get { 8 url: {{appview_url}}/api/themes 9} 10 11assert { 12 res.status: eq 200 13 res.body.themes: isDefined 14} 15 16docs { 17 Returns themes filtered to those in the forum's themePolicy.availableThemes. 18 Returns an empty array if no theme policy has been published. 19 20 Returns: 21 { 22 "themes": [ 23 { 24 "id": "1", 25 "uri": "at://did:plc:.../space.atbb.forum.theme/...", 26 "name": "Neobrutal Light", 27 "colorScheme": "light", 28 "indexedAt": "2026-03-01T00:00:00.000Z" 29 } 30 ] 31 } 32 33 Error codes: 34 - 500: Server error 35 - 503: Database temporarily unavailable 36}