Broadcast Padding Options Background images can be added to any broadcast and color themes can be enabled by theme classes.
Important Notes: The background should be the Background component.
Demo
Twig
{% set background %}
  {% set image %}
    // ..
  {% endset %}
  {% include '@bolt-components-background/background.twig' with {
    opacity: 'heavy',
    fill: 'gradient',
    items: [
      image
    ]
  } only %}
{% endset %}

{% include '@bolt-components-broadcast/broadcast.twig' with {
  background: background,
  // ..
} only %}
HTML
Not available in plain HTML. Please use Twig.