Is it possible to use Font Awesome icons in place of an input color type? I am running into issues where setting the display of the input to none prevents the model from being updated with the new color. Any suggestions on how to resolve this?
<label for="color{{id_form_group}}" class="fa-stack">
<i class="fa fa-square-o fa-stack-2x"></i>
<i class="fa fa-paint-brush fa-stack-1x" style="color:{{objeto.style.color}};"></i>
<input id="color{{id_form_group}}" ng-model="objeto.style.color" type="color" style="display:none;">
</label>