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