andreia / filament-nord-theme
A minimalist Arctic Nord theme for FilamentPHP
Fund package maintenance!
andreia
Requires
- php: ^8.1
- filament/filament: ^3.0
- illuminate/contracts: ^10.0|^11.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^8.1.1||^7.10.0
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.1
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- pestphp/pest-plugin-livewire: ^2.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
README
Filament Nord Theme
A light and dark arctic Nord theme for Filament PHP.
Installation
composer require andreia/filament-nord-theme
To install the theme's required JS libraries (install TailwindCSS plugins: forms, typography, and also postcss, and autoprefixer. Create postcss.config.js if it not exists yet), run:
php artisan filament-nord-theme:install
Add a new item to the input
array of your vite.config.js
file:
'vendor/andreia/filament-nord-theme/resources/css/theme.css'
Run:
npm run build
Register the plugin on your panel (e.g. /app/Providers/Filament/AdminPanelProvider.php
):
use Andreia\FilamentNordTheme\FilamentNordThemePlugin; $panel ->plugin(FilamentNordThemePlugin::make())