mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
92 lines
1.5 KiB
CSS
92 lines
1.5 KiB
CSS
/*
|
|
* DarkForest Syntax Highlighting Theme
|
|
*/
|
|
|
|
/* Comment - Dark Green */
|
|
.hljs-comment,
|
|
.hljs-quote {
|
|
color: var(--hljs-comment-color);
|
|
}
|
|
|
|
/* Variables/Attributes - Cyan */
|
|
.hljs-variable,
|
|
.hljs-template-variable,
|
|
.hljs-attribute,
|
|
.hljs-attr,
|
|
.hljs-regexp,
|
|
.hljs-link,
|
|
.hljs-selector-id,
|
|
.hljs-selector-class {
|
|
color: var(--hljs-variable-color);
|
|
}
|
|
|
|
/* Numbers/Literals - Hot Pink */
|
|
.hljs-number,
|
|
.hljs-meta,
|
|
.hljs-builtin-name,
|
|
.hljs-literal,
|
|
.hljs-type,
|
|
.hljs-params {
|
|
color: var(--hljs-number-color);
|
|
}
|
|
|
|
/* Strings - Spring Green */
|
|
.hljs-string,
|
|
.hljs-symbol,
|
|
.hljs-bullet {
|
|
color: var(--hljs-string-color);
|
|
}
|
|
|
|
/* Titles - Deep Pink */
|
|
.hljs-title,
|
|
.hljs-built_in,
|
|
.hljs-section {
|
|
color: var(--hljs-title-color);
|
|
}
|
|
|
|
/* Keywords - Dark Cyan */
|
|
.hljs-keyword,
|
|
.hljs-selector-tag {
|
|
color: var(--hljs-keyword-color);
|
|
}
|
|
|
|
/* Name - Light Red */
|
|
.hljs-name,
|
|
.hljs-tag {
|
|
color: var(--hljs-name-color);
|
|
}
|
|
|
|
.hljs {
|
|
display: block;
|
|
overflow-x: auto;
|
|
background: var(--hljs-bg);
|
|
color: var(--hljs-fg);
|
|
border: .05em solid var(--hljs-border);
|
|
}
|
|
|
|
p .hljs {
|
|
background: var(--hljs-inline-bg);
|
|
border: .05em solid var(--hljs-inline-border);
|
|
padding: 3px 4px 3px 4px;
|
|
}
|
|
|
|
.hljs-emphasis {
|
|
font-style: italic;
|
|
}
|
|
|
|
.hljs-strong {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Additions - Green */
|
|
.hljs-addition {
|
|
color: var(--hljs-addition-color);
|
|
background-color: var(--hljs-addition-bg);
|
|
}
|
|
|
|
/* Deletions - Crimson */
|
|
.hljs-deletion {
|
|
color: var(--hljs-deletion-color);
|
|
background-color: var(--hljs-deletion-bg);
|
|
}
|