Follows Material Design's Color standards for Dark Mode viewing and appropriately applied it for the website
32 lines
392 B
CSS
32 lines
392 B
CSS
body {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
span#discordJoin {
|
|
color: red;
|
|
}
|
|
|
|
/* Dark mode */
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background: #121212;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
a:link{
|
|
color: #03DAC5;
|
|
}
|
|
|
|
a:visited {
|
|
color: #BB86FC;
|
|
}
|
|
|
|
a:hover {
|
|
color: #018786;
|
|
}
|
|
|
|
span#discordJoin {
|
|
color: #cc0227;
|
|
}
|
|
}
|