/** * Generate a random HEX color * * @example * ```ts * randomHexColor(); // -> eg. #f42c71 * ``` * * @return - A random hex color */ export default function randomHexColor(): string;