mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
23 lines
529 B
JavaScript
23 lines
529 B
JavaScript
// Initialize Huebee color picker
|
|
var elem = document.querySelector('.color-input');
|
|
var hueb = new Huebee( elem, {
|
|
notation: 'hex',
|
|
saturations: 2,
|
|
customColors: [ '#d8224c', '#dd4814', '#ea0', '#19f', '#333' ],
|
|
className: 'light-picker',
|
|
hue0: 210
|
|
});
|
|
|
|
// Set custom color if defined
|
|
var color = getCookie('color');
|
|
if (color == null || color == '') {
|
|
color = '#2b8080';
|
|
}
|
|
hueb.setColor(color);
|
|
|
|
// Change event
|
|
hueb.on( 'change', function( color, hue, sat, lum ) {
|
|
setCookie('color',color,90);
|
|
})
|
|
|