UNPKG

material-ui

Version:

Material Design UI components built with React

29 lines (26 loc) 874 B
'use strict'; var Colors = require('../colors'); var ColorManipulator = require('../../utils/color-manipulator'); var Spacing = require('../spacing'); /* * Light Theme is the default theme used in material-ui. It is guaranteed to * have all theme variables needed for every component. Variables not defined * in a custom theme will default to these values. */ module.exports = { spacing: Spacing, fontFamily: 'Roboto, sans-serif', palette: { primary1Color: Colors.cyan500, primary2Color: Colors.cyan700, primary3Color: Colors.lightBlack, accent1Color: Colors.pinkA200, accent2Color: Colors.grey100, accent3Color: Colors.grey500, textColor: Colors.darkBlack, alternateTextColor: Colors.white, canvasColor: Colors.white, borderColor: Colors.grey300, disabledColor: ColorManipulator.fade(Colors.darkBlack, 0.3) } };