1.2.0 • Published 5 years ago

d10m v1.2.0

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

npm.io

Baseline CSS for any React app. A styled-components wrapper around normalize.css / reset.css as well as a WCAG-compliant theme.

Getting Started

Install into any React project.

yarn add global-reset

Usage

Global

Import the Global component as the first child in your root component.

import React from "react";
import { render } from "react-dom";
import { Global } from "d10m";
import theme from "./theme";

const App = () => <h1 style={{ color: theme.primary }}>hello world</h1>;

render(
  <div>
    <Global />
    <App />
  </div>,
  document.getElementById("root")
);

Theme

A theme object with WCAG-compliant, a11y colors.

There are 2 color schemes (light and dark) for usage with the correct background, i.e. theme.dark.primary should be used against the black background color.

import { theme } from 'd10m'

const Text = () => (
  <div style={{ backgroundColor: theme.dark.black }}>
    <p style={{ color: theme.dark.primary }}>hello</p>
  </div>
)
1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

6 years ago

0.6.0

6 years ago

0.5.3

6 years ago

0.5.2

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.5

6 years ago

0.4.4

6 years ago

0.4.3

6 years ago

0.4.2

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago