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
+ /* Base16 Atelier Forest Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Forest Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #9c9491;
10
+ }
11
+
12
+ /* Atelier Forest Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #f22c40;
26
+ }
27
+
28
+ /* Atelier Forest Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #df5320;
37
+ }
38
+
39
+ /* Atelier Forest Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #d5911a;
43
+ }
44
+
45
+ /* Atelier Forest Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #5ab738;
53
+ }
54
+
55
+ /* Atelier Forest Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #00ad9c;
58
+ }
59
+
60
+ /* Atelier Forest Dark 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: #407ee7;
70
+ }
71
+
72
+ /* Atelier Forest Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #6666ea;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #2c2421;
81
+ color: #a8a19f;
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,93 @@
1
+ /* Base16 Atelier Forest Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Forest Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #766e6b;
10
+ }
11
+
12
+ /* Atelier Forest Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #f22c40;
26
+ }
27
+
28
+ /* Atelier Forest Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #df5320;
37
+ }
38
+
39
+ /* Atelier Forest Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #d5911a;
43
+ }
44
+
45
+ /* Atelier Forest Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #5ab738;
53
+ }
54
+
55
+ /* Atelier Forest Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #00ad9c;
58
+ }
59
+
60
+ /* Atelier Forest Light 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: #407ee7;
70
+ }
71
+
72
+ /* Atelier Forest Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #6666ea;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #f1efee;
81
+ color: #68615e;
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,93 @@
1
+ /* Base16 Atelier Heath Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Heath Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #9e8f9e;
10
+ }
11
+
12
+ /* Atelier Heath Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #ca402b;
26
+ }
27
+
28
+ /* Atelier Heath Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #a65926;
37
+ }
38
+
39
+ /* Atelier Heath Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #bb8a35;
43
+ }
44
+
45
+ /* Atelier Heath Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #379a37;
53
+ }
54
+
55
+ /* Atelier Heath Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #159393;
58
+ }
59
+
60
+ /* Atelier Heath Dark 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: #516aec;
70
+ }
71
+
72
+ /* Atelier Heath Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #7b59c0;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #292329;
81
+ color: #ab9bab;
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,93 @@
1
+ /* Base16 Atelier Heath Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Heath Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #776977;
10
+ }
11
+
12
+ /* Atelier Heath Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #ca402b;
26
+ }
27
+
28
+ /* Atelier Heath Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #a65926;
37
+ }
38
+
39
+ /* Atelier Heath Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #bb8a35;
43
+ }
44
+
45
+ /* Atelier Heath Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #379a37;
53
+ }
54
+
55
+ /* Atelier Heath Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #159393;
58
+ }
59
+
60
+ /* Atelier Heath Light 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: #516aec;
70
+ }
71
+
72
+ /* Atelier Heath Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #7b59c0;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #f7f3f7;
81
+ color: #695d69;
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,93 @@
1
+ /* Base16 Atelier Lakeside Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Lakeside Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #7195a8;
10
+ }
11
+
12
+ /* Atelier Lakeside Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #d22d72;
26
+ }
27
+
28
+ /* Atelier Lakeside Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #935c25;
37
+ }
38
+
39
+ /* Atelier Lakeside Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #8a8a0f;
43
+ }
44
+
45
+ /* Atelier Lakeside Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #568c3b;
53
+ }
54
+
55
+ /* Atelier Lakeside Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #2d8f6f;
58
+ }
59
+
60
+ /* Atelier Lakeside Dark 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: #257fad;
70
+ }
71
+
72
+ /* Atelier Lakeside Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #5d5db1;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #1f292e;
81
+ color: #7ea2b4;
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,93 @@
1
+ /* Base16 Atelier Lakeside Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Lakeside Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #5a7b8c;
10
+ }
11
+
12
+ /* Atelier Lakeside Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #d22d72;
26
+ }
27
+
28
+ /* Atelier Lakeside Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #935c25;
37
+ }
38
+
39
+ /* Atelier Lakeside Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #8a8a0f;
43
+ }
44
+
45
+ /* Atelier Lakeside Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #568c3b;
53
+ }
54
+
55
+ /* Atelier Lakeside Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #2d8f6f;
58
+ }
59
+
60
+ /* Atelier Lakeside Light 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: #257fad;
70
+ }
71
+
72
+ /* Atelier Lakeside Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #5d5db1;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #ebf8ff;
81
+ color: #516d7b;
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,93 @@
1
+ /* Base16 Atelier Seaside Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Seaside Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #809980;
10
+ }
11
+
12
+ /* Atelier Seaside Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #e6193c;
26
+ }
27
+
28
+ /* Atelier Seaside Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #87711d;
37
+ }
38
+
39
+ /* Atelier Seaside Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #c3c322;
43
+ }
44
+
45
+ /* Atelier Seaside Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #29a329;
53
+ }
54
+
55
+ /* Atelier Seaside Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #1999b3;
58
+ }
59
+
60
+ /* Atelier Seaside Dark 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: #3d62f5;
70
+ }
71
+
72
+ /* Atelier Seaside Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #ad2bee;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #242924;
81
+ color: #8ca68c;
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
+ }