-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Object #<Object> has no method 'blackness' #2
Comments
Just got the same with |
Hmm weird, might check if the color modules used in |
:root {
--main: #48985f;
--works: color(var(--main) lightness(90%));
--doesnt: color(var(--main) whiteness(90%));
}
a {
color: var(--works);
color: var(--doesnt);
} With current myth (master) |
Ah. I think I skipped implementing |
But I'm super down to have it added |
I've a PR ready for that, just waiting for this one to be merged Qix-/color#25 |
nice! |
Awesome - I just tried using whiteness and hit a similar issue so it will be great to see these too supported :) |
Just got the issue with
blackness
, not sure why since it seems correctly exported inlib/index.js
Note: I tested
lightness()
which work as expected.The text was updated successfully, but these errors were encountered: