Skip to content

Commit

Permalink
Merge pull request mui#4095 from mbrookes/docs-colorManipulator
Browse files Browse the repository at this point in the history
[Docs] Update colorManipulator imports
  • Loading branch information
nathanmarks committed Apr 26, 2016
2 parents c824ad8 + 393cc07 commit 1f5762b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/app/components/pages/customization/themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ grey100, grey300, grey400, grey500,
pinkA200,
white, darkBlack, fullBlack,
} from 'material-ui/styles/colors';
import ColorManipulator from 'material-ui/utils/color-manipulator';
import {fade} from 'material-ui/utils/colorManipulator';

const lightBaseTheme = {
spacing: {
Expand Down Expand Up @@ -226,9 +226,9 @@ const lightBaseTheme = {
alternateTextColor: white,
canvasColor: white,
borderColor: grey300,
disabledColor: ColorManipulator.fade(darkBlack, 0.3),
disabledColor: fade(darkBlack, 0.3),
pickerHeaderColor: cyan500,
clockCircleColor: ColorManipulator.fade(darkBlack, 0.07),
clockCircleColor: fade(darkBlack, 0.07),
shadowColor: fullBlack,
},
};
Expand Down

0 comments on commit 1f5762b

Please sign in to comment.