-
Notifications
You must be signed in to change notification settings - Fork 399
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
Readded Stinson filter #250
base: master
Are you sure you want to change the base?
Conversation
rchung95
commented
Oct 21, 2016
I retested it and notice that. I do apologize for not noticing it sooner. I have added another commit, and ran the test. I have changed the settings and this one is a lot better. |
// } | ||
@mixin stinson($filters...) { | ||
@include filter-base; | ||
filter: brightness(1.25) contrast(0.8) saturate(0.95) grayscale(0.05) sepia(0.05) $filters; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this PR! I did some adjustments, what do you think of using filter: brightness(1.15) contrast(.8) saturate(.85) sepia(.1);
and altering the ::after
pseudo element to be:
background: rgba(240, 149, 128, .2);
mix-blend-mode: soft-light;
After -- I think it looks a little bit closer (tiny bit lighter and warmer):
I made similar comments on #251 -- there are a few PRs on this filter right now, just waiting on the first one to adjust their filter |
Added the requested changes :) |