HEX to RGB and HSL Color Converter
Details
- Work in progress
- The will bed a converter that changes HEX color values into RGB and HSL
EXAMPLE
HTML
<div>
<label for="hex">HEX:</label>
<input id="hex" />
</div>
<div>
<label for="rgb">RGB:</label>
<input id="rgb" />
</div>
<div>
<label for="hsl">HSL:</label>
<input id="hsl" />
</div>
JavaScript
const init = () => {
}
document.addEventListener('DOMContentLoaded', init)