Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+2)

fun game!

I had an annoying issue when playing full screen on Firefox (Win10), after some clicks, the whole screen gets a blue-ish filter, as if I highlighted the canvas.

One way to fix it is to open the web developer console Ctrl + Shift + C and add the following css code:

::selected {
    color: rgba(255, 255, 255, 0.8);
}
(+1)

oh thats smart, thanks for sharing!