diff --git a/documentation/_api/_props.pug b/documentation/_api/_props.pug
index 8a26336..939de37 100644
--- a/documentation/_api/_props.pug
+++ b/documentation/_api/_props.pug
@@ -132,6 +132,18 @@ h2.typo__h2#sub-props(data-section) Props
li: kbd 'OK'
td.table__td Sets the text for the fallback button
+ tr.table__tr
+ td.table__td: strong fallbackInputType
+ td.table__td #[kbd String]
+ td.table__td: kbd 'text'
+ td.table__td
+ ul
+ li: kbd 'text'
+ li: kbd 'color'
+ td.table__td
+ | Sets the input type for the fallback input
+ | Use #[kbd 'text'] or #[kbd 'color']
+
tr.table__tr
td.table__td: strong inline
td.table__td #[kbd Boolean]
diff --git a/documentation/_examples/FallbackInputType.vue b/documentation/_examples/FallbackInputType.vue
new file mode 100644
index 0000000..f2bca1e
--- /dev/null
+++ b/documentation/_examples/FallbackInputType.vue
@@ -0,0 +1,32 @@
+
+
+
+ Please choose a color:
+
+
+
+
+
+
+
+
diff --git a/documentation/_examples/_examples.pug b/documentation/_examples/_examples.pug
index 2130687..db3470d 100644
--- a/documentation/_examples/_examples.pug
+++ b/documentation/_examples/_examples.pug
@@ -42,3 +42,8 @@
:markdown-it
If your user wants to use its own color you can use a fallback input and customizing it with `fallback-input-class`, `fallback-ok-class` and '`fallback-ok-text`'
+example('FallbackInput')
+
+ +subsection('Fallback Input + ColorPicker')
+ :markdown-it
+ You can set the fallback input type to `color` and get a visual color picker interface
+ +example('FallbackInputType')
diff --git a/documentation/_examples/index.js b/documentation/_examples/index.js
index 7b40348..aec33a3 100644
--- a/documentation/_examples/index.js
+++ b/documentation/_examples/index.js
@@ -7,6 +7,7 @@ import InlineSimple from './InlineSimple'
import InlineAdvanced from './InlineAdvanced'
import Exceptions from './Exceptions'
import FallbackInput from './FallbackInput'
+import FallbackInputType from './FallbackInputType'
export {
Simple,
@@ -17,5 +18,6 @@ export {
InlineSimple,
InlineAdvanced,
Exceptions,
- FallbackInput
+ FallbackInput,
+ FallbackInputType
}
diff --git a/src/Swatches.vue b/src/Swatches.vue
index 6de3ead..9ad5192 100644
--- a/src/Swatches.vue
+++ b/src/Swatches.vue
@@ -81,9 +81,9 @@