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