We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is about Bulma.
This is about the Bulma CSS framework
I'm using Bulma 1.0.2
The shadow design for cards and boxes etc. doesn't look good in Dark Mode
In order to keep the high visual quality of the framework we should adjust this behaviour by providing a different dark mode default. See here for examples of efficient Dark Mode Design: https://medium.com/@tundehercules/designing-effective-dark-mode-interfaces-17f38ecea2e9
In case this get's accepted I will create a PR
The text was updated successfully, but these errors were encountered:
This works for me as a sane default.
/* Dark mode styles */ [data-theme="dark"] .box, .theme-dark .box { --bulma-box-shadow: none; } /* Alternative using media query for system preference */ @media (prefers-color-scheme: dark) { .box { --bulma-box-shadow: none; } }
Sorry, something went wrong.
No branches or pull requests
This is about Bulma.
Overview of the problem
This is about the Bulma CSS framework
I'm using Bulma 1.0.2
Description
The shadow design for cards and boxes etc. doesn't look good in Dark Mode
In order to keep the high visual quality of the framework we should adjust this behaviour by providing a different dark mode default.
See here for examples of efficient Dark Mode Design: https://medium.com/@tundehercules/designing-effective-dark-mode-interfaces-17f38ecea2e9
In case this get's accepted I will create a PR
The text was updated successfully, but these errors were encountered: