PluginProbe
Prismatic / 2.2
Prismatic v2.2
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 / xcode.css

xcode.css in Prismatic 2.2, at lib/highlight/css/xcode.css

105 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3 XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #fff;
12 color: black;
13 }
14
15 /* Gray DOCTYPE selectors like WebKit */
16 .xml .hljs-meta {
17 color: #c0c0c0;
18 }
19
20 .hljs-comment,
21 .hljs-quote {
22 color: #007400;
23 }
24
25 .hljs-tag,
26 .hljs-attribute,
27 .hljs-keyword,
28 .hljs-selector-tag,
29 .hljs-literal,
30 .hljs-name {
31 color: #aa0d91;
32 }
33
34 .hljs-variable,
35 .hljs-template-variable {
36 color: #3F6E74;
37 }
38
39 .hljs-code,
40 .hljs-string,
41 .hljs-meta-string {
42 color: #c41a16;
43 }
44
45 .hljs-regexp,
46 .hljs-link {
47 color: #0E0EFF;
48 }
49
50 .hljs-title,
51 .hljs-symbol,
52 .hljs-bullet,
53 .hljs-number {
54 color: #1c00cf;
55 }
56
57 .hljs-section,
58 .hljs-meta {
59 color: #643820;
60 }
61
62
63 .hljs-class .hljs-title,
64 .hljs-type,
65 .hljs-built_in,
66 .hljs-builtin-name,
67 .hljs-params {
68 color: #5c2699;
69 }
70
71 .hljs-attr {
72 color: #836C28;
73 }
74
75 .hljs-subst {
76 color: #000;
77 }
78
79 .hljs-formula {
80 background-color: #eee;
81 font-style: italic;
82 }
83
84 .hljs-addition {
85 background-color: #baeeba;
86 }
87
88 .hljs-deletion {
89 background-color: #ffc8bd;
90 }
91
92 .hljs-selector-id,
93 .hljs-selector-class {
94 color: #9b703f;
95 }
96
97 .hljs-doctag,
98 .hljs-strong {
99 font-weight: bold;
100 }
101
102 .hljs-emphasis {
103 font-style: italic;
104 }
105