Open gobijan opened 3 months ago
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;
}
}
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