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
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 6298fa176e62739bd15b039ffbee8dca5949ea94 5 lines 170 B view raw
1export function tokensToCss(tokens: Record<string, string>): string { 2 return Object.entries(tokens) 3 .map(([key, value]) => `--${key}: ${value}`) 4 .join("; "); 5}