You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 6, 2019. It is now read-only.
inside color.js
css hook:
if (!value.alpha) { // returns true if value.alpha == 0
value.alpha = 1; // making it not transparent.
}
should be
if (!value.hasOwnProperty('alpha')) {
value.alpha = 1;
}
ADDITIONALLY:
colornames.transparent = { r:-1, g:-1, b:-1 };
should be
colornames.transparent = { r:-1, g:-1, b:-1, alpha:0 };
The text was updated successfully, but these errors were encountered: