hopscotch.css

 1/*
 2 * Hopscotch
 3 * by Jan T. Sott
 4 * https://github.com/idleberg/Hopscotch
 5 *
 6 * This work is licensed under the Creative Commons CC0 1.0 Universal License
 7 */ 
 8
 9/* Comment */
10.hljs-comment,
11.hljs-title {
12  color: #989498;
13}
14
15/* Red */
16.hljs-variable,
17.hljs-attribute,
18.hljs-tag,
19.hljs-regexp,
20.ruby .hljs-constant,
21.xml .hljs-tag .hljs-title,
22.xml .hljs-pi,
23.xml .hljs-doctype,
24.html .hljs-doctype,
25.css .hljs-id,
26.css .hljs-class,
27.css .hljs-pseudo {
28  color: #dd464c;
29}
30
31/* Orange */
32.hljs-number,
33.hljs-preprocessor,
34.hljs-built_in,
35.hljs-literal,
36.hljs-params,
37.hljs-constant {
38  color: #fd8b19;
39}
40
41/* Yellow */
42.ruby .hljs-class .hljs-title,
43.css .hljs-rules .hljs-attribute {
44  color: #fdcc59;
45}
46
47/* Green */
48.hljs-string,
49.hljs-value,
50.hljs-inheritance,
51.hljs-header,
52.ruby .hljs-symbol,
53.xml .hljs-cdata {
54  color: #8fc13e;
55}
56
57/* Aqua */
58.css .hljs-hexcolor {
59  color: #149b93;
60}
61
62/* Blue */
63.hljs-function,
64.python .hljs-decorator,
65.python .hljs-title,
66.ruby .hljs-function .hljs-title,
67.ruby .hljs-title .hljs-keyword,
68.perl .hljs-sub,
69.javascript .hljs-title,
70.coffeescript .hljs-title {
71  color: #1290bf;
72}
73
74/* Purple */
75.hljs-keyword,
76.javascript .hljs-function {
77  color: #c85e7c;
78}
79
80.hljs {
81  display: block;
82  background: #322931;
83  color: #b9b5b8;
84  padding: 0.5em;
85}
86
87.coffeescript .javascript,
88.javascript .xml,
89.tex .hljs-formula,
90.xml .javascript,
91.xml .vbscript,
92.xml .css,
93.xml .hljs-cdata {
94  opacity: 0.5;
95}