> ## Documentation Index
> Fetch the complete documentation index at: https://docs.devdeia.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation (Filament v5)

> Install Filament Nord Theme 3.x for Filament 5.

<Steps>
  <Step title="Install via Composer">
    ```bash theme={null}
    composer require andreia/filament-nord-theme:"^3.0"
    ```
  </Step>

  <Step title="Register the plugin">
    ```php theme={null}
    use Andreia\FilamentNordTheme\FilamentNordThemePlugin;

    $panel
      ->plugin(FilamentNordThemePlugin::make())
    ```
  </Step>

  <Step title="Publish theme assets">
    ```bash theme={null}
    php artisan filament:assets
    ```
  </Step>

  <Step title="Import the theme in your custom theme.css">
    Add these lines to your custom Filament theme, e.g. `resources/css/filament/admin/theme.css`:

    ```css theme={null}
    @import '../../../../vendor/filament/filament/resources/css/theme.css';
    @import '../../../../vendor/andreia/filament-nord-theme/resources/css/theme.css';
    ```

    Then run:

    ```bash theme={null}
    npm run build
    ```
  </Step>
</Steps>

You're all set!
