···11+MIT License Copyright (c) 2025 flo-bit
22+33+Permission is hereby granted, free of
44+charge, to any person obtaining a copy of this software and associated
55+documentation files (the "Software"), to deal in the Software without
66+restriction, including without limitation the rights to use, copy, modify, merge,
77+publish, distribute, sublicense, and/or sell copies of the Software, and to
88+permit persons to whom the Software is furnished to do so, subject to the
99+following conditions:
1010+1111+The above copyright notice and this permission notice
1212+(including the next paragraph) shall be included in all copies or substantial
1313+portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1616+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1717+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
1818+EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1919+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2020+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121+THE SOFTWARE.
+9-72
packages/3d/README.md
···11# 🦊 fox ui
2233+svelte 5 + tailwind 4 ui kit, 3d components
44+55+- [Depth 3D](https://flo-bit.dev/ui-kit/components/3d/depth-3d)
66+- [Model Picker](https://flo-bit.dev/ui-kit/components/3d/model-picker)
77+- [Voxel Art](https://flo-bit.dev/ui-kit/components/3d/voxel-art)
88+39> **This is a public alpha release. Expect bugs and breaking changes.**
41055-svelte v5 + tailwind v4
1111+[See all components here](https://flo-bit.dev/ui-kit)
61277-[See all components here](https://flo-bit.dev/ui-kit)
1313+For a guide on how to use this ui kit, see the [Quickstart Guide](https://flo-bit.dev/ui-kit/docs/quick-start).
814915Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
10161111-## Quickstart
1212-1313-### 1. Create a new svelte project with tailwind css (including `@tailwindcss/typography` and `@tailwindcss/forms` plugins)
1414-1515-```bash
1616-npx sv create my-project
1717-```
1818-1919-### 2. Install fuchs-ui
2020-2121-```bash
2222-npm install @fuxui/base
2323-```
2424-2525-### 3. set theme variables in your app.css (changing `zinc` and `emerald` to your preferred colors, using find and replace).
2626-2727-```css
2828-@source "../node_modules/@fuxui";
2929-3030-@theme {
3131- --color-base-50: var(--color-zinc-50);
3232- --color-base-100: var(--color-zinc-100);
3333- --color-base-200: var(--color-zinc-200);
3434- --color-base-300: var(--color-zinc-300);
3535- --color-base-400: var(--color-zinc-400);
3636- --color-base-500: var(--color-zinc-500);
3737- --color-base-600: var(--color-zinc-600);
3838- --color-base-700: var(--color-zinc-700);
3939- --color-base-800: var(--color-zinc-800);
4040- --color-base-900: var(--color-zinc-900);
4141- --color-base-950: var(--color-zinc-950);
4242-4343- --color-accent-50: var(--color-emerald-50);
4444- --color-accent-100: var(--color-emerald-100);
4545- --color-accent-200: var(--color-emerald-200);
4646- --color-accent-300: var(--color-emerald-300);
4747- --color-accent-400: var(--color-emerald-400);
4848- --color-accent-500: var(--color-emerald-500);
4949- --color-accent-600: var(--color-emerald-600);
5050- --color-accent-700: var(--color-emerald-700);
5151- --color-accent-800: var(--color-emerald-800);
5252- --color-accent-900: var(--color-emerald-900);
5353- --color-accent-950: var(--color-emerald-950);
5454-}
5555-```
5656-5757-### 4. Use the components
5858-5959-```svelte
6060-<script>
6161- import { Button } from '@fuxui/base';
6262-</script>
6363-6464-<Button onclick={() => alert('clicked')}>Click me</Button>
6565-```
6666-6767-## Development
6868-6969-If you want to contribute to the project, please open an issue first describing the feature you want to add.
7070-7171-Clone the repo, install dependencies and run the dev server
7272-7373-```bash
7474-git clone https://github.com/flo-bit/ui-kit.git
7575-cd ui-kit
7676-pnpm install
7777-pnpm run dev
7878-```
7979-8080-The ui-kit library is located in `packages/` (`packages/base` for the base package), the documentation is in `apps/docs`.
1717+For more information about development, contributing and the like, see the main [README](https://github.com/flo-bit/ui-kit/blob/main/README.md).
···11+MIT License Copyright (c) 2025 flo-bit
22+33+Permission is hereby granted, free of
44+charge, to any person obtaining a copy of this software and associated
55+documentation files (the "Software"), to deal in the Software without
66+restriction, including without limitation the rights to use, copy, modify, merge,
77+publish, distribute, sublicense, and/or sell copies of the Software, and to
88+permit persons to whom the Software is furnished to do so, subject to the
99+following conditions:
1010+1111+The above copyright notice and this permission notice
1212+(including the next paragraph) shall be included in all copies or substantial
1313+portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1616+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1717+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
1818+EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1919+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2020+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121+THE SOFTWARE.
+32-72
packages/base/README.md
···11# 🦊 fox ui
2233-> **This is a public alpha release. Expect bugs and breaking changes.**
44-55-svelte v5 + tailwind v4
66-77-[See all components here](https://flo-bit.dev/ui-kit)
88-99-Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
1010-1111-## Quickstart
1212-1313-### 1. Create a new svelte project with tailwind css (including `@tailwindcss/typography` and `@tailwindcss/forms` plugins)
1414-1515-```bash
1616-npx sv create my-project
1717-```
1818-1919-### 2. Install fuchs-ui
2020-2121-```bash
2222-npm install @fuxui/base
2323-```
2424-2525-### 3. set theme variables in your app.css (changing `zinc` and `emerald` to your preferred colors, using find and replace).
2626-2727-```css
2828-@source "../node_modules/@fuxui";
2929-3030-@theme {
3131- --color-base-50: var(--color-zinc-50);
3232- --color-base-100: var(--color-zinc-100);
3333- --color-base-200: var(--color-zinc-200);
3434- --color-base-300: var(--color-zinc-300);
3535- --color-base-400: var(--color-zinc-400);
3636- --color-base-500: var(--color-zinc-500);
3737- --color-base-600: var(--color-zinc-600);
3838- --color-base-700: var(--color-zinc-700);
3939- --color-base-800: var(--color-zinc-800);
4040- --color-base-900: var(--color-zinc-900);
4141- --color-base-950: var(--color-zinc-950);
4242-4343- --color-accent-50: var(--color-emerald-50);
4444- --color-accent-100: var(--color-emerald-100);
4545- --color-accent-200: var(--color-emerald-200);
4646- --color-accent-300: var(--color-emerald-300);
4747- --color-accent-400: var(--color-emerald-400);
4848- --color-accent-500: var(--color-emerald-500);
4949- --color-accent-600: var(--color-emerald-600);
5050- --color-accent-700: var(--color-emerald-700);
5151- --color-accent-800: var(--color-emerald-800);
5252- --color-accent-900: var(--color-emerald-900);
5353- --color-accent-950: var(--color-emerald-950);
5454-}
5555-```
33+svelte 5 + tailwind 4 ui kit, base components
5645757-### 4. Use the components
5858-5959-```svelte
6060-<script>
6161- import { Button } from '@fuxui/base';
6262-</script>
6363-6464-<Button onclick={() => alert('clicked')}>Click me</Button>
6565-```
55+- [Accordion](https://flo-bit.dev/ui-kit/components/base/accordion)
66+- [Alert](https://flo-bit.dev/ui-kit/components/base/alert)
77+- [Avatar](https://flo-bit.dev/ui-kit/components/base/avatar)
88+- [Badge](https://flo-bit.dev/ui-kit/components/base/badge)
99+- [Box](https://flo-bit.dev/ui-kit/components/base/box)
1010+- [Button](https://flo-bit.dev/ui-kit/components/base/button)
1111+- [Card](https://flo-bit.dev/ui-kit/components/base/cards)
1212+- [Chat Bubble](https://flo-bit.dev/ui-kit/components/base/chat-bubble)
1313+- [Checkbox](https://flo-bit.dev/ui-kit/components/base/checkbox)
1414+- [Head](https://flo-bit.dev/ui-kit/components/base/head)
1515+- [Heading](https://flo-bit.dev/ui-kit/components/base/image)
1616+- [Modals](https://flo-bit.dev/ui-kit/components/base/modal)
1717+- [Number Input](https://flo-bit.dev/ui-kit/components/base/number-input)
1818+- [Popover](https://flo-bit.dev/ui-kit/components/base/popover)
1919+- [Prose](https://flo-bit.dev/ui-kit/components/base/prose)
2020+- [Scroll Area](https://flo-bit.dev/ui-kit/components/base/scroll-area)
2121+- [Select](https://flo-bit.dev/ui-kit/components/base/select)
2222+- [Sidebar](https://flo-bit.dev/ui-kit/components/base/sidebar)
2323+- [Slider](https://flo-bit.dev/ui-kit/components/base/slider)
2424+- [Sonner](https://flo-bit.dev/ui-kit/components/base/sonner)
2525+- [Switch](https://flo-bit.dev/ui-kit/components/base/switch)
2626+- [Tabs](https://flo-bit.dev/ui-kit/components/base/tabs)
2727+- [Textarea](https://flo-bit.dev/ui-kit/components/base/textarea)
2828+- [Toggle](https://flo-bit.dev/ui-kit/components/base/toggle)
2929+- [Toggle Group](https://flo-bit.dev/ui-kit/components/base/toggle-group)
3030+- [Tooltip](https://flo-bit.dev/ui-kit/components/base/tooltip)
66316767-## Development
3232+> **This is a public alpha release. Expect bugs and breaking changes.**
68336969-If you want to contribute to the project, please open an issue first describing the feature you want to add.
3434+[See all components here](https://flo-bit.dev/ui-kit)
70357171-Clone the repo, install dependencies and run the dev server
3636+For a guide on how to use this ui kit, see the [Quickstart Guide](https://flo-bit.dev/ui-kit/docs/quick-start).
72377373-```bash
7474-git clone https://github.com/flo-bit/ui-kit.git
7575-cd ui-kit
7676-pnpm install
7777-pnpm run dev
7878-```
3838+Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
79398080-The ui-kit library is located in `packages/` (`packages/base` for the base package), the documentation is in `apps/docs`.
4040+For more information about development, contributing and the like, see the main [README](https://github.com/flo-bit/ui-kit/blob/main/README.md).
···11+MIT License Copyright (c) 2025 flo-bit
22+33+Permission is hereby granted, free of
44+charge, to any person obtaining a copy of this software and associated
55+documentation files (the "Software"), to deal in the Software without
66+restriction, including without limitation the rights to use, copy, modify, merge,
77+publish, distribute, sublicense, and/or sell copies of the Software, and to
88+permit persons to whom the Software is furnished to do so, subject to the
99+following conditions:
1010+1111+The above copyright notice and this permission notice
1212+(including the next paragraph) shall be included in all copies or substantial
1313+portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1616+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1717+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
1818+EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1919+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2020+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121+THE SOFTWARE.
+10-31
packages/colors/README.md
···11-# sv
11+# 🦊 fox ui
2233-Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
33+svelte 5 + tailwind 4 ui kit, colors components
4455-## Creating a project
55+- [Color Gradient Picker](https://flo-bit.dev/ui-kit/components/colors/color-gradient-picker)
66+- [Color Picker](https://flo-bit.dev/ui-kit/components/colors/color-picker)
77+- [Color Select](https://flo-bit.dev/ui-kit/components/colors/color-select)
6877-If you're seeing this, you've probably already done this step. Congrats!
99+> **This is a public alpha release. Expect bugs and breaking changes.**
81099-```bash
1010-# create a new project in the current directory
1111-npx sv create
1111+[See all components here](https://flo-bit.dev/ui-kit)
12121313-# create a new project in my-app
1414-npx sv create my-app
1515-```
1313+For a guide on how to use this ui kit, see the [Quickstart Guide](https://flo-bit.dev/ui-kit/docs/quick-start).
16141717-## Developing
1515+Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
18161919-Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
2020-2121-```bash
2222-npm run dev
2323-2424-# or start the server and open the app in a new browser tab
2525-npm run dev -- --open
2626-```
2727-2828-## Building
2929-3030-To create a production version of your app:
3131-3232-```bash
3333-npm run build
3434-```
3535-3636-You can preview the production build with `npm run preview`.
3737-3838-> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
1717+For more information about development, contributing and the like, see the main [README](https://github.com/flo-bit/ui-kit/blob/main/README.md).
···11+MIT License Copyright (c) 2025 Florian
22+33+Permission is hereby granted, free of
44+charge, to any person obtaining a copy of this software and associated
55+documentation files (the "Software"), to deal in the Software without
66+restriction, including without limitation the rights to use, copy, modify, merge,
77+publish, distribute, sublicense, and/or sell copies of the Software, and to
88+permit persons to whom the Software is furnished to do so, subject to the
99+following conditions:
1010+1111+The above copyright notice and this permission notice
1212+(including the next paragraph) shall be included in all copies or substantial
1313+portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1616+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1717+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
1818+EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1919+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2020+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121+THE SOFTWARE.
+12-72
packages/social/README.md
···11# 🦊 fox ui
2233-> **This is a public alpha release. Expect bugs and breaking changes.**
44-55-svelte v5 + tailwind v4
66-77-[See all components here](https://flo-bit.dev/ui-kit)
88-99-Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
1010-1111-## Quickstart
1212-1313-### 1. Create a new svelte project with tailwind css (including `@tailwindcss/typography` and `@tailwindcss/forms` plugins)
1414-1515-```bash
1616-npx sv create my-project
1717-```
1818-1919-### 2. Install fuchs-ui
2020-2121-```bash
2222-npm install @fuxui/base
2323-```
2424-2525-### 3. set theme variables in your app.css (changing `zinc` and `emerald` to your preferred colors, using find and replace).
2626-2727-```css
2828-@source "../node_modules/@fuxui";
2929-3030-@theme {
3131- --color-base-50: var(--color-zinc-50);
3232- --color-base-100: var(--color-zinc-100);
3333- --color-base-200: var(--color-zinc-200);
3434- --color-base-300: var(--color-zinc-300);
3535- --color-base-400: var(--color-zinc-400);
3636- --color-base-500: var(--color-zinc-500);
3737- --color-base-600: var(--color-zinc-600);
3838- --color-base-700: var(--color-zinc-700);
3939- --color-base-800: var(--color-zinc-800);
4040- --color-base-900: var(--color-zinc-900);
4141- --color-base-950: var(--color-zinc-950);
4242-4343- --color-accent-50: var(--color-emerald-50);
4444- --color-accent-100: var(--color-emerald-100);
4545- --color-accent-200: var(--color-emerald-200);
4646- --color-accent-300: var(--color-emerald-300);
4747- --color-accent-400: var(--color-emerald-400);
4848- --color-accent-500: var(--color-emerald-500);
4949- --color-accent-600: var(--color-emerald-600);
5050- --color-accent-700: var(--color-emerald-700);
5151- --color-accent-800: var(--color-emerald-800);
5252- --color-accent-900: var(--color-emerald-900);
5353- --color-accent-950: var(--color-emerald-950);
5454-}
5555-```
33+svelte 5 + tailwind 4 ui kit, social components
5645757-### 4. Use the components
5858-5959-```svelte
6060-<script>
6161- import { Button } from '@fuxui/base';
6262-</script>
6363-6464-<Button onclick={() => alert('clicked')}>Click me</Button>
6565-```
55+- [Bluesky Login](https://flo-bit.dev/ui-kit/components/social/bluesky-login)
66+- [Card Swiper](https://flo-bit.dev/ui-kit/components/social/card-swiper)
77+- [Emoji Picker](https://flo-bit.dev/ui-kit/components/social/emoji-picker)
88+- [Github Corner](https://flo-bit.dev/ui-kit/components/social/github-corner)
99+- [Star Rating](https://flo-bit.dev/ui-kit/components/social/star-rating)
1010+- [User Profile](https://flo-bit.dev/ui-kit/components/social/user-profile)
66116767-## Development
1212+> **This is a public alpha release. Expect bugs and breaking changes.**
68136969-If you want to contribute to the project, please open an issue first describing the feature you want to add.
1414+[See all components here](https://flo-bit.dev/ui-kit)
70157171-Clone the repo, install dependencies and run the dev server
1616+For a guide on how to use this ui kit, see the [Quickstart Guide](https://flo-bit.dev/ui-kit/docs/quick-start).
72177373-```bash
7474-git clone https://github.com/flo-bit/ui-kit.git
7575-cd ui-kit
7676-pnpm install
7777-pnpm run dev
7878-```
1818+Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
79198080-The ui-kit library is located in `packages/` (`packages/base` for the base package), the documentation is in `apps/docs`.
2020+For more information about development, contributing and the like, see the main [README](https://github.com/flo-bit/ui-kit/blob/main/README.md).
···11+MIT License Copyright (c) 2025 flo-bit
22+33+Permission is hereby granted, free of
44+charge, to any person obtaining a copy of this software and associated
55+documentation files (the "Software"), to deal in the Software without
66+restriction, including without limitation the rights to use, copy, modify, merge,
77+publish, distribute, sublicense, and/or sell copies of the Software, and to
88+permit persons to whom the Software is furnished to do so, subject to the
99+following conditions:
1010+1111+The above copyright notice and this permission notice
1212+(including the next paragraph) shall be included in all copies or substantial
1313+portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1616+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1717+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
1818+EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1919+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2020+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121+THE SOFTWARE.
+8-72
packages/text/README.md
···11# 🦊 fox ui
2233-> **This is a public alpha release. Expect bugs and breaking changes.**
44-55-svelte v5 + tailwind v4
66-77-[See all components here](https://flo-bit.dev/ui-kit)
88-99-Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
1010-1111-## Quickstart
1212-1313-### 1. Create a new svelte project with tailwind css (including `@tailwindcss/typography` and `@tailwindcss/forms` plugins)
1414-1515-```bash
1616-npx sv create my-project
1717-```
1818-1919-### 2. Install fuchs-ui
2020-2121-```bash
2222-npm install @fuxui/base
2323-```
2424-2525-### 3. set theme variables in your app.css (changing `zinc` and `emerald` to your preferred colors, using find and replace).
2626-2727-```css
2828-@source "../node_modules/@fuxui";
2929-3030-@theme {
3131- --color-base-50: var(--color-zinc-50);
3232- --color-base-100: var(--color-zinc-100);
3333- --color-base-200: var(--color-zinc-200);
3434- --color-base-300: var(--color-zinc-300);
3535- --color-base-400: var(--color-zinc-400);
3636- --color-base-500: var(--color-zinc-500);
3737- --color-base-600: var(--color-zinc-600);
3838- --color-base-700: var(--color-zinc-700);
3939- --color-base-800: var(--color-zinc-800);
4040- --color-base-900: var(--color-zinc-900);
4141- --color-base-950: var(--color-zinc-950);
4242-4343- --color-accent-50: var(--color-emerald-50);
4444- --color-accent-100: var(--color-emerald-100);
4545- --color-accent-200: var(--color-emerald-200);
4646- --color-accent-300: var(--color-emerald-300);
4747- --color-accent-400: var(--color-emerald-400);
4848- --color-accent-500: var(--color-emerald-500);
4949- --color-accent-600: var(--color-emerald-600);
5050- --color-accent-700: var(--color-emerald-700);
5151- --color-accent-800: var(--color-emerald-800);
5252- --color-accent-900: var(--color-emerald-900);
5353- --color-accent-950: var(--color-emerald-950);
5454-}
5555-```
5656-5757-### 4. Use the components
5858-5959-```svelte
6060-<script>
6161- import { Button } from '@fuxui/base';
6262-</script>
33+svelte 5 + tailwind 4 ui kit, text components
6346464-<Button onclick={() => alert('clicked')}>Click me</Button>
6565-```
55+- [Plain Text Editor](https://flo-bit.dev/ui-kit/components/text/plain-text-editor)
66+- [Rich Text Editor](https://flo-bit.dev/ui-kit/components/text/rich-text-editor)
6676767-## Development
88+> **This is a public alpha release. Expect bugs and breaking changes.**
6896969-If you want to contribute to the project, please open an issue first describing the feature you want to add.
1010+[See all components here](https://flo-bit.dev/ui-kit)
70117171-Clone the repo, install dependencies and run the dev server
1212+For a guide on how to use this ui kit, see the [Quickstart Guide](https://flo-bit.dev/ui-kit/docs/quick-start).
72137373-```bash
7474-git clone https://github.com/flo-bit/ui-kit.git
7575-cd ui-kit
7676-pnpm install
7777-pnpm run dev
7878-```
1414+Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
79158080-The ui-kit library is located in `packages/` (`packages/base` for the base package), the documentation is in `apps/docs`.
1616+For more information about development, contributing and the like, see the main [README](https://github.com/flo-bit/ui-kit/blob/main/README.md).
···11+MIT License Copyright (c) 2025 flo-bit
22+33+Permission is hereby granted, free of
44+charge, to any person obtaining a copy of this software and associated
55+documentation files (the "Software"), to deal in the Software without
66+restriction, including without limitation the rights to use, copy, modify, merge,
77+publish, distribute, sublicense, and/or sell copies of the Software, and to
88+permit persons to whom the Software is furnished to do so, subject to the
99+following conditions:
1010+1111+The above copyright notice and this permission notice
1212+(including the next paragraph) shall be included in all copies or substantial
1313+portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1616+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1717+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
1818+EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1919+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2020+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121+THE SOFTWARE.
+8-72
packages/time/README.md
···11# 🦊 fox ui
2233-> **This is a public alpha release. Expect bugs and breaking changes.**
44-55-svelte v5 + tailwind v4
66-77-[See all components here](https://flo-bit.dev/ui-kit)
88-99-Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
1010-1111-## Quickstart
1212-1313-### 1. Create a new svelte project with tailwind css (including `@tailwindcss/typography` and `@tailwindcss/forms` plugins)
1414-1515-```bash
1616-npx sv create my-project
1717-```
1818-1919-### 2. Install fuchs-ui
2020-2121-```bash
2222-npm install @fuxui/base
2323-```
2424-2525-### 3. set theme variables in your app.css (changing `zinc` and `emerald` to your preferred colors, using find and replace).
2626-2727-```css
2828-@source "../node_modules/@fuxui";
2929-3030-@theme {
3131- --color-base-50: var(--color-zinc-50);
3232- --color-base-100: var(--color-zinc-100);
3333- --color-base-200: var(--color-zinc-200);
3434- --color-base-300: var(--color-zinc-300);
3535- --color-base-400: var(--color-zinc-400);
3636- --color-base-500: var(--color-zinc-500);
3737- --color-base-600: var(--color-zinc-600);
3838- --color-base-700: var(--color-zinc-700);
3939- --color-base-800: var(--color-zinc-800);
4040- --color-base-900: var(--color-zinc-900);
4141- --color-base-950: var(--color-zinc-950);
4242-4343- --color-accent-50: var(--color-emerald-50);
4444- --color-accent-100: var(--color-emerald-100);
4545- --color-accent-200: var(--color-emerald-200);
4646- --color-accent-300: var(--color-emerald-300);
4747- --color-accent-400: var(--color-emerald-400);
4848- --color-accent-500: var(--color-emerald-500);
4949- --color-accent-600: var(--color-emerald-600);
5050- --color-accent-700: var(--color-emerald-700);
5151- --color-accent-800: var(--color-emerald-800);
5252- --color-accent-900: var(--color-emerald-900);
5353- --color-accent-950: var(--color-emerald-950);
5454-}
5555-```
5656-5757-### 4. Use the components
5858-5959-```svelte
6060-<script>
6161- import { Button } from '@fuxui/base';
6262-</script>
33+svelte 5 + tailwind 4 ui kit, time components
6346464-<Button onclick={() => alert('clicked')}>Click me</Button>
6565-```
55+- [Stopwatch](https://flo-bit.dev/ui-kit/components/time/stopwatch)
66+- [Timer](https://flo-bit.dev/ui-kit/components/time/timer)
6676767-## Development
88+> **This is a public alpha release. Expect bugs and breaking changes.**
6896969-If you want to contribute to the project, please open an issue first describing the feature you want to add.
1010+[See all components here](https://flo-bit.dev/ui-kit)
70117171-Clone the repo, install dependencies and run the dev server
1212+For a guide on how to use this ui kit, see the [Quickstart Guide](https://flo-bit.dev/ui-kit/docs/quick-start).
72137373-```bash
7474-git clone https://github.com/flo-bit/ui-kit.git
7575-cd ui-kit
7676-pnpm install
7777-pnpm run dev
7878-```
1414+Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
79158080-The ui-kit library is located in `packages/` (`packages/base` for the base package), the documentation is in `apps/docs`.
1616+For more information about development, contributing and the like, see the main [README](https://github.com/flo-bit/ui-kit/blob/main/README.md).
···11+MIT License Copyright (c) 2025 flo-bit
22+33+Permission is hereby granted, free of
44+charge, to any person obtaining a copy of this software and associated
55+documentation files (the "Software"), to deal in the Software without
66+restriction, including without limitation the rights to use, copy, modify, merge,
77+publish, distribute, sublicense, and/or sell copies of the Software, and to
88+permit persons to whom the Software is furnished to do so, subject to the
99+following conditions:
1010+1111+The above copyright notice and this permission notice
1212+(including the next paragraph) shall be included in all copies or substantial
1313+portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1616+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1717+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
1818+EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1919+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2020+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121+THE SOFTWARE.
+12-72
packages/visual/README.md
···11# 🦊 fox ui
2233-> **This is a public alpha release. Expect bugs and breaking changes.**
44-55-svelte v5 + tailwind v4
66-77-[See all components here](https://flo-bit.dev/ui-kit)
88-99-Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
1010-1111-## Quickstart
1212-1313-### 1. Create a new svelte project with tailwind css (including `@tailwindcss/typography` and `@tailwindcss/forms` plugins)
1414-1515-```bash
1616-npx sv create my-project
1717-```
1818-1919-### 2. Install fuchs-ui
2020-2121-```bash
2222-npm install @fuxui/base
2323-```
2424-2525-### 3. set theme variables in your app.css (changing `zinc` and `emerald` to your preferred colors, using find and replace).
2626-2727-```css
2828-@source "../node_modules/@fuxui";
2929-3030-@theme {
3131- --color-base-50: var(--color-zinc-50);
3232- --color-base-100: var(--color-zinc-100);
3333- --color-base-200: var(--color-zinc-200);
3434- --color-base-300: var(--color-zinc-300);
3535- --color-base-400: var(--color-zinc-400);
3636- --color-base-500: var(--color-zinc-500);
3737- --color-base-600: var(--color-zinc-600);
3838- --color-base-700: var(--color-zinc-700);
3939- --color-base-800: var(--color-zinc-800);
4040- --color-base-900: var(--color-zinc-900);
4141- --color-base-950: var(--color-zinc-950);
4242-4343- --color-accent-50: var(--color-emerald-50);
4444- --color-accent-100: var(--color-emerald-100);
4545- --color-accent-200: var(--color-emerald-200);
4646- --color-accent-300: var(--color-emerald-300);
4747- --color-accent-400: var(--color-emerald-400);
4848- --color-accent-500: var(--color-emerald-500);
4949- --color-accent-600: var(--color-emerald-600);
5050- --color-accent-700: var(--color-emerald-700);
5151- --color-accent-800: var(--color-emerald-800);
5252- --color-accent-900: var(--color-emerald-900);
5353- --color-accent-950: var(--color-emerald-950);
5454-}
5555-```
33+svelte 5 + tailwind 4 ui kit, visual components
5645757-### 4. Use the components
5858-5959-```svelte
6060-<script>
6161- import { Button } from '@fuxui/base';
6262-</script>
6363-6464-<Button onclick={() => alert('clicked')}>Click me</Button>
6565-```
55+- [Confetti](https://flo-bit.dev/ui-kit/components/visual/confetti)
66+- [Excalidraw](https://flo-bit.dev/ui-kit/components/visual/excalidraw)
77+- [Image Masonry](https://flo-bit.dev/ui-kit/components/visual/image-masonry)
88+- [Phone](https://flo-bit.dev/ui-kit/components/visual/phone)
99+- [Quote](https://flo-bit.dev/ui-kit/components/visual/quote)
1010+- [Undraw](https://flo-bit.dev/ui-kit/components/visual/undraw)
66116767-## Development
1212+> **This is a public alpha release. Expect bugs and breaking changes.**
68136969-If you want to contribute to the project, please open an issue first describing the feature you want to add.
1414+[See all components here](https://flo-bit.dev/ui-kit)
70157171-Clone the repo, install dependencies and run the dev server
1616+For a guide on how to use this ui kit, see the [Quickstart Guide](https://flo-bit.dev/ui-kit/docs/quick-start).
72177373-```bash
7474-git clone https://github.com/flo-bit/ui-kit.git
7575-cd ui-kit
7676-pnpm install
7777-pnpm run dev
7878-```
1818+Read more about [the philosophy/aim of this project here](https://flo-bit.dev/ui-kit/docs/philosophy).
79198080-The ui-kit library is located in `packages/` (`packages/base` for the base package), the documentation is in `apps/docs`.
2020+For more information about development, contributing and the like, see the main [README](https://github.com/flo-bit/ui-kit/blob/main/README.md).