source: node_modules/react-syntax-highlighter/dist/esm/styles/prism/solarized-dark-atom.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 "color": "#839496",
4 "textShadow": "0 1px rgba(0, 0, 0, 0.3)",
5 "fontFamily": "Inconsolata, Monaco, Consolas, 'Courier New', Courier, monospace",
6 "direction": "ltr",
7 "textAlign": "left",
8 "whiteSpace": "pre",
9 "wordSpacing": "normal",
10 "wordBreak": "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": "#839496",
22 "textShadow": "0 1px rgba(0, 0, 0, 0.3)",
23 "fontFamily": "Inconsolata, Monaco, Consolas, 'Courier New', Courier, monospace",
24 "direction": "ltr",
25 "textAlign": "left",
26 "whiteSpace": "pre",
27 "wordSpacing": "normal",
28 "wordBreak": "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 "background": "#002b36"
42 },
43 ":not(pre) > code[class*=\"language-\"]": {
44 "background": "#002b36",
45 "padding": ".1em",
46 "borderRadius": ".3em"
47 },
48 "comment": {
49 "color": "#586e75"
50 },
51 "prolog": {
52 "color": "#586e75"
53 },
54 "doctype": {
55 "color": "#586e75"
56 },
57 "cdata": {
58 "color": "#586e75"
59 },
60 "punctuation": {
61 "color": "#93a1a1"
62 },
63 ".namespace": {
64 "Opacity": ".7"
65 },
66 "property": {
67 "color": "#268bd2"
68 },
69 "keyword": {
70 "color": "#268bd2"
71 },
72 "tag": {
73 "color": "#268bd2"
74 },
75 "class-name": {
76 "color": "#FFFFB6",
77 "textDecoration": "underline"
78 },
79 "boolean": {
80 "color": "#b58900"
81 },
82 "constant": {
83 "color": "#b58900"
84 },
85 "symbol": {
86 "color": "#dc322f"
87 },
88 "deleted": {
89 "color": "#dc322f"
90 },
91 "number": {
92 "color": "#859900"
93 },
94 "selector": {
95 "color": "#859900"
96 },
97 "attr-name": {
98 "color": "#859900"
99 },
100 "string": {
101 "color": "#859900"
102 },
103 "char": {
104 "color": "#859900"
105 },
106 "builtin": {
107 "color": "#859900"
108 },
109 "inserted": {
110 "color": "#859900"
111 },
112 "variable": {
113 "color": "#268bd2"
114 },
115 "operator": {
116 "color": "#EDEDED"
117 },
118 "function": {
119 "color": "#268bd2"
120 },
121 "regex": {
122 "color": "#E9C062"
123 },
124 "important": {
125 "color": "#fd971f",
126 "fontWeight": "bold"
127 },
128 "entity": {
129 "color": "#FFFFB6",
130 "cursor": "help"
131 },
132 "url": {
133 "color": "#96CBFE"
134 },
135 ".language-css .token.string": {
136 "color": "#87C38A"
137 },
138 ".style .token.string": {
139 "color": "#87C38A"
140 },
141 "bold": {
142 "fontWeight": "bold"
143 },
144 "italic": {
145 "fontStyle": "italic"
146 },
147 "atrule": {
148 "color": "#F9EE98"
149 },
150 "attr-value": {
151 "color": "#F9EE98"
152 }
153};
Note: See TracBrowser for help on using the repository browser.