I have the following JSON data:
 {
   "name": "faded",
   "artist": "alan walker",
   "color": "faded"
 },
 {
   "name": "i love you",
   "artist": "omfg",
   "color": "143"
 },
 {
   "name": "closer",
   "artist": "the chainsmokers",
   "color": "c105e2"
 },
 {
   "name": "roses",
   "artist": "the chainsmokers",
   "color": "205e2"
 }
I'm converting hex codes into background-colors, however some of these will not work since colors needs be either a 6-digit (#ffffff) or 3-digit number (#fff).
A solution would be to add 0 before numbers which are 2,4 or 5 digits only, so "205e2" would come out as "#0205e2". I'd also like to apply this JSON data to each div:
<div style="background-color: #000;"> <!-- background-color here -->
    <h1 id="name"></h1> <!-- name goes here -->
    <h2 id="artist"></h2> <!-- artist goes here -->
    <h3 id="hex">#000000</h3><!-- color text goes here -->
    <div class="content">
    <button>Like</button>
    <button>Copy</button>
</div>
What would be the possible way to code this?
