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