ZhangXianQiang
2024-06-03 5eebeba2a160192d48344ab587e90faaf6135dd8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
const colorList = [
  '#E74C3C',
  '#8E44AD',
  '#F39C12',
  '#27AE60',
  '#FFD1DC',
  '#2471A3',
  '#88D8B0',
  '#154360',
  '#F78F1E'
];
export default function randomColor() {
  return colorList[Math.floor(Math.random() * colorList.length)];
}