source: node_modules/react-syntax-highlighter/dist/esm/styles/prism/funky.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.5 KB
Line 
1export default {
2 "code[class*=language-]": {
3 "fontFamily": "Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace",
4 "fontSize": "1em",
5 "textAlign": "left",
6 "whiteSpace": "pre",
7 "wordSpacing": "normal",
8 "wordBreak": "normal",
9 "wordWrap": "normal",
10 "lineHeight": "1.5",
11 "MozTabSize": "4",
12 "OTabSize": "4",
13 "tabSize": "4",
14 "WebkitHyphens": "none",
15 "MozHyphens": "none",
16 "msHyphens": "none",
17 "hyphens": "none",
18 "background": "#000",
19 "color": "#fff",
20 "boxShadow": "-.3em 0 0 .3em #000,.3em 0 0 .3em #000"
21 },
22 "pre[class*=language-]": {
23 "fontFamily": "Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace",
24 "fontSize": "1em",
25 "textAlign": "left",
26 "whiteSpace": "pre",
27 "wordSpacing": "normal",
28 "wordBreak": "normal",
29 "wordWrap": "normal",
30 "lineHeight": "1.5",
31 "MozTabSize": "4",
32 "OTabSize": "4",
33 "tabSize": "4",
34 "WebkitHyphens": "none",
35 "MozHyphens": "none",
36 "msHyphens": "none",
37 "hyphens": "none",
38 "padding": ".4em .8em",
39 "margin": ".5em 0",
40 "overflow": "auto",
41 "background": "url('data:image/svg+xml;charset=utf-8,<svg%20version%3D\"1.1\"%20xmlns%3D\"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg\"%20width%3D\"100\"%20height%3D\"100\"%20fill%3D\"rgba(0%2C0%2C0%2C.2)\">%0D%0A<polygon%20points%3D\"0%2C50%2050%2C0%200%2C0\"%20%2F>%0D%0A<polygon%20points%3D\"0%2C100%2050%2C100%20100%2C50%20100%2C0\"%20%2F>%0D%0A<%2Fsvg>')",
42 "backgroundSize": "1em 1em"
43 },
44 ":not(pre)>code[class*=language-]": {
45 "padding": ".2em",
46 "borderRadius": ".3em",
47 "boxShadow": "none",
48 "whiteSpace": "normal"
49 },
50 "cdata": {
51 "color": "#aaa"
52 },
53 "comment": {
54 "color": "#aaa"
55 },
56 "doctype": {
57 "color": "#aaa"
58 },
59 "prolog": {
60 "color": "#aaa"
61 },
62 "punctuation": {
63 "color": "#999"
64 },
65 "namespace": {
66 "Opacity": ".7"
67 },
68 "boolean": {
69 "color": "#0cf"
70 },
71 "constant": {
72 "color": "#0cf"
73 },
74 "number": {
75 "color": "#0cf"
76 },
77 "property": {
78 "color": "#0cf"
79 },
80 "symbol": {
81 "color": "#0cf"
82 },
83 "tag": {
84 "color": "#0cf"
85 },
86 "attr-name": {
87 "color": "#ff0"
88 },
89 "builtin": {
90 "color": "#ff0"
91 },
92 "char": {
93 "color": "#ff0"
94 },
95 "selector": {
96 "color": "#ff0"
97 },
98 "string": {
99 "color": "#ff0"
100 },
101 ".language-css .token.string": {
102 "color": "#9acd32"
103 },
104 "entity": {
105 "color": "#9acd32",
106 "cursor": "help"
107 },
108 "inserted": {
109 "color": "#9acd32"
110 },
111 "operator": {
112 "color": "#9acd32"
113 },
114 "url": {
115 "color": "#9acd32"
116 },
117 "variable": {
118 "color": "#9acd32"
119 },
120 "atrule": {
121 "color": "#ff1493"
122 },
123 "attr-value": {
124 "color": "#ff1493"
125 },
126 "keyword": {
127 "color": "#ff1493"
128 },
129 "important": {
130 "color": "orange",
131 "fontWeight": "700"
132 },
133 "regex": {
134 "color": "orange"
135 },
136 "bold": {
137 "fontWeight": "700"
138 },
139 "italic": {
140 "fontStyle": "italic"
141 },
142 "deleted": {
143 "color": "red"
144 },
145 "pre.diff-highlight.diff-highlight>code .token.deleted:not(.prefix)": {
146 "backgroundColor": "rgba(255,0,0,.3)",
147 "display": "inline"
148 },
149 "pre>code.diff-highlight.diff-highlight .token.deleted:not(.prefix)": {
150 "backgroundColor": "rgba(255,0,0,.3)",
151 "display": "inline"
152 },
153 "pre.diff-highlight.diff-highlight>code .token.inserted:not(.prefix)": {
154 "backgroundColor": "rgba(0,255,128,.3)",
155 "display": "inline"
156 },
157 "pre>code.diff-highlight.diff-highlight .token.inserted:not(.prefix)": {
158 "backgroundColor": "rgba(0,255,128,.3)",
159 "display": "inline"
160 }
161};
Note: See TracBrowser for help on using the repository browser.