PluginProbe
Prismatic / 2.1
Prismatic v2.1
trunk 1.3 1.4 1.5 1.6 1.6.1 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.9.1 3.0 3.1 3.1.1 3.2 3.2.1 All 40 releases
prismatic / lib / highlight / css / agate.css

agate.css in Prismatic 2.1, at lib/highlight/css/agate.css

109 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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: 0.5em;
23 background: #333;
24 color: white;
25 }
26
27 .hljs-name,
28 .hljs-strong {
29 font-weight: bold;
30 }
31
32 .hljs-code,
33 .hljs-emphasis {
34 font-style: italic;
35 }
36
37 .hljs-tag {
38 color: #62c8f3;
39 }
40
41 .hljs-variable,
42 .hljs-template-variable,
43 .hljs-selector-id,
44 .hljs-selector-class {
45 color: #ade5fc;
46 }
47
48 .hljs-string,
49 .hljs-bullet {
50 color: #a2fca2;
51 }
52
53 .hljs-type,
54 .hljs-title,
55 .hljs-section,
56 .hljs-attribute,
57 .hljs-quote,
58 .hljs-built_in,
59 .hljs-builtin-name {
60 color: #ffa;
61 }
62
63 .hljs-number,
64 .hljs-symbol,
65 .hljs-bullet {
66 color: #d36363;
67 }
68
69 .hljs-keyword,
70 .hljs-selector-tag,
71 .hljs-literal {
72 color: #fcc28c;
73 }
74
75 .hljs-comment,
76 .hljs-deletion,
77 .hljs-code {
78 color: #888;
79 }
80
81 .hljs-regexp,
82 .hljs-link {
83 color: #c6b4f0;
84 }
85
86 .hljs-meta {
87 color: #fc9b9b;
88 }
89
90 .hljs-deletion {
91 background-color: #fc9b9b;
92 color: #333;
93 }
94
95 .hljs-addition {
96 background-color: #a2fca2;
97 color: #333;
98 }
99
100 .hljs a {
101 color: inherit;
102 }
103
104 .hljs a:focus,
105 .hljs a:hover {
106 color: inherit;
107 text-decoration: underline;
108 }
109