123456789101112131415161718 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>Pokemon By Color</title>
- <script src="nearest.js"></script>
- </head>
- <body>
- <noscript>Requires javascript</noscript>
- <div id="root">
- <div>Click random, or enter six digit hex code (no #) and press enter</div>
- <button onclick="onRandomColor()">Random color</button>
- <input id="color-input" onchange="onColorChange()" />
- <img src="https://img.pokemondb.net/sprites/sword-shield/icon/bulbasaur.png" />
- <ul id="best-list"></ul>
- </div>
- </body>
- </html>
|