Skip to content

Commit

Permalink
Update dominosa.c to reference issue #426
Browse files Browse the repository at this point in the history
Changed the green from the not so eye friendly [#4DD933](http://html-color.org/4DD933) to the more comfortable [#34A61E](http://html-color.org/34A61E)
  • Loading branch information
olicht committed Mar 25, 2018
1 parent c855f88 commit 5ef8dc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/jni/dominosa.c
Original file line number Diff line number Diff line change
Expand Up @@ -1395,9 +1395,9 @@ static float *game_colours(frontend *fe, int *ncolours)
ret[COL_HIGHLIGHT_1 * 3 + 1] = 0.20;
ret[COL_HIGHLIGHT_1 * 3 + 2] = 0.20;

ret[COL_HIGHLIGHT_2 * 3 + 0] = 0.30;
ret[COL_HIGHLIGHT_2 * 3 + 1] = 0.85;
ret[COL_HIGHLIGHT_2 * 3 + 2] = 0.20;
ret[COL_HIGHLIGHT_2 * 3 + 0] = 0.20;
ret[COL_HIGHLIGHT_2 * 3 + 1] = 0.65;
ret[COL_HIGHLIGHT_2 * 3 + 2] = 0.12;

*ncolours = NCOLOURS;
return ret;
Expand Down

0 comments on commit 5ef8dc0

Please sign in to comment.