Background colour of a panel
Hi, just wondering if there is a way to change the whole background colour of a panel in both light and dark mode?
Solution:Jump to solution
Using css you can.. filament provide class name like
fi-body
you can use this like
```css
.fi-body {
@apply bg-red-**
}...3 Replies
Solution
Using css you can.. filament provide class name like
fi-body
you can use this like
Check this for creating custom theme https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme
Ok, got it. Thank you!