-
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
Add juno filter #245
base: master
Are you sure you want to change the base?
Add juno filter #245
Conversation
Any updates? Would love to get this in! |
filter: contrast(1.25) brightness(.989) saturate(1.1) grayscale(.19) $filters; | ||
|
||
&::after { | ||
background: radial-gradient(circle, rgba(150, 160, 150, .4) 100%, rgb(192, 110, 201)); |
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.
This PR looks awesome!! The only change I would make is changing this first value in the gradient from rgba(150, 160, 150, .4)
to rgba(150, 160, 150, .8)
-- try that and let me know what you think.
// } | ||
@mixin juno($filters...) { | ||
@include filter-base; | ||
filter: contrast(1.25) brightness(.989) saturate(1.1) grayscale(.19) $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.
Maybe just remove brightness, since .989
isn't going to be making much of a difference here
Sorry for the delay. I've been really busy lately, but your suggestion is great. I just made the adjustment. 😄 |
No description provided.