Gray Aluminium
PleaseJS 0.3.0 - Gray Aluminium
You now have the ability to pass a hex string into base_color.
//still works
Please.make_color({
base_color: 'skyblue';
});
//works now!
Please.make_color({
base_color: '#0fbabc';
});
//also works
Please.make_color({
base_color: '0fbabc';
});
//even this works
Please.make_color({
base_color: 'abc';
});
As always, have fun!