From 74b14ef2a4c9147f1a09b05ff12dcedc93c7036a Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Wed, 14 Oct 2020 19:29:38 -0300 Subject: [PATCH] Changes --- components/core/Avatar/Avatar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/core/Avatar/Avatar.tsx b/components/core/Avatar/Avatar.tsx index 20ec7454c..7c7f224c7 100644 --- a/components/core/Avatar/Avatar.tsx +++ b/components/core/Avatar/Avatar.tsx @@ -8,7 +8,7 @@ interface Props { } function getRandomPairOfColors() { - const colors = ['#f33', '#7928ca', '#50e3c2', '#7928ca', '#7928CA'] + const colors = ['#37B679', '#DA3C3C', '#3291FF', '#7928CA', '#79FFE1'] const getRandomIdx = () => random(0, colors.length - 1) let idx = getRandomIdx() let idx2 = getRandomIdx()