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,74 @@
1
+ /*
2
+ Name: Kimbie (dark)
3
+ Author: Jan T. Sott
4
+ License: Creative Commons Attribution-ShareAlike 4.0 Unported License
5
+ URL: https://github.com/idleberg/Kimbie-highlight.js
6
+ */
7
+
8
+ /* Kimbie Comment */
9
+ .hljs-comment,
10
+ .hljs-quote {
11
+ color: #d6baad;
12
+ }
13
+
14
+ /* Kimbie Red */
15
+ .hljs-variable,
16
+ .hljs-template-variable,
17
+ .hljs-tag,
18
+ .hljs-name,
19
+ .hljs-selector-id,
20
+ .hljs-selector-class,
21
+ .hljs-regexp,
22
+ .hljs-meta {
23
+ color: #dc3958;
24
+ }
25
+
26
+ /* Kimbie Orange */
27
+ .hljs-number,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params,
33
+ .hljs-deletion,
34
+ .hljs-link {
35
+ color: #f79a32;
36
+ }
37
+
38
+ /* Kimbie Yellow */
39
+ .hljs-title,
40
+ .hljs-section,
41
+ .hljs-attribute {
42
+ color: #f06431;
43
+ }
44
+
45
+ /* Kimbie Green */
46
+ .hljs-string,
47
+ .hljs-symbol,
48
+ .hljs-bullet,
49
+ .hljs-addition {
50
+ color: #889b4a;
51
+ }
52
+
53
+ /* Kimbie Purple */
54
+ .hljs-keyword,
55
+ .hljs-selector-tag,
56
+ .hljs-function {
57
+ color: #98676a;
58
+ }
59
+
60
+ .hljs {
61
+ display: block;
62
+ overflow-x: auto;
63
+ background: #221a0f;
64
+ color: #d3af86;
65
+ padding: 0.5em;
66
+ }
67
+
68
+ .hljs-emphasis {
69
+ font-style: italic;
70
+ }
71
+
72
+ .hljs-strong {
73
+ font-weight: bold;
74
+ }
@@ -0,0 +1,74 @@
1
+ /*
2
+ Name: Kimbie (light)
3
+ Author: Jan T. Sott
4
+ License: Creative Commons Attribution-ShareAlike 4.0 Unported License
5
+ URL: https://github.com/idleberg/Kimbie-highlight.js
6
+ */
7
+
8
+ /* Kimbie Comment */
9
+ .hljs-comment,
10
+ .hljs-quote {
11
+ color: #a57a4c;
12
+ }
13
+
14
+ /* Kimbie Red */
15
+ .hljs-variable,
16
+ .hljs-template-variable,
17
+ .hljs-tag,
18
+ .hljs-name,
19
+ .hljs-selector-id,
20
+ .hljs-selector-class,
21
+ .hljs-regexp,
22
+ .hljs-meta {
23
+ color: #dc3958;
24
+ }
25
+
26
+ /* Kimbie Orange */
27
+ .hljs-number,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params,
33
+ .hljs-deletion,
34
+ .hljs-link {
35
+ color: #f79a32;
36
+ }
37
+
38
+ /* Kimbie Yellow */
39
+ .hljs-title,
40
+ .hljs-section,
41
+ .hljs-attribute {
42
+ color: #f06431;
43
+ }
44
+
45
+ /* Kimbie Green */
46
+ .hljs-string,
47
+ .hljs-symbol,
48
+ .hljs-bullet,
49
+ .hljs-addition {
50
+ color: #889b4a;
51
+ }
52
+
53
+ /* Kimbie Purple */
54
+ .hljs-keyword,
55
+ .hljs-selector-tag,
56
+ .hljs-function {
57
+ color: #98676a;
58
+ }
59
+
60
+ .hljs {
61
+ display: block;
62
+ overflow-x: auto;
63
+ background: #fbebd4;
64
+ color: #84613d;
65
+ padding: 0.5em;
66
+ }
67
+
68
+ .hljs-emphasis {
69
+ font-style: italic;
70
+ }
71
+
72
+ .hljs-strong {
73
+ font-weight: bold;
74
+ }
@@ -0,0 +1,70 @@
1
+ /*
2
+ Description: Magula style for highligh.js
3
+ Author: Ruslan Keba <rukeba@gmail.com>
4
+ Website: http://rukeba.com/
5
+ Version: 1.0
6
+ Date: 2009-01-03
7
+ Music: Aphex Twin / Xtal
8
+ */
9
+
10
+ .hljs {
11
+ display: block;
12
+ overflow-x: auto;
13
+ padding: 0.5em;
14
+ background-color: #f4f4f4;
15
+ }
16
+
17
+ .hljs,
18
+ .hljs-subst {
19
+ color: black;
20
+ }
21
+
22
+ .hljs-string,
23
+ .hljs-title,
24
+ .hljs-symbol,
25
+ .hljs-bullet,
26
+ .hljs-attribute,
27
+ .hljs-addition,
28
+ .hljs-variable,
29
+ .hljs-template-tag,
30
+ .hljs-template-variable {
31
+ color: #050;
32
+ }
33
+
34
+ .hljs-comment,
35
+ .hljs-quote {
36
+ color: #777;
37
+ }
38
+
39
+ .hljs-number,
40
+ .hljs-regexp,
41
+ .hljs-literal,
42
+ .hljs-type,
43
+ .hljs-link {
44
+ color: #800;
45
+ }
46
+
47
+ .hljs-deletion,
48
+ .hljs-meta {
49
+ color: #00e;
50
+ }
51
+
52
+ .hljs-keyword,
53
+ .hljs-selector-tag,
54
+ .hljs-doctag,
55
+ .hljs-title,
56
+ .hljs-section,
57
+ .hljs-built_in,
58
+ .hljs-tag,
59
+ .hljs-name {
60
+ font-weight: bold;
61
+ color: navy;
62
+ }
63
+
64
+ .hljs-emphasis {
65
+ font-style: italic;
66
+ }
67
+
68
+ .hljs-strong {
69
+ font-weight: bold;
70
+ }
@@ -0,0 +1,59 @@
1
+ /*
2
+ Five-color theme from a single blue hue.
3
+ */
4
+ .hljs {
5
+ display: block;
6
+ overflow-x: auto;
7
+ padding: 0.5em;
8
+ background: #eaeef3;
9
+ }
10
+
11
+ .hljs {
12
+ color: #00193a;
13
+ }
14
+
15
+ .hljs-keyword,
16
+ .hljs-selector-tag,
17
+ .hljs-title,
18
+ .hljs-section,
19
+ .hljs-doctag,
20
+ .hljs-name,
21
+ .hljs-strong {
22
+ font-weight: bold;
23
+ }
24
+
25
+ .hljs-comment {
26
+ color: #738191;
27
+ }
28
+
29
+ .hljs-string,
30
+ .hljs-title,
31
+ .hljs-section,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-type,
35
+ .hljs-addition,
36
+ .hljs-tag,
37
+ .hljs-quote,
38
+ .hljs-name,
39
+ .hljs-selector-id,
40
+ .hljs-selector-class {
41
+ color: #0048ab;
42
+ }
43
+
44
+ .hljs-meta,
45
+ .hljs-subst,
46
+ .hljs-symbol,
47
+ .hljs-regexp,
48
+ .hljs-attribute,
49
+ .hljs-deletion,
50
+ .hljs-variable,
51
+ .hljs-template-variable,
52
+ .hljs-link,
53
+ .hljs-bullet {
54
+ color: #4c81c9;
55
+ }
56
+
57
+ .hljs-emphasis {
58
+ font-style: italic;
59
+ }
@@ -0,0 +1,83 @@
1
+ /*
2
+
3
+ Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ background: #23241f;
12
+ }
13
+
14
+ .hljs,
15
+ .hljs-tag,
16
+ .hljs-subst {
17
+ color: #f8f8f2;
18
+ }
19
+
20
+ .hljs-strong,
21
+ .hljs-emphasis {
22
+ color: #a8a8a2;
23
+ }
24
+
25
+ .hljs-bullet,
26
+ .hljs-quote,
27
+ .hljs-number,
28
+ .hljs-regexp,
29
+ .hljs-literal,
30
+ .hljs-link {
31
+ color: #ae81ff;
32
+ }
33
+
34
+ .hljs-code,
35
+ .hljs-title,
36
+ .hljs-section,
37
+ .hljs-selector-class {
38
+ color: #a6e22e;
39
+ }
40
+
41
+ .hljs-strong {
42
+ font-weight: bold;
43
+ }
44
+
45
+ .hljs-emphasis {
46
+ font-style: italic;
47
+ }
48
+
49
+ .hljs-keyword,
50
+ .hljs-selector-tag,
51
+ .hljs-name,
52
+ .hljs-attr {
53
+ color: #f92672;
54
+ }
55
+
56
+ .hljs-symbol,
57
+ .hljs-attribute {
58
+ color: #66d9ef;
59
+ }
60
+
61
+ .hljs-params,
62
+ .hljs-class .hljs-title {
63
+ color: #f8f8f2;
64
+ }
65
+
66
+ .hljs-string,
67
+ .hljs-type,
68
+ .hljs-built_in,
69
+ .hljs-builtin-name,
70
+ .hljs-selector-id,
71
+ .hljs-selector-attr,
72
+ .hljs-selector-pseudo,
73
+ .hljs-addition,
74
+ .hljs-variable,
75
+ .hljs-template-variable {
76
+ color: #e6db74;
77
+ }
78
+
79
+ .hljs-comment,
80
+ .hljs-deletion,
81
+ .hljs-meta {
82
+ color: #75715e;
83
+ }
@@ -0,0 +1,70 @@
1
+ /*
2
+ Monokai style - ported by Luigi Maselli - http://grigio.org
3
+ */
4
+
5
+ .hljs {
6
+ display: block;
7
+ overflow-x: auto;
8
+ padding: 0.5em;
9
+ background: #272822; color: #ddd;
10
+ }
11
+
12
+ .hljs-tag,
13
+ .hljs-keyword,
14
+ .hljs-selector-tag,
15
+ .hljs-literal,
16
+ .hljs-strong,
17
+ .hljs-name {
18
+ color: #f92672;
19
+ }
20
+
21
+ .hljs-code {
22
+ color: #66d9ef;
23
+ }
24
+
25
+ .hljs-class .hljs-title {
26
+ color: white;
27
+ }
28
+
29
+ .hljs-attribute,
30
+ .hljs-symbol,
31
+ .hljs-regexp,
32
+ .hljs-link {
33
+ color: #bf79db;
34
+ }
35
+
36
+ .hljs-string,
37
+ .hljs-bullet,
38
+ .hljs-subst,
39
+ .hljs-title,
40
+ .hljs-section,
41
+ .hljs-emphasis,
42
+ .hljs-type,
43
+ .hljs-built_in,
44
+ .hljs-builtin-name,
45
+ .hljs-selector-attr,
46
+ .hljs-selector-pseudo,
47
+ .hljs-addition,
48
+ .hljs-variable,
49
+ .hljs-template-tag,
50
+ .hljs-template-variable {
51
+ color: #a6e22e;
52
+ }
53
+
54
+ .hljs-comment,
55
+ .hljs-quote,
56
+ .hljs-deletion,
57
+ .hljs-meta {
58
+ color: #75715e;
59
+ }
60
+
61
+ .hljs-keyword,
62
+ .hljs-selector-tag,
63
+ .hljs-literal,
64
+ .hljs-doctag,
65
+ .hljs-title,
66
+ .hljs-section,
67
+ .hljs-type,
68
+ .hljs-selector-id {
69
+ font-weight: bold;
70
+ }
@@ -0,0 +1,88 @@
1
+ /**
2
+ * Obsidian style
3
+ * ported by Alexander Marenin (http://github.com/ioncreature)
4
+ */
5
+
6
+ .hljs {
7
+ display: block;
8
+ overflow-x: auto;
9
+ padding: 0.5em;
10
+ background: #282b2e;
11
+ }
12
+
13
+ .hljs-keyword,
14
+ .hljs-selector-tag,
15
+ .hljs-literal,
16
+ .hljs-selector-id {
17
+ color: #93c763;
18
+ }
19
+
20
+ .hljs-number {
21
+ color: #ffcd22;
22
+ }
23
+
24
+ .hljs {
25
+ color: #e0e2e4;
26
+ }
27
+
28
+ .hljs-attribute {
29
+ color: #668bb0;
30
+ }
31
+
32
+ .hljs-code,
33
+ .hljs-class .hljs-title,
34
+ .hljs-section {
35
+ color: white;
36
+ }
37
+
38
+ .hljs-regexp,
39
+ .hljs-link {
40
+ color: #d39745;
41
+ }
42
+
43
+ .hljs-meta {
44
+ color: #557182;
45
+ }
46
+
47
+ .hljs-tag,
48
+ .hljs-name,
49
+ .hljs-bullet,
50
+ .hljs-subst,
51
+ .hljs-emphasis,
52
+ .hljs-type,
53
+ .hljs-built_in,
54
+ .hljs-selector-attr,
55
+ .hljs-selector-pseudo,
56
+ .hljs-addition,
57
+ .hljs-variable,
58
+ .hljs-template-tag,
59
+ .hljs-template-variable {
60
+ color: #8cbbad;
61
+ }
62
+
63
+ .hljs-string,
64
+ .hljs-symbol {
65
+ color: #ec7600;
66
+ }
67
+
68
+ .hljs-comment,
69
+ .hljs-quote,
70
+ .hljs-deletion {
71
+ color: #818e96;
72
+ }
73
+
74
+ .hljs-selector-class {
75
+ color: #A082BD
76
+ }
77
+
78
+ .hljs-keyword,
79
+ .hljs-selector-tag,
80
+ .hljs-literal,
81
+ .hljs-doctag,
82
+ .hljs-title,
83
+ .hljs-section,
84
+ .hljs-type,
85
+ .hljs-name,
86
+ .hljs-strong {
87
+ font-weight: bold;
88
+ }
@@ -0,0 +1,74 @@
1
+ /* Ocean Dark Theme */
2
+ /* https://github.com/gavsiu */
3
+ /* Original theme - https://github.com/chriskempson/base16 */
4
+
5
+ /* Ocean Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #65737e;
9
+ }
10
+
11
+ /* Ocean Red */
12
+ .hljs-variable,
13
+ .hljs-template-variable,
14
+ .hljs-tag,
15
+ .hljs-name,
16
+ .hljs-selector-id,
17
+ .hljs-selector-class,
18
+ .hljs-regexp,
19
+ .hljs-deletion {
20
+ color: #bf616a;
21
+ }
22
+
23
+ /* Ocean Orange */
24
+ .hljs-number,
25
+ .hljs-built_in,
26
+ .hljs-builtin-name,
27
+ .hljs-literal,
28
+ .hljs-type,
29
+ .hljs-params,
30
+ .hljs-meta,
31
+ .hljs-link {
32
+ color: #d08770;
33
+ }
34
+
35
+ /* Ocean Yellow */
36
+ .hljs-attribute {
37
+ color: #ebcb8b;
38
+ }
39
+
40
+ /* Ocean Green */
41
+ .hljs-string,
42
+ .hljs-symbol,
43
+ .hljs-bullet,
44
+ .hljs-addition {
45
+ color: #a3be8c;
46
+ }
47
+
48
+ /* Ocean Blue */
49
+ .hljs-title,
50
+ .hljs-section {
51
+ color: #8fa1b3;
52
+ }
53
+
54
+ /* Ocean Purple */
55
+ .hljs-keyword,
56
+ .hljs-selector-tag {
57
+ color: #b48ead;
58
+ }
59
+
60
+ .hljs {
61
+ display: block;
62
+ overflow-x: auto;
63
+ background: #2b303b;
64
+ color: #c0c5ce;
65
+ padding: 0.5em;
66
+ }
67
+
68
+ .hljs-emphasis {
69
+ font-style: italic;
70
+ }
71
+
72
+ .hljs-strong {
73
+ font-weight: bold;
74
+ }
@@ -0,0 +1,72 @@
1
+ /*
2
+ Paraíso (dark)
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-quote {
10
+ color: #8d8687;
11
+ }
12
+
13
+ /* Paraíso Red */
14
+ .hljs-variable,
15
+ .hljs-template-variable,
16
+ .hljs-tag,
17
+ .hljs-name,
18
+ .hljs-selector-id,
19
+ .hljs-selector-class,
20
+ .hljs-regexp,
21
+ .hljs-link,
22
+ .hljs-meta {
23
+ color: #ef6155;
24
+ }
25
+
26
+ /* Paraíso Orange */
27
+ .hljs-number,
28
+ .hljs-built_in,
29
+ .hljs-builtin-name,
30
+ .hljs-literal,
31
+ .hljs-type,
32
+ .hljs-params,
33
+ .hljs-deletion {
34
+ color: #f99b15;
35
+ }
36
+
37
+ /* Paraíso Yellow */
38
+ .hljs-title,
39
+ .hljs-section,
40
+ .hljs-attribute {
41
+ color: #fec418;
42
+ }
43
+
44
+ /* Paraíso Green */
45
+ .hljs-string,
46
+ .hljs-symbol,
47
+ .hljs-bullet,
48
+ .hljs-addition {
49
+ color: #48b685;
50
+ }
51
+
52
+ /* Paraíso Purple */
53
+ .hljs-keyword,
54
+ .hljs-selector-tag {
55
+ color: #815ba4;
56
+ }
57
+
58
+ .hljs {
59
+ display: block;
60
+ overflow-x: auto;
61
+ background: #2f1e2e;
62
+ color: #a39e9b;
63
+ padding: 0.5em;
64
+ }
65
+
66
+ .hljs-emphasis {
67
+ font-style: italic;
68
+ }
69
+
70
+ .hljs-strong {
71
+ font-weight: bold;
72
+ }