Theming Filament: From Default to Designed in One Command
Filament is a fantastic admin panel builder, but every default Filament panel looks like every other default Filament panel. If you are shipping an admin to clients or building a product, you want it to look like yours — branded, polished, distinct. The usual answer is hand-writing a custom theme, fighting Filament's CSS and maintaining overrides as the framework evolves. There is a faster way.
The one-command approach
Aura Filament is a complete theme and UX layer for Filament v4. Instead of writing CSS, you install it and run one command:
composer require bluestarsystem/aura-filament
php artisan aura-filament:install
That registers the theme, wires up the plugin, and scaffolds a config file. Your panel goes from "default Filament" to "designed" in under a minute.
What you get
Aura Filament is not just a colour swap. It is a UX kit:
- Colour presets — switch the entire panel's palette from a curated set, or define your own.
- An in-panel theme configurator — let admins tweak colours and layout live, and save shareable presets.
- Branded authentication pages — your logo and colours on login, registration and password reset.
- A command palette — Cmd-K navigation across resources and actions.
- A dashboard customizer, email theming, and a guided-tour helper.
Themed table columns and form fields
Beyond the panel chrome, Aura Filament themes the building blocks you use every day — table columns and form fields inherit the Aura design language, so your resources look cohesive without per-field styling. Pair that with the Aura Pro DataTable in your custom Livewire pages and your whole admin — Filament resources and bespoke pages alike — shares one visual system.
Why this beats a hand-rolled theme
A hand-written Filament theme is a liability: it breaks on framework upgrades, drifts from your main app's design, and needs a developer every time the brand changes. Aura Filament is maintained against Filament releases, follows the same Vibrant Depth design language as the rest of the Aura ecosystem, and exposes its options through config and a UI — so non-developers can rebrand without touching code.
Getting started
If you already use Aura UI components in your front end, Aura Filament makes the admin match automatically. If you are Filament-only, it is still the fastest path to a professional-looking panel:
composer require bluestarsystem/aura-filament
php artisan aura-filament:install
Then pick a preset, drop in your logo, and you are done. See everything it includes on the Aura Filament page, or view Pro pricing to unlock the full component set alongside it.