source: node_modules/react-syntax-highlighter/src/styles/hljs/agate.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: 1.8 KB
RevLine 
[d24f17c]1export default {
2 "hljs": {
3 "display": "block",
4 "overflowX": "auto",
5 "padding": "0.5em",
6 "background": "#333",
7 "color": "white"
8 },
9 "hljs-name": {
10 "fontWeight": "bold"
11 },
12 "hljs-strong": {
13 "fontWeight": "bold"
14 },
15 "hljs-code": {
16 "fontStyle": "italic",
17 "color": "#888"
18 },
19 "hljs-emphasis": {
20 "fontStyle": "italic"
21 },
22 "hljs-tag": {
23 "color": "#62c8f3"
24 },
25 "hljs-variable": {
26 "color": "#ade5fc"
27 },
28 "hljs-template-variable": {
29 "color": "#ade5fc"
30 },
31 "hljs-selector-id": {
32 "color": "#ade5fc"
33 },
34 "hljs-selector-class": {
35 "color": "#ade5fc"
36 },
37 "hljs-string": {
38 "color": "#a2fca2"
39 },
40 "hljs-bullet": {
41 "color": "#d36363"
42 },
43 "hljs-type": {
44 "color": "#ffa"
45 },
46 "hljs-title": {
47 "color": "#ffa"
48 },
49 "hljs-section": {
50 "color": "#ffa"
51 },
52 "hljs-attribute": {
53 "color": "#ffa"
54 },
55 "hljs-quote": {
56 "color": "#ffa"
57 },
58 "hljs-built_in": {
59 "color": "#ffa"
60 },
61 "hljs-builtin-name": {
62 "color": "#ffa"
63 },
64 "hljs-number": {
65 "color": "#d36363"
66 },
67 "hljs-symbol": {
68 "color": "#d36363"
69 },
70 "hljs-keyword": {
71 "color": "#fcc28c"
72 },
73 "hljs-selector-tag": {
74 "color": "#fcc28c"
75 },
76 "hljs-literal": {
77 "color": "#fcc28c"
78 },
79 "hljs-comment": {
80 "color": "#888"
81 },
82 "hljs-deletion": {
83 "color": "#333",
84 "backgroundColor": "#fc9b9b"
85 },
86 "hljs-regexp": {
87 "color": "#c6b4f0"
88 },
89 "hljs-link": {
90 "color": "#c6b4f0"
91 },
92 "hljs-meta": {
93 "color": "#fc9b9b"
94 },
95 "hljs-addition": {
96 "backgroundColor": "#a2fca2",
97 "color": "#333"
98 }
99}
Note: See TracBrowser for help on using the repository browser.