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