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