the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

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

Force dark theme on initial load

+3 -2
+3 -2
apps/web/index.html
··· 8 8 <script> 9 9 // Prevent flash of unstyled content (FOUC) for dark mode 10 10 (function () { 11 - const theme = 11 + /* const theme = 12 12 localStorage.getItem("theme") || 13 13 (window.matchMedia("(prefers-color-scheme: dark)").matches 14 14 ? "dark" 15 - : "light"); 15 + : "light");*/ 16 + const theme = "dark"; 16 17 document.documentElement.classList.add(theme); 17 18 document.documentElement.setAttribute("data-theme", theme); 18 19 })();