A software company called Mudcap is prototyping an app for batch editing photos, and they've asked us to create some filters

<html> <head> <style>body { background-color: slateGray; color: white; text-align: center; } img { margin: 10px 0 20px 0; border: solid 2px aliceBlue; filter: saturate(130%) brightness(110%); }</style> </head> <body> <div> <h1>Darkroom</h1> <img src="https://mimo.app/i/bank-lobby.png"> <img src="https://mimo.app/i/loft.png"> <img src="https://mimo.app/i/lakeside.png"> </div> </body> </html>]]>