···1212## Usage
13131414```svelte
1515+<script>
1616+ import { Box } from 'fox-ui-svelte';
1717+</script>
1818+1519<Box class="text-sm">
1620 This is a box, put your stuff here.
1721</Box>
···11# Head
2233+Sets title, description, open graph image, url and emoji favicon.
44+55+It's recommended to add this to your root layout.
66+37## Usage
4859```svelte
1010+<script>
1111+ import { Head } from 'fox-ui-svelte';
1212+</script>
1313+614<Head
715 title="Website Title"
816 description="Website Description"
···15151616## Two colors
17171818-Still all apps looking the same is kinda boring, so there are some easy and quick ways to customize all components.
1818+Still all apps looking the same is kinda boring, so there are is one easy and quick way to customize all components.
19192020-The main idea is having two colors:
2020+The main idea is having two colors (in all tailwind shades from 50 up to 950):
21212222- base color (usually one of the 5 tailwind gray tones)
2323- accent color (usually one of the not-gray tailwind colors)
24242525-You can try it out by setting the current theme colors in the navbar for this documentation site.2525+You can try it out by setting the current theme colors in the navbar for this documentation site.
2626+2727+## Lots of components
2828+2929+While currently only the base components are visible, there are lots of components in the pipeline.
3030+The aim is to have a component library that has lots of components that are useful for building webapps/websites/games, all in a consistent style/theme.
3131+3232+See here for a few examples of work in progress components (some may be partially broken):
3333+3434+3535+### graphs
3636+3737+- [ring chart](/ui-kit/components/graphs/ring-chart/)
3838+- [heatmap](/ui-kit/components/graphs/heatmap/)
3939+- [line chart](/ui-kit/components/graphs/line-graph/)
4040+4141+### extras
4242+4343+- [color picker](/ui-kit/components/extras/color-picker/)
4444+- [excalidraw](/ui-kit/components/extras/excalidraw/)
4545+- [quote](/ui-kit/components/extras/quote/)
4646+- [phone](/ui-kit/components/extras/phone/)
4747+- [timer](/ui-kit/components/extras/timer/)
4848+4949+### social
5050+5151+- [github-corner](/ui-kit/components/social/github-corner/)
5252+- [star rating](/ui-kit/components/social/star-rating/)
5353+- [social media post](/ui-kit/components/social/post/)
5454+5555+### 3d
5656+5757+- [depth 3d](/ui-kit/components/3d/depth-3d/)
5858+- [model-picker](/ui-kit/components/3d/model-picker/)
5959+- [voxel-art](/ui-kit/components/3d/voxel-art/)
6060+6161+6262+If you have any suggestions for components, please open an issue on [github](https://github.com/flo-bit/ui-kit/issues).