atmosphere explorer
0
fork

Configure Feed

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

color tweaks

+4 -4
+2 -2
src/App.tsx
··· 424 424 name="input" 425 425 autofocus 426 426 spellcheck={false} 427 - class="dark:bg-dark-100 rounded-lg border border-gray-400 px-2 py-1 focus:outline-none focus:ring-2 focus:ring-gray-300" 427 + class="dark:bg-dark-100 rounded-lg border border-gray-400 px-2 py-1 focus:outline-none focus:ring-1 focus:ring-gray-300" 428 428 /> 429 429 <button 430 430 type="submit" 431 - class="dark:bg-dark-700 dark:hover:bg-dark-800 rounded-lg border border-gray-400 bg-white px-2.5 py-1.5 text-sm font-bold hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-300" 431 + class="dark:bg-dark-700 dark:hover:bg-dark-800 rounded-lg border border-gray-400 bg-white px-2.5 py-1.5 text-sm font-bold hover:bg-gray-100 focus:outline-none focus:ring-1 focus:ring-gray-300" 432 432 > 433 433 Go 434 434 </button>
+2 -2
src/lib/json.tsx
··· 43 43 }; 44 44 45 45 const JSONNull = () => { 46 - return <pre>null</pre>; 46 + return <pre class="text-gray-600 dark:text-gray-400">null</pre>; 47 47 }; 48 48 49 49 const JSONObject = ({ ··· 60 60 .toSorted() 61 61 .map(([key, value], index) => ( 62 62 <div classList={{ "flex gap-2 mt-0.5": true, "mt-4": index === 0 }}> 63 - <div class="text-yellow-700 dark:text-amber-400"> 63 + <div class="text-amber-600 dark:text-amber-400"> 64 64 <div 65 65 class="group relative flex size-fit cursor-pointer items-center" 66 66 onmouseover={() => setClip(false)}