cabbage_doc 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/lib/cabbage_doc/authentication.rb +18 -0
  3. data/lib/cabbage_doc/cache.rb +23 -0
  4. data/lib/cabbage_doc/client.rb +1 -6
  5. data/lib/cabbage_doc/configuration.rb +7 -4
  6. data/lib/cabbage_doc/path.rb +1 -1
  7. data/lib/cabbage_doc/processor.rb +33 -0
  8. data/lib/cabbage_doc/processors/documentation.rb +3 -1
  9. data/lib/cabbage_doc/request.rb +39 -1
  10. data/lib/cabbage_doc/response.rb +12 -0
  11. data/lib/cabbage_doc/task.rb +8 -20
  12. data/lib/cabbage_doc/version.rb +1 -1
  13. data/lib/cabbage_doc/web.rb +9 -3
  14. data/lib/cabbage_doc/web_helper.rb +36 -1
  15. data/lib/cabbage_doc/worker.rb +28 -0
  16. data/lib/cabbage_doc.rb +2 -1
  17. data/web/public/css/application.css +10 -0
  18. data/web/public/css/highlight/agate.css +108 -0
  19. data/web/public/css/highlight/androidstudio.css +66 -0
  20. data/web/public/css/highlight/arduino-light.css +88 -0
  21. data/web/public/css/highlight/arta.css +73 -0
  22. data/web/public/css/highlight/ascetic.css +45 -0
  23. data/web/public/css/highlight/atelier-cave-dark.css +83 -0
  24. data/web/public/css/highlight/atelier-cave-light.css +85 -0
  25. data/web/public/css/highlight/atelier-dune-dark.css +69 -0
  26. data/web/public/css/highlight/atelier-dune-light.css +69 -0
  27. data/web/public/css/highlight/atelier-estuary-dark.css +84 -0
  28. data/web/public/css/highlight/atelier-estuary-light.css +84 -0
  29. data/web/public/css/highlight/atelier-forest-dark.css +69 -0
  30. data/web/public/css/highlight/atelier-forest-light.css +69 -0
  31. data/web/public/css/highlight/atelier-heath-dark.css +69 -0
  32. data/web/public/css/highlight/atelier-heath-light.css +69 -0
  33. data/web/public/css/highlight/atelier-lakeside-dark.css +69 -0
  34. data/web/public/css/highlight/atelier-lakeside-light.css +69 -0
  35. data/web/public/css/highlight/atelier-plateau-dark.css +84 -0
  36. data/web/public/css/highlight/atelier-plateau-light.css +84 -0
  37. data/web/public/css/highlight/atelier-savanna-dark.css +84 -0
  38. data/web/public/css/highlight/atelier-savanna-light.css +84 -0
  39. data/web/public/css/highlight/atelier-seaside-dark.css +69 -0
  40. data/web/public/css/highlight/atelier-seaside-light.css +69 -0
  41. data/web/public/css/highlight/atelier-sulphurpool-dark.css +69 -0
  42. data/web/public/css/highlight/atelier-sulphurpool-light.css +69 -0
  43. data/web/public/css/highlight/brown-paper.css +64 -0
  44. data/web/public/css/highlight/codepen-embed.css +60 -0
  45. data/web/public/css/highlight/color-brewer.css +71 -0
  46. data/web/public/css/highlight/dark.css +63 -0
  47. data/web/public/css/highlight/darkula.css +74 -0
  48. data/web/public/css/highlight/default.css +99 -0
  49. data/web/public/css/highlight/docco.css +97 -0
  50. data/web/public/css/highlight/dracula.css +76 -0
  51. data/web/public/css/highlight/far.css +71 -0
  52. data/web/public/css/highlight/foundation.css +88 -0
  53. data/web/public/css/highlight/github-gist.css +71 -0
  54. data/web/public/css/highlight/github.css +99 -0
  55. data/web/public/css/highlight/googlecode.css +89 -0
  56. data/web/public/css/highlight/grayscale.css +101 -0
  57. data/web/public/css/highlight/gruvbox-dark.css +108 -0
  58. data/web/public/css/highlight/gruvbox-light.css +108 -0
  59. data/web/public/css/highlight/hopscotch.css +83 -0
  60. data/web/public/css/highlight/hybrid.css +102 -0
  61. data/web/public/css/highlight/idea.css +97 -0
  62. data/web/public/css/highlight/ir-black.css +73 -0
  63. data/web/public/css/highlight/kimbie.dark.css +74 -0
  64. data/web/public/css/highlight/kimbie.light.css +74 -0
  65. data/web/public/css/highlight/magula.css +70 -0
  66. data/web/public/css/highlight/mono-blue.css +59 -0
  67. data/web/public/css/highlight/monokai-sublime.css +83 -0
  68. data/web/public/css/highlight/monokai.css +70 -0
  69. data/web/public/css/highlight/obsidian.css +88 -0
  70. data/web/public/css/highlight/ocean.css +74 -0
  71. data/web/public/css/highlight/paraiso-dark.css +72 -0
  72. data/web/public/css/highlight/paraiso-light.css +72 -0
  73. data/web/public/css/highlight/pojoaque.css +83 -0
  74. data/web/public/css/highlight/purebasic.css +96 -0
  75. data/web/public/css/highlight/qtcreator_dark.css +83 -0
  76. data/web/public/css/highlight/qtcreator_light.css +83 -0
  77. data/web/public/css/highlight/railscasts.css +106 -0
  78. data/web/public/css/highlight/rainbow.css +85 -0
  79. data/web/public/css/highlight/school-book.css +72 -0
  80. data/web/public/css/highlight/solarized-dark.css +84 -0
  81. data/web/public/css/highlight/solarized-light.css +84 -0
  82. data/web/public/css/highlight/sunburst.css +102 -0
  83. data/web/public/css/highlight/tomorrow-night-blue.css +75 -0
  84. data/web/public/css/highlight/tomorrow-night-bright.css +74 -0
  85. data/web/public/css/highlight/tomorrow-night-eighties.css +74 -0
  86. data/web/public/css/highlight/tomorrow-night.css +75 -0
  87. data/web/public/css/highlight/tomorrow.css +72 -0
  88. data/web/public/css/highlight/vs.css +68 -0
  89. data/web/public/css/highlight/xcode.css +93 -0
  90. data/web/public/css/highlight/xt256.css +92 -0
  91. data/web/public/css/highlight/zenburn.css +80 -0
  92. data/web/public/js/application.js +79 -12
  93. data/web/public/js/highlight.min.js +3 -0
  94. data/web/views/layout.haml +6 -3
  95. data/web/views/response.haml +10 -5
  96. metadata +81 -7
  97. data/lib/cabbage_doc/pacto_helper.rb +0 -27
  98. data/lib/cabbage_doc/processors/contracts.rb +0 -12
  99. data/lib/cabbage_doc/processors/rspec.rb +0 -11
@@ -0,0 +1,69 @@
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
+
5
+ /* Atelier-Forest Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #9c9491;
9
+ }
10
+
11
+ /* Atelier-Forest Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #f22c40;
23
+ }
24
+
25
+ /* Atelier-Forest Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #df5320;
34
+ }
35
+
36
+ /* Atelier-Forest Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #7b9726;
41
+ }
42
+
43
+ /* Atelier-Forest Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #407ee7;
47
+ }
48
+
49
+ /* Atelier-Forest Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #6666ea;
53
+ }
54
+
55
+ .hljs {
56
+ display: block;
57
+ overflow-x: auto;
58
+ background: #1b1918;
59
+ color: #a8a19f;
60
+ padding: 0.5em;
61
+ }
62
+
63
+ .hljs-emphasis {
64
+ font-style: italic;
65
+ }
66
+
67
+ .hljs-strong {
68
+ font-weight: bold;
69
+ }
@@ -0,0 +1,69 @@
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
+
5
+ /* Atelier-Forest Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #766e6b;
9
+ }
10
+
11
+ /* Atelier-Forest Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #f22c40;
23
+ }
24
+
25
+ /* Atelier-Forest Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #df5320;
34
+ }
35
+
36
+ /* Atelier-Forest Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #7b9726;
41
+ }
42
+
43
+ /* Atelier-Forest Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #407ee7;
47
+ }
48
+
49
+ /* Atelier-Forest Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #6666ea;
53
+ }
54
+
55
+ .hljs {
56
+ display: block;
57
+ overflow-x: auto;
58
+ background: #f1efee;
59
+ color: #68615e;
60
+ padding: 0.5em;
61
+ }
62
+
63
+ .hljs-emphasis {
64
+ font-style: italic;
65
+ }
66
+
67
+ .hljs-strong {
68
+ font-weight: bold;
69
+ }
@@ -0,0 +1,69 @@
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
+
5
+ /* Atelier-Heath Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #9e8f9e;
9
+ }
10
+
11
+ /* Atelier-Heath Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #ca402b;
23
+ }
24
+
25
+ /* Atelier-Heath Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #a65926;
34
+ }
35
+
36
+ /* Atelier-Heath Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #918b3b;
41
+ }
42
+
43
+ /* Atelier-Heath Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #516aec;
47
+ }
48
+
49
+ /* Atelier-Heath Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #7b59c0;
53
+ }
54
+
55
+ .hljs {
56
+ display: block;
57
+ overflow-x: auto;
58
+ background: #1b181b;
59
+ color: #ab9bab;
60
+ padding: 0.5em;
61
+ }
62
+
63
+ .hljs-emphasis {
64
+ font-style: italic;
65
+ }
66
+
67
+ .hljs-strong {
68
+ font-weight: bold;
69
+ }
@@ -0,0 +1,69 @@
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
+
5
+ /* Atelier-Heath Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #776977;
9
+ }
10
+
11
+ /* Atelier-Heath Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #ca402b;
23
+ }
24
+
25
+ /* Atelier-Heath Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #a65926;
34
+ }
35
+
36
+ /* Atelier-Heath Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #918b3b;
41
+ }
42
+
43
+ /* Atelier-Heath Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #516aec;
47
+ }
48
+
49
+ /* Atelier-Heath Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #7b59c0;
53
+ }
54
+
55
+ .hljs {
56
+ display: block;
57
+ overflow-x: auto;
58
+ background: #f7f3f7;
59
+ color: #695d69;
60
+ padding: 0.5em;
61
+ }
62
+
63
+ .hljs-emphasis {
64
+ font-style: italic;
65
+ }
66
+
67
+ .hljs-strong {
68
+ font-weight: bold;
69
+ }
@@ -0,0 +1,69 @@
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
+
5
+ /* Atelier-Lakeside Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #7195a8;
9
+ }
10
+
11
+ /* Atelier-Lakeside Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #d22d72;
23
+ }
24
+
25
+ /* Atelier-Lakeside Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #935c25;
34
+ }
35
+
36
+ /* Atelier-Lakeside Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #568c3b;
41
+ }
42
+
43
+ /* Atelier-Lakeside Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #257fad;
47
+ }
48
+
49
+ /* Atelier-Lakeside Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #6b6bb8;
53
+ }
54
+
55
+ .hljs {
56
+ display: block;
57
+ overflow-x: auto;
58
+ background: #161b1d;
59
+ color: #7ea2b4;
60
+ padding: 0.5em;
61
+ }
62
+
63
+ .hljs-emphasis {
64
+ font-style: italic;
65
+ }
66
+
67
+ .hljs-strong {
68
+ font-weight: bold;
69
+ }
@@ -0,0 +1,69 @@
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
+
5
+ /* Atelier-Lakeside Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #5a7b8c;
9
+ }
10
+
11
+ /* Atelier-Lakeside Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #d22d72;
23
+ }
24
+
25
+ /* Atelier-Lakeside Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #935c25;
34
+ }
35
+
36
+ /* Atelier-Lakeside Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #568c3b;
41
+ }
42
+
43
+ /* Atelier-Lakeside Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #257fad;
47
+ }
48
+
49
+ /* Atelier-Lakeside Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #6b6bb8;
53
+ }
54
+
55
+ .hljs {
56
+ display: block;
57
+ overflow-x: auto;
58
+ background: #ebf8ff;
59
+ color: #516d7b;
60
+ padding: 0.5em;
61
+ }
62
+
63
+ .hljs-emphasis {
64
+ font-style: italic;
65
+ }
66
+
67
+ .hljs-strong {
68
+ font-weight: bold;
69
+ }
@@ -0,0 +1,84 @@
1
+ /* Base16 Atelier Plateau Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+
5
+ /* Atelier-Plateau Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #7e7777;
9
+ }
10
+
11
+ /* Atelier-Plateau Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #ca4949;
23
+ }
24
+
25
+ /* Atelier-Plateau Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #b45a3c;
34
+ }
35
+
36
+ /* Atelier-Plateau Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #4b8b8b;
41
+ }
42
+
43
+ /* Atelier-Plateau Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #7272ca;
47
+ }
48
+
49
+ /* Atelier-Plateau Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #8464c4;
53
+ }
54
+
55
+ .hljs-deletion,
56
+ .hljs-addition {
57
+ color: #1b1818;
58
+ display: inline-block;
59
+ width: 100%;
60
+ }
61
+
62
+ .hljs-deletion {
63
+ background-color: #ca4949;
64
+ }
65
+
66
+ .hljs-addition {
67
+ background-color: #4b8b8b;
68
+ }
69
+
70
+ .hljs {
71
+ display: block;
72
+ overflow-x: auto;
73
+ background: #1b1818;
74
+ color: #8a8585;
75
+ padding: 0.5em;
76
+ }
77
+
78
+ .hljs-emphasis {
79
+ font-style: italic;
80
+ }
81
+
82
+ .hljs-strong {
83
+ font-weight: bold;
84
+ }
@@ -0,0 +1,84 @@
1
+ /* Base16 Atelier Plateau Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+
5
+ /* Atelier-Plateau Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #655d5d;
9
+ }
10
+
11
+ /* Atelier-Plateau Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #ca4949;
23
+ }
24
+
25
+ /* Atelier-Plateau Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #b45a3c;
34
+ }
35
+
36
+ /* Atelier-Plateau Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #4b8b8b;
41
+ }
42
+
43
+ /* Atelier-Plateau Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #7272ca;
47
+ }
48
+
49
+ /* Atelier-Plateau Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #8464c4;
53
+ }
54
+
55
+ .hljs-deletion,
56
+ .hljs-addition {
57
+ color: #1b1818;
58
+ display: inline-block;
59
+ width: 100%;
60
+ }
61
+
62
+ .hljs-deletion {
63
+ background-color: #ca4949;
64
+ }
65
+
66
+ .hljs-addition {
67
+ background-color: #4b8b8b;
68
+ }
69
+
70
+ .hljs {
71
+ display: block;
72
+ overflow-x: auto;
73
+ background: #f4ecec;
74
+ color: #585050;
75
+ padding: 0.5em;
76
+ }
77
+
78
+ .hljs-emphasis {
79
+ font-style: italic;
80
+ }
81
+
82
+ .hljs-strong {
83
+ font-weight: bold;
84
+ }
@@ -0,0 +1,84 @@
1
+ /* Base16 Atelier Savanna Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+
5
+ /* Atelier-Savanna Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #78877d;
9
+ }
10
+
11
+ /* Atelier-Savanna Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-regexp,
18
+ .hljs-link,
19
+ .hljs-name,
20
+ .hljs-selector-id,
21
+ .hljs-selector-class {
22
+ color: #b16139;
23
+ }
24
+
25
+ /* Atelier-Savanna Orange */
26
+ .hljs-number,
27
+ .hljs-meta,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params {
33
+ color: #9f713c;
34
+ }
35
+
36
+ /* Atelier-Savanna Green */
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .hljs-bullet {
40
+ color: #489963;
41
+ }
42
+
43
+ /* Atelier-Savanna Blue */
44
+ .hljs-title,
45
+ .hljs-section {
46
+ color: #478c90;
47
+ }
48
+
49
+ /* Atelier-Savanna Purple */
50
+ .hljs-keyword,
51
+ .hljs-selector-tag {
52
+ color: #55859b;
53
+ }
54
+
55
+ .hljs-deletion,
56
+ .hljs-addition {
57
+ color: #171c19;
58
+ display: inline-block;
59
+ width: 100%;
60
+ }
61
+
62
+ .hljs-deletion {
63
+ background-color: #b16139;
64
+ }
65
+
66
+ .hljs-addition {
67
+ background-color: #489963;
68
+ }
69
+
70
+ .hljs {
71
+ display: block;
72
+ overflow-x: auto;
73
+ background: #171c19;
74
+ color: #87928a;
75
+ padding: 0.5em;
76
+ }
77
+
78
+ .hljs-emphasis {
79
+ font-style: italic;
80
+ }
81
+
82
+ .hljs-strong {
83
+ font-weight: bold;
84
+ }