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