@pugsly
This is possible, follow the next steps.
Go to the MagicMirror CSS directory
cd ~\MagicMirror\css\
Edit (or create) the custom.css file
sudo nano custom.css
Add the next section at the bottom of the custom.css file
/* MMM-MyGarbage CSS Modification */
.MMM-MyGarbage .garbage-container .garbage-icon-container .garbage-icon.greenbin {
fill: #00A651;
}
.MMM-MyGarbage .garbage-container .garbage-icon-container .garbage-icon.garbagebin {
fill: #787878;
}
.MMM-MyGarbage .garbage-container .garbage-icon-container .garbage-icon.paperbin {
fill: #0059ff;
}
/* End MMM-MyGarbage */
Now you can modify the colors for your Garbage Bins. In your case, you would like the grey bin to be yellow. The code should be:
.MMM-MyGarbage .garbage-container .garbage-icon-container .garbage-icon.garbagebin {
fill: #fffa00;
}
Save and quit the nano editor and restart your MagicMirror.
Now you should have a yellow trashbin instead of a grey trashbin.
Succes!