A colour selective component for Vue 3. Fast and with small package size. Gradient and Solid in one! No dependency! Fully customisable!
- Ability to change mode instantly
- Change the value in the colour list
- Delete a value in the colour list
- New style variables
- New ui design
Don't forget to star for motivation :)
Try it now Live Demo
Download 1.1.9 to continue with the old version !!!
npm i @cyhnkckali/vue3-color-picker
yarn add @cyhnkckali/vue3-color-picker
import {Vue3ColorPicker} from '@cyhnkckali/vue3-color-picker';
import '@cyhnkckali/vue3-color-picker/dist/style.css'
<script setup>
import {Vue3ColorPicker} from '@cyhnkckali/vue3-color-picker';
</script>
<template>
<Vue3ColorPicker v-model="value" mode="solid" :showColorList="false" :showEyeDrop="false" type="RGBA"/>
<Vue3ColorPicker v-model="value" mode="gradient" :showColorList="false" :showEyeDrop="false"/>
</template>
Parameter | Type | Description |
---|---|---|
v-model |
string |
default '' |
mode |
string |
solid or gradient default gradient |
theme |
string |
light or dark default light |
type |
string |
Return colour value type HEX8 RGBA RGB HEX default HEX8 |
inputType |
string |
Input type of colour values RGB HSL HSV CMYK default RGB |
disabled |
boolean |
default false |
local |
object |
default { angle: '', positionX: '', positionY: '', solid: '', gradient: '', linear: '', radial: '', colorPalate: '', } |
colorListCount |
number |
Determines how many colours to keep in the colour list default 18 |
showColorList |
boolean |
default true |
showEyeDrop |
boolean |
default true Supports Chrome and Edge only |
showAlpha |
boolean |
default true |
showInputMenu |
boolean |
default true |
showInputSet |
boolean |
default true |
showPickerMode |
boolean |
default true |
iconClasses |
object |
default { ruler: '', eyeDroper: '', arrowDown: '', save: '', delete: '' } |
- Widget type to add