wplemon/control-wcag-auto-textcolor

Text Color control for the free version of the Gridd theme. Addon for the Kirki framework (v4.0 API).

v0.5 2020-07-24 12:19 UTC

README

Example:

new \WPLemon\Field\WCAGTextColor( [
	'settings'    => 'my_setting',
	'label'       => esc_html__( 'My Color Control', 'textdomain' ),
	'description' => esc_html__( 'A description here.', 'textdomain' ),
	'section'     => 'my_section',
	'default'     => '',
	'transport'   => 'postMessage',
	'choices'     => [
		'formComponent'   => 'ChromePicker',
		'backgroundColor' => 'test_accessible_textcolor_control_background', // setting-name or hardcoded color.
		'textColor'       => 'test_accessible_textcolor_control', // setting-name or hardcoded color.
		'show'            => [
			'auto'        => false,
			'recommended' => false,
			'custom'      => true,
		],
	],
	'sanitize_callback' => 'sanitize_text_field',
] );