source: node_modules/react-syntax-highlighter/dist/esm/styles/prism/hopscotch.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: 2.8 KB
Line 
1export default {
2 "code[class*=language-]": {
3 "fontFamily": "\"Fira Mono\",Menlo,Monaco,\"Lucida Console\",\"Courier New\",Courier,monospace",
4 "fontSize": "16px",
5 "lineHeight": "1.375",
6 "direction": "ltr",
7 "textAlign": "left",
8 "wordSpacing": "normal",
9 "MozTabSize": "4",
10 "OTabSize": "4",
11 "tabSize": "4",
12 "WebkitHyphens": "none",
13 "MozHyphens": "none",
14 "msHyphens": "none",
15 "hyphens": "none",
16 "whiteSpace": "pre-wrap",
17 "wordBreak": "break-all",
18 "wordWrap": "break-word",
19 "background": "#322931",
20 "color": "#b9b5b8"
21 },
22 "pre[class*=language-]": {
23 "fontFamily": "\"Fira Mono\",Menlo,Monaco,\"Lucida Console\",\"Courier New\",Courier,monospace",
24 "fontSize": "16px",
25 "lineHeight": "1.375",
26 "direction": "ltr",
27 "textAlign": "left",
28 "wordSpacing": "normal",
29 "MozTabSize": "4",
30 "OTabSize": "4",
31 "tabSize": "4",
32 "WebkitHyphens": "none",
33 "MozHyphens": "none",
34 "msHyphens": "none",
35 "hyphens": "none",
36 "whiteSpace": "pre-wrap",
37 "wordBreak": "break-all",
38 "wordWrap": "break-word",
39 "background": "#322931",
40 "color": "#b9b5b8",
41 "padding": "1em",
42 "margin": ".5em 0",
43 "overflow": "auto"
44 },
45 "pre>code[class*=language-]": {
46 "fontSize": "1em"
47 },
48 ":not(pre)>code[class*=language-]": {
49 "padding": ".1em",
50 "borderRadius": ".3em"
51 },
52 "cdata": {
53 "color": "#797379"
54 },
55 "comment": {
56 "color": "#797379"
57 },
58 "doctype": {
59 "color": "#797379"
60 },
61 "prolog": {
62 "color": "#797379"
63 },
64 "punctuation": {
65 "color": "#b9b5b8"
66 },
67 ".namespace": {
68 "Opacity": ".7"
69 },
70 "boolean": {
71 "color": "#fd8b19"
72 },
73 "null": {
74 "color": "#fd8b19"
75 },
76 "number": {
77 "color": "#fd8b19"
78 },
79 "operator": {
80 "color": "#fd8b19"
81 },
82 "property": {
83 "color": "#fdcc59"
84 },
85 "tag": {
86 "color": "#1290bf"
87 },
88 "string": {
89 "color": "#149b93"
90 },
91 "selector": {
92 "color": "#c85e7c"
93 },
94 "attr-name": {
95 "color": "#fd8b19"
96 },
97 ".language-css .token.string": {
98 "color": "#149b93"
99 },
100 ".style .token.string": {
101 "color": "#149b93"
102 },
103 "entity": {
104 "color": "#149b93",
105 "cursor": "help"
106 },
107 "url": {
108 "color": "#149b93"
109 },
110 "attr-value": {
111 "color": "#8fc13e"
112 },
113 "control": {
114 "color": "#8fc13e"
115 },
116 "directive": {
117 "color": "#8fc13e"
118 },
119 "keyword": {
120 "color": "#8fc13e"
121 },
122 "unit": {
123 "color": "#8fc13e"
124 },
125 "atrule": {
126 "color": "#149b93"
127 },
128 "regex": {
129 "color": "#149b93"
130 },
131 "statement": {
132 "color": "#149b93"
133 },
134 "placeholder": {
135 "color": "#1290bf"
136 },
137 "variable": {
138 "color": "#1290bf"
139 },
140 "important": {
141 "color": "#dd464c",
142 "fontWeight": "700"
143 },
144 "pre>code.highlight": {
145 "Outline": ".4em solid red",
146 "OutlineOffset": ".4em"
147 }
148};
Note: See TracBrowser for help on using the repository browser.