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 / tomorrow.css

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

73 lines 978 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
2
3 /* Tomorrow Comment */
4 .hljs-comment,
5 .hljs-quote {
6 color: #8e908c;
7 }
8
9 /* Tomorrow Red */
10 .hljs-variable,
11 .hljs-template-variable,
12 .hljs-tag,
13 .hljs-name,
14 .hljs-selector-id,
15 .hljs-selector-class,
16 .hljs-regexp,
17 .hljs-deletion {
18 color: #c82829;
19 }
20
21 /* Tomorrow Orange */
22 .hljs-number,
23 .hljs-built_in,
24 .hljs-builtin-name,
25 .hljs-literal,
26 .hljs-type,
27 .hljs-params,
28 .hljs-meta,
29 .hljs-link {
30 color: #f5871f;
31 }
32
33 /* Tomorrow Yellow */
34 .hljs-attribute {
35 color: #eab700;
36 }
37
38 /* Tomorrow Green */
39 .hljs-string,
40 .hljs-symbol,
41 .hljs-bullet,
42 .hljs-addition {
43 color: #718c00;
44 }
45
46 /* Tomorrow Blue */
47 .hljs-title,
48 .hljs-section {
49 color: #4271ae;
50 }
51
52 /* Tomorrow Purple */
53 .hljs-keyword,
54 .hljs-selector-tag {
55 color: #8959a8;
56 }
57
58 .hljs {
59 display: block;
60 overflow-x: auto;
61 background: white;
62 color: #4d4d4c;
63 padding: 0.5em;
64 }
65
66 .hljs-emphasis {
67 font-style: italic;
68 }
69
70 .hljs-strong {
71 font-weight: bold;
72 }
73