🎨 Flat, simple, multi-themed, responsive and hackable Color-Picker library. No dependencies, no jQuery. Compatible with all CSS Frameworks e.g. Bootstrap, Materialize. Supports alpha channel, rgba, hsla, hsva and more!
Chrome (latest version on Win 7 / Ubuntu 18.04) issues a lot of warnings:
[Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952
due to the code in pickr.js (lines 414-423 in version 1.7.0):
Chrome (latest version on Win 7 / Ubuntu 18.04) issues a lot of warnings:
[Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952
due to the code in pickr.js (lines 414-423 in version 1.7.0):
Adding 'passive: true' solves this: