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