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