I've been using maplight in HTML and JS code ( https://github.com/kemayo/maphilight ) to draw bounding boxes in a picture, using a map, the problem is that I'm not able to use different colours for each box.

For example, in this image I would need each bounding box in a different colour.
$(document).ready(function () {
$('.map').maphilight({ alwaysOn: true, strokeColor: '1bdc00'});
});
This is the function that I am using right now, but every box is in colour green and I can't difference between them.
Is it possible to use different colours using maplight?
Thank you.