A color picker.
npm i svelte-color-well
<script>
// import it to your component/app
import ColorWell from 'svelte-color-well'
// your color
let yourColor
</script>
<!-- use the component initializes with a random color -->
<ColorWell/>
<!-- initialize color and use rbg sliders -->
<ColorWell
color='red'
type='rgb'
/>
<!-- bind color to variable -->
<ColorWell bind:color={yourColor} />
<!-- see it in action -->
<h1>{yourColor}</h1>