source: node_modules/react-syntax-highlighter/dist/cjs/styles/prism/xonokai.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.9 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 "MozTabSize": "2",
10 "OTabSize": "2",
11 "tabSize": "2",
12 "WebkitHyphens": "none",
13 "MozHyphens": "none",
14 "msHyphens": "none",
15 "hyphens": "none",
16 "whiteSpace": "pre-wrap",
17 "wordWrap": "normal",
18 "fontFamily": "Menlo, Monaco, \"Courier New\", monospace",
19 "fontSize": "14px",
20 "color": "#76d9e6",
21 "textShadow": "none"
22 },
23 "pre[class*=\"language-\"]": {
24 "MozTabSize": "2",
25 "OTabSize": "2",
26 "tabSize": "2",
27 "WebkitHyphens": "none",
28 "MozHyphens": "none",
29 "msHyphens": "none",
30 "hyphens": "none",
31 "whiteSpace": "pre-wrap",
32 "wordWrap": "normal",
33 "fontFamily": "Menlo, Monaco, \"Courier New\", monospace",
34 "fontSize": "14px",
35 "color": "#76d9e6",
36 "textShadow": "none",
37 "background": "#2a2a2a",
38 "padding": "15px",
39 "borderRadius": "4px",
40 "border": "1px solid #e1e1e8",
41 "overflow": "auto",
42 "position": "relative"
43 },
44 "pre > code[class*=\"language-\"]": {
45 "fontSize": "1em"
46 },
47 ":not(pre) > code[class*=\"language-\"]": {
48 "background": "#2a2a2a",
49 "padding": "0.15em 0.2em 0.05em",
50 "borderRadius": ".3em",
51 "border": "0.13em solid #7a6652",
52 "boxShadow": "1px 1px 0.3em -0.1em #000 inset"
53 },
54 "pre[class*=\"language-\"] code": {
55 "whiteSpace": "pre",
56 "display": "block"
57 },
58 "namespace": {
59 "Opacity": ".7"
60 },
61 "comment": {
62 "color": "#6f705e"
63 },
64 "prolog": {
65 "color": "#6f705e"
66 },
67 "doctype": {
68 "color": "#6f705e"
69 },
70 "cdata": {
71 "color": "#6f705e"
72 },
73 "operator": {
74 "color": "#a77afe"
75 },
76 "boolean": {
77 "color": "#a77afe"
78 },
79 "number": {
80 "color": "#a77afe"
81 },
82 "attr-name": {
83 "color": "#e6d06c"
84 },
85 "string": {
86 "color": "#e6d06c"
87 },
88 "entity": {
89 "color": "#e6d06c",
90 "cursor": "help"
91 },
92 "url": {
93 "color": "#e6d06c"
94 },
95 ".language-css .token.string": {
96 "color": "#e6d06c"
97 },
98 ".style .token.string": {
99 "color": "#e6d06c"
100 },
101 "selector": {
102 "color": "#a6e22d"
103 },
104 "inserted": {
105 "color": "#a6e22d"
106 },
107 "atrule": {
108 "color": "#ef3b7d"
109 },
110 "attr-value": {
111 "color": "#ef3b7d"
112 },
113 "keyword": {
114 "color": "#ef3b7d"
115 },
116 "important": {
117 "color": "#ef3b7d",
118 "fontWeight": "bold"
119 },
120 "deleted": {
121 "color": "#ef3b7d"
122 },
123 "regex": {
124 "color": "#76d9e6"
125 },
126 "statement": {
127 "color": "#76d9e6",
128 "fontWeight": "bold"
129 },
130 "placeholder": {
131 "color": "#fff"
132 },
133 "variable": {
134 "color": "#fff"
135 },
136 "bold": {
137 "fontWeight": "bold"
138 },
139 "punctuation": {
140 "color": "#bebec5"
141 },
142 "italic": {
143 "fontStyle": "italic"
144 },
145 "code.language-markup": {
146 "color": "#f9f9f9"
147 },
148 "code.language-markup .token.tag": {
149 "color": "#ef3b7d"
150 },
151 "code.language-markup .token.attr-name": {
152 "color": "#a6e22d"
153 },
154 "code.language-markup .token.attr-value": {
155 "color": "#e6d06c"
156 },
157 "code.language-markup .token.style": {
158 "color": "#76d9e6"
159 },
160 "code.language-markup .token.script": {
161 "color": "#76d9e6"
162 },
163 "code.language-markup .token.script .token.keyword": {
164 "color": "#76d9e6"
165 },
166 ".line-highlight.line-highlight": {
167 "padding": "0",
168 "background": "rgba(255, 255, 255, 0.08)"
169 },
170 ".line-highlight.line-highlight:before": {
171 "padding": "0.2em 0.5em",
172 "backgroundColor": "rgba(255, 255, 255, 0.4)",
173 "color": "black",
174 "height": "1em",
175 "lineHeight": "1em",
176 "boxShadow": "0 1px 1px rgba(255, 255, 255, 0.7)"
177 },
178 ".line-highlight.line-highlight[data-end]:after": {
179 "padding": "0.2em 0.5em",
180 "backgroundColor": "rgba(255, 255, 255, 0.4)",
181 "color": "black",
182 "height": "1em",
183 "lineHeight": "1em",
184 "boxShadow": "0 1px 1px rgba(255, 255, 255, 0.7)"
185 }
186};
187exports["default"] = _default;
Note: See TracBrowser for help on using the repository browser.