drip: especificar background y colores en dark mode
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Safari elije colores pesimos para los links oscuros, así que especificamos uno
This commit is contained in:
parent
d2c41971ac
commit
5e8d13204d
1 changed files with 10 additions and 0 deletions
10
drip.css
10
drip.css
|
@ -2,6 +2,16 @@
|
||||||
color-scheme: dark light;
|
color-scheme: dark light;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
background: #111;
|
||||||
|
color: #eee;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: lightblue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
max-width: 70ch;
|
max-width: 70ch;
|
||||||
|
|
Reference in a new issue