Added dark mode on docs

This commit is contained in:
Alejandro Saucedo 2021-02-21 07:55:47 +00:00
parent b9e0b5e988
commit 0bae3d5b89
3 changed files with 549 additions and 0 deletions

View file

@ -10,3 +10,45 @@
.md-nav__title--site {
display: none;
}
h1, h2, h3, h4, h5, h6 {
color:white !important;
}
/* Container backgrounds */
.md-container, .md-main, .md-nav {
background-color: #252632;
color: #fff;
}
.md-header, .md-tabs {
background-color: #ad152c !important;
}
/* Code blocks */
pre, code {
background-color: #181820 !important;
color: #fff !important;
}
/* All links */
a {
color: #ff9292;
}
a:hover {
color: #fff;
}
/* Side Menu Links */
.md-nav__item a {
color: #36D3D9;
}
.md-nav__item a:hover {
color: #0091ea;
}
.md-source {
color: #fff;
}