Slick Scrollbar
Minimal, theme-friendly custom scrollbars for Filament panels.
Author:
Muazzam Ali Khan
Documentation
- 📖 About
- ✨ Features
- 📦 Installation
- ⚙️ Usage
- 🎨 Configuration & Customization
- 📸 Screenshots
- 📋 Requirements
- 🚀 Versioning
- 🔧 Development
- 📝 License
- ❤️ Credits
#📖 About
Slick Scrollbar is a lightweight plugin that gives your Filament v4 panels clean, theme-aware scrollbars.
It automatically inherits your panel’s colors (secondary → primary) and works seamlessly in both light and dark mode.
#✨ Features
- 🎨 Automatic theme colors — Uses panel secondary (500/600), or falls back to primary (500/600).
- 🎛️ Customizable — Override size, color, and hover color with CSS variables, hex, RGB, OKLCH, or Filament Color palettes.
- 🖥️ Cross-browser support — Works on Firefox, Chrome, Edge, and Safari.
- 🌗 Dark mode ready — Adapts to your Filament theme out of the box.
#📦 Installation
Install via Composer:
composer require muazzam/slick-scrollbar
Filament will auto-discover the service provider.
#⚙️ Usage
Enable the plugin in your panel provider:
use Muazzam\SlickScrollbar\SlickScrollbarPlugin;
public function panel(\Filament\Panel $panel): \Filament\Panel
{
return $panel->plugins([
SlickScrollbarPlugin::make(),
]);
}
That’s it 🎉 — scrollbars will automatically use your panel’s theme colors.
#🎨 Configuration & Customization
#Default behavior
If your panel defines custom colors:
->colors([
'primary' => \Filament\Support\Colors\Color::Amber,
'secondary' => \Filament\Support\Colors\Color::Cyan,
])
The plugin will use:
- Secondary: 500 for normal, 600 for hover
- If no secondary is defined → Primary: 500 for normal, 600 for hover
- If neither are set, the plugin falls back to safe defaults (amber / cyan).
#Override settings
use Filament\Support\Colors\Color;
SlickScrollbarPlugin::make()
->size('6px') // scrollbar width/height (default: 8px)
->palette('primary') // force panel palette ('primary' or 'secondary')
->color(Color::Amber) // use a Filament palette (500 normal, 600 auto for hover)
->hoverColor(Color::Amber, 700) // pick a custom shade
->color('#ef4444') // hex
->hoverColor('rgb(220 38 38)') // rgb()
->color('var(--primary-500)'); // reference CSS vars directly
#📸 Screenshots

#📋 Requirements
- PHP ^8.2
- Laravel ^10 | ^11 | ^12
- Filament ^4.0
#🚀 Versioning
- v1.x → Compatible with Filament v4
- Future Filament majors will get their own major version of this package (e.g. v2.x).
#🔧 Development
Clone and install:
git clone git@github.com:muazzam/slick-scrollbar.git
cd slick-scrollbar
composer install
In your app’s composer.json:
"repositories": [
{
"type": "path",
"url": "../slick-scrollbar",
"options": { "symlink": true }
}
]
Require it locally:
composer require muazzam/slick-scrollbar:*@dev
#📝 License
This package is open-sourced software licensed under the MIT license.
#❤️ Credits
- Muazzam Khan – Author
- Filament – Admin
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese