2023-05-16 10:50:42 +08:00

208 lines
3.1 KiB
CSS
Executable File

/*
Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
*/
.markdown-content > pre,
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: black;
}
.hljs-comment,
.hljs-quote {
color: #800;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-section,
.hljs-title,
.hljs-name {
color: #008;
}
.hljs-variable,
.hljs-template-variable {
color: #660;
}
.hljs-string,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-regexp {
color: #080;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-meta,
.hljs-number,
.hljs-link {
color: #066;
}
.hljs-title,
.hljs-doctag,
.hljs-type,
.hljs-attr,
.hljs-built_in,
.hljs-builtin-name,
.hljs-params {
color: #606;
}
.hljs-attribute,
.hljs-subst {
color: #000;
}
.hljs-formula {
background-color: #eee;
font-style: italic;
}
.hljs-selector-id,
.hljs-selector-class {
color: #9B703F
}
.hljs-addition {
background-color: #baeeba;
}
.hljs-deletion {
background-color: #ffc8bd;
}
.hljs-doctag,
.hljs-strong {
font-weight: bold;
}
.hljs-emphasis {
font-style: italic;
}
/*
* Visual Studio 2015 dark style
* Author: Nicolas LLOBERA <nllobera@gmail.com>
*/
.theme-dark .markdown-content > pre,
.theme-dark .hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #1E1E1EA6!important;
color: #eee!important;
}
.theme-dark .hljs-keyword,
.theme-dark .hljs-literal,
.theme-dark .hljs-symbol,
.theme-dark .hljs-name {
color: #f92672!important;
}
.theme-dark .hljs-link {
color: #569CD6;
text-decoration: underline;
}
.theme-dark .hljs-built_in,
.theme-dark .hljs-type {
color: #66d9ef!important;
}
.theme-dark .hljs-number,
.theme-dark .hljs-class {
color: #ae81ff!important;
}
.theme-dark .hljs-string,
.theme-dark .hljs-meta-string {
color: #e6b93c!important;
}
.theme-dark .hljs-regexp,
.theme-dark .hljs-template-tag {
color: #ae81ff!important;
}
.theme-dark .hljs-subst,
.theme-dark .hljs-function,
.theme-dark .hljs-title,
.theme-dark .hljs-params,
.theme-dark .hljs-formula {
color: #a6e22e!important;
}
.theme-dark .hljs-comment,
.theme-dark .hljs-quote {
color: #88846f!important;
font-style: italic;
}
.theme-dark .hljs-doctag {
color: #49aa19!important;
}
.theme-dark .hljs-meta,
.theme-dark .hljs-meta-keyword {
color: #3c9ae8!important;
}
.theme-dark .hljs-variable,
.theme-dark .hljs-template-variable {
color: #e0529c!important;
}
.theme-dark .hljs-attr,
.theme-dark .hljs-attribute,
.theme-dark .hljs-builtin-name {
color: #8fd460!important;
}
.theme-dark .hljs-section {
color: gold;
}
.theme-dark .hljs-emphasis {
font-style: italic;
}
.theme-dark .hljs-strong {
font-weight: bold;
}
/*.hljs-code {
font-family:'Monospace';
}*/
.theme-dark .hljs-bullet,
.theme-dark .hljs-selector-tag,
.theme-dark .hljs-selector-id,
.theme-dark .hljs-selector-class,
.theme-dark .hljs-selector-attr,
.theme-dark .hljs-selector-pseudo {
color: #D7BA7D!important;
}
.theme-dark .hljs-addition {
background-color: #144212;
display: inline-block;
width: 100%;
}
.theme-dark .hljs-deletion {
background-color: #600;
display: inline-block;
width: 100%;
}