2.0.0 • Published 3 years ago

reflexjs v2.0.0

Weekly downloads
142
License
MIT
Repository
github
Last release
3 years ago

reflexjs

A styling library for building flexible and accessible components with speed.

Quick Start

Step 1

Start by installing the reflexjs package into your React app.

npm i reflexjs

Step 2

Create a theme with your custom colors and typography.

export default {
  fonts: {
    body: "system-ui, sans-serif",
    heading: '"Avenir Next", sans-serif',
    monospace: "Menlo, monospace",
  },
  colors: {
    text: "#000",
    background: "#fff",
    primary: "#33e",
  },
}

Step 3

Wrap your app with the ThemeProvider from reflexjs.

import * as React from "react"
import theme from "./theme" // highlight-line
import { ThemeProvider } from "reflexjs" // highlight-line

export default function () {
  return (
    <ThemeProvider theme={theme}>
      <App />
    </ThemeProvider>
  )
}

Styling

You are now ready to style your components using style props.

/** @jsxImportSource "reflexjs" */

export default function CustomButton({ children }) {
  return (
    <button bg="primary" color="text" p="10px" rounded="5">
      {children}
    </button>
  )
}

Docs

Read the docs at https://reflexjs.org/docs.