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,84 @@
1
+ /*
2
+
3
+ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ background: #002b36;
12
+ color: #839496;
13
+ }
14
+
15
+ .hljs-comment,
16
+ .hljs-quote {
17
+ color: #586e75;
18
+ }
19
+
20
+ /* Solarized Green */
21
+ .hljs-keyword,
22
+ .hljs-selector-tag,
23
+ .hljs-addition {
24
+ color: #859900;
25
+ }
26
+
27
+ /* Solarized Cyan */
28
+ .hljs-number,
29
+ .hljs-string,
30
+ .hljs-meta .hljs-meta-string,
31
+ .hljs-literal,
32
+ .hljs-doctag,
33
+ .hljs-regexp {
34
+ color: #2aa198;
35
+ }
36
+
37
+ /* Solarized Blue */
38
+ .hljs-title,
39
+ .hljs-section,
40
+ .hljs-name,
41
+ .hljs-selector-id,
42
+ .hljs-selector-class {
43
+ color: #268bd2;
44
+ }
45
+
46
+ /* Solarized Yellow */
47
+ .hljs-attribute,
48
+ .hljs-attr,
49
+ .hljs-variable,
50
+ .hljs-template-variable,
51
+ .hljs-class .hljs-title,
52
+ .hljs-type {
53
+ color: #b58900;
54
+ }
55
+
56
+ /* Solarized Orange */
57
+ .hljs-symbol,
58
+ .hljs-bullet,
59
+ .hljs-subst,
60
+ .hljs-meta,
61
+ .hljs-meta .hljs-keyword,
62
+ .hljs-selector-attr,
63
+ .hljs-selector-pseudo,
64
+ .hljs-link {
65
+ color: #cb4b16;
66
+ }
67
+
68
+ /* Solarized Red */
69
+ .hljs-built_in,
70
+ .hljs-deletion {
71
+ color: #dc322f;
72
+ }
73
+
74
+ .hljs-formula {
75
+ background: #073642;
76
+ }
77
+
78
+ .hljs-emphasis {
79
+ font-style: italic;
80
+ }
81
+
82
+ .hljs-strong {
83
+ font-weight: bold;
84
+ }
@@ -0,0 +1,84 @@
1
+ /*
2
+
3
+ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ background: #fdf6e3;
12
+ color: #657b83;
13
+ }
14
+
15
+ .hljs-comment,
16
+ .hljs-quote {
17
+ color: #93a1a1;
18
+ }
19
+
20
+ /* Solarized Green */
21
+ .hljs-keyword,
22
+ .hljs-selector-tag,
23
+ .hljs-addition {
24
+ color: #859900;
25
+ }
26
+
27
+ /* Solarized Cyan */
28
+ .hljs-number,
29
+ .hljs-string,
30
+ .hljs-meta .hljs-meta-string,
31
+ .hljs-literal,
32
+ .hljs-doctag,
33
+ .hljs-regexp {
34
+ color: #2aa198;
35
+ }
36
+
37
+ /* Solarized Blue */
38
+ .hljs-title,
39
+ .hljs-section,
40
+ .hljs-name,
41
+ .hljs-selector-id,
42
+ .hljs-selector-class {
43
+ color: #268bd2;
44
+ }
45
+
46
+ /* Solarized Yellow */
47
+ .hljs-attribute,
48
+ .hljs-attr,
49
+ .hljs-variable,
50
+ .hljs-template-variable,
51
+ .hljs-class .hljs-title,
52
+ .hljs-type {
53
+ color: #b58900;
54
+ }
55
+
56
+ /* Solarized Orange */
57
+ .hljs-symbol,
58
+ .hljs-bullet,
59
+ .hljs-subst,
60
+ .hljs-meta,
61
+ .hljs-meta .hljs-keyword,
62
+ .hljs-selector-attr,
63
+ .hljs-selector-pseudo,
64
+ .hljs-link {
65
+ color: #cb4b16;
66
+ }
67
+
68
+ /* Solarized Red */
69
+ .hljs-built_in,
70
+ .hljs-deletion {
71
+ color: #dc322f;
72
+ }
73
+
74
+ .hljs-formula {
75
+ background: #eee8d5;
76
+ }
77
+
78
+ .hljs-emphasis {
79
+ font-style: italic;
80
+ }
81
+
82
+ .hljs-strong {
83
+ font-weight: bold;
84
+ }
@@ -0,0 +1,102 @@
1
+ /*
2
+
3
+ Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ background: #000;
12
+ color: #f8f8f8;
13
+ }
14
+
15
+ .hljs-comment,
16
+ .hljs-quote {
17
+ color: #aeaeae;
18
+ font-style: italic;
19
+ }
20
+
21
+ .hljs-keyword,
22
+ .hljs-selector-tag,
23
+ .hljs-type {
24
+ color: #e28964;
25
+ }
26
+
27
+ .hljs-string {
28
+ color: #65b042;
29
+ }
30
+
31
+ .hljs-subst {
32
+ color: #daefa3;
33
+ }
34
+
35
+ .hljs-regexp,
36
+ .hljs-link {
37
+ color: #e9c062;
38
+ }
39
+
40
+ .hljs-title,
41
+ .hljs-section,
42
+ .hljs-tag,
43
+ .hljs-name {
44
+ color: #89bdff;
45
+ }
46
+
47
+ .hljs-class .hljs-title,
48
+ .hljs-doctag {
49
+ text-decoration: underline;
50
+ }
51
+
52
+ .hljs-symbol,
53
+ .hljs-bullet,
54
+ .hljs-number {
55
+ color: #3387cc;
56
+ }
57
+
58
+ .hljs-params,
59
+ .hljs-variable,
60
+ .hljs-template-variable {
61
+ color: #3e87e3;
62
+ }
63
+
64
+ .hljs-attribute {
65
+ color: #cda869;
66
+ }
67
+
68
+ .hljs-meta {
69
+ color: #8996a8;
70
+ }
71
+
72
+ .hljs-formula {
73
+ background-color: #0e2231;
74
+ color: #f8f8f8;
75
+ font-style: italic;
76
+ }
77
+
78
+ .hljs-addition {
79
+ background-color: #253b22;
80
+ color: #f8f8f8;
81
+ }
82
+
83
+ .hljs-deletion {
84
+ background-color: #420e09;
85
+ color: #f8f8f8;
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
+ }
@@ -0,0 +1,75 @@
1
+ /* Tomorrow Night Blue Theme */
2
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
+
6
+ /* Tomorrow Comment */
7
+ .hljs-comment,
8
+ .hljs-quote {
9
+ color: #7285b7;
10
+ }
11
+
12
+ /* Tomorrow Red */
13
+ .hljs-variable,
14
+ .hljs-template-variable,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-selector-id,
18
+ .hljs-selector-class,
19
+ .hljs-regexp,
20
+ .hljs-deletion {
21
+ color: #ff9da4;
22
+ }
23
+
24
+ /* Tomorrow Orange */
25
+ .hljs-number,
26
+ .hljs-built_in,
27
+ .hljs-builtin-name,
28
+ .hljs-literal,
29
+ .hljs-type,
30
+ .hljs-params,
31
+ .hljs-meta,
32
+ .hljs-link {
33
+ color: #ffc58f;
34
+ }
35
+
36
+ /* Tomorrow Yellow */
37
+ .hljs-attribute {
38
+ color: #ffeead;
39
+ }
40
+
41
+ /* Tomorrow Green */
42
+ .hljs-string,
43
+ .hljs-symbol,
44
+ .hljs-bullet,
45
+ .hljs-addition {
46
+ color: #d1f1a9;
47
+ }
48
+
49
+ /* Tomorrow Blue */
50
+ .hljs-title,
51
+ .hljs-section {
52
+ color: #bbdaff;
53
+ }
54
+
55
+ /* Tomorrow Purple */
56
+ .hljs-keyword,
57
+ .hljs-selector-tag {
58
+ color: #ebbbff;
59
+ }
60
+
61
+ .hljs {
62
+ display: block;
63
+ overflow-x: auto;
64
+ background: #002451;
65
+ color: white;
66
+ padding: 0.5em;
67
+ }
68
+
69
+ .hljs-emphasis {
70
+ font-style: italic;
71
+ }
72
+
73
+ .hljs-strong {
74
+ font-weight: bold;
75
+ }
@@ -0,0 +1,74 @@
1
+ /* Tomorrow Night Bright Theme */
2
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
+
5
+ /* Tomorrow Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #969896;
9
+ }
10
+
11
+ /* Tomorrow 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: #d54e53;
21
+ }
22
+
23
+ /* Tomorrow 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: #e78c45;
33
+ }
34
+
35
+ /* Tomorrow Yellow */
36
+ .hljs-attribute {
37
+ color: #e7c547;
38
+ }
39
+
40
+ /* Tomorrow Green */
41
+ .hljs-string,
42
+ .hljs-symbol,
43
+ .hljs-bullet,
44
+ .hljs-addition {
45
+ color: #b9ca4a;
46
+ }
47
+
48
+ /* Tomorrow Blue */
49
+ .hljs-title,
50
+ .hljs-section {
51
+ color: #7aa6da;
52
+ }
53
+
54
+ /* Tomorrow Purple */
55
+ .hljs-keyword,
56
+ .hljs-selector-tag {
57
+ color: #c397d8;
58
+ }
59
+
60
+ .hljs {
61
+ display: block;
62
+ overflow-x: auto;
63
+ background: black;
64
+ color: #eaeaea;
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
+ /* Tomorrow Night Eighties Theme */
2
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
+
5
+ /* Tomorrow Comment */
6
+ .hljs-comment,
7
+ .hljs-quote {
8
+ color: #999999;
9
+ }
10
+
11
+ /* Tomorrow 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: #f2777a;
21
+ }
22
+
23
+ /* Tomorrow 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: #f99157;
33
+ }
34
+
35
+ /* Tomorrow Yellow */
36
+ .hljs-attribute {
37
+ color: #ffcc66;
38
+ }
39
+
40
+ /* Tomorrow Green */
41
+ .hljs-string,
42
+ .hljs-symbol,
43
+ .hljs-bullet,
44
+ .hljs-addition {
45
+ color: #99cc99;
46
+ }
47
+
48
+ /* Tomorrow Blue */
49
+ .hljs-title,
50
+ .hljs-section {
51
+ color: #6699cc;
52
+ }
53
+
54
+ /* Tomorrow Purple */
55
+ .hljs-keyword,
56
+ .hljs-selector-tag {
57
+ color: #cc99cc;
58
+ }
59
+
60
+ .hljs {
61
+ display: block;
62
+ overflow-x: auto;
63
+ background: #2d2d2d;
64
+ color: #cccccc;
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,75 @@
1
+ /* Tomorrow Night Theme */
2
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
+
6
+ /* Tomorrow Comment */
7
+ .hljs-comment,
8
+ .hljs-quote {
9
+ color: #969896;
10
+ }
11
+
12
+ /* Tomorrow Red */
13
+ .hljs-variable,
14
+ .hljs-template-variable,
15
+ .hljs-tag,
16
+ .hljs-name,
17
+ .hljs-selector-id,
18
+ .hljs-selector-class,
19
+ .hljs-regexp,
20
+ .hljs-deletion {
21
+ color: #cc6666;
22
+ }
23
+
24
+ /* Tomorrow Orange */
25
+ .hljs-number,
26
+ .hljs-built_in,
27
+ .hljs-builtin-name,
28
+ .hljs-literal,
29
+ .hljs-type,
30
+ .hljs-params,
31
+ .hljs-meta,
32
+ .hljs-link {
33
+ color: #de935f;
34
+ }
35
+
36
+ /* Tomorrow Yellow */
37
+ .hljs-attribute {
38
+ color: #f0c674;
39
+ }
40
+
41
+ /* Tomorrow Green */
42
+ .hljs-string,
43
+ .hljs-symbol,
44
+ .hljs-bullet,
45
+ .hljs-addition {
46
+ color: #b5bd68;
47
+ }
48
+
49
+ /* Tomorrow Blue */
50
+ .hljs-title,
51
+ .hljs-section {
52
+ color: #81a2be;
53
+ }
54
+
55
+ /* Tomorrow Purple */
56
+ .hljs-keyword,
57
+ .hljs-selector-tag {
58
+ color: #b294bb;
59
+ }
60
+
61
+ .hljs {
62
+ display: block;
63
+ overflow-x: auto;
64
+ background: #1d1f21;
65
+ color: #c5c8c6;
66
+ padding: 0.5em;
67
+ }
68
+
69
+ .hljs-emphasis {
70
+ font-style: italic;
71
+ }
72
+
73
+ .hljs-strong {
74
+ font-weight: bold;
75
+ }
@@ -0,0 +1,72 @@
1
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
2
+
3
+ /* Tomorrow Comment */
4
+ .hljs-comment,
5
+ .hljs-quote {
6
+ color: #8e908c;
7
+ }
8
+
9
+ /* Tomorrow Red */
10
+ .hljs-variable,
11
+ .hljs-template-variable,
12
+ .hljs-tag,
13
+ .hljs-name,
14
+ .hljs-selector-id,
15
+ .hljs-selector-class,
16
+ .hljs-regexp,
17
+ .hljs-deletion {
18
+ color: #c82829;
19
+ }
20
+
21
+ /* Tomorrow Orange */
22
+ .hljs-number,
23
+ .hljs-built_in,
24
+ .hljs-builtin-name,
25
+ .hljs-literal,
26
+ .hljs-type,
27
+ .hljs-params,
28
+ .hljs-meta,
29
+ .hljs-link {
30
+ color: #f5871f;
31
+ }
32
+
33
+ /* Tomorrow Yellow */
34
+ .hljs-attribute {
35
+ color: #eab700;
36
+ }
37
+
38
+ /* Tomorrow Green */
39
+ .hljs-string,
40
+ .hljs-symbol,
41
+ .hljs-bullet,
42
+ .hljs-addition {
43
+ color: #718c00;
44
+ }
45
+
46
+ /* Tomorrow Blue */
47
+ .hljs-title,
48
+ .hljs-section {
49
+ color: #4271ae;
50
+ }
51
+
52
+ /* Tomorrow Purple */
53
+ .hljs-keyword,
54
+ .hljs-selector-tag {
55
+ color: #8959a8;
56
+ }
57
+
58
+ .hljs {
59
+ display: block;
60
+ overflow-x: auto;
61
+ background: white;
62
+ color: #4d4d4c;
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,68 @@
1
+ /*
2
+
3
+ Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
4
+
5
+ */
6
+ .hljs {
7
+ display: block;
8
+ overflow-x: auto;
9
+ padding: 0.5em;
10
+ background: white;
11
+ color: black;
12
+ }
13
+
14
+ .hljs-comment,
15
+ .hljs-quote,
16
+ .hljs-variable {
17
+ color: #008000;
18
+ }
19
+
20
+ .hljs-keyword,
21
+ .hljs-selector-tag,
22
+ .hljs-built_in,
23
+ .hljs-name,
24
+ .hljs-tag {
25
+ color: #00f;
26
+ }
27
+
28
+ .hljs-string,
29
+ .hljs-title,
30
+ .hljs-section,
31
+ .hljs-attribute,
32
+ .hljs-literal,
33
+ .hljs-template-tag,
34
+ .hljs-template-variable,
35
+ .hljs-type,
36
+ .hljs-addition {
37
+ color: #a31515;
38
+ }
39
+
40
+ .hljs-deletion,
41
+ .hljs-selector-attr,
42
+ .hljs-selector-pseudo,
43
+ .hljs-meta {
44
+ color: #2b91af;
45
+ }
46
+
47
+ .hljs-doctag {
48
+ color: #808080;
49
+ }
50
+
51
+ .hljs-attr {
52
+ color: #f00;
53
+ }
54
+
55
+ .hljs-symbol,
56
+ .hljs-bullet,
57
+ .hljs-link {
58
+ color: #00b0e8;
59
+ }
60
+
61
+
62
+ .hljs-emphasis {
63
+ font-style: italic;
64
+ }
65
+
66
+ .hljs-strong {
67
+ font-weight: bold;
68
+ }