@econify/moonshine-css
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

Moonshine CSS

Features

  • 🥃 Minimal and simple atomic CSS framework
  • ⚗️ 100% customizable - build your own CSS framework
  • 🦀 Blazing fast generator written in Rust
  • 🐜 Tiny 1.7 kB runtime
  • ⚛️ CSS-in-JS library for React

Install

npm install --save @econify/moonshine-css
yarn add @econify/moonshine-css

Generate Styles

Create a .moonshinerc file in your project root.

by running

npx distill --init

or by creating a file manually:

{
  "options": {
    "atomStyle": "classAttribute",
    "breakpointModifierStyle": "suffix",
    "breakpointModifierSeperator": "-",
    "breakpoints": {
      "sm": { "minWidth": "576px" },
      "md": { "minWidth": "768px", "maxWidth": "992px" },
      "lg": { "minWidth": "992px" }
    },
    "pseudoClasses": {
      "hov": ":hover"
    }
  },
  "designTokens": ["./atomic-design-tokens.yml"],
  "templates": [
    "./tachyons-border-box.yml",
    "./tachyons-colors.yml",
    "./tachyons-flex.yml",
    "./tachyons-spacing.yml"
  ],
  "output": {
    "cssVariables": "./dist/variables.css",
    "cssAtoms": "./dist/atoms.css",
    "jsonAtoms": "./dist/atoms.json"
  }
}

then run

npx distill --watch

Usage

import "atomic-styles.css";
import { styled } from "@econify/moonshine-css";

const Button = styled.button(
  "bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded",
  ({ isPrimary }) => isPrimary && "bg-primary text-white"
);

export default Demo() {
  return (
    <div>
      <Button isPrimary={true}>Click me</Button>
    </div>
  );
};

You can read more about the runtime syntax here.

Acknowledgements

TBD

Package Sidebar

Install

npm i @econify/moonshine-css

Weekly Downloads

0

Version

0.2.0

License

ISC

Unpacked Size

7.61 MB

Total Files

11

Last publish

Collaborators

  • tw00
  • regank-econify
  • stephenbaldwin