HI, i'm using meta box to make a theme option and customizer page and i've got a problem with color field that is display as a simple text input.
[code]
array(
'name' => esc_html__( 'Primary color', 'ids' ),
'id' => 'primary-color',
'type' => 'color',
'value' => '',
'alpha_channel' => true,
'js_options' => array(
'palettes' => array(
'#125', '#459', '#78b', '#ab0', '#de3', '#f0f'
),
),
),
`
[/code]
Any help woul'd be apreciated ^^