light theme fixes

This commit is contained in:
Kentai Radiquum 2025-02-03 00:08:54 +05:00
parent 8b6e0cbebb
commit 04e272ac61
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
9 changed files with 94 additions and 43 deletions

View file

@ -119,4 +119,16 @@
mask-repeat: no-repeat; mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%; -webkit-mask-size: 100% 100%;
mask-size: 100% 100%; mask-size: 100% 100%;
}
.material-symbols--globe {
display: inline-block;
--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12q0-.175-.012-.363t-.013-.312q-.125.725-.675 1.2T18 13h-2q-.825 0-1.412-.587T14 11v-1h-4V8q0-.825.588-1.412T12 6h1q0-.575.313-1.012t.762-.713q-.5-.125-1.012-.2T12 4Q8.65 4 6.325 6.325T4 12h5q1.65 0 2.825 1.175T13 16v1h-3v2.75q.5.125.988.188T12 20'/%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
} }

BIN
src/static/github-mark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -101,37 +101,37 @@ function getFit() {
switch (fit) { switch (fit) {
case "contain": { case "contain": {
FitContain.forEach((item) => FitContain.forEach((item) =>
item.classList.add("text-orange-500", "font-bold") item.classList.add("text-orange-400", "font-bold")
); );
FitCover.forEach((item) => FitCover.forEach((item) =>
item.classList.remove("text-orange-500", "font-bold") item.classList.remove("text-orange-400", "font-bold")
); );
FitFull.forEach((item) => FitFull.forEach((item) =>
item.classList.remove("text-orange-500", "font-bold") item.classList.remove("text-orange-400", "font-bold")
); );
break; break;
} }
case "cover": { case "cover": {
FitContain.forEach((item) => FitContain.forEach((item) =>
item.classList.remove("text-orange-500", "font-bold") item.classList.remove("text-orange-400", "font-bold")
); );
FitCover.forEach((item) => FitCover.forEach((item) =>
item.classList.add("text-orange-500", "font-bold") item.classList.add("text-orange-400", "font-bold")
); );
FitFull.forEach((item) => FitFull.forEach((item) =>
item.classList.remove("text-orange-500", "font-bold") item.classList.remove("text-orange-400", "font-bold")
); );
break; break;
} }
case "full": { case "full": {
FitContain.forEach((item) => FitContain.forEach((item) =>
item.classList.remove("text-orange-500", "font-bold") item.classList.remove("text-orange-400", "font-bold")
); );
FitCover.forEach((item) => FitCover.forEach((item) =>
item.classList.remove("text-orange-500", "font-bold") item.classList.remove("text-orange-400", "font-bold")
); );
FitFull.forEach((item) => FitFull.forEach((item) =>
item.classList.add("text-orange-500", "font-bold") item.classList.add("text-orange-400", "font-bold")
); );
break; break;
} }

View file

@ -527,9 +527,6 @@
.invisible { .invisible {
visibility: hidden; visibility: hidden;
} }
.visible {
visibility: visible;
}
.absolute { .absolute {
position: absolute; position: absolute;
} }
@ -754,9 +751,6 @@
.bg-orange-800 { .bg-orange-800 {
background-color: var(--color-orange-800); background-color: var(--color-orange-800);
} }
.bg-orange-800\/50 {
background-color: color-mix(in oklab, var(--color-orange-800) 50%, transparent);
}
.bg-orange-950 { .bg-orange-950 {
background-color: var(--color-orange-950); background-color: var(--color-orange-950);
} }
@ -806,8 +800,14 @@
.text-gray-200 { .text-gray-200 {
color: var(--color-gray-200); color: var(--color-gray-200);
} }
.text-orange-500 { .text-gray-200\/75 {
color: var(--color-orange-500); color: color-mix(in oklab, var(--color-gray-200) 75%, transparent);
}
.text-orange-400 {
color: var(--color-orange-400);
}
.text-slate-700 {
color: var(--color-slate-700);
} }
.text-white { .text-white {
color: var(--color-white); color: var(--color-white);
@ -837,6 +837,13 @@
} }
} }
} }
.hover\:text-orange-500 {
&:hover {
@media (hover: hover) {
color: var(--color-orange-500);
}
}
}
.sm\:grid { .sm\:grid {
@media (width >= 40rem) { @media (width >= 40rem) {
display: grid; display: grid;
@ -939,16 +946,36 @@
grid-template-columns: repeat(auto-fill,minmax(20%,1fr)); grid-template-columns: repeat(auto-fill,minmax(20%,1fr));
} }
} }
.dark\:block {
@media (prefers-color-scheme: dark) {
display: block;
}
}
.dark\:hidden {
@media (prefers-color-scheme: dark) {
display: none;
}
}
.dark\:bg-\[\#160606\] { .dark\:bg-\[\#160606\] {
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
background-color: #160606; background-color: #160606;
} }
} }
.dark\:bg-orange-800\/50 {
@media (prefers-color-scheme: dark) {
background-color: color-mix(in oklab, var(--color-orange-800) 50%, transparent);
}
}
.dark\:text-\[\#f9ebeb\] { .dark\:text-\[\#f9ebeb\] {
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
color: #f9ebeb; color: #f9ebeb;
} }
} }
.dark\:text-white {
@media (prefers-color-scheme: dark) {
color: var(--color-white);
}
}
.\[\&\:not\(\:fullscreen\)\]\:object-cover { .\[\&\:not\(\:fullscreen\)\]\:object-cover {
&:not(:fullscreen) { &:not(:fullscreen) {
object-fit: cover; object-fit: cover;
@ -1070,6 +1097,17 @@
-webkit-mask-size: 100% 100%; -webkit-mask-size: 100% 100%;
mask-size: 100% 100%; mask-size: 100% 100%;
} }
.material-symbols--globe {
display: inline-block;
--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12q0-.175-.012-.363t-.013-.312q-.125.725-.675 1.2T18 13h-2q-.825 0-1.412-.587T14 11v-1h-4V8q0-.825.588-1.412T12 6h1q0-.575.313-1.012t.762-.713q-.5-.125-1.012-.2T12 4Q8.65 4 6.325 6.325T4 12h5q1.65 0 2.825 1.175T13 16v1h-3v2.75q.5.125.988.188T12 20'/%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
}
@keyframes spin { @keyframes spin {
to { to {
transform: rotate(360deg); transform: rotate(360deg);

View file

@ -146,7 +146,7 @@ function getView() {
const active = document.querySelectorAll(`[data-view="${view}"]`); const active = document.querySelectorAll(`[data-view="${view}"]`);
if (active.length > 0) { if (active.length > 0) {
active.forEach((item) => { active.forEach((item) => {
item.classList.add("text-orange-500"); item.classList.add("text-orange-400");
}); });
} }
return view; return view;
@ -182,7 +182,7 @@ function getImagesPerPage() {
if (active.length > 0) { if (active.length > 0) {
active.forEach((item) => { active.forEach((item) => {
item.classList.add("underline"); item.classList.add("underline");
item.classList.add("text-orange-500"); item.classList.add("text-orange-400");
item.classList.add("font-bold"); item.classList.add("font-bold");
}); });
} }
@ -219,7 +219,7 @@ function getVideosPerPage() {
if (active.length > 0) { if (active.length > 0) {
active.forEach((item) => { active.forEach((item) => {
item.classList.add("underline"); item.classList.add("underline");
item.classList.add("text-orange-500"); item.classList.add("text-orange-400");
item.classList.add("font-bold"); item.classList.add("font-bold");
}); });
} }

View file

@ -17,17 +17,18 @@ export default function Footer() {
<p className="text-lg">Find us on:</p> <p className="text-lg">Find us on:</p>
<a href="https://github.com/wah-su"> <a href="https://github.com/wah-su">
<img <img
className="object-contain w-8 rounded-full aspect-square" className="object-contain w-8 rounded-full aspect-square block dark:hidden"
src="/static/github-mark.png"
alt="github"
/>
<img
className="object-contain w-8 rounded-full aspect-square hidden dark:block"
src="/static/github-mark-white.png" src="/static/github-mark-white.png"
alt="github" alt="github"
/> />
</a> </a>
<a href="https://wah.su"> <a href="https://wah.su" className="flex items-center justify-center">
<img <div className="material-symbols--globe w-8 h-8 dark:text-white text-slate-700"></div>
className="object-contain w-8 rounded-full aspect-square"
src="/static/captive_portal_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.png"
alt="website"
/>
</a> </a>
</div> </div>
</div> </div>

View file

@ -1,9 +1,9 @@
export default function ImagePageNav() { export default function ImagePageNav() {
return ( return (
<div className="bg-orange-800/50 rounded-sm p-2 text-white"> <div className="text-white dark:text-white bg-orange-800 dark:bg-orange-800/50 rounded-sm p-2">
<div className="flex gap-4 justify-between items-center"> <div className="flex gap-4 justify-between items-center">
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="nav_prev" id="nav_prev"
> >
<div className="material-symbols--navigate-before w-16 h-16"></div> <div className="material-symbols--navigate-before w-16 h-16"></div>
@ -12,19 +12,19 @@ export default function ImagePageNav() {
<div className="flex gap-4 md:gap-8 flex-col md:flex-row"> <div className="flex gap-4 md:gap-8 flex-col md:flex-row">
<div className="flex gap-4"> <div className="flex gap-4">
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="fit_cover" id="fit_cover"
> >
<div className="material-symbols--crop w-8 h-8"></div> <div className="material-symbols--crop w-8 h-8"></div>
</button> </button>
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="fit_contain" id="fit_contain"
> >
<div className="material-symbols--fullscreen-exit w-8 h-8"></div> <div className="material-symbols--fullscreen-exit w-8 h-8"></div>
</button> </button>
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="fit_full" id="fit_full"
> >
<div className="material-symbols--open-in-full w-8 h-8"></div> <div className="material-symbols--open-in-full w-8 h-8"></div>
@ -33,13 +33,13 @@ export default function ImagePageNav() {
<div className="flex gap-4"> <div className="flex gap-4">
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="act_download" id="act_download"
> >
<div className="material-symbols--download w-8 h-8"></div> <div className="material-symbols--download w-8 h-8"></div>
</button> </button>
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="act_newtab" id="act_newtab"
> >
<div className="material-symbols--open-in-new w-8 h-8"></div> <div className="material-symbols--open-in-new w-8 h-8"></div>
@ -48,7 +48,7 @@ export default function ImagePageNav() {
</div> </div>
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="nav_next" id="nav_next"
> >
<div className="material-symbols--navigate-next w-16 h-16"></div> <div className="material-symbols--navigate-next w-16 h-16"></div>

View file

@ -7,9 +7,9 @@ export default function PageNav(props: { path: string }) {
} }
return ( return (
<div className="bg-orange-800/50 rounded-sm p-2 text-white flex justify-between gap-4 items-center"> <div className="text-white dark:text-white bg-orange-800 dark:bg-orange-800/50 rounded-sm p-2 flex justify-between gap-4 items-center">
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="nav_prev" id="nav_prev"
> >
<div className="material-symbols--navigate-before w-16 h-16"></div> <div className="material-symbols--navigate-before w-16 h-16"></div>
@ -21,7 +21,7 @@ export default function PageNav(props: { path: string }) {
key={`ipp_${item}`} key={`ipp_${item}`}
className={`${ className={`${
idx > 4 ? "hidden md:block" : "" idx > 4 ? "hidden md:block" : ""
} cursor-pointer md:text-lg lg:text-xl text-gray-200`} } cursor-pointer md:text-lg lg:text-xl text-gray-200/75 hover:text-orange-500 transition-colors`}
id="nav_ipp" id="nav_ipp"
data-ipp={item} data-ipp={item}
> >
@ -33,14 +33,14 @@ export default function PageNav(props: { path: string }) {
<div className="flex"> <div className="flex">
<div className="gap-1 hidden xl:flex"> <div className="gap-1 hidden xl:flex">
<button <button
className="flex justify-center items-center cursor-pointer text-gray-200" className="flex justify-center items-center cursor-pointer text-gray-200/75 hover:text-orange-500 transition-colors"
id="nav_view" id="nav_view"
data-view="grid" data-view="grid"
> >
<div className="material-symbols--grid-on w-8 h-8"></div> <div className="material-symbols--grid-on w-8 h-8"></div>
</button> </button>
<button <button
className="flex justify-center items-center cursor-pointer text-gray-200" className="flex justify-center items-center cursor-pointer text-gray-200/75 hover:text-orange-500 transition-colors"
id="nav_view" id="nav_view"
data-view="masonry" data-view="masonry"
> >
@ -48,7 +48,7 @@ export default function PageNav(props: { path: string }) {
</button> </button>
</div> </div>
<button <button
className="flex justify-center items-center cursor-pointer" className="flex justify-center items-center cursor-pointer hover:text-orange-500 transition-colors"
id="nav_next" id="nav_next"
> >
<div className="material-symbols--navigate-next w-16 h-16"></div> <div className="material-symbols--navigate-next w-16 h-16"></div>

View file

@ -5,7 +5,7 @@ import PlaceholderVid from "./Components/PlaceHolderVid";
export default function IndexPage() { export default function IndexPage() {
return ( return (
<div> <div>
<p className="text-4xl bg-orange-800/50 rounded-sm p-4">Images</p> <p className="text-4xl text-white dark:text-white bg-orange-800 dark:bg-orange-800/50 rounded-sm p-4">Images</p>
<div <div
id="index_images" id="index_images"
className="mt-2 mb-4 flex overflow-x-auto sm:overflow-x-hidden sm:grid sm:grid-cols-[repeat(auto-fill,minmax(25%,1fr))] xl:grid-cols-[repeat(auto-fill,minmax(20%,1fr))] sm:items-center sm:justify-center gap-2" className="mt-2 mb-4 flex overflow-x-auto sm:overflow-x-hidden sm:grid sm:grid-cols-[repeat(auto-fill,minmax(25%,1fr))] xl:grid-cols-[repeat(auto-fill,minmax(20%,1fr))] sm:items-center sm:justify-center gap-2"
@ -20,7 +20,7 @@ export default function IndexPage() {
})} })}
<AllLink location="/images/" text="View All Images" /> <AllLink location="/images/" text="View All Images" />
</div> </div>
<p className="text-4xl bg-orange-800/50 rounded-sm p-4">Videos</p> <p className="text-4xl text-white dark:text-white bg-orange-800 dark:bg-orange-800/50 rounded-sm p-4">Videos</p>
<div <div
id="index_videos" id="index_videos"
className="mt-2 flex overflow-x-auto sm:overflow-x-hidden sm:grid sm:grid-cols-[repeat(auto-fill,minmax(25%,1fr))] xl:grid-cols-[repeat(auto-fill,minmax(20%,1fr))] sm:items-center sm:justify-center gap-2" className="mt-2 flex overflow-x-auto sm:overflow-x-hidden sm:grid sm:grid-cols-[repeat(auto-fill,minmax(25%,1fr))] xl:grid-cols-[repeat(auto-fill,minmax(20%,1fr))] sm:items-center sm:justify-center gap-2"