source: node_modules/react-syntax-highlighter/src/styles/prism/cb.js@ e48199a

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

Initial commit

  • Property mode set to 100644
File size: 3.7 KB
Line 
1export default {
2 "code[class*=\"language-\"]": {
3 "color": "#fff",
4 "textShadow": "0 1px 1px #000",
5 "fontFamily": "Menlo, Monaco, \"Courier New\", monospace",
6 "direction": "ltr",
7 "textAlign": "left",
8 "wordSpacing": "normal",
9 "whiteSpace": "pre",
10 "wordWrap": "normal",
11 "lineHeight": "1.4",
12 "background": "none",
13 "border": "0",
14 "MozTabSize": "4",
15 "OTabSize": "4",
16 "tabSize": "4",
17 "WebkitHyphens": "none",
18 "MozHyphens": "none",
19 "msHyphens": "none",
20 "hyphens": "none"
21 },
22 "pre[class*=\"language-\"]": {
23 "color": "#fff",
24 "textShadow": "0 1px 1px #000",
25 "fontFamily": "Menlo, Monaco, \"Courier New\", monospace",
26 "direction": "ltr",
27 "textAlign": "left",
28 "wordSpacing": "normal",
29 "whiteSpace": "pre",
30 "wordWrap": "normal",
31 "lineHeight": "1.4",
32 "background": "#222",
33 "border": "0",
34 "MozTabSize": "4",
35 "OTabSize": "4",
36 "tabSize": "4",
37 "WebkitHyphens": "none",
38 "MozHyphens": "none",
39 "msHyphens": "none",
40 "hyphens": "none",
41 "padding": "15px",
42 "margin": "1em 0",
43 "overflow": "auto",
44 "MozBorderRadius": "8px",
45 "WebkitBorderRadius": "8px",
46 "borderRadius": "8px"
47 },
48 "pre[class*=\"language-\"] code": {
49 "float": "left",
50 "padding": "0 15px 0 0"
51 },
52 ":not(pre) > code[class*=\"language-\"]": {
53 "background": "#222",
54 "padding": "5px 10px",
55 "lineHeight": "1",
56 "MozBorderRadius": "3px",
57 "WebkitBorderRadius": "3px",
58 "borderRadius": "3px"
59 },
60 "comment": {
61 "color": "#797979"
62 },
63 "prolog": {
64 "color": "#797979"
65 },
66 "doctype": {
67 "color": "#797979"
68 },
69 "cdata": {
70 "color": "#797979"
71 },
72 "selector": {
73 "color": "#fff"
74 },
75 "operator": {
76 "color": "#fff"
77 },
78 "punctuation": {
79 "color": "#fff"
80 },
81 "namespace": {
82 "Opacity": ".7"
83 },
84 "tag": {
85 "color": "#ffd893"
86 },
87 "boolean": {
88 "color": "#ffd893"
89 },
90 "atrule": {
91 "color": "#B0C975"
92 },
93 "attr-value": {
94 "color": "#B0C975"
95 },
96 "hex": {
97 "color": "#B0C975"
98 },
99 "string": {
100 "color": "#B0C975"
101 },
102 "property": {
103 "color": "#c27628"
104 },
105 "entity": {
106 "color": "#c27628",
107 "cursor": "help"
108 },
109 "url": {
110 "color": "#c27628"
111 },
112 "attr-name": {
113 "color": "#c27628"
114 },
115 "keyword": {
116 "color": "#c27628"
117 },
118 "regex": {
119 "color": "#9B71C6"
120 },
121 "function": {
122 "color": "#e5a638"
123 },
124 "constant": {
125 "color": "#e5a638"
126 },
127 "variable": {
128 "color": "#fdfba8"
129 },
130 "number": {
131 "color": "#8799B0"
132 },
133 "important": {
134 "color": "#E45734"
135 },
136 "deliminator": {
137 "color": "#E45734"
138 },
139 ".line-highlight.line-highlight": {
140 "background": "rgba(255, 255, 255, .2)"
141 },
142 ".line-highlight.line-highlight:before": {
143 "top": ".3em",
144 "backgroundColor": "rgba(255, 255, 255, .3)",
145 "color": "#fff",
146 "MozBorderRadius": "8px",
147 "WebkitBorderRadius": "8px",
148 "borderRadius": "8px"
149 },
150 ".line-highlight.line-highlight[data-end]:after": {
151 "top": ".3em",
152 "backgroundColor": "rgba(255, 255, 255, .3)",
153 "color": "#fff",
154 "MozBorderRadius": "8px",
155 "WebkitBorderRadius": "8px",
156 "borderRadius": "8px"
157 },
158 ".line-numbers .line-numbers-rows > span": {
159 "borderRight": "3px #d9d336 solid"
160 }
161}
Note: See TracBrowser for help on using the repository browser.