GitXplorerGitXplorer
g

redux-devtools-themes

public
34 stars
7 forks
2 issues

Commits

List of commits on branch master.
Unverified
c29b91c08aa24be1aaf919cdfdd0b552ae932dc8

Initial commit

ggaearon committed 9 years ago

README

The README file for this repository.

Redux DevTools Themes

A repository of different color schemes for Redux DevTools monitors. Any Redux DevTools monitor can use these.

Currently, most of these are Base16 themes. However, there is an additional nicinabox theme designed by Nic Aitch specifically for Redux DevTools. In the future, we might want to remove some of the themes that don’t work with Redux DevTools well, or add more custom themes, so that’s the justification for a separate package.

Installation

npm install --save redux-devtools-themes

Usage

import * as themes from 'redux-devtools-themes';

// somewhere in your monitor component
const colors = themes[this.props.theme];
return <div style={{ color: colors.base00 }}>...</div>;

License

MIT