diff --git a/src/components/images/imageLoader.js b/src/components/images/imageLoader.js index 3dc91ffa91..17ec55d7ac 100644 --- a/src/components/images/imageLoader.js +++ b/src/components/images/imageLoader.js @@ -87,7 +87,9 @@ import 'css!./style'; requestAnimationFrame(() => { if (elem.tagName !== 'IMG') { elem.style.backgroundImage = "url('" + url + "')"; - elem.style.backgroundColor = '#fff'; + if (!elem.classList.contains('non-blurhashable')) { + elem.style.backgroundColor = '#fff'; + } } else { elem.setAttribute('src', url); }