diff --git a/src/modules/manga/components/MangaDetails.tsx b/src/modules/manga/components/MangaDetails.tsx index 0b1e3130..ccc9dbed 100644 --- a/src/modules/manga/components/MangaDetails.tsx +++ b/src/modules/manga/components/MangaDetails.tsx @@ -189,7 +189,14 @@ const Thumbnail = ({ img.onload = () => { Promise.all([ Vibrant.from(img).getPalette(), - new FastAverageColor().getColorAsync(img, { algorithm: 'dominant' }), + new FastAverageColor().getColorAsync(img, { + algorithm: 'dominant', + mode: 'precision', + ignoredColor: [ + [255, 255, 255, 255, 75], + [0, 0, 0, 255, 75], + ], + }), ]).then(([palette, averageColor]) => { if ( !palette.Vibrant ||