ColorUtils.js 315 B

12345678910111213141516
  1. const mainColors = [
  2. '#22AC38',
  3. '#A84200',
  4. '#FF5A5A',
  5. '#F384EA',
  6. '#EC6941',
  7. '#00A0E9',
  8. ];
  9. function getRndInteger(min, max) {
  10. return Math.floor(Math.random() * (max - min)) + min;
  11. }
  12. const getColor = () => {
  13. return mainColors[getRndInteger(0, 6)];
  14. };
  15. export { getColor, mainColors };