Longer hour hand, don't use dark blue

Humans can't see blue very well.
This commit is contained in:
Neale Pickett 2016-05-10 16:04:15 -06:00
parent fdad55ec2f
commit f5fd39044f
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#include <pebble.h>
#define HAND_OUT 200
#define HAND_IN 50
#define HAND_IN 45
#define MINUTE_WIDTH 10
#define HOUR_WIDTH 12
#define BORDER_WIDTH PBL_IF_ROUND_ELSE(16, 12)
@ -176,7 +176,7 @@ static void init() {
// Pick out a color
#ifdef PBL_COLOR
uint32_t argb = 0;
while (argb == 0) {
while ((argb == 0) || (argb == 0x000001)) {
argb = rand() % 0b00111111;
}
accent_color = (GColor8){ .argb = argb + 0b11000000 };