showoff 0.9.11.1 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/bin/showoff +4 -0
  3. data/lib/keymap.rb +30 -0
  4. data/lib/showoff/version.rb +1 -1
  5. data/lib/showoff.rb +91 -29
  6. data/public/css/highlight/agate.css +137 -0
  7. data/public/css/highlight/androidstudio.css +53 -0
  8. data/public/css/highlight/arta.css +138 -0
  9. data/public/css/highlight/ascetic.css +52 -0
  10. data/public/css/highlight/atelier-cave.dark.css +113 -0
  11. data/public/css/highlight/atelier-cave.light.css +113 -0
  12. data/public/css/highlight/atelier-dune.dark.css +94 -0
  13. data/public/css/highlight/atelier-dune.light.css +94 -0
  14. data/public/css/highlight/atelier-estuary.dark.css +113 -0
  15. data/public/css/highlight/atelier-estuary.light.css +113 -0
  16. data/public/css/highlight/atelier-forest.dark.css +94 -0
  17. data/public/css/highlight/atelier-forest.light.css +94 -0
  18. data/public/css/highlight/atelier-heath.dark.css +94 -0
  19. data/public/css/highlight/atelier-heath.light.css +94 -0
  20. data/public/css/highlight/atelier-lakeside.dark.css +94 -0
  21. data/public/css/highlight/atelier-lakeside.light.css +94 -0
  22. data/public/css/highlight/atelier-plateau.dark.css +113 -0
  23. data/public/css/highlight/atelier-plateau.light.css +113 -0
  24. data/public/css/highlight/atelier-savanna.dark.css +113 -0
  25. data/public/css/highlight/atelier-savanna.light.css +113 -0
  26. data/public/css/highlight/atelier-seaside.dark.css +94 -0
  27. data/public/css/highlight/atelier-seaside.light.css +94 -0
  28. data/public/css/highlight/atelier-sulphurpool.dark.css +94 -0
  29. data/public/css/highlight/atelier-sulphurpool.light.css +94 -0
  30. data/public/css/highlight/brown_paper.css +103 -0
  31. data/public/css/highlight/brown_papersq.png +0 -0
  32. data/public/css/highlight/codepen-embed.css +97 -0
  33. data/public/css/highlight/color-brewer.css +165 -0
  34. data/public/css/highlight/dark.css +103 -0
  35. data/public/css/highlight/darkula.css +152 -0
  36. data/public/css/highlight/default.css +155 -0
  37. data/public/css/highlight/docco.css +134 -0
  38. data/public/css/highlight/far.css +110 -0
  39. data/public/css/highlight/foundation.css +135 -0
  40. data/public/css/highlight/github-gist.css +211 -0
  41. data/public/css/highlight/github.css +123 -0
  42. data/public/css/highlight/googlecode.css +144 -0
  43. data/public/css/highlight/hybrid.css +164 -0
  44. data/public/css/highlight/idea.css +122 -0
  45. data/public/css/highlight/ir_black.css +106 -0
  46. data/public/css/highlight/kimbie.dark.css +97 -0
  47. data/public/css/highlight/kimbie.light.css +97 -0
  48. data/public/css/highlight/magula.css +120 -0
  49. data/public/css/highlight/mono-blue.css +68 -0
  50. data/public/css/highlight/monokai.css +126 -0
  51. data/public/css/highlight/monokai_sublime.css +154 -0
  52. data/public/css/highlight/obsidian.css +152 -0
  53. data/public/css/highlight/paraiso.dark.css +96 -0
  54. data/public/css/highlight/paraiso.light.css +96 -0
  55. data/public/css/highlight/pojoaque.css +106 -0
  56. data/public/css/highlight/pojoaque.jpg +0 -0
  57. data/public/css/highlight/railscasts.css +184 -0
  58. data/public/css/highlight/rainbow.css +107 -0
  59. data/public/css/highlight/school_book.css +111 -0
  60. data/public/css/highlight/school_book.png +0 -0
  61. data/public/css/highlight/solarized_dark.css +107 -0
  62. data/public/css/highlight/solarized_light.css +107 -0
  63. data/public/css/highlight/sunburst.css +161 -0
  64. data/public/css/highlight/tomorrow-night-blue.css +96 -0
  65. data/public/css/highlight/tomorrow-night-bright.css +95 -0
  66. data/public/css/highlight/tomorrow-night-eighties.css +95 -0
  67. data/public/css/highlight/tomorrow-night.css +96 -0
  68. data/public/css/highlight/tomorrow.css +93 -0
  69. data/public/css/highlight/vs.css +92 -0
  70. data/public/css/highlight/xcode.css +154 -0
  71. data/public/css/highlight/zenburn.css +118 -0
  72. data/public/css/ie8.css +4 -0
  73. data/public/css/presenter.css +5 -17
  74. data/public/css/run_code-dim.png +0 -0
  75. data/public/css/run_code.png +0 -0
  76. data/public/css/showoff.css +154 -127
  77. data/public/js/highlight.pack.js +10816 -0
  78. data/public/js/keyDictionary.json +139 -0
  79. data/public/js/presenter.js +111 -144
  80. data/public/js/showoff.js +333 -387
  81. data/views/header.erb +15 -17
  82. data/views/header_mini.erb +4 -0
  83. data/views/help.erb +79 -0
  84. data/views/index.erb +3 -22
  85. data/views/onepage.erb +27 -14
  86. data/views/presenter.erb +3 -17
  87. data/views/stats.erb +4 -4
  88. metadata +75 -62
  89. data/public/css/sh_style.css +0 -81
  90. data/public/css/tipsy.css +0 -26
  91. data/public/js/core.js +0 -79
  92. data/public/js/jquery.tipsy.js +0 -260
  93. data/public/js/onepage.js +0 -4
  94. data/public/js/sh_lang/sh_bison.min.js +0 -1
  95. data/public/js/sh_lang/sh_c.min.js +0 -1
  96. data/public/js/sh_lang/sh_caml.min.js +0 -1
  97. data/public/js/sh_lang/sh_changelog.min.js +0 -1
  98. data/public/js/sh_lang/sh_coffeescript.min.js +0 -1
  99. data/public/js/sh_lang/sh_cpp.min.js +0 -1
  100. data/public/js/sh_lang/sh_csharp.min.js +0 -1
  101. data/public/js/sh_lang/sh_css.min.js +0 -1
  102. data/public/js/sh_lang/sh_cucumber.min.js +0 -2
  103. data/public/js/sh_lang/sh_desktop.min.js +0 -1
  104. data/public/js/sh_lang/sh_diff.min.js +0 -1
  105. data/public/js/sh_lang/sh_docker.js +0 -137
  106. data/public/js/sh_lang/sh_docker.min.js +0 -1
  107. data/public/js/sh_lang/sh_erlang.min.js +0 -1
  108. data/public/js/sh_lang/sh_flex.min.js +0 -1
  109. data/public/js/sh_lang/sh_gherkin.js +0 -112
  110. data/public/js/sh_lang/sh_gherkin.min.js +0 -1
  111. data/public/js/sh_lang/sh_glsl.min.js +0 -1
  112. data/public/js/sh_lang/sh_haxe.min.js +0 -1
  113. data/public/js/sh_lang/sh_html.min.js +0 -1
  114. data/public/js/sh_lang/sh_ini.js +0 -87
  115. data/public/js/sh_lang/sh_ini.min.js +0 -87
  116. data/public/js/sh_lang/sh_java.min.js +0 -1
  117. data/public/js/sh_lang/sh_javascript.min.js +0 -1
  118. data/public/js/sh_lang/sh_javascript_dom.min.js +0 -1
  119. data/public/js/sh_lang/sh_latex.min.js +0 -1
  120. data/public/js/sh_lang/sh_ldap.min.js +0 -1
  121. data/public/js/sh_lang/sh_log.min.js +0 -1
  122. data/public/js/sh_lang/sh_lsm.min.js +0 -1
  123. data/public/js/sh_lang/sh_m4.min.js +0 -1
  124. data/public/js/sh_lang/sh_makefile.min.js +0 -1
  125. data/public/js/sh_lang/sh_oracle.min.js +0 -1
  126. data/public/js/sh_lang/sh_pascal.min.js +0 -1
  127. data/public/js/sh_lang/sh_perl.min.js +0 -1
  128. data/public/js/sh_lang/sh_php.min.js +0 -1
  129. data/public/js/sh_lang/sh_prolog.min.js +0 -1
  130. data/public/js/sh_lang/sh_properties.min.js +0 -1
  131. data/public/js/sh_lang/sh_puppet.js +0 -182
  132. data/public/js/sh_lang/sh_puppet.min.js +0 -182
  133. data/public/js/sh_lang/sh_puppet_output.js +0 -22
  134. data/public/js/sh_lang/sh_puppet_output.min.js +0 -22
  135. data/public/js/sh_lang/sh_python.min.js +0 -1
  136. data/public/js/sh_lang/sh_ruby.min.js +0 -1
  137. data/public/js/sh_lang/sh_scala.min.js +0 -1
  138. data/public/js/sh_lang/sh_sh.min.js +0 -1
  139. data/public/js/sh_lang/sh_shell.min.js +0 -1
  140. data/public/js/sh_lang/sh_slang.min.js +0 -1
  141. data/public/js/sh_lang/sh_sml.min.js +0 -1
  142. data/public/js/sh_lang/sh_spec.min.js +0 -1
  143. data/public/js/sh_lang/sh_sql.min.js +0 -1
  144. data/public/js/sh_lang/sh_tcl.min.js +0 -1
  145. data/public/js/sh_lang/sh_xml.min.js +0 -1
  146. data/public/js/sh_lang/sh_xorg.min.js +0 -1
  147. data/public/js/sh_main.min.js +0 -4
  148. data/public/js/showoffcore.js +0 -13
@@ -0,0 +1,107 @@
1
+ /*
2
+
3
+ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ background: #fdf6e3;
12
+ color: #657b83;
13
+ -webkit-text-size-adjust: none;
14
+ }
15
+
16
+ .hljs-comment,
17
+ .diff .hljs-header,
18
+ .hljs-doctype,
19
+ .hljs-pi,
20
+ .lisp .hljs-string {
21
+ color: #93a1a1;
22
+ }
23
+
24
+ /* Solarized Green */
25
+ .hljs-keyword,
26
+ .hljs-winutils,
27
+ .method,
28
+ .hljs-addition,
29
+ .css .hljs-tag,
30
+ .hljs-request,
31
+ .hljs-status,
32
+ .nginx .hljs-title {
33
+ color: #859900;
34
+ }
35
+
36
+ /* Solarized Cyan */
37
+ .hljs-number,
38
+ .hljs-command,
39
+ .hljs-string,
40
+ .hljs-tag .hljs-value,
41
+ .hljs-rule .hljs-value,
42
+ .hljs-doctag,
43
+ .tex .hljs-formula,
44
+ .hljs-regexp,
45
+ .hljs-hexcolor,
46
+ .hljs-link_url {
47
+ color: #2aa198;
48
+ }
49
+
50
+ /* Solarized Blue */
51
+ .hljs-title,
52
+ .hljs-localvars,
53
+ .hljs-chunk,
54
+ .hljs-decorator,
55
+ .hljs-built_in,
56
+ .hljs-identifier,
57
+ .vhdl .hljs-literal,
58
+ .hljs-id,
59
+ .css .hljs-function,
60
+ .hljs-name {
61
+ color: #268bd2;
62
+ }
63
+
64
+ /* Solarized Yellow */
65
+ .hljs-attribute,
66
+ .hljs-variable,
67
+ .lisp .hljs-body,
68
+ .smalltalk .hljs-number,
69
+ .hljs-constant,
70
+ .hljs-class .hljs-title,
71
+ .hljs-parent,
72
+ .hljs-type,
73
+ .hljs-link_reference {
74
+ color: #b58900;
75
+ }
76
+
77
+ /* Solarized Orange */
78
+ .hljs-preprocessor,
79
+ .hljs-preprocessor .hljs-keyword,
80
+ .hljs-pragma,
81
+ .hljs-shebang,
82
+ .hljs-symbol,
83
+ .hljs-symbol .hljs-string,
84
+ .diff .hljs-change,
85
+ .hljs-special,
86
+ .hljs-attr_selector,
87
+ .hljs-subst,
88
+ .hljs-cdata,
89
+ .css .hljs-pseudo,
90
+ .hljs-header {
91
+ color: #cb4b16;
92
+ }
93
+
94
+ /* Solarized Red */
95
+ .hljs-deletion,
96
+ .hljs-important {
97
+ color: #dc322f;
98
+ }
99
+
100
+ /* Solarized Violet */
101
+ .hljs-link_label {
102
+ color: #6c71c4;
103
+ }
104
+
105
+ .tex .hljs-formula {
106
+ background: #eee8d5;
107
+ }
@@ -0,0 +1,161 @@
1
+ /*
2
+
3
+ Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ background: #000;
12
+ color: #f8f8f8;
13
+ -webkit-text-size-adjust: none;
14
+ }
15
+
16
+ .hljs-comment {
17
+ color: #aeaeae;
18
+ font-style: italic;
19
+ }
20
+
21
+ .hljs-keyword,
22
+ .ruby .hljs-function .hljs-keyword,
23
+ .hljs-request,
24
+ .hljs-status,
25
+ .nginx .hljs-title {
26
+ color: #e28964;
27
+ }
28
+
29
+ .hljs-function .hljs-keyword,
30
+ .hljs-sub .hljs-keyword,
31
+ .method,
32
+ .hljs-list .hljs-title {
33
+ color: #99cf50;
34
+ }
35
+
36
+ .hljs-string,
37
+ .hljs-tag .hljs-value,
38
+ .hljs-cdata,
39
+ .hljs-filter .hljs-argument,
40
+ .hljs-attr_selector,
41
+ .apache .hljs-cbracket,
42
+ .hljs-date,
43
+ .tex .hljs-command,
44
+ .coffeescript .hljs-attribute,
45
+ .hljs-name {
46
+ color: #65b042;
47
+ }
48
+
49
+ .hljs-subst {
50
+ color: #daefa3;
51
+ }
52
+
53
+ .hljs-regexp {
54
+ color: #e9c062;
55
+ }
56
+
57
+ .hljs-title,
58
+ .hljs-sub .hljs-identifier,
59
+ .hljs-pi,
60
+ .hljs-tag,
61
+ .hljs-tag .hljs-keyword,
62
+ .hljs-decorator,
63
+ .hljs-shebang,
64
+ .hljs-prompt {
65
+ color: #89bdff;
66
+ }
67
+
68
+ .hljs-class .hljs-title,
69
+ .hljs-type,
70
+ .smalltalk .hljs-class,
71
+ .hljs-doctag {
72
+ text-decoration: underline;
73
+ }
74
+
75
+ .hljs-symbol,
76
+ .ruby .hljs-symbol .hljs-string,
77
+ .hljs-number {
78
+ color: #3387cc;
79
+ }
80
+
81
+ .hljs-params,
82
+ .hljs-variable,
83
+ .clojure .hljs-attribute {
84
+ color: #3e87e3;
85
+ }
86
+
87
+ .css .hljs-tag,
88
+ .hljs-rule .hljs-property,
89
+ .hljs-pseudo,
90
+ .tex .hljs-special {
91
+ color: #cda869;
92
+ }
93
+
94
+ .css .hljs-class {
95
+ color: #9b703f;
96
+ }
97
+
98
+ .hljs-rule .hljs-keyword {
99
+ color: #c5af75;
100
+ }
101
+
102
+ .hljs-rule .hljs-value {
103
+ color: #cf6a4c;
104
+ }
105
+
106
+ .css .hljs-id {
107
+ color: #8b98ab;
108
+ }
109
+
110
+ .hljs-annotation,
111
+ .apache .hljs-sqbracket,
112
+ .nginx .hljs-built_in {
113
+ color: #9b859d;
114
+ }
115
+
116
+ .hljs-preprocessor,
117
+ .hljs-pragma {
118
+ color: #8996a8;
119
+ }
120
+
121
+ .hljs-hexcolor,
122
+ .css .hljs-value .hljs-number {
123
+ color: #dd7b3b;
124
+ }
125
+
126
+ .css .hljs-function {
127
+ color: #dad085;
128
+ }
129
+
130
+ .diff .hljs-header,
131
+ .hljs-chunk,
132
+ .tex .hljs-formula {
133
+ background-color: #0e2231;
134
+ color: #f8f8f8;
135
+ font-style: italic;
136
+ }
137
+
138
+ .diff .hljs-change {
139
+ background-color: #4a410d;
140
+ color: #f8f8f8;
141
+ }
142
+
143
+ .hljs-addition {
144
+ background-color: #253b22;
145
+ color: #f8f8f8;
146
+ }
147
+
148
+ .hljs-deletion {
149
+ background-color: #420e09;
150
+ color: #f8f8f8;
151
+ }
152
+
153
+ .coffeescript .javascript,
154
+ .javascript .xml,
155
+ .tex .hljs-formula,
156
+ .xml .javascript,
157
+ .xml .vbscript,
158
+ .xml .css,
159
+ .xml .hljs-cdata {
160
+ opacity: 0.5;
161
+ }
@@ -0,0 +1,96 @@
1
+ /* Tomorrow Night Blue 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
+ color: #7285b7;
9
+ }
10
+
11
+ /* Tomorrow Red */
12
+ .hljs-variable,
13
+ .hljs-attribute,
14
+ .hljs-tag,
15
+ .hljs-regexp,
16
+ .ruby .hljs-constant,
17
+ .xml .hljs-tag .hljs-title,
18
+ .xml .hljs-pi,
19
+ .xml .hljs-doctype,
20
+ .html .hljs-doctype,
21
+ .css .hljs-id,
22
+ .css .hljs-class,
23
+ .css .hljs-pseudo {
24
+ color: #ff9da4;
25
+ }
26
+
27
+ /* Tomorrow Orange */
28
+ .hljs-number,
29
+ .hljs-preprocessor,
30
+ .hljs-pragma,
31
+ .hljs-built_in,
32
+ .hljs-literal,
33
+ .hljs-params,
34
+ .hljs-constant {
35
+ color: #ffc58f;
36
+ }
37
+
38
+ /* Tomorrow Yellow */
39
+ .ruby .hljs-class .hljs-title,
40
+ .css .hljs-rule .hljs-attribute {
41
+ color: #ffeead;
42
+ }
43
+
44
+ /* Tomorrow Green */
45
+ .hljs-string,
46
+ .hljs-value,
47
+ .hljs-inheritance,
48
+ .hljs-header,
49
+ .hljs-name,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #d1f1a9;
53
+ }
54
+
55
+ /* Tomorrow Aqua */
56
+ .hljs-title,
57
+ .css .hljs-hexcolor {
58
+ color: #99ffff;
59
+ }
60
+
61
+ /* Tomorrow Blue */
62
+ .hljs-function,
63
+ .python .hljs-decorator,
64
+ .python .hljs-title,
65
+ .ruby .hljs-function .hljs-title,
66
+ .ruby .hljs-title .hljs-keyword,
67
+ .perl .hljs-sub,
68
+ .javascript .hljs-title,
69
+ .coffeescript .hljs-title {
70
+ color: #bbdaff;
71
+ }
72
+
73
+ /* Tomorrow Purple */
74
+ .hljs-keyword,
75
+ .javascript .hljs-function {
76
+ color: #ebbbff;
77
+ }
78
+
79
+ .hljs {
80
+ display: block;
81
+ overflow-x: auto;
82
+ background: #002451;
83
+ color: white;
84
+ padding: 0.5em;
85
+ -webkit-text-size-adjust: none;
86
+ }
87
+
88
+ .coffeescript .javascript,
89
+ .javascript .xml,
90
+ .tex .hljs-formula,
91
+ .xml .javascript,
92
+ .xml .vbscript,
93
+ .xml .css,
94
+ .xml .hljs-cdata {
95
+ opacity: 0.5;
96
+ }
@@ -0,0 +1,95 @@
1
+ /* Tomorrow Night Bright Theme */
2
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
+
5
+ /* Tomorrow Comment */
6
+ .hljs-comment {
7
+ color: #969896;
8
+ }
9
+
10
+ /* Tomorrow Red */
11
+ .hljs-variable,
12
+ .hljs-attribute,
13
+ .hljs-tag,
14
+ .hljs-regexp,
15
+ .ruby .hljs-constant,
16
+ .xml .hljs-tag .hljs-title,
17
+ .xml .hljs-pi,
18
+ .xml .hljs-doctype,
19
+ .html .hljs-doctype,
20
+ .css .hljs-id,
21
+ .css .hljs-class,
22
+ .css .hljs-pseudo {
23
+ color: #d54e53;
24
+ }
25
+
26
+ /* Tomorrow Orange */
27
+ .hljs-number,
28
+ .hljs-preprocessor,
29
+ .hljs-pragma,
30
+ .hljs-built_in,
31
+ .hljs-literal,
32
+ .hljs-params,
33
+ .hljs-constant {
34
+ color: #e78c45;
35
+ }
36
+
37
+ /* Tomorrow Yellow */
38
+ .ruby .hljs-class .hljs-title,
39
+ .css .hljs-rule .hljs-attribute {
40
+ color: #e7c547;
41
+ }
42
+
43
+ /* Tomorrow Green */
44
+ .hljs-string,
45
+ .hljs-value,
46
+ .hljs-inheritance,
47
+ .hljs-header,
48
+ .hljs-name,
49
+ .ruby .hljs-symbol,
50
+ .xml .hljs-cdata {
51
+ color: #b9ca4a;
52
+ }
53
+
54
+ /* Tomorrow Aqua */
55
+ .hljs-title,
56
+ .css .hljs-hexcolor {
57
+ color: #70c0b1;
58
+ }
59
+
60
+ /* Tomorrow Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #7aa6da;
70
+ }
71
+
72
+ /* Tomorrow Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #c397d8;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ overflow-x: auto;
81
+ background: black;
82
+ color: #eaeaea;
83
+ padding: 0.5em;
84
+ -webkit-text-size-adjust: none;
85
+ }
86
+
87
+ .coffeescript .javascript,
88
+ .javascript .xml,
89
+ .tex .hljs-formula,
90
+ .xml .javascript,
91
+ .xml .vbscript,
92
+ .xml .css,
93
+ .xml .hljs-cdata {
94
+ opacity: 0.5;
95
+ }
@@ -0,0 +1,95 @@
1
+ /* Tomorrow Night Eighties Theme */
2
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
+
5
+ /* Tomorrow Comment */
6
+ .hljs-comment {
7
+ color: #999999;
8
+ }
9
+
10
+ /* Tomorrow Red */
11
+ .hljs-variable,
12
+ .hljs-attribute,
13
+ .hljs-tag,
14
+ .hljs-regexp,
15
+ .ruby .hljs-constant,
16
+ .xml .hljs-tag .hljs-title,
17
+ .xml .hljs-pi,
18
+ .xml .hljs-doctype,
19
+ .html .hljs-doctype,
20
+ .css .hljs-id,
21
+ .css .hljs-class,
22
+ .css .hljs-pseudo {
23
+ color: #f2777a;
24
+ }
25
+
26
+ /* Tomorrow Orange */
27
+ .hljs-number,
28
+ .hljs-preprocessor,
29
+ .hljs-pragma,
30
+ .hljs-built_in,
31
+ .hljs-literal,
32
+ .hljs-params,
33
+ .hljs-constant {
34
+ color: #f99157;
35
+ }
36
+
37
+ /* Tomorrow Yellow */
38
+ .ruby .hljs-class .hljs-title,
39
+ .css .hljs-rule .hljs-attribute {
40
+ color: #ffcc66;
41
+ }
42
+
43
+ /* Tomorrow Green */
44
+ .hljs-string,
45
+ .hljs-value,
46
+ .hljs-inheritance,
47
+ .hljs-header,
48
+ .hljs-name,
49
+ .ruby .hljs-symbol,
50
+ .xml .hljs-cdata {
51
+ color: #99cc99;
52
+ }
53
+
54
+ /* Tomorrow Aqua */
55
+ .hljs-title,
56
+ .css .hljs-hexcolor {
57
+ color: #66cccc;
58
+ }
59
+
60
+ /* Tomorrow Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #6699cc;
70
+ }
71
+
72
+ /* Tomorrow Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #cc99cc;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ overflow-x: auto;
81
+ background: #2d2d2d;
82
+ color: #cccccc;
83
+ padding: 0.5em;
84
+ -webkit-text-size-adjust: none;
85
+ }
86
+
87
+ .coffeescript .javascript,
88
+ .javascript .xml,
89
+ .tex .hljs-formula,
90
+ .xml .javascript,
91
+ .xml .vbscript,
92
+ .xml .css,
93
+ .xml .hljs-cdata {
94
+ opacity: 0.5;
95
+ }
@@ -0,0 +1,96 @@
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
+ color: #969896;
9
+ }
10
+
11
+ /* Tomorrow Red */
12
+ .hljs-variable,
13
+ .hljs-attribute,
14
+ .hljs-tag,
15
+ .hljs-regexp,
16
+ .ruby .hljs-constant,
17
+ .xml .hljs-tag .hljs-title,
18
+ .xml .hljs-pi,
19
+ .xml .hljs-doctype,
20
+ .html .hljs-doctype,
21
+ .css .hljs-id,
22
+ .css .hljs-class,
23
+ .css .hljs-pseudo {
24
+ color: #cc6666;
25
+ }
26
+
27
+ /* Tomorrow Orange */
28
+ .hljs-number,
29
+ .hljs-preprocessor,
30
+ .hljs-pragma,
31
+ .hljs-built_in,
32
+ .hljs-literal,
33
+ .hljs-params,
34
+ .hljs-constant {
35
+ color: #de935f;
36
+ }
37
+
38
+ /* Tomorrow Yellow */
39
+ .ruby .hljs-class .hljs-title,
40
+ .css .hljs-rule .hljs-attribute {
41
+ color: #f0c674;
42
+ }
43
+
44
+ /* Tomorrow Green */
45
+ .hljs-string,
46
+ .hljs-value,
47
+ .hljs-inheritance,
48
+ .hljs-header,
49
+ .hljs-name,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #b5bd68;
53
+ }
54
+
55
+ /* Tomorrow Aqua */
56
+ .hljs-title,
57
+ .css .hljs-hexcolor {
58
+ color: #8abeb7;
59
+ }
60
+
61
+ /* Tomorrow Blue */
62
+ .hljs-function,
63
+ .python .hljs-decorator,
64
+ .python .hljs-title,
65
+ .ruby .hljs-function .hljs-title,
66
+ .ruby .hljs-title .hljs-keyword,
67
+ .perl .hljs-sub,
68
+ .javascript .hljs-title,
69
+ .coffeescript .hljs-title {
70
+ color: #81a2be;
71
+ }
72
+
73
+ /* Tomorrow Purple */
74
+ .hljs-keyword,
75
+ .javascript .hljs-function {
76
+ color: #b294bb;
77
+ }
78
+
79
+ .hljs {
80
+ display: block;
81
+ overflow-x: auto;
82
+ background: #1d1f21;
83
+ color: #c5c8c6;
84
+ padding: 0.5em;
85
+ -webkit-text-size-adjust: none;
86
+ }
87
+
88
+ .coffeescript .javascript,
89
+ .javascript .xml,
90
+ .tex .hljs-formula,
91
+ .xml .javascript,
92
+ .xml .vbscript,
93
+ .xml .css,
94
+ .xml .hljs-cdata {
95
+ opacity: 0.5;
96
+ }