96 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
/*
 | 
						|
 * Hopscotch
 | 
						|
 * by Jan T. Sott
 | 
						|
 * https://github.com/idleberg/Hopscotch
 | 
						|
 *
 | 
						|
 * This work is licensed under the Creative Commons CC0 1.0 Universal License
 | 
						|
 */ 
 | 
						|
 | 
						|
/* Comment */
 | 
						|
.hljs-comment,
 | 
						|
.hljs-title {
 | 
						|
  color: #989498;
 | 
						|
}
 | 
						|
 | 
						|
/* Red */
 | 
						|
.hljs-variable,
 | 
						|
.hljs-attribute,
 | 
						|
.hljs-tag,
 | 
						|
.hljs-regexp,
 | 
						|
.ruby .hljs-constant,
 | 
						|
.xml .hljs-tag .hljs-title,
 | 
						|
.xml .hljs-pi,
 | 
						|
.xml .hljs-doctype,
 | 
						|
.html .hljs-doctype,
 | 
						|
.css .hljs-id,
 | 
						|
.css .hljs-class,
 | 
						|
.css .hljs-pseudo {
 | 
						|
  color: #dd464c;
 | 
						|
}
 | 
						|
 | 
						|
/* Orange */
 | 
						|
.hljs-number,
 | 
						|
.hljs-preprocessor,
 | 
						|
.hljs-built_in,
 | 
						|
.hljs-literal,
 | 
						|
.hljs-params,
 | 
						|
.hljs-constant {
 | 
						|
  color: #fd8b19;
 | 
						|
}
 | 
						|
 | 
						|
/* Yellow */
 | 
						|
.ruby .hljs-class .hljs-title,
 | 
						|
.css .hljs-rules .hljs-attribute {
 | 
						|
  color: #fdcc59;
 | 
						|
}
 | 
						|
 | 
						|
/* Green */
 | 
						|
.hljs-string,
 | 
						|
.hljs-value,
 | 
						|
.hljs-inheritance,
 | 
						|
.hljs-header,
 | 
						|
.ruby .hljs-symbol,
 | 
						|
.xml .hljs-cdata {
 | 
						|
  color: #8fc13e;
 | 
						|
}
 | 
						|
 | 
						|
/* Aqua */
 | 
						|
.css .hljs-hexcolor {
 | 
						|
  color: #149b93;
 | 
						|
}
 | 
						|
 | 
						|
/* Blue */
 | 
						|
.hljs-function,
 | 
						|
.python .hljs-decorator,
 | 
						|
.python .hljs-title,
 | 
						|
.ruby .hljs-function .hljs-title,
 | 
						|
.ruby .hljs-title .hljs-keyword,
 | 
						|
.perl .hljs-sub,
 | 
						|
.javascript .hljs-title,
 | 
						|
.coffeescript .hljs-title {
 | 
						|
  color: #1290bf;
 | 
						|
}
 | 
						|
 | 
						|
/* Purple */
 | 
						|
.hljs-keyword,
 | 
						|
.javascript .hljs-function {
 | 
						|
  color: #c85e7c;
 | 
						|
}
 | 
						|
 | 
						|
.hljs {
 | 
						|
  display: block;
 | 
						|
  background: #322931;
 | 
						|
  color: #b9b5b8;
 | 
						|
  padding: 0.5em;
 | 
						|
}
 | 
						|
 | 
						|
.coffeescript .javascript,
 | 
						|
.javascript .xml,
 | 
						|
.tex .hljs-formula,
 | 
						|
.xml .javascript,
 | 
						|
.xml .vbscript,
 | 
						|
.xml .css,
 | 
						|
.xml .hljs-cdata {
 | 
						|
  opacity: 0.5;
 | 
						|
}
 |