source: node_modules/react-syntax-highlighter/src/styles/prism/base16-ateliersulphurpool.light.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 4.9 KB
Line 
1export default {
2 "code[class*=\"language-\"]": {
3 "fontFamily": "Consolas, Menlo, Monaco, \"Andale Mono WT\", \"Andale Mono\", \"Lucida Console\", \"Lucida Sans Typewriter\", \"DejaVu Sans Mono\", \"Bitstream Vera Sans Mono\", \"Liberation Mono\", \"Nimbus Mono L\", \"Courier New\", Courier, monospace",
4 "fontSize": "14px",
5 "lineHeight": "1.375",
6 "direction": "ltr",
7 "textAlign": "left",
8 "whiteSpace": "pre",
9 "wordSpacing": "normal",
10 "wordBreak": "normal",
11 "MozTabSize": "4",
12 "OTabSize": "4",
13 "tabSize": "4",
14 "WebkitHyphens": "none",
15 "MozHyphens": "none",
16 "msHyphens": "none",
17 "hyphens": "none",
18 "background": "#f5f7ff",
19 "color": "#5e6687"
20 },
21 "pre[class*=\"language-\"]": {
22 "fontFamily": "Consolas, Menlo, Monaco, \"Andale Mono WT\", \"Andale Mono\", \"Lucida Console\", \"Lucida Sans Typewriter\", \"DejaVu Sans Mono\", \"Bitstream Vera Sans Mono\", \"Liberation Mono\", \"Nimbus Mono L\", \"Courier New\", Courier, monospace",
23 "fontSize": "14px",
24 "lineHeight": "1.375",
25 "direction": "ltr",
26 "textAlign": "left",
27 "whiteSpace": "pre",
28 "wordSpacing": "normal",
29 "wordBreak": "normal",
30 "MozTabSize": "4",
31 "OTabSize": "4",
32 "tabSize": "4",
33 "WebkitHyphens": "none",
34 "MozHyphens": "none",
35 "msHyphens": "none",
36 "hyphens": "none",
37 "background": "#f5f7ff",
38 "color": "#5e6687",
39 "padding": "1em",
40 "margin": ".5em 0",
41 "overflow": "auto"
42 },
43 "pre > code[class*=\"language-\"]": {
44 "fontSize": "1em"
45 },
46 "pre[class*=\"language-\"]::-moz-selection": {
47 "textShadow": "none",
48 "background": "#dfe2f1"
49 },
50 "pre[class*=\"language-\"] ::-moz-selection": {
51 "textShadow": "none",
52 "background": "#dfe2f1"
53 },
54 "code[class*=\"language-\"]::-moz-selection": {
55 "textShadow": "none",
56 "background": "#dfe2f1"
57 },
58 "code[class*=\"language-\"] ::-moz-selection": {
59 "textShadow": "none",
60 "background": "#dfe2f1"
61 },
62 "pre[class*=\"language-\"]::selection": {
63 "textShadow": "none",
64 "background": "#dfe2f1"
65 },
66 "pre[class*=\"language-\"] ::selection": {
67 "textShadow": "none",
68 "background": "#dfe2f1"
69 },
70 "code[class*=\"language-\"]::selection": {
71 "textShadow": "none",
72 "background": "#dfe2f1"
73 },
74 "code[class*=\"language-\"] ::selection": {
75 "textShadow": "none",
76 "background": "#dfe2f1"
77 },
78 ":not(pre) > code[class*=\"language-\"]": {
79 "padding": ".1em",
80 "borderRadius": ".3em"
81 },
82 "comment": {
83 "color": "#898ea4"
84 },
85 "prolog": {
86 "color": "#898ea4"
87 },
88 "doctype": {
89 "color": "#898ea4"
90 },
91 "cdata": {
92 "color": "#898ea4"
93 },
94 "punctuation": {
95 "color": "#5e6687"
96 },
97 "namespace": {
98 "Opacity": ".7"
99 },
100 "operator": {
101 "color": "#c76b29"
102 },
103 "boolean": {
104 "color": "#c76b29"
105 },
106 "number": {
107 "color": "#c76b29"
108 },
109 "property": {
110 "color": "#c08b30"
111 },
112 "tag": {
113 "color": "#3d8fd1"
114 },
115 "string": {
116 "color": "#22a2c9"
117 },
118 "selector": {
119 "color": "#6679cc"
120 },
121 "attr-name": {
122 "color": "#c76b29"
123 },
124 "entity": {
125 "color": "#22a2c9",
126 "cursor": "help"
127 },
128 "url": {
129 "color": "#22a2c9"
130 },
131 ".language-css .token.string": {
132 "color": "#22a2c9"
133 },
134 ".style .token.string": {
135 "color": "#22a2c9"
136 },
137 "attr-value": {
138 "color": "#ac9739"
139 },
140 "keyword": {
141 "color": "#ac9739"
142 },
143 "control": {
144 "color": "#ac9739"
145 },
146 "directive": {
147 "color": "#ac9739"
148 },
149 "unit": {
150 "color": "#ac9739"
151 },
152 "statement": {
153 "color": "#22a2c9"
154 },
155 "regex": {
156 "color": "#22a2c9"
157 },
158 "atrule": {
159 "color": "#22a2c9"
160 },
161 "placeholder": {
162 "color": "#3d8fd1"
163 },
164 "variable": {
165 "color": "#3d8fd1"
166 },
167 "deleted": {
168 "textDecoration": "line-through"
169 },
170 "inserted": {
171 "borderBottom": "1px dotted #202746",
172 "textDecoration": "none"
173 },
174 "italic": {
175 "fontStyle": "italic"
176 },
177 "important": {
178 "fontWeight": "bold",
179 "color": "#c94922"
180 },
181 "bold": {
182 "fontWeight": "bold"
183 },
184 "pre > code.highlight": {
185 "Outline": "0.4em solid #c94922",
186 "OutlineOffset": ".4em"
187 },
188 ".line-numbers.line-numbers .line-numbers-rows": {
189 "borderRightColor": "#dfe2f1"
190 },
191 ".line-numbers .line-numbers-rows > span:before": {
192 "color": "#979db4"
193 },
194 ".line-highlight.line-highlight": {
195 "background": "linear-gradient(to right, rgba(107, 115, 148, 0.2) 70%, rgba(107, 115, 148, 0))"
196 }
197}
Note: See TracBrowser for help on using the repository browser.