From f7ee7e3acb19064d930fe4ff9ff86b5f2f205f4c Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 20 Jul 2018 20:17:19 +0200 Subject: [PATCH] Examples - Adjust Colors to match Blog theme Should probably be done automatically later, instead of manually now. --- web/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/main.dart b/web/main.dart index ecde8b5..1709bbc 100644 --- a/web/main.dart +++ b/web/main.dart @@ -64,7 +64,7 @@ void createPlaceholder(Example ex) { // Clear Canvas CanvasRenderingContext2D ctx = ex.canvas.context2D; Point c = Point(ex.canvas.width / 2, ex.canvas.height / 2); - ctx.setFillColorRgb(255, 150, 10); + ctx.setFillColorRgb(183, 20, 39); ctx.fillRect(0, 0, ex.canvas.width, ex.canvas.height); // Draw Play Button