mirror of
https://github.com/RyanGreenup/cadmus.git
synced 2025-02-23 22:24:13 +01:00
68 lines
816 B
CSS
68 lines
816 B
CSS
/**
|
|
* highlight.js tomorrow style
|
|
*/
|
|
|
|
.hljs-comment,
|
|
.hljs-quote {
|
|
color: #8e908c
|
|
}
|
|
|
|
.hljs-variable,
|
|
.hljs-template-variable,
|
|
.hljs-tag,
|
|
.hljs-name,
|
|
.hljs-selector-id,
|
|
.hljs-selector-class,
|
|
.hljs-regexp,
|
|
.hljs-deletion {
|
|
color: #c82829
|
|
}
|
|
|
|
.hljs-number,
|
|
.hljs-built_in,
|
|
.hljs-builtin-name,
|
|
.hljs-literal,
|
|
.hljs-type,
|
|
.hljs-params,
|
|
.hljs-meta,
|
|
.hljs-link {
|
|
color: #f5871f
|
|
}
|
|
|
|
.hljs-attribute {
|
|
color: #eab700
|
|
}
|
|
|
|
.hljs-string,
|
|
.hljs-symbol,
|
|
.hljs-bullet,
|
|
.hljs-addition {
|
|
color: #718c00
|
|
}
|
|
|
|
.hljs-title,
|
|
.hljs-section {
|
|
color: #4271ae
|
|
}
|
|
|
|
.hljs-keyword,
|
|
.hljs-selector-tag {
|
|
color: #8959a8
|
|
}
|
|
|
|
.hljs {
|
|
display: block;
|
|
overflow-x: auto;
|
|
background: #F7F7F7;
|
|
color: #4d4d4c;
|
|
padding: 0.5em
|
|
}
|
|
|
|
.hljs-emphasis {
|
|
font-style: italic
|
|
}
|
|
|
|
.hljs-strong {
|
|
font-weight: bold
|
|
}
|