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