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