-
Notifications
You must be signed in to change notification settings - Fork 40
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
Darken splash and cover backgrounds to lower contrast and improve readability #310
Conversation
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.
lgtm
@@ -1,9 +1,9 @@ | |||
#hardware.cover-bg { | |||
background-image: url('/theme/images/cover/hardware-bg.jpg'); | |||
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/theme/images/cover/hardware-bg.jpg'); |
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.
yeah, this being slightly darker than the library gradient works because the image has higher contrast.
The related Zulip discussion https://mixxx.zulipchat.com/#narrow/stream/247619-UI-.26-UX-design/topic/Splash.20banner.20on.20website Do we have a consensus to merge this @mixxxdj/developers ? |
I follow the majority |
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.
LGTM. Our website will probably look broken in Internet Explorer 6 though 😉
Thanks @fwcd for taking care! |
I have noticed that the current splash background is a bit high in contrast, making the headline hard to read. Also, the logo and the social media icons just blend in too much with the background:
Adding a small gradient alleviates this issue and makes the website simultaneously appear a bit more polished:
The nice thing about modeling this in CSS is that we can freely swap the image without changing the gradient.
In addition to the banner, I've also added some, slightly lower, gradients to backgrounds on the feature page, where the contrast is IMO a bit high too, though the specific opacities are of course up for debate:
Thoughts?