Created
April 2, 2016 12:59
-
-
Save czbaker/a76c3c2519ab353be0e5bb0cd0d2f284 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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