Skip to content

Instantly share code, notes, and snippets.

@czbaker
Created April 2, 2016 12:59
Show Gist options
  • Select an option

  • Save czbaker/a76c3c2519ab353be0e5bb0cd0d2f284 to your computer and use it in GitHub Desktop.

Select an option

Save czbaker/a76c3c2519ab353be0e5bb0cd0d2f284 to your computer and use it in GitHub Desktop.
import Colors from 'material-ui/lib/styles/colors';
import Spacing from 'material-ui/lib/styles/spacing';
import zIndex from 'material-ui/lib/styles/zIndex';
import ColorManipulator from 'material-ui/lib/utils/color-manipulator';
export default {
spacing: Spacing,
zIndex: zIndex,
fontFamily: 'Roboto, sans-serif',
palette: {
primary1Color: Colors.grey500,
primary2Color: Colors.grey700,
primary3Color: Colors.lightBlack,
accent1Color: Colors.orange300,
accent2Color: Colors.grey100,
accent3Color: Colors.grey500,
textColor: Colors.darkBlack,
alternateTextColor: Colors.white,
borderColor: Colors.grey300,
disabledColor: ColorManipulator.fade(Colors.darkBlack, 0.3),
pickerHeaderColor: Colors.grey500
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment