1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/*
devibeans (dark)
Created by Farzad Sadeghi (http://github.com/terminaldweller)
Inspired by vim's jellybeans theme (https://github.com/nanotech/jellybeans.vim)
*/
.hljs-comment,
.hljs-quote {
color: #339966;
}
.hljs-params {
color: #a39e9b;
}
.hljs-regexp {
color: #d700ff;
}
/* Red */
.hljs-tag,
.hljs-selector-id,
.hljs-number,
.hljs-literal {
color: #ef5350;
}
.hljs.meta {
color: #0087ff;
}
.hljs-operator {
color: #005faf;
}
/* devibeans blue */
.hljs-selector-class,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-keyword {
color: #64b5f6;
}
/* Paraíso Orange */
.hljs-built_in,
.hljs-title,
.hljs-deletion {
color: #ff8700;
}
/* Paraíso Yellow */
.hljs-type,
.hljs-section,
.hljs-function,
.hljs-name,
.hljs-attribute {
color: #ffd75f;
}
/* Paraíso Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #558b2f;
}
/* Paraíso Purple */
.hljs-selector-tag {
color: #9966ff;
}
.hljs {
display: block;
overflow-x: auto;
background: #000000;
color: #a39e9b;
padding: 0.5em;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
|