source: node_modules/react-syntax-highlighter/src/styles/prism/holi-theme.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 4.5 KB
RevLine 
[d24f17c]1export default {
2 "code[class*='language-']": {
3 "color": "#d6e7ff",
4 "background": "#030314",
5 "textShadow": "none",
6 "fontFamily": "Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace",
7 "fontSize": "1em",
8 "lineHeight": "1.5",
9 "letterSpacing": ".2px",
10 "whiteSpace": "pre",
11 "wordSpacing": "normal",
12 "wordBreak": "normal",
13 "wordWrap": "normal",
14 "textAlign": "left",
15 "MozTabSize": "4",
16 "OTabSize": "4",
17 "tabSize": "4",
18 "WebkitHyphens": "none",
19 "MozHyphens": "none",
20 "msHyphens": "none",
21 "hyphens": "none"
22 },
23 "pre[class*='language-']": {
24 "color": "#d6e7ff",
25 "background": "#030314",
26 "textShadow": "none",
27 "fontFamily": "Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace",
28 "fontSize": "1em",
29 "lineHeight": "1.5",
30 "letterSpacing": ".2px",
31 "whiteSpace": "pre",
32 "wordSpacing": "normal",
33 "wordBreak": "normal",
34 "wordWrap": "normal",
35 "textAlign": "left",
36 "MozTabSize": "4",
37 "OTabSize": "4",
38 "tabSize": "4",
39 "WebkitHyphens": "none",
40 "MozHyphens": "none",
41 "msHyphens": "none",
42 "hyphens": "none",
43 "border": "1px solid #2a4555",
44 "borderRadius": "5px",
45 "padding": "1.5em 1em",
46 "margin": "1em 0",
47 "overflow": "auto"
48 },
49 "pre[class*='language-']::-moz-selection": {
50 "color": "inherit",
51 "background": "#1d3b54",
52 "textShadow": "none"
53 },
54 "pre[class*='language-'] ::-moz-selection": {
55 "color": "inherit",
56 "background": "#1d3b54",
57 "textShadow": "none"
58 },
59 "code[class*='language-']::-moz-selection": {
60 "color": "inherit",
61 "background": "#1d3b54",
62 "textShadow": "none"
63 },
64 "code[class*='language-'] ::-moz-selection": {
65 "color": "inherit",
66 "background": "#1d3b54",
67 "textShadow": "none"
68 },
69 "pre[class*='language-']::selection": {
70 "color": "inherit",
71 "background": "#1d3b54",
72 "textShadow": "none"
73 },
74 "pre[class*='language-'] ::selection": {
75 "color": "inherit",
76 "background": "#1d3b54",
77 "textShadow": "none"
78 },
79 "code[class*='language-']::selection": {
80 "color": "inherit",
81 "background": "#1d3b54",
82 "textShadow": "none"
83 },
84 "code[class*='language-'] ::selection": {
85 "color": "inherit",
86 "background": "#1d3b54",
87 "textShadow": "none"
88 },
89 ":not(pre) > code[class*='language-']": {
90 "color": "#f0f6f6",
91 "background": "#2a4555",
92 "padding": "0.2em 0.3em",
93 "borderRadius": "0.2em",
94 "boxDecorationBreak": "clone"
95 },
96 "comment": {
97 "color": "#446e69"
98 },
99 "prolog": {
100 "color": "#446e69"
101 },
102 "doctype": {
103 "color": "#446e69"
104 },
105 "cdata": {
106 "color": "#446e69"
107 },
108 "punctuation": {
109 "color": "#d6b007"
110 },
111 "property": {
112 "color": "#d6e7ff"
113 },
114 "tag": {
115 "color": "#d6e7ff"
116 },
117 "boolean": {
118 "color": "#d6e7ff"
119 },
120 "number": {
121 "color": "#d6e7ff"
122 },
123 "constant": {
124 "color": "#d6e7ff"
125 },
126 "symbol": {
127 "color": "#d6e7ff"
128 },
129 "deleted": {
130 "color": "#d6e7ff"
131 },
132 "selector": {
133 "color": "#e60067"
134 },
135 "attr-name": {
136 "color": "#e60067"
137 },
138 "builtin": {
139 "color": "#e60067"
140 },
141 "inserted": {
142 "color": "#e60067"
143 },
144 "string": {
145 "color": "#49c6ec"
146 },
147 "char": {
148 "color": "#49c6ec"
149 },
150 "operator": {
151 "color": "#ec8e01",
152 "background": "transparent"
153 },
154 "entity": {
155 "color": "#ec8e01",
156 "background": "transparent"
157 },
158 "url": {
159 "color": "#ec8e01",
160 "background": "transparent"
161 },
162 ".language-css .token.string": {
163 "color": "#ec8e01",
164 "background": "transparent"
165 },
166 ".style .token.string": {
167 "color": "#ec8e01",
168 "background": "transparent"
169 },
170 "atrule": {
171 "color": "#0fe468"
172 },
173 "attr-value": {
174 "color": "#0fe468"
175 },
176 "keyword": {
177 "color": "#0fe468"
178 },
179 "function": {
180 "color": "#78f3e9"
181 },
182 "class-name": {
183 "color": "#78f3e9"
184 },
185 "regex": {
186 "color": "#d6e7ff"
187 },
188 "important": {
189 "color": "#d6e7ff"
190 },
191 "variable": {
192 "color": "#d6e7ff"
193 }
194}
Note: See TracBrowser for help on using the repository browser.