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,72 @@
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-quote {
10
+ color: #776e71;
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: #e7e9db;
62
+ color: #4f424c;
63
+ padding: 0.5em;
64
+ }
65
+
66
+ .hljs-emphasis {
67
+ font-style: italic;
68
+ }
69
+
70
+ .hljs-strong {
71
+ font-weight: bold;
72
+ }
@@ -0,0 +1,83 @@
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;
11
+ overflow-x: auto;
12
+ padding: 0.5em;
13
+ color: #dccf8f;
14
+ background: url(./pojoaque.jpg) repeat scroll left top #181914;
15
+ }
16
+
17
+ .hljs-comment,
18
+ .hljs-quote {
19
+ color: #586e75;
20
+ font-style: italic;
21
+ }
22
+
23
+ .hljs-keyword,
24
+ .hljs-selector-tag,
25
+ .hljs-literal,
26
+ .hljs-addition {
27
+ color: #b64926;
28
+ }
29
+
30
+ .hljs-number,
31
+ .hljs-string,
32
+ .hljs-doctag,
33
+ .hljs-regexp {
34
+ color: #468966;
35
+ }
36
+
37
+ .hljs-title,
38
+ .hljs-section,
39
+ .hljs-built_in,
40
+ .hljs-name {
41
+ color: #ffb03b;
42
+ }
43
+
44
+ .hljs-variable,
45
+ .hljs-template-variable,
46
+ .hljs-class .hljs-title,
47
+ .hljs-type,
48
+ .hljs-tag {
49
+ color: #b58900;
50
+ }
51
+
52
+ .hljs-attribute {
53
+ color: #b89859;
54
+ }
55
+
56
+ .hljs-symbol,
57
+ .hljs-bullet,
58
+ .hljs-link,
59
+ .hljs-subst,
60
+ .hljs-meta {
61
+ color: #cb4b16;
62
+ }
63
+
64
+ .hljs-deletion {
65
+ color: #dc322f;
66
+ }
67
+
68
+ .hljs-selector-id,
69
+ .hljs-selector-class {
70
+ color: #d3a60c;
71
+ }
72
+
73
+ .hljs-formula {
74
+ background: #073642;
75
+ }
76
+
77
+ .hljs-emphasis {
78
+ font-style: italic;
79
+ }
80
+
81
+ .hljs-strong {
82
+ font-weight: bold;
83
+ }
@@ -0,0 +1,96 @@
1
+ /*
2
+
3
+ PureBASIC native IDE style ( version 1.0 - April 2016 )
4
+
5
+ by Tristano Ajmone <tajmone@gmail.com>
6
+
7
+ Public Domain
8
+
9
+ NOTE_1: PureBASIC code syntax highlighting only applies the following classes:
10
+ .hljs-comment
11
+ .hljs-function
12
+ .hljs-keywords
13
+ .hljs-string
14
+ .hljs-symbol
15
+
16
+ Other classes are added here for the benefit of styling other languages with the look and feel of PureBASIC native IDE style.
17
+ If you need to customize a stylesheet for PureBASIC only, remove all non-relevant classes -- PureBASIC-related classes are followed by
18
+ a "--- used for PureBASIC ... ---" comment on same line.
19
+
20
+ NOTE_2: Color names provided in comments were derived using "Name that Color" online tool:
21
+ http://chir.ag/projects/name-that-color
22
+ */
23
+
24
+ .hljs { /* Common set of rules required by highlight.js (don'r remove!) */
25
+ display: block;
26
+ overflow-x: auto;
27
+ padding: 0.5em;
28
+ background: #FFFFDF; /* Half and Half (approx.) */
29
+ /* --- Uncomment to add PureBASIC native IDE styled font!
30
+ font-family: Consolas;
31
+ */
32
+ }
33
+
34
+ .hljs, /* --- used for PureBASIC base color --- */
35
+ .hljs-type, /* --- used for PureBASIC Procedures return type --- */
36
+ .hljs-function, /* --- used for wrapping PureBASIC Procedures definitions --- */
37
+ .hljs-name,
38
+ .hljs-number,
39
+ .hljs-attr,
40
+ .hljs-params,
41
+ .hljs-subst {
42
+ color: #000000; /* Black */
43
+ }
44
+
45
+ .hljs-comment, /* --- used for PureBASIC Comments --- */
46
+ .hljs-regexp,
47
+ .hljs-section,
48
+ .hljs-selector-pseudo,
49
+ .hljs-addition {
50
+ color: #00AAAA; /* Persian Green (approx.) */
51
+ }
52
+
53
+ .hljs-title, /* --- used for PureBASIC Procedures Names --- */
54
+ .hljs-tag,
55
+ .hljs-variable,
56
+ .hljs-code {
57
+ color: #006666; /* Blue Stone (approx.) */
58
+ }
59
+
60
+ .hljs-keyword, /* --- used for PureBASIC Keywords --- */
61
+ .hljs-class,
62
+ .hljs-meta-keyword,
63
+ .hljs-selector-class,
64
+ .hljs-built_in,
65
+ .hljs-builtin-name {
66
+ color: #006666; /* Blue Stone (approx.) */
67
+ font-weight: bold;
68
+ }
69
+
70
+ .hljs-string, /* --- used for PureBASIC Strings --- */
71
+ .hljs-selector-attr {
72
+ color: #0080FF; /* Azure Radiance (approx.) */
73
+ }
74
+
75
+ .hljs-symbol, /* --- used for PureBASIC Constants --- */
76
+ .hljs-link,
77
+ .hljs-deletion,
78
+ .hljs-attribute {
79
+ color: #924B72; /* Cannon Pink (approx.) */
80
+ }
81
+
82
+ .hljs-meta,
83
+ .hljs-literal,
84
+ .hljs-selector-id {
85
+ color: #924B72; /* Cannon Pink (approx.) */
86
+ font-weight: bold;
87
+ }
88
+
89
+ .hljs-strong,
90
+ .hljs-name {
91
+ font-weight: bold;
92
+ }
93
+
94
+ .hljs-emphasis {
95
+ font-style: italic;
96
+ }
@@ -0,0 +1,83 @@
1
+ /*
2
+
3
+ Qt Creator dark color scheme
4
+
5
+ */
6
+
7
+
8
+ .hljs {
9
+ display: block;
10
+ overflow-x: auto;
11
+ padding: 0.5em;
12
+ background: #000000;
13
+ }
14
+
15
+ .hljs,
16
+ .hljs-subst,
17
+ .hljs-tag,
18
+ .hljs-title {
19
+ color: #aaaaaa;
20
+ }
21
+
22
+ .hljs-strong,
23
+ .hljs-emphasis {
24
+ color: #a8a8a2;
25
+ }
26
+
27
+ .hljs-bullet,
28
+ .hljs-quote,
29
+ .hljs-number,
30
+ .hljs-regexp,
31
+ .hljs-literal {
32
+ color: #ff55ff;
33
+ }
34
+
35
+ .hljs-code
36
+ .hljs-selector-class {
37
+ color: #aaaaff;
38
+ }
39
+
40
+ .hljs-emphasis,
41
+ .hljs-stronge,
42
+ .hljs-type {
43
+ font-style: italic;
44
+ }
45
+
46
+ .hljs-keyword,
47
+ .hljs-selector-tag,
48
+ .hljs-function,
49
+ .hljs-section,
50
+ .hljs-symbol,
51
+ .hljs-name {
52
+ color: #ffff55;
53
+ }
54
+
55
+ .hljs-attribute {
56
+ color: #ff5555;
57
+ }
58
+
59
+ .hljs-variable,
60
+ .hljs-params,
61
+ .hljs-class .hljs-title {
62
+ color: #8888ff;
63
+ }
64
+
65
+ .hljs-string,
66
+ .hljs-selector-id,
67
+ .hljs-selector-attr,
68
+ .hljs-selector-pseudo,
69
+ .hljs-type,
70
+ .hljs-built_in,
71
+ .hljs-builtin-name,
72
+ .hljs-template-tag,
73
+ .hljs-template-variable,
74
+ .hljs-addition,
75
+ .hljs-link {
76
+ color: #ff55ff;
77
+ }
78
+
79
+ .hljs-comment,
80
+ .hljs-meta,
81
+ .hljs-deletion {
82
+ color: #55ffff;
83
+ }
@@ -0,0 +1,83 @@
1
+ /*
2
+
3
+ Qt Creator light color scheme
4
+
5
+ */
6
+
7
+
8
+ .hljs {
9
+ display: block;
10
+ overflow-x: auto;
11
+ padding: 0.5em;
12
+ background: #ffffff;
13
+ }
14
+
15
+ .hljs,
16
+ .hljs-subst,
17
+ .hljs-tag,
18
+ .hljs-title {
19
+ color: #000000;
20
+ }
21
+
22
+ .hljs-strong,
23
+ .hljs-emphasis {
24
+ color: #000000;
25
+ }
26
+
27
+ .hljs-bullet,
28
+ .hljs-quote,
29
+ .hljs-number,
30
+ .hljs-regexp,
31
+ .hljs-literal {
32
+ color: #000080;
33
+ }
34
+
35
+ .hljs-code
36
+ .hljs-selector-class {
37
+ color: #800080;
38
+ }
39
+
40
+ .hljs-emphasis,
41
+ .hljs-stronge,
42
+ .hljs-type {
43
+ font-style: italic;
44
+ }
45
+
46
+ .hljs-keyword,
47
+ .hljs-selector-tag,
48
+ .hljs-function,
49
+ .hljs-section,
50
+ .hljs-symbol,
51
+ .hljs-name {
52
+ color: #808000;
53
+ }
54
+
55
+ .hljs-attribute {
56
+ color: #800000;
57
+ }
58
+
59
+ .hljs-variable,
60
+ .hljs-params,
61
+ .hljs-class .hljs-title {
62
+ color: #0055AF;
63
+ }
64
+
65
+ .hljs-string,
66
+ .hljs-selector-id,
67
+ .hljs-selector-attr,
68
+ .hljs-selector-pseudo,
69
+ .hljs-type,
70
+ .hljs-built_in,
71
+ .hljs-builtin-name,
72
+ .hljs-template-tag,
73
+ .hljs-template-variable,
74
+ .hljs-addition,
75
+ .hljs-link {
76
+ color: #008000;
77
+ }
78
+
79
+ .hljs-comment,
80
+ .hljs-meta,
81
+ .hljs-deletion {
82
+ color: #008000;
83
+ }
@@ -0,0 +1,106 @@
1
+ /*
2
+
3
+ Railscasts-like style (c) Visoft, Inc. (Damien White)
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ background: #232323;
12
+ color: #e6e1dc;
13
+ }
14
+
15
+ .hljs-comment,
16
+ .hljs-quote {
17
+ color: #bc9458;
18
+ font-style: italic;
19
+ }
20
+
21
+ .hljs-keyword,
22
+ .hljs-selector-tag {
23
+ color: #c26230;
24
+ }
25
+
26
+ .hljs-string,
27
+ .hljs-number,
28
+ .hljs-regexp,
29
+ .hljs-variable,
30
+ .hljs-template-variable {
31
+ color: #a5c261;
32
+ }
33
+
34
+ .hljs-subst {
35
+ color: #519f50;
36
+ }
37
+
38
+ .hljs-tag,
39
+ .hljs-name {
40
+ color: #e8bf6a;
41
+ }
42
+
43
+ .hljs-type {
44
+ color: #da4939;
45
+ }
46
+
47
+
48
+ .hljs-symbol,
49
+ .hljs-bullet,
50
+ .hljs-built_in,
51
+ .hljs-builtin-name,
52
+ .hljs-attr,
53
+ .hljs-link {
54
+ color: #6d9cbe;
55
+ }
56
+
57
+ .hljs-params {
58
+ color: #d0d0ff;
59
+ }
60
+
61
+ .hljs-attribute {
62
+ color: #cda869;
63
+ }
64
+
65
+ .hljs-meta {
66
+ color: #9b859d;
67
+ }
68
+
69
+ .hljs-title,
70
+ .hljs-section {
71
+ color: #ffc66d;
72
+ }
73
+
74
+ .hljs-addition {
75
+ background-color: #144212;
76
+ color: #e6e1dc;
77
+ display: inline-block;
78
+ width: 100%;
79
+ }
80
+
81
+ .hljs-deletion {
82
+ background-color: #600;
83
+ color: #e6e1dc;
84
+ display: inline-block;
85
+ width: 100%;
86
+ }
87
+
88
+ .hljs-selector-class {
89
+ color: #9b703f;
90
+ }
91
+
92
+ .hljs-selector-id {
93
+ color: #8b98ab;
94
+ }
95
+
96
+ .hljs-emphasis {
97
+ font-style: italic;
98
+ }
99
+
100
+ .hljs-strong {
101
+ font-weight: bold;
102
+ }
103
+
104
+ .hljs-link {
105
+ text-decoration: underline;
106
+ }
@@ -0,0 +1,85 @@
1
+ /*
2
+
3
+ Style with support for rainbow parens
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ background: #474949;
12
+ color: #d1d9e1;
13
+ }
14
+
15
+
16
+ .hljs-comment,
17
+ .hljs-quote {
18
+ color: #969896;
19
+ font-style: italic;
20
+ }
21
+
22
+ .hljs-keyword,
23
+ .hljs-selector-tag,
24
+ .hljs-literal,
25
+ .hljs-type,
26
+ .hljs-addition {
27
+ color: #cc99cc;
28
+ }
29
+
30
+ .hljs-number,
31
+ .hljs-selector-attr,
32
+ .hljs-selector-pseudo {
33
+ color: #f99157;
34
+ }
35
+
36
+ .hljs-string,
37
+ .hljs-doctag,
38
+ .hljs-regexp {
39
+ color: #8abeb7;
40
+ }
41
+
42
+ .hljs-title,
43
+ .hljs-name,
44
+ .hljs-section,
45
+ .hljs-built_in {
46
+ color: #b5bd68;
47
+ }
48
+
49
+ .hljs-variable,
50
+ .hljs-template-variable,
51
+ .hljs-selector-id,
52
+ .hljs-class .hljs-title {
53
+ color: #ffcc66;
54
+ }
55
+
56
+ .hljs-section,
57
+ .hljs-name,
58
+ .hljs-strong {
59
+ font-weight: bold;
60
+ }
61
+
62
+ .hljs-symbol,
63
+ .hljs-bullet,
64
+ .hljs-subst,
65
+ .hljs-meta,
66
+ .hljs-link {
67
+ color: #f99157;
68
+ }
69
+
70
+ .hljs-deletion {
71
+ color: #dc322f;
72
+ }
73
+
74
+ .hljs-formula {
75
+ background: #eee8d5;
76
+ }
77
+
78
+ .hljs-attr,
79
+ .hljs-attribute {
80
+ color: #81a2be;
81
+ }
82
+
83
+ .hljs-emphasis {
84
+ font-style: italic;
85
+ }
@@ -0,0 +1,72 @@
1
+ /*
2
+
3
+ School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 15px 0.5em 0.5em 30px;
11
+ font-size: 11px;
12
+ line-height:16px;
13
+ }
14
+
15
+ pre{
16
+ background:#f6f6ae url(./school-book.png);
17
+ border-top: solid 2px #d2e8b9;
18
+ border-bottom: solid 1px #d2e8b9;
19
+ }
20
+
21
+ .hljs-keyword,
22
+ .hljs-selector-tag,
23
+ .hljs-literal {
24
+ color:#005599;
25
+ font-weight:bold;
26
+ }
27
+
28
+ .hljs,
29
+ .hljs-subst {
30
+ color: #3e5915;
31
+ }
32
+
33
+ .hljs-string,
34
+ .hljs-title,
35
+ .hljs-section,
36
+ .hljs-type,
37
+ .hljs-symbol,
38
+ .hljs-bullet,
39
+ .hljs-attribute,
40
+ .hljs-built_in,
41
+ .hljs-builtin-name,
42
+ .hljs-addition,
43
+ .hljs-variable,
44
+ .hljs-template-tag,
45
+ .hljs-template-variable,
46
+ .hljs-link {
47
+ color: #2c009f;
48
+ }
49
+
50
+ .hljs-comment,
51
+ .hljs-quote,
52
+ .hljs-deletion,
53
+ .hljs-meta {
54
+ color: #e60415;
55
+ }
56
+
57
+ .hljs-keyword,
58
+ .hljs-selector-tag,
59
+ .hljs-literal,
60
+ .hljs-doctag,
61
+ .hljs-title,
62
+ .hljs-section,
63
+ .hljs-type,
64
+ .hljs-name,
65
+ .hljs-selector-id,
66
+ .hljs-strong {
67
+ font-weight: bold;
68
+ }
69
+
70
+ .hljs-emphasis {
71
+ font-style: italic;
72
+ }