From caafe05b645d5baec71a9b3c77a95e508d3b22fd Mon Sep 17 00:00:00 2001 From: John Doe Date: Sun, 10 Sep 2023 17:24:32 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=88=20Add=20avatarColors=20array=20?= =?UTF-8?q?=F0=9F=8E=A8=20Define=20an=20array=20of=20avatar=20colors=20?= =?UTF-8?q?=F0=9F=8C=9F=20Enhance=20user=20profile=20visuals=20?= =?UTF-8?q?=F0=9F=8E=89=20Introducing=20a=20colorful=20palette=20for=20ava?= =?UTF-8?q?tars=20=F0=9F=9A=80=20Ready=20to=20make=20user=20profiles=20pop?= =?UTF-8?q?!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/contains/contants.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/contains/contants.ts diff --git a/src/contains/contants.ts b/src/contains/contants.ts new file mode 100644 index 0000000..2e66bd2 --- /dev/null +++ b/src/contains/contants.ts @@ -0,0 +1,30 @@ +const avatarColors = [ + "#ffdd00", + "#fbb034", + "#ff4c4c", + "#c1d82f", + "#f48924", + "#7ac143", + "#30c39e", + "#06BCAE", + "#0695BC", + "#037ef3", + "#146eb4", + "#8e43e7", + "#ea1d5d", + "#fc636b", + "#ff6319", + "#e01f3d", + "#a0ac48", + "#00d1b2", + "#472f92", + "#388ed1", + "#a6192e", + "#4a8594", + "#7B9FAB", + "#1393BD", + "#5E13BD", + "#E208A7", +]; + +export { avatarColors };