JSFiddle - React, Tailwind, and code Playground
by matthewbj
HTML
<script src="https://raw.github.com/matthewbj/Colors/master/dev/colors.js"></script>
<p id="check-1">R: 54, G: 15, B: 69 - </p>
<p id="check-2">R: 10, G: 250, B: 58 - </p>
<p id="check-3">R: 28, G: 10, B: 53 - </p>
<a href="https://github.com/matthewbj/Colors/blob/master/dev/colors.js" target="_top">See /matthewbj/Colors/blob/master/dev/colors.js</a>
JavaScript
$('#check-1').append(Colors.rgb2hex(54, 15, 69));
$('#check-2').append(Colors.rgb2hex(10, 250, 58));
$('#check-3').append(Colors.rgb2hex(28, 10, 53));