Update markdown.css

I've being trying to solve errors on development environment and I need to upload something to the university discipline im in. I've dealing with 3 diferent erros for, if we sum everthing, more than 12 hours: all on the "provision" part.
This commit is contained in:
Miranda Wopps 2024-11-10 19:56:05 -03:00 committed by GitHub
parent efd7c06e30
commit c150d1b421
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 27 additions and 0 deletions

View File

@ -514,3 +514,30 @@
}
}
}
/* If darkmode is preferred by OS */
@media(prefers-color-scheme: dark){
.markdown{
background-color: #000; /* Dark background. */
color: #fff;
}
.markdown a{
color: #39ff14; /* Links green neon to dark mode. */
}
.markdown h1,
.markdown h2,
.markdown h3{
color: #ffffff; /* White letters. */
}
.markdown code,
.markdown pre{
background-color: #333; /* Codes with grey background. */
color: #e5e5e5; /* Grey light letters. */
}
}