rp-markdown-docs
Version:
A modern, beautiful documentation generator that converts markdown files into interactive HTML documentation sites
107 lines (92 loc) • 1.63 kB
CSS
/* Prism.js Theme - GitHub Dark */
code[class*="language-"],
pre[class*="language-"] {
color: #e1e4e8;
background: none;
font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
font-size: 0.875rem;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
tab-size: 4;
hyphens: none;
}
pre[class*="language-"] {
padding: 1.5rem;
margin: 1.5rem 0;
overflow: auto;
border-radius: 0.75rem;
background: #0d1117;
border: 1px solid #30363d;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #0d1117;
}
:not(pre) > code[class*="language-"] {
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #8b949e;
}
.token.punctuation {
color: #e1e4e8;
}
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
color: #f85149;
}
.token.boolean,
.token.number {
color: #79c0ff;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #a5d6ff;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
color: #ff7b72;
}
.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
color: #d2a8ff;
}
.token.keyword {
color: #ff7b72;
}
.token.regex,
.token.important {
color: #ffa657;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}