···24242525You can try it out by setting the current theme colors in the navbar for this documentation site.
26262727+## Copying components vs installing packages
2828+2929+I'm a big fan of the philosophy of copying components (shadcn-style) for better customization, but also I think the quickest way to build something is to just install the package and use it.
3030+3131+So the plan is to have both options (currently only installing as a package is available, but you can copy what you need from the [source code](https://github.com/flo-bit/ui-kit/tree/main/src/lib/components/base) though some imports might need to be adjusted).
3232+2733## Lots of components
28342935While currently only the base components are visible, there are lots of components in the pipeline.
···5763- [model-picker](/ui-kit/components/3d/model-picker/)
5864- [voxel-art](/ui-kit/components/3d/voxel-art/)
59656060-If you have any suggestions for components, please open an issue on [github](https://github.com/flo-bit/ui-kit/issues).
6666+## Dark mode
6767+6868+This ui kit is designed to be used in both light and dark mode (and switch automatically depending on system settings).
6969+If you want to disable dark mode, add the following to your app.css:
7070+7171+```css
7272+@custom-variant dark (&:is(.dark *));
7373+```
7474+7575+7676+## Contributing/Feedback
7777+7878+If you have any suggestions for components or feedback in general, please open an issue on [github](https://github.com/flo-bit/ui-kit/issues).
61796280Also feel free to contribute yourself, preferably by first opening an issue about the component/feature you want to add!