1/*
2 ParaĆso (dark)
3 Created by Jan T. Sott (http://github.com/idleberg)
4 Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
5*/
6
7/* ParaĆso Comment */
8.hljs-comment,
9.hljs-title {
10 color: #8d8687;
11}
12
13/* ParaĆso Red */
14.hljs-variable,
15.hljs-attribute,
16.hljs-tag,
17.hljs-regexp,
18.hljs-name,
19.ruby .hljs-constant,
20.xml .hljs-tag .hljs-title,
21.xml .hljs-pi,
22.xml .hljs-doctype,
23.html .hljs-doctype,
24.css .hljs-id,
25.css .hljs-class,
26.css .hljs-pseudo {
27 color: #ef6155;
28}
29
30/* ParaĆso Orange */
31.hljs-number,
32.hljs-preprocessor,
33.hljs-built_in,
34.hljs-literal,
35.hljs-params,
36.hljs-constant {
37 color: #f99b15;
38}
39
40/* ParaĆso Yellow */
41.ruby .hljs-class .hljs-title,
42.css .hljs-rule .hljs-attribute {
43 color: #fec418;
44}
45
46/* ParaĆso Green */
47.hljs-string,
48.hljs-value,
49.hljs-inheritance,
50.hljs-header,
51.ruby .hljs-symbol,
52.xml .hljs-cdata {
53 color: #48b685;
54}
55
56/* ParaĆso Aqua */
57.css .hljs-hexcolor {
58 color: #5bc4bf;
59}
60
61/* ParaĆso Blue */
62.hljs-function,
63.python .hljs-decorator,
64.python .hljs-title,
65.ruby .hljs-function .hljs-title,
66.ruby .hljs-title .hljs-keyword,
67.perl .hljs-sub,
68.javascript .hljs-title,
69.coffeescript .hljs-title {
70 color: #06b6ef;
71}
72
73/* ParaĆso Purple */
74.hljs-keyword,
75.javascript .hljs-function {
76 color: #815ba4;
77}
78
79.hljs {
80 display: block;
81 overflow-x: auto;
82 background: #2f1e2e;
83 color: #a39e9b;
84 padding: 0.5em;
85 -webkit-text-size-adjust: none;
86}
87
88.coffeescript .javascript,
89.javascript .xml,
90.tex .hljs-formula,
91.xml .javascript,
92.xml .vbscript,
93.xml .css,
94.xml .hljs-cdata {
95 opacity: 0.5;
96}