source: node_modules/react-syntax-highlighter/dist/esm/styles/prism/gruvbox-light.min.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 
1export default {
2 "code[class*=language-]": {
3 "color": "#3c3836",
4 "fontFamily": "Consolas,Monaco,\"Andale Mono\",monospace",
5 "direction": "ltr",
6 "textAlign": "left",
7 "whiteSpace": "pre",
8 "wordSpacing": "normal",
9 "wordBreak": "normal",
10 "lineHeight": "1.5",
11 "MozTabSize": "4",
12 "OTabSize": "4",
13 "tabSize": "4",
14 "WebkitHyphens": "none",
15 "MozHyphens": "none",
16 "msHyphens": "none",
17 "hyphens": "none"
18 },
19 "pre[class*=language-]": {
20 "color": "#3c3836",
21 "fontFamily": "Consolas,Monaco,\"Andale Mono\",monospace",
22 "direction": "ltr",
23 "textAlign": "left",
24 "whiteSpace": "pre",
25 "wordSpacing": "normal",
26 "wordBreak": "normal",
27 "lineHeight": "1.5",
28 "MozTabSize": "4",
29 "OTabSize": "4",
30 "tabSize": "4",
31 "WebkitHyphens": "none",
32 "MozHyphens": "none",
33 "msHyphens": "none",
34 "hyphens": "none",
35 "padding": "1em",
36 "margin": ".5em 0",
37 "overflow": "auto",
38 "background": "#f9f5d7"
39 },
40 "code[class*=language-] ::-moz-selection": {
41 "color": "#282828",
42 "background": "#a89984"
43 },
44 "code[class*=language-]::-moz-selection": {
45 "color": "#282828",
46 "background": "#a89984"
47 },
48 "pre[class*=language-] ::-moz-selection": {
49 "color": "#282828",
50 "background": "#a89984"
51 },
52 "pre[class*=language-]::-moz-selection": {
53 "color": "#282828",
54 "background": "#a89984"
55 },
56 "code[class*=language-] ::selection": {
57 "color": "#282828",
58 "background": "#a89984"
59 },
60 "code[class*=language-]::selection": {
61 "color": "#282828",
62 "background": "#a89984"
63 },
64 "pre[class*=language-] ::selection": {
65 "color": "#282828",
66 "background": "#a89984"
67 },
68 "pre[class*=language-]::selection": {
69 "color": "#282828",
70 "background": "#a89984"
71 },
72 ":not(pre)>code[class*=language-]": {
73 "background": "#f9f5d7",
74 "padding": ".1em",
75 "borderRadius": ".3em"
76 },
77 "cdata": {
78 "color": "#7c6f64"
79 },
80 "comment": {
81 "color": "#7c6f64"
82 },
83 "prolog": {
84 "color": "#7c6f64"
85 },
86 "atrule": {
87 "color": "#9d0006"
88 },
89 "boolean": {
90 "color": "#9d0006"
91 },
92 "delimiter": {
93 "color": "#9d0006"
94 },
95 "important": {
96 "color": "#9d0006"
97 },
98 "keyword": {
99 "color": "#9d0006"
100 },
101 "selector": {
102 "color": "#9d0006"
103 },
104 "attr-name": {
105 "color": "#7c6f64"
106 },
107 "operator": {
108 "color": "#7c6f64"
109 },
110 "punctuation": {
111 "color": "#7c6f64"
112 },
113 "builtin": {
114 "color": "#b57614"
115 },
116 "doctype": {
117 "color": "#b57614"
118 },
119 "tag": {
120 "color": "#b57614"
121 },
122 "tag.punctuation": {
123 "color": "#b57614"
124 },
125 "entity": {
126 "color": "#8f3f71"
127 },
128 "number": {
129 "color": "#8f3f71"
130 },
131 "symbol": {
132 "color": "#8f3f71"
133 },
134 "constant": {
135 "color": "#9d0006"
136 },
137 "property": {
138 "color": "#9d0006"
139 },
140 "variable": {
141 "color": "#9d0006"
142 },
143 "char": {
144 "color": "#797403"
145 },
146 "string": {
147 "color": "#797403"
148 },
149 "attr-value": {
150 "color": "#7c6f64"
151 },
152 "attr-value.punctuation": {
153 "color": "#7c6f64"
154 },
155 "url": {
156 "color": "#797403",
157 "textDecoration": "underline"
158 },
159 "function": {
160 "color": "#b57614"
161 },
162 "regex": {
163 "background": "#797403"
164 },
165 "bold": {
166 "fontWeight": "700"
167 },
168 "italic": {
169 "fontStyle": "italic"
170 },
171 "inserted": {
172 "background": "#7c6f64"
173 },
174 "deleted": {
175 "background": "#9d0006"
176 }
177};
Note: See TracBrowser for help on using the repository browser.