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