diff options
author | Wu Cheng-Han | 2016-07-30 11:31:29 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2016-07-30 11:31:29 +0800 |
commit | f69a5361cbbc81a78a7b6a6a623dea0700f84d44 (patch) | |
tree | 9df2e5042ef2f8dbe7783ac5971bf82ad95196ee /lib | |
parent | a8c12d0d216276015d5bc57f17cf7306191fd125 (diff) |
Update to make random color more discrete
Diffstat (limited to 'lib')
-rw-r--r-- | lib/realtime.js | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/realtime.js b/lib/realtime.js index 1c99f02e..11de294d 100644 --- a/lib/realtime.js +++ b/lib/realtime.js @@ -756,13 +756,11 @@ function connection(socket) { //initialize user data //random color - var color = randomcolor({ - luminosity: 'light' - }); + var color = randomcolor(); //make sure color not duplicated or reach max random count if (notes[noteId]) { var randomcount = 0; - var maxrandomcount = 5; + var maxrandomcount = 10; var found = false; do { Object.keys(notes[noteId].users).forEach(function (user) { @@ -772,9 +770,7 @@ function connection(socket) { } }); if (found) { - color = randomcolor({ - luminosity: 'light' - }); + color = randomcolor(); randomcount++; } } while (found && randomcount < maxrandomcount); |