@fission-suite/kit
Version:
Fission UI Kit
98 lines (68 loc) ⢠2.39 kB
Markdown
# UI Kit
[](https://github.com/fission-suite/blob/master/LICENSE)
[](https://fission.codes)
[](https://discord.gg/zAQBDEq)
[](https://talk.fission.codes)
__The Fission UI Kit__,
_designed to be used with [Tailwind CSS](https://tailwindcss.com)._
šØ [Styleguide](https://kit.fission.app)
š [Documentation](https://kit.fission.app/docs/)
## Getting Started
### Step one, install dependencies.
* `npm install @fission-suite/kit`
* `npm install tailwindcss`
* Copy the font files.
`npx copy-fission-fonts ./vendor/fonts/ --woff2`
* Copt the images.
`npx copy-fission-images ./vendor/images/`
### Step two, configure Tailwind CSS.
We need to configure Tailwind CSS to use the Fission colors, fonts and other things.
```js
import plugin from "tailwindcss/plugin"
import * as kit from "@fission-suite/kit"
// or kit = require("@fission-suite/kit")
export default {
purge: [
...kit.tailwindPurgeList()
],
theme: {
colors: kit.dasherizeObjectKeys(kit.colors),
fontFamily: kit.fonts,
extend: {
fontSize: kit.fontSizes
}
},
plugins: [
plugin(function({ addBase }) {
// this `fontsPath` will be the relative path
// to the fonts from the generated stylesheet
kit.fontFaces({ fontsPath: "/fonts/" }).forEach(fontFace => {
addBase({ "@font-face": fontFace })
})
})
]
}
```
See the [`guide`](./guide/) for an example configuration, and how to use the Elm library.
### Step three, use the component library.
#### React
```shell
npm install @fission-suite/kit
```
```js
import { SignInButton } from "@fission-suite/kit/components/react"
<SignInButton
className="bg-base-900 text-base-50 dark:bg-base-100 dark:text-base-900"
onClick={() => webnative.redirectToLobby(PERMISSIONS)}
/>
```
š [Documentation](https://kit.fission.app/docs/react/)
#### Elm
```shell
elm install fission-suite/kit
```
```elm
import Kit.Components
Kit.Components.signIn [ class "bg-purple text-white text-opacity-90" ]
```
š [Documentation](https://package.elm-lang.org/packages/fission-suite/kit/latest/)