4.0.2 ā€¢ Published 1 year ago

mf-tes2-js v4.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Read this in other languages:

Mirrorful is a simple, open-source design system framework. Install Mirrorful to generate colors and other design tokens for your project. Then, import these tokens directly into your app.

  • Start new projects with a source of truth
  • Visually modify your theme
  • Generate colors
  • šŸ”œ Theme Templates
  • šŸ”œ Lightweight Headless Component Library
  • šŸ”œ Eslint rules
  • šŸ”œ Propagate tokens across projects
  • šŸ”œ Figma integration

And more...

šŸš€ Get started

Mirrorful is a NPM package intended to be installed as dev dependency.

npm install mirrorful --save-dev

or

yarn add mirrorful --dev

āœØ Usage

The following commands will start a local editor at localhost:5050.

yarn run mirrorful

or

npx mirrorful

šŸ’æ Export Formats

After configuring your theme in the editor, you can export it to be used by your app. We currently export to the following file types: .js, .ts, .css, .scss, .json. If you're using tailwind, we also export to common js to work nicely with your tailwind config.

Example: Using CSS Variables

.primary-button {
  background-color: var(--color-primary);
}

.primary-button:hover {
  background-color: var(--color-primary-hover);
}

Example: Using Javascript Constants

<button backgroundColor={{ Tokens.primary.base }}>Click here</button>

šŸ¤ Component Library Agnostic

We strive to be component library agnostic. Whether you're using Material UI, Chakra UI, Tailwind, Ant Design, or even your in-house library, Mirrorful hooks right in.

āš ļø create-react-app may warn that you are trying to import from outside the src directory. We are working on a long-term solution, but for now, we would recommend making a copy of the .mirrorful folder in your src directory.

Check out our examples:

Looking for a specific example? Request one here!

šŸ“š Documentation

Check out our documentation for more information.

ā¤ļø Community & Support

šŸŖž Contributors