From d4ae51cf22b736e1f4acb06b97bc00b71cb3ed85 Mon Sep 17 00:00:00 2001 From: v1nc Date: Thu, 7 May 2020 20:10:27 +0200 Subject: [PATCH] swap colors --- apps/getup/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/getup/app.js b/apps/getup/app.js index 66d0ef868..560c5dd56 100644 --- a/apps/getup/app.js +++ b/apps/getup/app.js @@ -17,14 +17,14 @@ settings = storage.readJSON(SETTINGS_FILE, 1) || {}; function remind() { Bangle.buzz(1000,1); g.clear(); - g.setColor(0xF800); + g.setColor(0x03E0); g.drawString("MOVE!", g.getWidth()/2, g.getHeight()/2); setTimeout(print_message,moveTime * 60000); } function print_message(){ g.clear(); - g.setColor(0x03E0); + g.setColor(0xF800); g.drawString("sitting is dangerous!", g.getWidth()/2, g.getHeight()/2); } //init graphics