ColorPicker
MoleculeColor selection control with a 32-swatch preset palette plus optional hex input and native browser color picker for unlimited colors. Pixel-identical React sibling at modules/ui/ColorPicker.tsx. Used by RichTextEditor for text + highlight colors.
<%- include('modules/ui/ColorPicker', {
id: 'brand',
name: 'brand',
label: 'Brand color',
value: '#3b82f6',
showNoColor: true
}) %>
<%- include('modules/ui/ColorPicker', {
id: 'compact',
value: '#22c55e',
showHexInput: false,
showNativePicker: false
}) %>
<%- include('modules/ui/ColorPicker', {
id: 'bg',
label: 'Background',
swatches: [],
showHexInput: true,
showNativePicker: true,
showNoColor: true
}) %>
<%- include('./ColorPicker/ColorPicker', locals) %>