#!/bin/bash

find -name '*.png' -exec convert '{}' \
-fill 'rgb(254,254,254)' -opaque 'rgb(252,252,216)' \
'{}' \;
