> ## 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 v4)

> Install Filament Nord Theme 2.x for Filament 4.

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

  <Step title="Add the theme to your Vite config">
    Add a new item to the `input` array of your `vite.config.js` file:

    ```js theme={null}
    'vendor/andreia/filament-nord-theme/resources/css/theme.css'
    ```
  </Step>

  <Step title="Build assets">
    ```bash theme={null}
    npm run build
    ```
  </Step>

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

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

You're all set!
