sohelp-ele
Version:
SohelpEle Library
33 lines (32 loc) • 907 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
function wordCloudColor() {
const colors = [
"rgb(24, 144, 255)",
"rgb(102, 181, 255)",
"rgb(65, 217, 199)",
"rgb(47, 194, 91)",
"rgb(110, 219, 143)",
"rgb(154, 230, 92)",
"rgb(250, 204, 20)",
"rgb(230, 150, 92)",
"rgb(87, 173, 113)",
"rgb(34, 50, 115)",
"rgb(115, 138, 230)",
"rgb(117, 100, 204)",
"rgb(133, 67, 224)",
"rgb(168, 119, 237)",
"rgb(92, 142, 230)",
"rgb(19, 194, 194)",
"rgb(112, 224, 224)",
"rgb(92, 163, 230)",
"rgb(52, 54, 199)",
"rgb(128, 130, 255)",
"rgb(221, 129, 230)",
"rgb(240, 72, 100)",
"rgb(250, 125, 146)",
"rgb(213, 152, 217)"
];
return colors[Math.floor(Math.random() * (0 - colors.length) + colors.length)];
}
exports.wordCloudColor = wordCloudColor;