source: node_modules/react-syntax-highlighter/src/styles/prism/atom-dark.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.3 KB
Line 
1export default {
2 "code[class*=\"language-\"]": {
3 "color": "#c5c8c6",
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": "#c5c8c6",
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": "#1d1f21"
42 },
43 ":not(pre) > code[class*=\"language-\"]": {
44 "background": "#1d1f21",
45 "padding": ".1em",
46 "borderRadius": ".3em"
47 },
48 "comment": {
49 "color": "#7C7C7C"
50 },
51 "prolog": {
52 "color": "#7C7C7C"
53 },
54 "doctype": {
55 "color": "#7C7C7C"
56 },
57 "cdata": {
58 "color": "#7C7C7C"
59 },
60 "punctuation": {
61 "color": "#c5c8c6"
62 },
63 ".namespace": {
64 "Opacity": ".7"
65 },
66 "property": {
67 "color": "#96CBFE"
68 },
69 "keyword": {
70 "color": "#96CBFE"
71 },
72 "tag": {
73 "color": "#96CBFE"
74 },
75 "class-name": {
76 "color": "#FFFFB6",
77 "textDecoration": "underline"
78 },
79 "boolean": {
80 "color": "#99CC99"
81 },
82 "constant": {
83 "color": "#99CC99"
84 },
85 "symbol": {
86 "color": "#f92672"
87 },
88 "deleted": {
89 "color": "#f92672"
90 },
91 "number": {
92 "color": "#FF73FD"
93 },
94 "selector": {
95 "color": "#A8FF60"
96 },
97 "attr-name": {
98 "color": "#A8FF60"
99 },
100 "string": {
101 "color": "#A8FF60"
102 },
103 "char": {
104 "color": "#A8FF60"
105 },
106 "builtin": {
107 "color": "#A8FF60"
108 },
109 "inserted": {
110 "color": "#A8FF60"
111 },
112 "variable": {
113 "color": "#C6C5FE"
114 },
115 "operator": {
116 "color": "#EDEDED"
117 },
118 "entity": {
119 "color": "#FFFFB6",
120 "cursor": "help"
121 },
122 "url": {
123 "color": "#96CBFE"
124 },
125 ".language-css .token.string": {
126 "color": "#87C38A"
127 },
128 ".style .token.string": {
129 "color": "#87C38A"
130 },
131 "atrule": {
132 "color": "#F9EE98"
133 },
134 "attr-value": {
135 "color": "#F9EE98"
136 },
137 "function": {
138 "color": "#DAD085"
139 },
140 "regex": {
141 "color": "#E9C062"
142 },
143 "important": {
144 "color": "#fd971f",
145 "fontWeight": "bold"
146 },
147 "bold": {
148 "fontWeight": "bold"
149 },
150 "italic": {
151 "fontStyle": "italic"
152 }
153}
Note: See TracBrowser for help on using the repository browser.