comparison themes/siimple/static/styles/sunburst.css @ 12:93f0440d452e

pasterd: add siimple theme
author David Demelier <markand@malikania.fr>
date Thu, 06 Feb 2020 10:29:02 +0100
parents
children
comparison
equal deleted inserted replaced
11:b9b046818b0c 12:93f0440d452e
1 /*
2
3 Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #000;
12 color: #f8f8f8;
13 }
14
15 .hljs-comment,
16 .hljs-quote {
17 color: #aeaeae;
18 font-style: italic;
19 }
20
21 .hljs-keyword,
22 .hljs-selector-tag,
23 .hljs-type {
24 color: #e28964;
25 }
26
27 .hljs-string {
28 color: #65b042;
29 }
30
31 .hljs-subst {
32 color: #daefa3;
33 }
34
35 .hljs-regexp,
36 .hljs-link {
37 color: #e9c062;
38 }
39
40 .hljs-title,
41 .hljs-section,
42 .hljs-tag,
43 .hljs-name {
44 color: #89bdff;
45 }
46
47 .hljs-class .hljs-title,
48 .hljs-doctag {
49 text-decoration: underline;
50 }
51
52 .hljs-symbol,
53 .hljs-bullet,
54 .hljs-number {
55 color: #3387cc;
56 }
57
58 .hljs-params,
59 .hljs-variable,
60 .hljs-template-variable {
61 color: #3e87e3;
62 }
63
64 .hljs-attribute {
65 color: #cda869;
66 }
67
68 .hljs-meta {
69 color: #8996a8;
70 }
71
72 .hljs-formula {
73 background-color: #0e2231;
74 color: #f8f8f8;
75 font-style: italic;
76 }
77
78 .hljs-addition {
79 background-color: #253b22;
80 color: #f8f8f8;
81 }
82
83 .hljs-deletion {
84 background-color: #420e09;
85 color: #f8f8f8;
86 }
87
88 .hljs-selector-class {
89 color: #9b703f;
90 }
91
92 .hljs-selector-id {
93 color: #8b98ab;
94 }
95
96 .hljs-emphasis {
97 font-style: italic;
98 }
99
100 .hljs-strong {
101 font-weight: bold;
102 }