@abp/highlight.js 5.0.0-rc.1 → 5.0.2

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 (82) hide show
  1. package/abp.resourcemapping.js +5 -5
  2. package/lib/highlight.pack.js +1 -1
  3. package/lib/styles/agate.css +108 -108
  4. package/lib/styles/androidstudio.css +66 -66
  5. package/lib/styles/arduino-light.css +88 -88
  6. package/lib/styles/arta.css +73 -73
  7. package/lib/styles/ascetic.css +45 -45
  8. package/lib/styles/atelier-cave-dark.css +83 -83
  9. package/lib/styles/atelier-cave-light.css +85 -85
  10. package/lib/styles/atelier-dune-dark.css +69 -69
  11. package/lib/styles/atelier-dune-light.css +69 -69
  12. package/lib/styles/atelier-estuary-dark.css +84 -84
  13. package/lib/styles/atelier-estuary-light.css +84 -84
  14. package/lib/styles/atelier-forest-dark.css +69 -69
  15. package/lib/styles/atelier-forest-light.css +69 -69
  16. package/lib/styles/atelier-heath-dark.css +69 -69
  17. package/lib/styles/atelier-heath-light.css +69 -69
  18. package/lib/styles/atelier-lakeside-dark.css +69 -69
  19. package/lib/styles/atelier-lakeside-light.css +69 -69
  20. package/lib/styles/atelier-plateau-dark.css +84 -84
  21. package/lib/styles/atelier-plateau-light.css +84 -84
  22. package/lib/styles/atelier-savanna-dark.css +84 -84
  23. package/lib/styles/atelier-savanna-light.css +84 -84
  24. package/lib/styles/atelier-seaside-dark.css +69 -69
  25. package/lib/styles/atelier-seaside-light.css +69 -69
  26. package/lib/styles/atelier-sulphurpool-dark.css +69 -69
  27. package/lib/styles/atelier-sulphurpool-light.css +69 -69
  28. package/lib/styles/atom-one-dark.css +96 -96
  29. package/lib/styles/atom-one-light.css +96 -96
  30. package/lib/styles/brown-paper.css +64 -64
  31. package/lib/styles/codepen-embed.css +60 -60
  32. package/lib/styles/color-brewer.css +71 -71
  33. package/lib/styles/darcula.css +77 -77
  34. package/lib/styles/dark.css +63 -63
  35. package/lib/styles/darkula.css +6 -6
  36. package/lib/styles/default.css +99 -99
  37. package/lib/styles/docco.css +97 -97
  38. package/lib/styles/dracula.css +76 -76
  39. package/lib/styles/far.css +71 -71
  40. package/lib/styles/foundation.css +88 -88
  41. package/lib/styles/github-gist.css +71 -71
  42. package/lib/styles/github.css +99 -99
  43. package/lib/styles/googlecode.css +89 -89
  44. package/lib/styles/grayscale.css +101 -101
  45. package/lib/styles/gruvbox-dark.css +108 -108
  46. package/lib/styles/gruvbox-light.css +108 -108
  47. package/lib/styles/hopscotch.css +83 -83
  48. package/lib/styles/hybrid.css +102 -102
  49. package/lib/styles/idea.css +97 -97
  50. package/lib/styles/ir-black.css +73 -73
  51. package/lib/styles/kimbie.dark.css +74 -74
  52. package/lib/styles/kimbie.light.css +74 -74
  53. package/lib/styles/magula.css +70 -70
  54. package/lib/styles/mono-blue.css +59 -59
  55. package/lib/styles/monokai-sublime.css +83 -83
  56. package/lib/styles/monokai.css +70 -70
  57. package/lib/styles/obsidian.css +88 -88
  58. package/lib/styles/ocean.css +74 -74
  59. package/lib/styles/paraiso-dark.css +72 -72
  60. package/lib/styles/paraiso-light.css +72 -72
  61. package/lib/styles/pojoaque.css +83 -83
  62. package/lib/styles/purebasic.css +96 -96
  63. package/lib/styles/qtcreator_dark.css +83 -83
  64. package/lib/styles/qtcreator_light.css +83 -83
  65. package/lib/styles/railscasts.css +106 -106
  66. package/lib/styles/rainbow.css +85 -85
  67. package/lib/styles/routeros.css +108 -108
  68. package/lib/styles/school-book.css +72 -72
  69. package/lib/styles/solarized-dark.css +84 -84
  70. package/lib/styles/solarized-light.css +84 -84
  71. package/lib/styles/sunburst.css +102 -102
  72. package/lib/styles/tomorrow-night-blue.css +75 -75
  73. package/lib/styles/tomorrow-night-bright.css +74 -74
  74. package/lib/styles/tomorrow-night-eighties.css +74 -74
  75. package/lib/styles/tomorrow-night.css +75 -75
  76. package/lib/styles/tomorrow.css +72 -72
  77. package/lib/styles/vs.css +68 -68
  78. package/lib/styles/vs2015.css +115 -115
  79. package/lib/styles/xcode.css +93 -93
  80. package/lib/styles/xt256.css +92 -92
  81. package/lib/styles/zenburn.css +80 -80
  82. package/package.json +2 -2
@@ -1,102 +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
- }
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
+ }
@@ -1,75 +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
- }
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
+ }
@@ -1,74 +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
- }
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
+ }
@@ -1,74 +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
- }
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
+ }