| 12345678910111213141516 |
- const mainColors = [
- '#22AC38',
- '#A84200',
- '#FF5A5A',
- '#F384EA',
- '#EC6941',
- '#00A0E9',
- ];
- function getRndInteger(min, max) {
- return Math.floor(Math.random() * (max - min)) + min;
- }
- const getColor = () => {
- return mainColors[getRndInteger(0, 6)];
- };
- export { getColor, mainColors };
|