Is there any possible way to add styles to Samsung Internet Dark Mode?
We are trying to modify some colors on our website that Samsung Internet Browser defaults to on Dark Mode.
Currently, prefers-color-scheme
is not supported on Samsung Internet. However, they have an integrated browser with Dark Mode support as of February 24th, 2020.
html, body{
height: 100%;
}
.box{
min-width: 100%;
min-height: 100%;
display: none;
}
.default {
background-color: gray;
display: block;
}
@media (prefers-color-scheme: light) {
.light {
background-color: #fff;
color: #000;
display: block;
}
.default{
display: none;
}
}
@media (prefers-color-scheme: dark) {
.dark {
background-color: #000;
color: #fff;
display: block;
}
.default{
display: none;
}
}
<div class="box dark">Dark mode detected.</div>
<div class="box light">Light mode detected.</div>
<div class="box default">Default, no support for dark mode or light mode detected.</div>