Skip to content

Gray Aluminium

Compare
Choose a tag to compare
@Fooidge Fooidge released this 16 Sep 21:43
· 15 commits to master since this release

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!