···1919### 2. Install fuchs
20202121```bash
2222-npm install fuchs
2222+npm install @fuxui/base
2323```
24242525### 3. set theme variables in your app.css (changing `zinc` and `emerald` to your preferred colors, using find and replace).
26262727```css
2828-@source "../node_modules/fuchs";
2828+@source "../node_modules/@fuxui";
29293030@theme {
3131 --color-base-50: var(--color-zinc-50);
···58585959```svelte
6060<script>
6161- import { Button } from 'fuchs';
6161+ import { Button } from '@fuxui/base';
6262</script>
63636464<Button onclick={() => alert('clicked')}>Click me</Button>
···7373```bash
7474git clone https://github.com/flo-bit/ui-kit.git
7575cd ui-kit
7676-npm install
7777-npm run dev
7676+pnpm install
7777+pnpm run dev
7878```
79798080-The ui-kit library is located in `src/lib`, the documentation is in `src/docs`.
8080+This ui kit is organized as a monorepo, with `apps/docs` being the documentation and the ui-kit library being split into multiple packages in `packages/`.