source: node_modules/react-syntax-highlighter/dist/esm/styles/prism/funky.js@ 65b6638

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

Initial commit

  • Property mode set to 100644
File size: 3.6 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": "black",
19 "color": "white",
20 "boxShadow": "-.3em 0 0 .3em black, .3em 0 0 .3em black"
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 "comment": {
51 "color": "#aaa"
52 },
53 "prolog": {
54 "color": "#aaa"
55 },
56 "doctype": {
57 "color": "#aaa"
58 },
59 "cdata": {
60 "color": "#aaa"
61 },
62 "punctuation": {
63 "color": "#999"
64 },
65 "namespace": {
66 "Opacity": ".7"
67 },
68 "property": {
69 "color": "#0cf"
70 },
71 "tag": {
72 "color": "#0cf"
73 },
74 "boolean": {
75 "color": "#0cf"
76 },
77 "number": {
78 "color": "#0cf"
79 },
80 "constant": {
81 "color": "#0cf"
82 },
83 "symbol": {
84 "color": "#0cf"
85 },
86 "selector": {
87 "color": "yellow"
88 },
89 "attr-name": {
90 "color": "yellow"
91 },
92 "string": {
93 "color": "yellow"
94 },
95 "char": {
96 "color": "yellow"
97 },
98 "builtin": {
99 "color": "yellow"
100 },
101 "operator": {
102 "color": "yellowgreen"
103 },
104 "entity": {
105 "color": "yellowgreen",
106 "cursor": "help"
107 },
108 "url": {
109 "color": "yellowgreen"
110 },
111 ".language-css .token.string": {
112 "color": "yellowgreen"
113 },
114 "variable": {
115 "color": "yellowgreen"
116 },
117 "inserted": {
118 "color": "yellowgreen"
119 },
120 "atrule": {
121 "color": "deeppink"
122 },
123 "attr-value": {
124 "color": "deeppink"
125 },
126 "keyword": {
127 "color": "deeppink"
128 },
129 "regex": {
130 "color": "orange"
131 },
132 "important": {
133 "color": "orange",
134 "fontWeight": "bold"
135 },
136 "bold": {
137 "fontWeight": "bold"
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.