Added missing highlighting classes

This commit is contained in:
squidfunk 2016-02-05 15:33:24 +01:00
parent 3978af06e1
commit 7d1a71e9a5

View File

@ -25,11 +25,24 @@
* ------------------------------------------------------------------------- */ * ------------------------------------------------------------------------- */
/* /*
* Background * Inline code
*/
code {
color: $primary;
}
/*
* Code block
*/ */
pre { pre {
background: darken($white, 3.5%); background: rgba($black, 0.05);
color: $black;
/*
* Ensure correct color
*/
&, code {
color: $black;
}
} }
/* /*
@ -42,7 +55,7 @@ pre {
/* /*
* Keywords * Keywords
*/ */
.k { .k, .kn {
color: #A71D5D; color: #A71D5D;
} }
@ -61,8 +74,8 @@ pre {
} }
/* /*
* Numbers * Constants and numbers
*/ */
.mi { .mi, .bp {
color: #9575CD; color: #9575CD;
} }