You have to use JavaScript, but there is a way to open the colorpicker:
function openPick {
document.getElementByd("picker").style.display = block;
};
#picker {
display: none;
}
<input type="color" id="picker">
<button onclick="openPick">Click to open picker</button>