Former-commit-id: 637e58a7d3aef389a4ea51c179aaee17f421f34c [formerly 637e58a7d3aef389a4ea51c179aaee17f421f34c [formerly 637e58a7d3aef389a4ea51c179aaee17f421f34c [formerly 637e58a7d3aef389a4ea51c179aaee17f421f34c [formerly fc66dcb2e437ff46b2c36ec1e3bcce71a6461250 [formerly b6451dc60d4c1e6006a9fcd380656d2023436e64]]]]] Former-commit-id: c791410cda91e2df1b9808bfb032f0d3d68106ef Former-commit-id: 0c5197800cfae6f27f7ab792c887fb25a73a23e0 Former-commit-id: 208a8e77c0fada6e9d191a7d495615ec2ef9704d [formerly af8c1367ed65b626196ac156c8521257cc804d60] Former-commit-id: 1fdb571cea6ed9dba9ea02f4ba6ebfb5d89e1b2f Former-commit-id: 774a145ae0694612edf988d9992ef797ddf4f21d Former-commit-id: 03fc24d70365836d60360aa24e24dc7cb4520b91 Former-commit-id: bba4fd5552fa42da029fd6b310f5ee48558d5508 Former-commit-id: 2de81d34fb07248965677e8a3866c13089fa95e7
109 lines
1.4 KiB
CSS
109 lines
1.4 KiB
CSS
/*
|
|
|
|
Gruvbox style (dark) (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox)
|
|
|
|
*/
|
|
|
|
.hljs {
|
|
display: block;
|
|
overflow-x: auto;
|
|
padding: 0.5em;
|
|
background: #282828;
|
|
}
|
|
|
|
.hljs,
|
|
.hljs-subst {
|
|
color: #ebdbb2;
|
|
}
|
|
|
|
/* Gruvbox Red */
|
|
.hljs-deletion,
|
|
.hljs-formula,
|
|
.hljs-keyword,
|
|
.hljs-link,
|
|
.hljs-selector-tag {
|
|
color: #fb4934;
|
|
}
|
|
|
|
/* Gruvbox Blue */
|
|
.hljs-built_in,
|
|
.hljs-emphasis,
|
|
.hljs-name,
|
|
.hljs-quote,
|
|
.hljs-strong,
|
|
.hljs-title,
|
|
.hljs-variable {
|
|
color: #83a598;
|
|
}
|
|
|
|
/* Gruvbox Yellow */
|
|
.hljs-attr,
|
|
.hljs-params,
|
|
.hljs-template-tag,
|
|
.hljs-type {
|
|
color: #fabd2f;
|
|
}
|
|
|
|
/* Gruvbox Purple */
|
|
.hljs-builtin-name,
|
|
.hljs-doctag,
|
|
.hljs-literal,
|
|
.hljs-number {
|
|
color: #8f3f71;
|
|
}
|
|
|
|
/* Gruvbox Orange */
|
|
.hljs-code,
|
|
.hljs-meta,
|
|
.hljs-regexp,
|
|
.hljs-selector-id,
|
|
.hljs-template-variable {
|
|
color: #fe8019;
|
|
}
|
|
|
|
/* Gruvbox Green */
|
|
.hljs-addition,
|
|
.hljs-meta-string,
|
|
.hljs-section,
|
|
.hljs-selector-attr,
|
|
.hljs-selector-class,
|
|
.hljs-string,
|
|
.hljs-symbol {
|
|
color: #b8bb26;
|
|
}
|
|
|
|
/* Gruvbox Aqua */
|
|
.hljs-attribute,
|
|
.hljs-bullet,
|
|
.hljs-class,
|
|
.hljs-function,
|
|
.hljs-function .hljs-keyword,
|
|
.hljs-meta-keyword,
|
|
.hljs-selector-pseudo,
|
|
.hljs-tag {
|
|
color: #8ec07c;
|
|
}
|
|
|
|
/* Gruvbox Gray */
|
|
.hljs-comment {
|
|
color: #928374;
|
|
}
|
|
|
|
/* Gruvbox Purple */
|
|
.hljs-link_label,
|
|
.hljs-literal,
|
|
.hljs-number {
|
|
color: #d3869b;
|
|
}
|
|
|
|
.hljs-comment,
|
|
.hljs-emphasis {
|
|
font-style: italic;
|
|
}
|
|
|
|
.hljs-section,
|
|
.hljs-strong,
|
|
.hljs-tag {
|
|
font-weight: bold;
|
|
}
|