From fd856c5cbdd7b6331f281a31b6f0bc7463f232fa Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Fri, 2 Jan 2026 21:21:04 +0100 Subject: [PATCH] Increase threshold of large thumbnails for dynamic theme colors algo --- src/features/manga/components/details/Thumbnail.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/manga/components/details/Thumbnail.tsx b/src/features/manga/components/details/Thumbnail.tsx index d0cc6b8a..33bbad73 100644 --- a/src/features/manga/components/details/Thumbnail.tsx +++ b/src/features/manga/components/details/Thumbnail.tsx @@ -45,7 +45,7 @@ export const Thumbnail = ({ img.src = Mangas.getThumbnailUrl(manga); img.onload = () => { - const isLargeImage = img.width > 600 && img.height > 600; + const isLargeImage = img.width > 600 && img.height > 900; Promise.all([ Vibrant.from(img).getPalette(),