Make Image Brighter In Cs Cart Automatically

Is it possible to make images brighter automatically in scroller, category list etc.

I see some sites they do. Any insight?

Thank you

Please add the following rule to the CSS section of the theme editor:

img:hover {
    -webkit-filter: brightness(125%);
}

http://prntscr.com/ch0lux

(!) Not supported by all browsers

Without hover but default in all images, is it possible?

img {
-webkit-filter: brightness(103
%); /* Chrome, Safari, Opera */
}
:) ???

Alerto is correct:

img {
    -webkit-filter: brightness(125%);
}