A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

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

Dark mode about page

+13 -6
+6
src/Css/About.css
··· 106 106 code { 107 107 @apply font-mono; 108 108 } 109 + 110 + @screen dark { 111 + pre { 112 + @apply border-base01; 113 + } 114 + }
+5 -4
src/Static/About/Layout.html
··· 13 13 <link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png" /> 14 14 <link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png" /> 15 15 <link rel="manifest" href="../site.webmanifest" /> 16 - <link rel="mask-icon" href="../safari-pinned-tab.svg" color="#e79680" /> 17 - <meta name="msapplication-TileColor" content="#e79680" /> 16 + <link rel="mask-icon" href="../safari-pinned-tab.svg" color="#1e191a" /> 17 + <meta name="msapplication-TileColor" content="#1e191a" /> 18 18 <meta name="theme-color" content="#1e191a" /> 19 19 20 20 <!-- Styles --> 21 21 <link rel="stylesheet" href="../about.css" /> 22 22 23 23 </head> 24 - <body class="bg-white font-body my-16 px-4 text-base01"> 24 + <body class="bg-white font-body my-16 px-4 text-base01 dark:bg-darkest-hour dark:text-gray-600"> 25 25 26 26 27 27 <main class="max-w-2xl mx-auto"> 28 28 <a class="inline-block logo" href="../"> 29 - <img src="../images/diffuse-dark.svg" /> 29 + <img class="dark:hidden" src="../images/diffuse-dark.svg" /> 30 + <img class="hidden dark:block" src="../images/diffuse-light.svg" /> 30 31 <h1>Diffuse</h1> 31 32 </a> 32 33
+2 -2
src/Static/Html/Application.html
··· 18 18 <link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" /> 19 19 <link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" /> 20 20 <link rel="manifest" href="site.webmanifest" /> 21 - <link rel="mask-icon" href="safari-pinned-tab.svg" color="#e79680" /> 22 - <meta name="msapplication-TileColor" content="#e79680" /> 21 + <link rel="mask-icon" href="safari-pinned-tab.svg" color="#1e191a" /> 22 + <meta name="msapplication-TileColor" content="#1e191a" /> 23 23 <meta name="theme-color" content="#1e191a" /> 24 24 25 25 <!-- Stylesheets -->