Created
January 30, 2025 18:33
-
-
Save audinue/632f15b7d761c6b9af8c0d829b15084d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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