Section Heading-Background-Color

Hi - Is it possible to change the background-color of a section-heading? I already tried the extraAttributes-way to add the section-danger-class (like it was in V2), but to no avail.
Thanks
Solution
yeah custom theme

Forms\Components\Section::make('Section')
  ->extraAttributes(['class' => 'nice'])


.nice { @apply bg-blue-500 }
.nice .fi-section-header { @apply bg-red-500 rounded-t-lg }
.nice .fi-section-header .fi-section-header-heading { @apply text-white }
Was this page helpful?