Sharpness & Color Issue - Engine vs Editor

Hey guys, I’m trying to replicate my project over engine version, and I can’t get it entirety 1 - 1 look

Editor
editor1
Engine:
engine1
Editor:
editor2
Engine:
engine2
Editor:
editor
Engine:
engine

Seems like in engine its not as sharp and not that white compared to editor.
What’s could be the case?

Camera settings is identical to editor

App settings:

	    const app = new pc.Application(canvas, {
				mouse: new pc.Mouse(canvas),
				keyboard: new pc.Keyboard(window),
				touch: new pc.TouchDevice(canvas),
				elementInput: new pc.ElementInput(canvas),
				graphicsDeviceOptions: {
					antialias: true,
					powerPreference: 'high-performance',
					alpha: false
				}
			});
			
			app.graphicsDevice.maxPixelRatio = window.devicePixelRatio;
			app.setCanvasFillMode(pc.FILLMODE_FILL_WINDOW);
			app.setCanvasResolution(pc.RESOLUTION_AUTO);
			app.scene.ambientLight = new pc.Color().fromString('#ffffff');
			app.scene.exposure = 1;
			app.scene.gammaCorrection = pc.GAMMA_SRGB;

pixels:

editor
editor3
engine
engine3