F
Filament3mo ago
morty

Can I customize css in `app.css` or am I required to create a custom theme?

Just wondering what the app.css file is even for if not customizations?
Solution:
If you are using panels then you need a custom theme. App.css could still be used for non filament pages. Think like a CMS for managing content and a frontend that is a consumer facing website. If you are using the packages stand alone then you would use app.css....
Jump to solution
5 Replies
Solution
awcodes
awcodes3mo ago
If you are using panels then you need a custom theme. App.css could still be used for non filament pages. Think like a CMS for managing content and a frontend that is a consumer facing website. If you are using the packages stand alone then you would use app.css.
morty
morty3mo ago
Great, thanks!
IWBW
IWBW2mo ago
Which app.css is this? I came here because I'm wondering where to put my custom styles. I'm looking at public/css/filament/filament/app.css. It doesn't look like a place where I want to put my custom CSS. Is there a way to register a separate stylesheet?
morty
morty2mo ago
It's in the theme.css file. You have to create a custom theme to modify styles: https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme
IWBW
IWBW2mo ago
Thank you. That makes sense