Skip to main content

Theming

You may easily customize the colors, icons, and favicon of your FilamentFlow application and panels directly in the config/filament-flow.php file.

Just place your logo and favicon in the public/images directory, update the paths in the config/filament-flow.php file, and make sure you've run php artisan storage:link (if you didn't use the guided installer)!

config/filament-flow.php
'colors' => [
'primary' => Filament\Support\Colors\Color::Lime,
],

'images' => [
'logo' => 'images/logo-banner.png',
'favicon' => 'images/ico/favicon.ico',
],

Images

You can customize the logo and favicon of your FilamentFlow application by setting the images key in the config/filament-flow.php file.

config/filament-flow.php
'images' => [
'logo' => 'images/logo-banner.png',
'favicon' => 'images/ico/favicon.ico',
],

Favicons

Default favicons are provided in the public/images/ico directory. You can replace these with your own favicons, or remove icons that aren't desired from the following file:

  • resources/views/partials/favicons.blade.php

We're a big fan of the very basic but very useful Dan's Tools Favicon Generator for creating favicons including the various sizes needed for different devices.

See Also