## Color
-On macOS:
-
-- Chrome shows the native color picker
-- Safari shows a custom color picker that points to the input
-- Firefox shows the native color picker
+Keep in mind color inputs are [not supported in IE](https://caniuse.com/#feat=input-color).
{{< example >}}
<form>
<label for="exampleColorInput">Color picker</label>
- <input type="color" class="form-control form-control-color" id="exampleColorInput" value="#563d7c">
+ <input type="color" class="form-control form-control-color" id="exampleColorInput" value="#563d7c" title="Choose your color">
</form>
{{< /example >}}