chatwoot/chatwoot

View on GitHub
app/javascript/dashboard/helper/labelColor.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
export const getRandomColor = () => {
  const letters = '0123456789ABCDEF';
  let color = '#';
  for (let i = 0; i < 6; i += 1) {
    color += letters[Math.floor(Math.random() * 16)];
  }
  return color;
};