PluginProbe
Prismatic / 1.9
Prismatic v1.9
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-night.css

tomorrow-night.css in Prismatic 1.9, at lib/highlight/css/tomorrow-night.css

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