source: node_modules/react-syntax-highlighter/src/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: 4.4 KB
Line 
1export default {
2 "code[class*=\"language-\"]": {
3 "color": "black",
4 "background": "none",
5 "textShadow": "0 1px white",
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": "black",
24 "background": "#f5f2f0",
25 "textShadow": "0 1px white",
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 "pre[class*=\"language-\"]::-moz-selection": {
46 "textShadow": "none",
47 "background": "#b3d4fc"
48 },
49 "pre[class*=\"language-\"] ::-moz-selection": {
50 "textShadow": "none",
51 "background": "#b3d4fc"
52 },
53 "code[class*=\"language-\"]::-moz-selection": {
54 "textShadow": "none",
55 "background": "#b3d4fc"
56 },
57 "code[class*=\"language-\"] ::-moz-selection": {
58 "textShadow": "none",
59 "background": "#b3d4fc"
60 },
61 "pre[class*=\"language-\"]::selection": {
62 "textShadow": "none",
63 "background": "#b3d4fc"
64 },
65 "pre[class*=\"language-\"] ::selection": {
66 "textShadow": "none",
67 "background": "#b3d4fc"
68 },
69 "code[class*=\"language-\"]::selection": {
70 "textShadow": "none",
71 "background": "#b3d4fc"
72 },
73 "code[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 "comment": {
84 "color": "slategray"
85 },
86 "prolog": {
87 "color": "slategray"
88 },
89 "doctype": {
90 "color": "slategray"
91 },
92 "cdata": {
93 "color": "slategray"
94 },
95 "punctuation": {
96 "color": "#999"
97 },
98 "namespace": {
99 "Opacity": ".7"
100 },
101 "property": {
102 "color": "#905"
103 },
104 "tag": {
105 "color": "#905"
106 },
107 "boolean": {
108 "color": "#905"
109 },
110 "number": {
111 "color": "#905"
112 },
113 "constant": {
114 "color": "#905"
115 },
116 "symbol": {
117 "color": "#905"
118 },
119 "deleted": {
120 "color": "#905"
121 },
122 "selector": {
123 "color": "#690"
124 },
125 "attr-name": {
126 "color": "#690"
127 },
128 "string": {
129 "color": "#690"
130 },
131 "char": {
132 "color": "#690"
133 },
134 "builtin": {
135 "color": "#690"
136 },
137 "inserted": {
138 "color": "#690"
139 },
140 "operator": {
141 "color": "#9a6e3a",
142 "background": "hsla(0, 0%, 100%, .5)"
143 },
144 "entity": {
145 "color": "#9a6e3a",
146 "background": "hsla(0, 0%, 100%, .5)",
147 "cursor": "help"
148 },
149 "url": {
150 "color": "#9a6e3a",
151 "background": "hsla(0, 0%, 100%, .5)"
152 },
153 ".language-css .token.string": {
154 "color": "#9a6e3a",
155 "background": "hsla(0, 0%, 100%, .5)"
156 },
157 ".style .token.string": {
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 "function": {
171 "color": "#DD4A68"
172 },
173 "class-name": {
174 "color": "#DD4A68"
175 },
176 "regex": {
177 "color": "#e90"
178 },
179 "important": {
180 "color": "#e90",
181 "fontWeight": "bold"
182 },
183 "variable": {
184 "color": "#e90"
185 },
186 "bold": {
187 "fontWeight": "bold"
188 },
189 "italic": {
190 "fontStyle": "italic"
191 }
192}
Note: See TracBrowser for help on using the repository browser.