Skip to content

Instantly share code, notes, and snippets.

@audinue
Created January 30, 2025 18:33
Show Gist options
  • Save audinue/632f15b7d761c6b9af8c0d829b15084d to your computer and use it in GitHub Desktop.
Save audinue/632f15b7d761c6b9af8c0d829b15084d to your computer and use it in GitHub Desktop.
<div x-data="{ color: '#000000' }">
<div
class="rounded-sm size-4 relative cursor-pointer"
x-bind:style="'background-color: ' + color"
x-on:click="$refs.input.click()"
>
<input
x-ref="input"
type="color"
x-model="color"
class="size-0 absolute left-0 bottom-0"
/>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment