An open API service indexing awesome lists of open source software.

https://github.com/vineyardbovines/d10m

designSystem
https://github.com/vineyardbovines/d10m

Last synced: about 1 month ago
JSON representation

designSystem

Awesome Lists containing this project

README

          

![](https://raw.githubusercontent.com/gretzky/banners/master/d10m.png)

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.

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

const App = () =>

hello world

;

render(




,
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 = () => (


hello



)
```