fix: code block color to improve contrast (#37162)

* Fix: Code block color to improve contrast

* Update client/src/components/layouts/prism.css

Co-Authored-By: mrugesh <1884376+raisedadead@users.noreply.github.com>

* Pull request updates
This commit is contained in:
Derryk Boyd
2019-10-10 00:37:11 -06:00
committed by mrugesh
parent cc3c9a8fa2
commit 6cb72ef02e
2 changed files with 13 additions and 0 deletions

View File

@ -57,6 +57,10 @@ th {
margin: 0 0 1.2rem; margin: 0 0 1.2rem;
} }
p {
line-height: 1.5rem;
}
.big-heading { .big-heading {
font-size: 2.5rem !important; font-size: 2.5rem !important;
} }

View File

@ -1,3 +1,12 @@
code .token.operator { code .token.operator {
background: none; background: none;
} }
:not(pre) > code[class*='language-'],
pre[class*='language-'] {
background: var(--primary-background);
}
* {
text-shadow: none !important;
}