After uploading a high-definition image as a background, I noticed that in the DOM the file appeared to have a slightly greener tint than the original. However, upon inspecting the image background element and saving it again, it saved with the original tint.
It seems that the DOM is adding a greenish tint to my background image. Could this issue be related to the file size being too large?
.main {
background-image: url("MainBackground.jpg");
background-size: 100% 100%;
background-repeat: no-repeat;
}
Here is a screenshot of the image displayed in the browser:
https://i.sstatic.net/vw6On.jpg
And here is the link to the original image:
https://web.archive.org/web/20190826072143/http://i65.tinypic.com/119t6yt.jpg
The strange thing is that only this specific image shows up with a green tint when viewed in the browser. When you save the image, you can see that the green tint is much less pronounced.