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