---
title: Installation
---

In your SvelteKit (or regular Svelte) project:

```bash
npm i slender-ui
```

#### If you're using TailwindCSS

At the top of your project's `app.css` or equivalent:

```css
@import 'slender-ui/app.css' layer(components);
...
```

And in `tailwind.config.cjs`:

```js
module.exports = {
  content: [..., require('slender-ui/purge')],
  ...
}
```

#### If you're _not_ using TailwindCSS

At the top of your `+layout.svelte`:

```js
<script>
  import 'slender-ui/app.css';
  ...
```
