many small updates
[pharext/pharext.org] / public / highlight / styles / agate.css
1 /*!
2 * Agate by Taufik Nurrohman <https://github.com/tovic>
3 * ----------------------------------------------------
4 *
5 * #ade5fc
6 * #a2fca2
7 * #c6b4f0
8 * #d36363
9 * #fcc28c
10 * #fc9b9b
11 * #ffa
12 * #fff
13 * #333
14 * #62c8f3
15 * #888
16 *
17 */
18
19 .hljs {
20 display: block;
21 overflow-x: auto;
22 padding: .5em;
23 background: #333;
24 color: white;
25 -webkit-text-size-adjust: none;
26 }
27
28 .asciidoc .hljs-title,
29 .hljs-label,
30 .hljs-tag .hljs-title,
31 .hljs-prompt,
32 .http .hljs-request {
33 font-weight: bold;
34 }
35
36 .hljs-change,
37 .hljs-code {
38 font-style: italic;
39 }
40
41 .hljs-tag,
42 .ini .hljs-title {
43 color: #62c8f3;
44 }
45
46 .hljs-id,
47 .hljs-cbracket,
48 .hljs-tag .hljs-value {
49 color: #ade5fc;
50 }
51
52 .hljs-string,
53 .hljs-bullet {
54 color: #a2fca2;
55 }
56
57 .hljs-type,
58 .hljs-variable,
59 .hljs-name,
60 .actionscript .hljs-title,
61 .aspectj .hljs-annotation,
62 .aspectj .hljs-title,
63 .hljs-attribute,
64 .hljs-change,
65 .hljs-blockquote,
66 .hljs-built_in {
67 color: #ffa;
68 }
69
70 .hljs-number,
71 .hljs-hexcolor,
72 .hljs-link_label,
73 .hljs-link_reference {
74 color: #d36363;
75 }
76
77 .hljs-keyword,
78 .hljs-literal,
79 .hljs-constant,
80 .css .hljs-tag,
81 .hljs-typename,
82 .hljs-winutils {
83 color: #fcc28c;
84 }
85
86 .hljs-comment,
87 .hljs-cdata,
88 .hljs-preprocessor,
89 .hljs-annotation,
90 .hljs-decorator,
91 .hljs-doctype,
92 .hljs-deletion,
93 .hljs-shebang,
94 .apache .hljs-sqbracket,
95 .tex .hljs-formula,
96 .hljs-header,
97 .hljs-horizontal_rule,
98 .hljs-code,
99 .hljs-javadoc {
100 color: #888;
101 }
102
103 .hljs-regexp,
104 .hljs-attr_selector {
105 color: #c6b4f0;
106 }
107
108 .hljs-important,
109 .hljs-doctype,
110 .hljs-pi,
111 .hljs-chunk,
112 .actionscript .hljs-type,
113 .hljs-shebang,
114 .hljs-pragma,
115 .http .hljs-attribute {
116 color: #fc9b9b;
117 }
118
119 .hljs-deletion {
120 background-color: #fc9b9b;
121 color: #333;
122 }
123
124 .hljs-addition {
125 background-color: #a2fca2;
126 color: #333;
127 }
128
129 .hljs a,
130 .hljs-tag .hljs-attribute {
131 color: inherit;
132 }
133
134 .hljs a:focus,
135 .hljs a:hover {
136 color: inherit;
137 text-decoration: underline;
138 }