source: node_modules/react-syntax-highlighter/dist/cjs/styles/prism/prism.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[d24f17c]1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports["default"] = void 0;
7var _default = {
8 "code[class*=\"language-\"]": {
9 "color": "black",
10 "background": "none",
11 "textShadow": "0 1px white",
12 "fontFamily": "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
13 "fontSize": "1em",
14 "textAlign": "left",
15 "whiteSpace": "pre",
16 "wordSpacing": "normal",
17 "wordBreak": "normal",
18 "wordWrap": "normal",
19 "lineHeight": "1.5",
20 "MozTabSize": "4",
21 "OTabSize": "4",
22 "tabSize": "4",
23 "WebkitHyphens": "none",
24 "MozHyphens": "none",
25 "msHyphens": "none",
26 "hyphens": "none"
27 },
28 "pre[class*=\"language-\"]": {
29 "color": "black",
30 "background": "#f5f2f0",
31 "textShadow": "0 1px white",
32 "fontFamily": "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
33 "fontSize": "1em",
34 "textAlign": "left",
35 "whiteSpace": "pre",
36 "wordSpacing": "normal",
37 "wordBreak": "normal",
38 "wordWrap": "normal",
39 "lineHeight": "1.5",
40 "MozTabSize": "4",
41 "OTabSize": "4",
42 "tabSize": "4",
43 "WebkitHyphens": "none",
44 "MozHyphens": "none",
45 "msHyphens": "none",
46 "hyphens": "none",
47 "padding": "1em",
48 "margin": ".5em 0",
49 "overflow": "auto"
50 },
51 "pre[class*=\"language-\"]::-moz-selection": {
52 "textShadow": "none",
53 "background": "#b3d4fc"
54 },
55 "pre[class*=\"language-\"] ::-moz-selection": {
56 "textShadow": "none",
57 "background": "#b3d4fc"
58 },
59 "code[class*=\"language-\"]::-moz-selection": {
60 "textShadow": "none",
61 "background": "#b3d4fc"
62 },
63 "code[class*=\"language-\"] ::-moz-selection": {
64 "textShadow": "none",
65 "background": "#b3d4fc"
66 },
67 "pre[class*=\"language-\"]::selection": {
68 "textShadow": "none",
69 "background": "#b3d4fc"
70 },
71 "pre[class*=\"language-\"] ::selection": {
72 "textShadow": "none",
73 "background": "#b3d4fc"
74 },
75 "code[class*=\"language-\"]::selection": {
76 "textShadow": "none",
77 "background": "#b3d4fc"
78 },
79 "code[class*=\"language-\"] ::selection": {
80 "textShadow": "none",
81 "background": "#b3d4fc"
82 },
83 ":not(pre) > code[class*=\"language-\"]": {
84 "background": "#f5f2f0",
85 "padding": ".1em",
86 "borderRadius": ".3em",
87 "whiteSpace": "normal"
88 },
89 "comment": {
90 "color": "slategray"
91 },
92 "prolog": {
93 "color": "slategray"
94 },
95 "doctype": {
96 "color": "slategray"
97 },
98 "cdata": {
99 "color": "slategray"
100 },
101 "punctuation": {
102 "color": "#999"
103 },
104 "namespace": {
105 "Opacity": ".7"
106 },
107 "property": {
108 "color": "#905"
109 },
110 "tag": {
111 "color": "#905"
112 },
113 "boolean": {
114 "color": "#905"
115 },
116 "number": {
117 "color": "#905"
118 },
119 "constant": {
120 "color": "#905"
121 },
122 "symbol": {
123 "color": "#905"
124 },
125 "deleted": {
126 "color": "#905"
127 },
128 "selector": {
129 "color": "#690"
130 },
131 "attr-name": {
132 "color": "#690"
133 },
134 "string": {
135 "color": "#690"
136 },
137 "char": {
138 "color": "#690"
139 },
140 "builtin": {
141 "color": "#690"
142 },
143 "inserted": {
144 "color": "#690"
145 },
146 "operator": {
147 "color": "#9a6e3a",
148 "background": "hsla(0, 0%, 100%, .5)"
149 },
150 "entity": {
151 "color": "#9a6e3a",
152 "background": "hsla(0, 0%, 100%, .5)",
153 "cursor": "help"
154 },
155 "url": {
156 "color": "#9a6e3a",
157 "background": "hsla(0, 0%, 100%, .5)"
158 },
159 ".language-css .token.string": {
160 "color": "#9a6e3a",
161 "background": "hsla(0, 0%, 100%, .5)"
162 },
163 ".style .token.string": {
164 "color": "#9a6e3a",
165 "background": "hsla(0, 0%, 100%, .5)"
166 },
167 "atrule": {
168 "color": "#07a"
169 },
170 "attr-value": {
171 "color": "#07a"
172 },
173 "keyword": {
174 "color": "#07a"
175 },
176 "function": {
177 "color": "#DD4A68"
178 },
179 "class-name": {
180 "color": "#DD4A68"
181 },
182 "regex": {
183 "color": "#e90"
184 },
185 "important": {
186 "color": "#e90",
187 "fontWeight": "bold"
188 },
189 "variable": {
190 "color": "#e90"
191 },
192 "bold": {
193 "fontWeight": "bold"
194 },
195 "italic": {
196 "fontStyle": "italic"
197 }
198};
199exports["default"] = _default;
Note: See TracBrowser for help on using the repository browser.