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