Overview
Aura Filament ships with 4 design presets that let you switch the entire visual style of your Filament panel without writing a single line of CSS. Each preset adjusts surfaces, shadows, backdrop blur, border radius, and more via CSS custom properties scoped to a data-aura-preset attribute selector.
Switching presets requires only a one-line change in your PHP panel configuration — no CSS rebuild needed.
Glass (Default)

The default preset. Inspired by modern glassmorphism UI with frosted surfaces and soft depth.
- Frosted glass effect with backdrop blur (6px on cards, 12px on modals/dropdowns)
- Warm off-white gradient background
- Semi-transparent card surfaces (
rgba(255, 255, 255, 0.85)) - Soft, diffuse shadows for a floating feel
- Rounded corners at
0.75rem(md)
use BlueStarSystem\AuraFilament\AuraFilamentPlugin;
use BlueStarSystem\AuraFilament\Enums\Preset;
use Filament\Support\Colors\Color;
AuraFilamentPlugin::make()
->preset(Preset::Glass) // default, can be omitted
->primaryColor(Color::Blue)
Properties
| Property | Value |
|---|---|
| Blur | 6px / 12px |
| Background | Warm off-white gradient |
| Card BG | rgba(255, 255, 255, 0.85) |
| Radius sm/md/lg | 0.5rem / 0.75rem / 1rem |
| Shadows | Soft diffuse |
| Badge glow | 0.12 / 0.2 |
Corporate

A clean, no-nonsense preset suited for enterprise dashboards and professional SaaS tools.
- No blur — fully opaque surfaces
- Pure white background (
#f9fafb) - Solid borders (
#e5e7eb) for clear element separation - Minimal shadows — flat, structured appearance
- Sharp corners (
0.375remsm,0.625remlg) - Dark solid sidebar (
#111827) for contrast - Badge glow disabled
AuraFilamentPlugin::make()
->preset(Preset::Corporate)
// or using the string alias:
->preset('corporate')
Properties
| Property | Value |
|---|---|
| Blur | None |
| Background | #f9fafb |
| Card BG | #ffffff |
| Radius sm/md/lg | 0.375rem / 0.5rem / 0.625rem |
| Shadows | Minimal |
| Badge glow | Disabled |
Warm

An approachable, earthy preset for lifestyle, hospitality, or wellness applications.
- No blur — solid surfaces with a warm tint
- Cream background tones (
#fefcf9) - Warm earthy borders (
#e8ddd0) - Warm-tinted box shadows
- Generous rounded corners (
0.875remmd,1.25remlg) - Warm dark sidebar
AuraFilamentPlugin::make()
->preset(Preset::Warm)
// or using the string alias:
->preset('warm')
Properties
| Property | Value |
|---|---|
| Blur | None |
| Background | #fefcf9 |
| Card BG | #fffdf9 |
| Radius sm/md/lg | 0.625rem / 0.875rem / 1.25rem |
| Shadows | Warm-tinted |
| Badge glow | 0.1 / 0.18 |
Midnight

A bold, high-contrast preset built for dark-first interfaces with neon accents.
- Strong blur (10px on cards, 16px on modals/dropdowns)
- Cool blue-gray gradient background
- Primary-tinted transparent borders
- Neon glow effects in dark mode
- Double focus ring with primary color glow
AuraFilamentPlugin::make()
->preset(Preset::Midnight)
// or using the string alias:
->preset('midnight')
Properties
| Property | Value |
|---|---|
| Blur | 10px / 16px |
| Background | Cool blue-gray gradient |
| Card BG | rgba(255, 255, 255, 0.8) |
| Radius sm/md/lg | 0.5rem / 0.75rem / 1rem |
| Shadows | Primary glow (dark mode) |
| Badge glow | 0.15 / 0.3 |
Comparison Table
| Feature | Glass | Corporate | Warm | Midnight |
|---|---|---|---|---|
| Blur | 6px / 12px | None | None | 10px / 16px |
| Radius sm | 0.5rem | 0.375rem | 0.625rem | 0.5rem |
| Radius md | 0.75rem | 0.5rem | 0.875rem | 0.75rem |
| Radius lg | 1rem | 0.625rem | 1.25rem | 1rem |
| Background | Warm off-white gradient | #f9fafb |
#fefcf9 |
Cool blue-gray gradient |
| Card BG | rgba(255,255,255,0.85) | #ffffff |
#fffdf9 |
rgba(255,255,255,0.8) |
| Shadows | Soft diffuse | Minimal | Warm-tinted | Primary glow (dark) |
| Badge Glow | 0.12 / 0.2 | Disabled | 0.1 / 0.18 | 0.15 / 0.3 |