Click here to add the extension to your browser.
Copy codeimport ColorPicker from 'color-picker';
const picker = new ColorPicker();
picker.show();Copy code// Show the color picker
picker.show();
// Hide the color picker
picker.hide();
// Get the current color
const color = picker.getColor();
// Set the current color
picker.setColor('#ff0000');Color Picker works in modern browsers that support the HTML5 <input type="color"> element.
Built with