#define COLOR_PINK "#e91e63"
#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)
+
+// Use a dark grey for the font
+#define COLOR_FONT "#333333"
+
+// Use a light grey for the axis, frame and grid
+#define COLOR_AXIS "#aaaaaa"
+#define COLOR_FRAME "#dddddd"
+#define COLOR_GRID "#eeeeee"
+
/*
Define some colours with a special meaning...
*/
"--",
// Change the background color
- "--color=BACK" COLOR_WITH_ALPHA(COLOR_WHITE, COLOR_OPACITY_100P),
+ "--color=BACK" COLOR_BACKGROUND,
+
+ // Change the color of the canvas
+ "--color=CANVAS" COLOR_CANVAS,
+
+ // Set the font color
+ "--color=FONT" COLOR_FONT,
+
+ // Set the axis color
+ "--color=AXIS" COLOR_AXIS,
+
+ // Set the color of the frame
+ "--color=FRAME" COLOR_FRAME,
+
+ // Set the color of the grid
+ "--color=GRID" COLOR_GRID,
// Disable the border around the image
"--border=0",