Can I display the colours from my default theme in the palettes?

Context

I want Hello Bruce to be able to retrieve my theme style settings to generate the post image. I want to customise the banner colours to match those of my WordPress/WooCommerce theme.

Yes, you can add to or replace the palettes using the hooks brucebanner_default_bg_colors and brucebanner_default_text_colors.

For the background:

add_action( 'brucebanner_default_bg_colors', 'mytheme_brucebanner_default_bg_colors' );
function mytheme_brucebanner_default_bg_colors() {
	return [
			'#6d1e84',
			'#54366f',
			'#e40043',
			'#92BFC5',
			'#000000',
			'#ffffff',
		];
}

For the text:

add_action( 'brucebanner_default_text_colors', 'mytheme_brucebanner_default_text_colors' );
function mytheme_brucebanner_default_text_colors() {
	return [
			'#6d1e84',
			'#54366f',
			'#e40043',
			'#92BFC5',
			'#000000',
			'#ffffff',
		];
}