Skip to content
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

Better dark mode tint on Firefox #20

Open
fregante opened this issue Nov 13, 2024 · 1 comment
Open

Better dark mode tint on Firefox #20

fregante opened this issue Nov 13, 2024 · 1 comment
Labels
bug Something isn't working firefox good first issue Good for newcomers help wanted Extra attention is needed

Comments

@fregante
Copy link
Owner

In v2 there's a slight mismatch in color in Firefox:

Screenshot

Which is weird since I already have some code to do this:

@-moz-document url-prefix('') {
@media (prefers-color-scheme: dark) {
:root {
background-color: #23222b;
}
}
}

@fregante fregante added bug Something isn't working help wanted Extra attention is needed good first issue Good for newcomers firefox labels Nov 13, 2024
@fregante
Copy link
Owner Author

Ah it's being overridden by

/* iOS/iPadOS-specific style */
@supports (-webkit-text-size-adjust: none) {
@media (prefers-color-scheme: dark) {
:root {
/* Safari iOS has a black background */
background-color: #1e1e1e;
}
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working firefox good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant