This release enhances how the rounded top corner (top-left in LTR, top-right in RTL) is rendered in the main content.
Improvements
Added support for scanning Filament directories for custom components and widgets.
Full Changelog: https://github.com/resmatech/filament-awin-theme/compare/v1.1.0...1.1.1
Filament Awin Theme v1.1.0
Added
🎨 Primary Color Customization You can now set a custom primary color for your Filament panel using the plugin.
Usage Examples Using Filament Color Palettes:
use Resma\FilamentAwinTheme\FilamentAwinTheme;
use Filament\Support\Colors\Color;
$panel
->plugins([
FilamentAwinTheme::make()
->primaryColor(Color::Emerald); // Use a Filament palette
]);
Using a Custom Hex Color:
FilamentAwinTheme::make()
->primaryColor('#3b82f6'); // Any custom color
How can I help you explore Laravel packages today?