Increase threshold of large thumbnails for dynamic theme colors algo

This commit is contained in:
schroda
2026-01-02 21:21:04 +01:00
parent b8fa4478f7
commit fd856c5cbd

View File

@@ -45,7 +45,7 @@ export const Thumbnail = ({
img.src = Mangas.getThumbnailUrl(manga); img.src = Mangas.getThumbnailUrl(manga);
img.onload = () => { img.onload = () => {
const isLargeImage = img.width > 600 && img.height > 600; const isLargeImage = img.width > 600 && img.height > 900;
Promise.all([ Promise.all([
Vibrant.from(img).getPalette(), Vibrant.from(img).getPalette(),