#define COLOR_DEEP_PURPLE "#673ab7"
// Make the background and canvas transparent
-#define COLOR_BACKGROUND COLOR_WITH_ALPHA(COLOR_WHITE, COLOR_OPACITY_100P)
-#define COLOR_CANVAS COLOR_WITH_ALPHA(COLOR_WHITE, COLOR_OPACITY_100P)
+#define COLOR_BACKGROUND COLOR_TRANSPARENT
+#define COLOR_CANVAS COLOR_TRANSPARENT
// Use a dark grey for the font
#define COLOR_FONT "#333333"
Define some colours with a special meaning...
*/
+// Transparent - there is nothing to see
+#define COLOR_TRANSPARENT COLOR_WITH_ALPHA(COLOR_WHITE, COLOR_OPACITY_100P)
+
// Default - If something does not need to have a special meaning
#define COLOR_DEFAULT COLOR_BLACK