fix `color` api breakage

This commit is contained in:
Sérgio Ramos 2016-12-05 20:31:39 +00:00
parent d63bea9571
commit 72317a79dc
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ const links = {
linkHoverColor: ({
linkColor
}) => {
return Color(linkColor).darken('0.15').hexString();
return Color(linkColor).darken(0.15).hex();
},
linkHoverDecoration: 'underline'
};