crosslanguagespotter 0.0.2-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/Gemfile +3 -0
  4. data/Rakefile +13 -0
  5. data/crosslanguagespotter.gemspec +36 -0
  6. data/examples/ex1.rb +13 -0
  7. data/examples/services_example.rb +13 -0
  8. data/lib/crosslanguagespotter/basic.rb +157 -0
  9. data/lib/crosslanguagespotter/context.rb +139 -0
  10. data/lib/crosslanguagespotter/figures_evaluator.rb +160 -0
  11. data/lib/crosslanguagespotter/jaccard.rb +114 -0
  12. data/lib/crosslanguagespotter/methods/context.rb +127 -0
  13. data/lib/crosslanguagespotter/methods/jaro.rb +118 -0
  14. data/lib/crosslanguagespotter/methods/tversky.rb +44 -0
  15. data/lib/crosslanguagespotter/model_loading.rb +333 -0
  16. data/lib/crosslanguagespotter/oracle.rb +261 -0
  17. data/lib/crosslanguagespotter/report.rb +88 -0
  18. data/lib/crosslanguagespotter/version.rb +5 -0
  19. data/lib/crosslanguagespotter/wekaintegration.rb +83 -0
  20. data/lib/crosslanguagespotter.rb +7 -0
  21. data/lib/jars/weka.jar +0 -0
  22. data/resources/css/bootstrap-theme.css +346 -0
  23. data/resources/css/bootstrap-theme.min.css +7 -0
  24. data/resources/css/bootstrap.css +5780 -0
  25. data/resources/css/bootstrap.min.css +7 -0
  26. data/resources/css/highlightstyles/arta.css +160 -0
  27. data/resources/css/highlightstyles/ascetic.css +50 -0
  28. data/resources/css/highlightstyles/atelier-dune.dark.css +93 -0
  29. data/resources/css/highlightstyles/atelier-dune.light.css +93 -0
  30. data/resources/css/highlightstyles/atelier-forest.dark.css +93 -0
  31. data/resources/css/highlightstyles/atelier-forest.light.css +93 -0
  32. data/resources/css/highlightstyles/atelier-heath.dark.css +93 -0
  33. data/resources/css/highlightstyles/atelier-heath.light.css +93 -0
  34. data/resources/css/highlightstyles/atelier-lakeside.dark.css +93 -0
  35. data/resources/css/highlightstyles/atelier-lakeside.light.css +93 -0
  36. data/resources/css/highlightstyles/atelier-seaside.dark.css +93 -0
  37. data/resources/css/highlightstyles/atelier-seaside.light.css +93 -0
  38. data/resources/css/highlightstyles/brown_paper.css +105 -0
  39. data/resources/css/highlightstyles/brown_papersq.png +0 -0
  40. data/resources/css/highlightstyles/dark.css +105 -0
  41. data/resources/css/highlightstyles/default.css +153 -0
  42. data/resources/css/highlightstyles/docco.css +132 -0
  43. data/resources/css/highlightstyles/far.css +113 -0
  44. data/resources/css/highlightstyles/foundation.css +133 -0
  45. data/resources/css/highlightstyles/github.css +125 -0
  46. data/resources/css/highlightstyles/googlecode.css +147 -0
  47. data/resources/css/highlightstyles/idea.css +122 -0
  48. data/resources/css/highlightstyles/ir_black.css +105 -0
  49. data/resources/css/highlightstyles/magula.css +123 -0
  50. data/resources/css/highlightstyles/mono-blue.css +62 -0
  51. data/resources/css/highlightstyles/monokai.css +127 -0
  52. data/resources/css/highlightstyles/monokai_sublime.css +149 -0
  53. data/resources/css/highlightstyles/obsidian.css +154 -0
  54. data/resources/css/highlightstyles/paraiso.dark.css +93 -0
  55. data/resources/css/highlightstyles/paraiso.light.css +93 -0
  56. data/resources/css/highlightstyles/pojoaque.css +106 -0
  57. data/resources/css/highlightstyles/pojoaque.jpg +0 -0
  58. data/resources/css/highlightstyles/railscasts.css +182 -0
  59. data/resources/css/highlightstyles/rainbow.css +112 -0
  60. data/resources/css/highlightstyles/school_book.css +113 -0
  61. data/resources/css/highlightstyles/school_book.png +0 -0
  62. data/resources/css/highlightstyles/solarized_dark.css +107 -0
  63. data/resources/css/highlightstyles/solarized_light.css +107 -0
  64. data/resources/css/highlightstyles/sunburst.css +160 -0
  65. data/resources/css/highlightstyles/tomorrow-night-blue.css +93 -0
  66. data/resources/css/highlightstyles/tomorrow-night-bright.css +92 -0
  67. data/resources/css/highlightstyles/tomorrow-night-eighties.css +92 -0
  68. data/resources/css/highlightstyles/tomorrow-night.css +93 -0
  69. data/resources/css/highlightstyles/tomorrow.css +90 -0
  70. data/resources/css/highlightstyles/vs.css +89 -0
  71. data/resources/css/highlightstyles/xcode.css +158 -0
  72. data/resources/css/highlightstyles/zenburn.css +117 -0
  73. data/resources/example.html +1501 -0
  74. data/resources/js/bootstrap.js +1943 -0
  75. data/resources/js/bootstrap.min.js +7 -0
  76. data/resources/js/highlight.pack.js +1 -0
  77. data/resources/services_example.html +141 -0
  78. data/resources/template.html +61 -0
  79. data/test/data/angular-puzzle.GS +111 -0
  80. data/test/data/angular_puzzle/app.js +66 -0
  81. data/test/data/angular_puzzle/index.html +67 -0
  82. data/test/data/angular_puzzle/slidingPuzzle.js +203 -0
  83. data/test/data/angular_puzzle/wordSearchPuzzle.js +270 -0
  84. data/test/data/example.html +5 -0
  85. data/test/data/example.js +4 -0
  86. data/test/data/services/index.html +33 -0
  87. data/test/data/services/script.js +15 -0
  88. data/test/test_helper.rb +9 -0
  89. data/test/test_parsing.rb +23 -0
  90. data/test/test_spotter.rb +42 -0
  91. data/test/test_wekaintegration.rb +43 -0
  92. metadata +328 -0
@@ -0,0 +1,93 @@
1
+ /*
2
+ Paraíso (light)
3
+ Created by Jan T. Sott (http://github.com/idleberg)
4
+ Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
5
+ */
6
+
7
+ /* Paraíso Comment */
8
+ .hljs-comment,
9
+ .hljs-title {
10
+ color: #776e71;
11
+ }
12
+
13
+ /* Paraíso Red */
14
+ .hljs-variable,
15
+ .hljs-attribute,
16
+ .hljs-tag,
17
+ .hljs-regexp,
18
+ .ruby .hljs-constant,
19
+ .xml .hljs-tag .hljs-title,
20
+ .xml .hljs-pi,
21
+ .xml .hljs-doctype,
22
+ .html .hljs-doctype,
23
+ .css .hljs-id,
24
+ .css .hljs-class,
25
+ .css .hljs-pseudo {
26
+ color: #ef6155;
27
+ }
28
+
29
+ /* Paraíso Orange */
30
+ .hljs-number,
31
+ .hljs-preprocessor,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #f99b15;
37
+ }
38
+
39
+ /* Paraíso Yellow */
40
+ .ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #fec418;
43
+ }
44
+
45
+ /* Paraíso Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #48b685;
53
+ }
54
+
55
+ /* Paraíso Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #5bc4bf;
58
+ }
59
+
60
+ /* Paraíso 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: #06b6ef;
70
+ }
71
+
72
+ /* Paraíso Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #815ba4;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #e7e9db;
81
+ color: #4f424c;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
@@ -0,0 +1,106 @@
1
+ /*
2
+
3
+ Pojoaque Style by Jason Tate
4
+ http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
5
+ Based on Solarized Style from http://ethanschoonover.com/solarized
6
+
7
+ */
8
+
9
+ .hljs {
10
+ display: block; padding: 0.5em;
11
+ color: #DCCF8F;
12
+ background: url(./pojoaque.jpg) repeat scroll left top #181914;
13
+ }
14
+
15
+ .hljs-comment,
16
+ .hljs-template_comment,
17
+ .diff .hljs-header,
18
+ .hljs-doctype,
19
+ .lisp .hljs-string,
20
+ .hljs-javadoc {
21
+ color: #586e75;
22
+ font-style: italic;
23
+ }
24
+
25
+ .hljs-keyword,
26
+ .css .rule .hljs-keyword,
27
+ .hljs-winutils,
28
+ .javascript .hljs-title,
29
+ .method,
30
+ .hljs-addition,
31
+ .css .hljs-tag,
32
+ .clojure .hljs-title,
33
+ .nginx .hljs-title {
34
+ color: #B64926;
35
+ }
36
+
37
+ .hljs-number,
38
+ .hljs-command,
39
+ .hljs-string,
40
+ .hljs-tag .hljs-value,
41
+ .hljs-phpdoc,
42
+ .tex .hljs-formula,
43
+ .hljs-regexp,
44
+ .hljs-hexcolor {
45
+ color: #468966;
46
+ }
47
+
48
+ .hljs-title,
49
+ .hljs-localvars,
50
+ .hljs-function .hljs-title,
51
+ .hljs-chunk,
52
+ .hljs-decorator,
53
+ .hljs-built_in,
54
+ .lisp .hljs-title,
55
+ .clojure .hljs-built_in,
56
+ .hljs-identifier,
57
+ .hljs-id {
58
+ color: #FFB03B;
59
+ }
60
+
61
+ .hljs-attribute,
62
+ .hljs-variable,
63
+ .lisp .hljs-body,
64
+ .smalltalk .hljs-number,
65
+ .hljs-constant,
66
+ .hljs-class .hljs-title,
67
+ .hljs-parent,
68
+ .haskell .hljs-type {
69
+ color: #b58900;
70
+ }
71
+
72
+ .css .hljs-attribute {
73
+ color: #b89859;
74
+ }
75
+
76
+ .css .hljs-number,
77
+ .css .hljs-hexcolor {
78
+ color: #DCCF8F;
79
+ }
80
+
81
+ .css .hljs-class {
82
+ color: #d3a60c;
83
+ }
84
+
85
+ .hljs-preprocessor,
86
+ .hljs-pragma,
87
+ .hljs-pi,
88
+ .hljs-shebang,
89
+ .hljs-symbol,
90
+ .hljs-symbol .hljs-string,
91
+ .diff .hljs-change,
92
+ .hljs-special,
93
+ .hljs-attr_selector,
94
+ .hljs-important,
95
+ .hljs-subst,
96
+ .hljs-cdata {
97
+ color: #cb4b16;
98
+ }
99
+
100
+ .hljs-deletion {
101
+ color: #dc322f;
102
+ }
103
+
104
+ .tex .hljs-formula {
105
+ background: #073642;
106
+ }
@@ -0,0 +1,182 @@
1
+ /*
2
+
3
+ Railscasts-like style (c) Visoft, Inc. (Damien White)
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ padding: 0.5em;
10
+ background: #232323;
11
+ color: #E6E1DC;
12
+ }
13
+
14
+ .hljs-comment,
15
+ .hljs-template_comment,
16
+ .hljs-javadoc,
17
+ .hljs-shebang {
18
+ color: #BC9458;
19
+ font-style: italic;
20
+ }
21
+
22
+ .hljs-keyword,
23
+ .ruby .hljs-function .hljs-keyword,
24
+ .hljs-request,
25
+ .hljs-status,
26
+ .nginx .hljs-title,
27
+ .method,
28
+ .hljs-list .hljs-title {
29
+ color: #C26230;
30
+ }
31
+
32
+ .hljs-string,
33
+ .hljs-number,
34
+ .hljs-regexp,
35
+ .hljs-tag .hljs-value,
36
+ .hljs-cdata,
37
+ .hljs-filter .hljs-argument,
38
+ .hljs-attr_selector,
39
+ .apache .hljs-cbracket,
40
+ .hljs-date,
41
+ .tex .hljs-command,
42
+ .markdown .hljs-link_label {
43
+ color: #A5C261;
44
+ }
45
+
46
+ .hljs-subst {
47
+ color: #519F50;
48
+ }
49
+
50
+ .hljs-tag,
51
+ .hljs-tag .hljs-keyword,
52
+ .hljs-tag .hljs-title,
53
+ .hljs-doctype,
54
+ .hljs-sub .hljs-identifier,
55
+ .hljs-pi,
56
+ .input_number {
57
+ color: #E8BF6A;
58
+ }
59
+
60
+ .hljs-identifier {
61
+ color: #D0D0FF;
62
+ }
63
+
64
+ .hljs-class .hljs-title,
65
+ .haskell .hljs-type,
66
+ .smalltalk .hljs-class,
67
+ .hljs-javadoctag,
68
+ .hljs-yardoctag,
69
+ .hljs-phpdoc {
70
+ text-decoration: none;
71
+ }
72
+
73
+ .hljs-constant {
74
+ color: #DA4939;
75
+ }
76
+
77
+
78
+ .hljs-symbol,
79
+ .hljs-built_in,
80
+ .ruby .hljs-symbol .hljs-string,
81
+ .ruby .hljs-symbol .hljs-identifier,
82
+ .markdown .hljs-link_url,
83
+ .hljs-attribute {
84
+ color: #6D9CBE;
85
+ }
86
+
87
+ .markdown .hljs-link_url {
88
+ text-decoration: underline;
89
+ }
90
+
91
+
92
+
93
+ .hljs-params,
94
+ .hljs-variable,
95
+ .clojure .hljs-attribute {
96
+ color: #D0D0FF;
97
+ }
98
+
99
+ .css .hljs-tag,
100
+ .hljs-rules .hljs-property,
101
+ .hljs-pseudo,
102
+ .tex .hljs-special {
103
+ color: #CDA869;
104
+ }
105
+
106
+ .css .hljs-class {
107
+ color: #9B703F;
108
+ }
109
+
110
+ .hljs-rules .hljs-keyword {
111
+ color: #C5AF75;
112
+ }
113
+
114
+ .hljs-rules .hljs-value {
115
+ color: #CF6A4C;
116
+ }
117
+
118
+ .css .hljs-id {
119
+ color: #8B98AB;
120
+ }
121
+
122
+ .hljs-annotation,
123
+ .apache .hljs-sqbracket,
124
+ .nginx .hljs-built_in {
125
+ color: #9B859D;
126
+ }
127
+
128
+ .hljs-preprocessor,
129
+ .hljs-preprocessor *,
130
+ .hljs-pragma {
131
+ color: #8996A8 !important;
132
+ }
133
+
134
+ .hljs-hexcolor,
135
+ .css .hljs-value .hljs-number {
136
+ color: #A5C261;
137
+ }
138
+
139
+ .hljs-title,
140
+ .hljs-decorator,
141
+ .css .hljs-function {
142
+ color: #FFC66D;
143
+ }
144
+
145
+ .diff .hljs-header,
146
+ .hljs-chunk {
147
+ background-color: #2F33AB;
148
+ color: #E6E1DC;
149
+ display: inline-block;
150
+ width: 100%;
151
+ }
152
+
153
+ .diff .hljs-change {
154
+ background-color: #4A410D;
155
+ color: #F8F8F8;
156
+ display: inline-block;
157
+ width: 100%;
158
+ }
159
+
160
+ .hljs-addition {
161
+ background-color: #144212;
162
+ color: #E6E1DC;
163
+ display: inline-block;
164
+ width: 100%;
165
+ }
166
+
167
+ .hljs-deletion {
168
+ background-color: #600;
169
+ color: #E6E1DC;
170
+ display: inline-block;
171
+ width: 100%;
172
+ }
173
+
174
+ .coffeescript .javascript,
175
+ .javascript .xml,
176
+ .tex .hljs-formula,
177
+ .xml .javascript,
178
+ .xml .vbscript,
179
+ .xml .css,
180
+ .xml .hljs-cdata {
181
+ opacity: 0.7;
182
+ }
@@ -0,0 +1,112 @@
1
+ /*
2
+
3
+ Style with support for rainbow parens
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block; padding: 0.5em;
9
+ background: #474949; color: #D1D9E1;
10
+ }
11
+
12
+
13
+ .hljs-body,
14
+ .hljs-collection {
15
+ color: #D1D9E1;
16
+ }
17
+
18
+ .hljs-comment,
19
+ .hljs-template_comment,
20
+ .diff .hljs-header,
21
+ .hljs-doctype,
22
+ .lisp .hljs-string,
23
+ .hljs-javadoc {
24
+ color: #969896;
25
+ font-style: italic;
26
+ }
27
+
28
+ .hljs-keyword,
29
+ .clojure .hljs-attribute,
30
+ .hljs-winutils,
31
+ .javascript .hljs-title,
32
+ .hljs-addition,
33
+ .css .hljs-tag {
34
+ color: #cc99cc;
35
+ }
36
+
37
+ .hljs-number { color: #f99157; }
38
+
39
+ .hljs-command,
40
+ .hljs-string,
41
+ .hljs-tag .hljs-value,
42
+ .hljs-phpdoc,
43
+ .tex .hljs-formula,
44
+ .hljs-regexp,
45
+ .hljs-hexcolor {
46
+ color: #8abeb7;
47
+ }
48
+
49
+ .hljs-title,
50
+ .hljs-localvars,
51
+ .hljs-function .hljs-title,
52
+ .hljs-chunk,
53
+ .hljs-decorator,
54
+ .hljs-built_in,
55
+ .lisp .hljs-title,
56
+ .hljs-identifier
57
+ {
58
+ color: #b5bd68;
59
+ }
60
+
61
+ .hljs-class .hljs-keyword
62
+ {
63
+ color: #f2777a;
64
+ }
65
+
66
+ .hljs-variable,
67
+ .lisp .hljs-body,
68
+ .smalltalk .hljs-number,
69
+ .hljs-constant,
70
+ .hljs-class .hljs-title,
71
+ .hljs-parent,
72
+ .haskell .hljs-label,
73
+ .hljs-id,
74
+ .lisp .hljs-title,
75
+ .clojure .hljs-title .hljs-built_in {
76
+ color: #ffcc66;
77
+ }
78
+
79
+ .hljs-tag .hljs-title,
80
+ .hljs-rules .hljs-property,
81
+ .django .hljs-tag .hljs-keyword,
82
+ .clojure .hljs-title .hljs-built_in {
83
+ font-weight: bold;
84
+ }
85
+
86
+ .hljs-attribute,
87
+ .clojure .hljs-title {
88
+ color: #81a2be;
89
+ }
90
+
91
+ .hljs-preprocessor,
92
+ .hljs-pragma,
93
+ .hljs-pi,
94
+ .hljs-shebang,
95
+ .hljs-symbol,
96
+ .hljs-symbol .hljs-string,
97
+ .diff .hljs-change,
98
+ .hljs-special,
99
+ .hljs-attr_selector,
100
+ .hljs-important,
101
+ .hljs-subst,
102
+ .hljs-cdata {
103
+ color: #f99157;
104
+ }
105
+
106
+ .hljs-deletion {
107
+ color: #dc322f;
108
+ }
109
+
110
+ .tex .hljs-formula {
111
+ background: #eee8d5;
112
+ }
@@ -0,0 +1,113 @@
1
+ /*
2
+
3
+ School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block; padding: 15px 0.5em 0.5em 30px;
9
+ font-size: 11px !important;
10
+ line-height:16px !important;
11
+ }
12
+
13
+ pre{
14
+ background:#f6f6ae url(./school_book.png);
15
+ border-top: solid 2px #d2e8b9;
16
+ border-bottom: solid 1px #d2e8b9;
17
+ }
18
+
19
+ .hljs-keyword,
20
+ .hljs-literal,
21
+ .hljs-change,
22
+ .hljs-winutils,
23
+ .hljs-flow,
24
+ .lisp .hljs-title,
25
+ .clojure .hljs-built_in,
26
+ .nginx .hljs-title,
27
+ .tex .hljs-special {
28
+ color:#005599;
29
+ font-weight:bold;
30
+ }
31
+
32
+ .hljs,
33
+ .hljs-subst,
34
+ .hljs-tag .hljs-keyword {
35
+ color: #3E5915;
36
+ }
37
+
38
+ .hljs-string,
39
+ .hljs-title,
40
+ .haskell .hljs-type,
41
+ .hljs-tag .hljs-value,
42
+ .css .hljs-rules .hljs-value,
43
+ .hljs-preprocessor,
44
+ .hljs-pragma,
45
+ .ruby .hljs-symbol,
46
+ .ruby .hljs-symbol .hljs-string,
47
+ .ruby .hljs-class .hljs-parent,
48
+ .hljs-built_in,
49
+ .sql .hljs-aggregate,
50
+ .django .hljs-template_tag,
51
+ .django .hljs-variable,
52
+ .smalltalk .hljs-class,
53
+ .hljs-javadoc,
54
+ .ruby .hljs-string,
55
+ .django .hljs-filter .hljs-argument,
56
+ .smalltalk .hljs-localvars,
57
+ .smalltalk .hljs-array,
58
+ .hljs-attr_selector,
59
+ .hljs-pseudo,
60
+ .hljs-addition,
61
+ .hljs-stream,
62
+ .hljs-envvar,
63
+ .apache .hljs-tag,
64
+ .apache .hljs-cbracket,
65
+ .nginx .hljs-built_in,
66
+ .tex .hljs-command,
67
+ .coffeescript .hljs-attribute {
68
+ color: #2C009F;
69
+ }
70
+
71
+ .hljs-comment,
72
+ .java .hljs-annotation,
73
+ .python .hljs-decorator,
74
+ .hljs-template_comment,
75
+ .hljs-pi,
76
+ .hljs-doctype,
77
+ .hljs-deletion,
78
+ .hljs-shebang,
79
+ .apache .hljs-sqbracket {
80
+ color: #E60415;
81
+ }
82
+
83
+ .hljs-keyword,
84
+ .hljs-literal,
85
+ .css .hljs-id,
86
+ .hljs-phpdoc,
87
+ .hljs-title,
88
+ .haskell .hljs-type,
89
+ .vbscript .hljs-built_in,
90
+ .sql .hljs-aggregate,
91
+ .rsl .hljs-built_in,
92
+ .smalltalk .hljs-class,
93
+ .xml .hljs-tag .hljs-title,
94
+ .diff .hljs-header,
95
+ .hljs-chunk,
96
+ .hljs-winutils,
97
+ .bash .hljs-variable,
98
+ .apache .hljs-tag,
99
+ .tex .hljs-command,
100
+ .hljs-request,
101
+ .hljs-status {
102
+ font-weight: bold;
103
+ }
104
+
105
+ .coffeescript .javascript,
106
+ .javascript .xml,
107
+ .tex .hljs-formula,
108
+ .xml .javascript,
109
+ .xml .vbscript,
110
+ .xml .css,
111
+ .xml .hljs-cdata {
112
+ opacity: 0.5;
113
+ }
@@ -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
+ padding: 0.5em;
10
+ background: #002b36;
11
+ color: #839496;
12
+ }
13
+
14
+ .hljs-comment,
15
+ .hljs-template_comment,
16
+ .diff .hljs-header,
17
+ .hljs-doctype,
18
+ .hljs-pi,
19
+ .lisp .hljs-string,
20
+ .hljs-javadoc {
21
+ color: #586e75;
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-rules .hljs-value,
42
+ .hljs-phpdoc,
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
+ color: #268bd2;
61
+ }
62
+
63
+ /* Solarized Yellow */
64
+ .hljs-attribute,
65
+ .hljs-variable,
66
+ .lisp .hljs-body,
67
+ .smalltalk .hljs-number,
68
+ .hljs-constant,
69
+ .hljs-class .hljs-title,
70
+ .hljs-parent,
71
+ .haskell .hljs-type,
72
+ .hljs-link_reference {
73
+ color: #b58900;
74
+ }
75
+
76
+ /* Solarized Orange */
77
+ .hljs-preprocessor,
78
+ .hljs-preprocessor .hljs-keyword,
79
+ .hljs-pragma,
80
+ .hljs-shebang,
81
+ .hljs-symbol,
82
+ .hljs-symbol .hljs-string,
83
+ .diff .hljs-change,
84
+ .hljs-special,
85
+ .hljs-attr_selector,
86
+ .hljs-subst,
87
+ .hljs-cdata,
88
+ .clojure .hljs-title,
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: #073642;
107
+ }