0.0.6 • Published 2 years ago

geniebook-ui v0.0.6

Weekly downloads
-
License
MIT
Repository
bitbucket
Last release
2 years ago

Geniebook UI Library

This library is a set of React component to help you build beautiful and accesibile apps

Getting started

This library is based on tailwind css so to use it you need to install this library and Tailwind with the following steps.

Install geniebook-ui

npm install --save geniebook-ui

Or alternatively with yarn :

yarn add geniebook-ui

Install tailwind

Before using this library you need to add tailwind to your React project. Follow this link to install it

Using Create React App

npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9 @craco/craco Or with yarn yarn -D tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9 @craco/craco

Then replace in your package.json :

  {
    "scripts": {
     "start": "react-scripts start",
     "build": "react-scripts build",
     "test": "react-scripts test",
     "start": "craco start",
     "build": "craco build",
     "test": "craco test",
      "eject": "react-scripts eject"
    },
  }

Theme configuration

You can import the default presets in your tailwind.config.js file :

// tailwind.config.js
module.exports = {
  presets: [
    require('@geniebook/core/tailwind-theme')
  ],
}

Colors that are used :

  • primary : In presets : colors.purple
  • success : In presets : colors.green
  • error : In presets : colors.red
  • warning : In presets : colors.yellow
  • info : In presets : colors.blue
  • foreground : In presets : colors.gray[900]
  • background : In presets : white
  • gray : In presets : colors.gray
  • white : In presets : white
  • black : In presets : black