| Path : /home/vishqocm/vjmedia.in/wp-content/plugins/coblocks/src/components/block-gallery/shared/ |
| Current File : /home/vishqocm/vjmedia.in/wp-content/plugins/coblocks/src/components/block-gallery/shared/styles.js |
/**
* WordPress dependencies
*/
const { getColorClassName } = wp.blockEditor;
/**
* Background Classes.
*
* @param {Object} attributes The passed attributes.
* @returns {Object} the styles.
*/
function GalleryStyles( attributes ) {
const captionColorClass = getColorClassName( 'color', attributes.captionColor );
const styles = {
color: captionColorClass ? undefined : attributes.customCaptionColor,
};
return styles;
}
export default GalleryStyles;