/** * * ColorPicker groups a collection of contents in tabs. * * [Live Demo](https://www.primevue.org/colorpicker/) * * @module colorpickerstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum ColorPickerClasses { /** * Class name of the root element */ root = 'p-colorpicker', /** * Class name of the preview element */ preview = 'p-colorpicker-preview', /** * Class name of the panel element */ panel = 'p-colorpicker-panel', /** * Class name of the color selector element */ colorSelector = 'p-colorpicker-color-selector', /** * Class name of the color background element */ colorBackground = 'p-colorpicker-color-background', /** * Class name of the color handle element */ colorHandle = 'p-colorpicker-color-handle', /** * Class name of the hue element */ hue = 'p-colorpicker-hue', /** * Class name of the hue handle element */ hueHandle = 'p-colorpicker-hue-handle' } export interface ColorPickerStyle extends BaseStyle {}