mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
a4b24670f6
* update highlight.js to latest release v9.13.1 * update to v9.13.1 default.css does the current default.css include adjustments for the different languages? * Update highlight.pack.js * Update readme.tid * update highlight.pack to 9.15.6 * update version number + included languages
100 lines
1.1 KiB
CSS
100 lines
1.1 KiB
CSS
/*
|
|
|
|
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
|
|
|
|
*/
|
|
|
|
.hljs {
|
|
display: block;
|
|
overflow-x: auto;
|
|
padding: 0.5em;
|
|
background: #F0F0F0;
|
|
}
|
|
|
|
|
|
/* Base color: saturation 0; */
|
|
|
|
.hljs,
|
|
.hljs-subst {
|
|
color: #444;
|
|
}
|
|
|
|
.hljs-comment {
|
|
color: #888888;
|
|
}
|
|
|
|
.hljs-keyword,
|
|
.hljs-attribute,
|
|
.hljs-selector-tag,
|
|
.hljs-meta-keyword,
|
|
.hljs-doctag,
|
|
.hljs-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
/* User color: hue: 0 */
|
|
|
|
.hljs-type,
|
|
.hljs-string,
|
|
.hljs-number,
|
|
.hljs-selector-id,
|
|
.hljs-selector-class,
|
|
.hljs-quote,
|
|
.hljs-template-tag,
|
|
.hljs-deletion {
|
|
color: #880000;
|
|
}
|
|
|
|
.hljs-title,
|
|
.hljs-section {
|
|
color: #880000;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hljs-regexp,
|
|
.hljs-symbol,
|
|
.hljs-variable,
|
|
.hljs-template-variable,
|
|
.hljs-link,
|
|
.hljs-selector-attr,
|
|
.hljs-selector-pseudo {
|
|
color: #BC6060;
|
|
}
|
|
|
|
|
|
/* Language color: hue: 90; */
|
|
|
|
.hljs-literal {
|
|
color: #78A960;
|
|
}
|
|
|
|
.hljs-built_in,
|
|
.hljs-bullet,
|
|
.hljs-code,
|
|
.hljs-addition {
|
|
color: #397300;
|
|
}
|
|
|
|
|
|
/* Meta color: hue: 200 */
|
|
|
|
.hljs-meta {
|
|
color: #1f7199;
|
|
}
|
|
|
|
.hljs-meta-string {
|
|
color: #4d99bf;
|
|
}
|
|
|
|
|
|
/* Misc effects */
|
|
|
|
.hljs-emphasis {
|
|
font-style: italic;
|
|
}
|
|
|
|
.hljs-strong {
|
|
font-weight: bold;
|
|
}
|