Include the following inside your HTML file.
<script defer type="text/javascript" src="spotlight.js"></script>
<script type="text/javascript">
let spotlight = new Spotlight();
</script>
You can configure the color, the height and the width of your Spotlight.
Unit: px
let spotlight = new Spotlight({
height: 200,
});
Unit: px
let spotlight = new Spotlight({
width: 200,
});
Unit: HEX Color
let spotlight = new Spotlight({
color: '#FFFFFF',
});
Just do it.