forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-24 15:40:43 -06:00
parent 12a91448aa
commit 2704aa50ea
2 changed files with 44 additions and 1 deletions

View File

@ -94,7 +94,7 @@
}
.theme-choco-mint {
--color-primary: 37, 193, 136;
--color-primary: 37,193,136;
--color-100: 246,246,244;
--color-200: 235,232,229;
--color-300: 219,218,209;
@ -106,6 +106,19 @@
--color-900: 40,37,17;
}
.theme-redwood {
--color-primary: 251,203,35;
--color-100: 246,244,244;
--color-200: 235,229,229;
--color-300: 219,209,209;
--color-400: 177,159,159;
--color-500: 130,110,110;
--color-600: 99,96,77;
--color-700: 70,47,47;
--color-800: 52,32,32;
--color-900: 40,17,17;
}
.theme-dramblr {
--color-primary: 2,132,199;
--color-100: 241,245,249;

View File

@ -640,6 +640,36 @@
</div>
</label>
</div>
<!-- Redwood -->
<div class="my-2 px-2 w-1/2 lg:w-1/4 flex items-center justify-center">
<input hidden name="theme" value="theme-redwood dark" type="radio" id="redwood-theme" class="peer" onchange="changeTheme(['theme-redwood','dark']); post_toast2('/settings/profile?theme2='+value, '1')" {% if v.theme2 == 'theme-redwood dark'%}checked{% endif %}>
<label for="redwood-theme" class="flex flex-col items-center justify-center w-full h-full text-center border border-gray-300 hover:border-gray-400 shadow-sm dark:border-gray-600 hover:bg-gray-100 dark:hover:bg-gray-600 peer-checked:border-blue-500 peer-checked:bg-blue-600/10 rounded-lg overflow-hidden">
<div class="flex flex-col w-full h-full bg-[#462f2f]">
<div class="h-3 w-full bg-[#462f2f]"></div>
<div class="h-4 w-full bg-[#342020]"></div>
<ul class="flex flex-col space-y-1 h-12 w-full bg-[#342020] p-2 mb-0">
<li class="flex">
<i class="fas fa-arrow-alt-up text-[8px] text-[#fbcb23]"></i>
<div class="ml-1 h-2 w-2/4 rounded-full bg-black/40"></div>
<div class="ml-auto h-2 w-1/4 rounded-full bg-[#fbcb23]"></div>
</li>
<li class="flex">
<i class="fas fa-arrow-alt-up text-[8px] text-black/40"></i>
<div class="ml-1 h-2 w-2/4 rounded-full bg-black/40"></div>
<div class="ml-auto h-2 w-1/4 rounded-full bg-transparent"></div>
</li>
<li class="flex">
<i class="fas fa-arrow-alt-up text-[8px] text-black/40"></i>
<div class="ml-1 h-2 w-2/4 rounded-full bg-black/40"></div>
<div class="ml-auto h-2 w-1/4 rounded-full bg-transparent"></div>
</li>
</ul>
</div>
<div class="w-full border-t border-gray-200 dark:border-gray-600 p-2 text-center">
<span class="font-bold text-base">Mountain Bluebird</span>
</div>
</label>
</div>
</div>
</div>
</div>