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 atb-58-admin-theme-list-page 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}