What?! Yet another color picker? Yep, I wanted to learn svelte.
yarn add svelte-chroma-picker
npm i --save svelte-chroma-picker
To use it, simply import it as a svelte component.
<script>
import ChromaPicker from 'svelte-chroma-picker';
let color = '#fff';
</script>
<ChromaPicker bind:color />
Play with this example on Code Sandbox.
You have a few options at your disposal.
Check out the Demo.
I'm still working on making this 100% keyboard and screen reader accessible. Pull requests welcome!
MIT License - fork, modify and use however you want.