madvas / cljs-react-material-ui

Clojurescript library for using material-ui.com
Eclipse Public License 1.0
205 stars 32 forks source link

Fade Effect #30

Closed fdabrao closed 7 years ago

fdabrao commented 7 years ago

How do I use the effect fade from theme?

madvas commented 7 years ago

not sure which fade effect you mean, but it you mean fade color effect, function is at js/MaterialUIUtils.colorManipulator.fade

fdabrao commented 7 years ago

Yes, face effect, I tried js/MaterialUIUtils.colorManipulator.fade in [ui/mui-theme-provide {:palette {::border-color (js/MaterialUIUtils.colorManipulator.fade :full-white 0.7)}}] but it´s not working.

madvas commented 7 years ago

You must enter there color in hex, so something like this should be working:

[ui/mui-theme-provide {:palette {::border-color (js/MaterialUIUtils.colorManipulator.fade (ui/color :full-white) 0.7)}}]