Skip to content

Instantly share code, notes, and snippets.

@tuxsudo
Last active August 13, 2017 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuxsudo/e6246e06e7250ae8f9427c37de472681 to your computer and use it in GitHub Desktop.
Save tuxsudo/e6246e06e7250ae8f9427c37de472681 to your computer and use it in GitHub Desktop.
Theme Example
import * as theme from "./theme.js";
import { ThemeProvider } from 'styled-components';
export const App = (props) =>
<ThemeProvider {...props} theme={theme} />
export const red = "#f00";
export const blue = "#00f";
export const green = "#0f0";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment