ColorUtils.js 316 B

12345678910111213141516
  1. const mainColors = [
  2. 'green500',
  3. 'red500',
  4. 'teal600',
  5. 'brand800',
  6. 'teal300',
  7. 'blue400',
  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 };