JSFiddle - React, Tailwind, and code Playground
by Narcis
HTML
png: <br>
<img src="http://www.mig-marketing.com/proves/red.png">
<br><br>
svg: <br>
<img src="http://www.mig-marketing.com/proves/red.png" id="svg">
<br><br>
<div id="hex"> #993333 </div>
<div id="rgb"> rgb(153,51,51) </div>
CSS
#hex{
position:absolute;
top:20px; left:100px;
width: 100px;height:100px;
color:white;
background-color:#993333;
}
#rgb{
position:absolute;
top:130px; left:100px;
width: 100px;height:100px;
color:white;
background-color:rgb(153,51,51);
}