Use randomcolor not seedrandom for avatar backgrounds

This commit is contained in:
alecdwm 2017-01-06 07:06:58 +01:00
parent 01361afa7a
commit b044c2ae19
2 changed files with 2 additions and 4 deletions

View file

@ -1,12 +1,11 @@
"use strict";
// external modules
var seedrandom = require('seedrandom');
var randomcolor = require('randomcolor');
// core
module.exports = function(name) {
var colors = ["#5A8770", "#B2B7BB", "#6FA9AB", "#F5AF29", "#0088B9", "#F18636", "#D93A37", "#A6B12E", "#5C9BBC", "#F5888D", "#9A89B5", "#407887", "#9A89B5", "#5A8770", "#D33F33", "#A2B01F", "#F0B126", "#0087BF", "#F18636", "#0087BF", "#B2B7BB", "#72ACAE", "#9C8AB4", "#5A8770", "#EEB424", "#407887"];
var color = colors[Math.floor(seedrandom(name)() * colors.length)];
var color = randomcolor({seed: name});
var letter = name.substring(0, 1).toUpperCase();
var svg = '<?xml version="1.0" encoding="UTF-8" standalone="no"?>';

View file

@ -99,7 +99,6 @@
"reveal.js": "^3.3.0",
"sequelize": "^3.24.3",
"scrypt": "^6.0.3",
"seedrandom": "^2.4.2",
"select2": "^3.5.2-browserify",
"sequelize-cli": "^2.4.0",
"shortid": "2.2.6",