source: node_modules/react-syntax-highlighter/src/styles/hljs/purebasic.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: 2.3 KB
Line 
1export default {
2 "hljs": {
3 "display": "block",
4 "overflowX": "auto",
5 "padding": "0.5em",
6 "background": "#FFFFDF",
7 "color": "#000000"
8 },
9 "hljs-type": {
10 "color": "#000000"
11 },
12 "hljs-function": {
13 "color": "#000000"
14 },
15 "hljs-name": {
16 "color": "#000000",
17 "fontWeight": "bold"
18 },
19 "hljs-number": {
20 "color": "#000000"
21 },
22 "hljs-attr": {
23 "color": "#000000"
24 },
25 "hljs-params": {
26 "color": "#000000"
27 },
28 "hljs-subst": {
29 "color": "#000000"
30 },
31 "hljs-comment": {
32 "color": "#00AAAA"
33 },
34 "hljs-regexp": {
35 "color": "#00AAAA"
36 },
37 "hljs-section": {
38 "color": "#00AAAA"
39 },
40 "hljs-selector-pseudo": {
41 "color": "#00AAAA"
42 },
43 "hljs-addition": {
44 "color": "#00AAAA"
45 },
46 "hljs-title": {
47 "color": "#006666"
48 },
49 "hljs-tag": {
50 "color": "#006666"
51 },
52 "hljs-variable": {
53 "color": "#006666"
54 },
55 "hljs-code": {
56 "color": "#006666"
57 },
58 "hljs-keyword": {
59 "color": "#006666",
60 "fontWeight": "bold"
61 },
62 "hljs-class": {
63 "color": "#006666",
64 "fontWeight": "bold"
65 },
66 "hljs-meta-keyword": {
67 "color": "#006666",
68 "fontWeight": "bold"
69 },
70 "hljs-selector-class": {
71 "color": "#006666",
72 "fontWeight": "bold"
73 },
74 "hljs-built_in": {
75 "color": "#006666",
76 "fontWeight": "bold"
77 },
78 "hljs-builtin-name": {
79 "color": "#006666",
80 "fontWeight": "bold"
81 },
82 "hljs-string": {
83 "color": "#0080FF"
84 },
85 "hljs-selector-attr": {
86 "color": "#0080FF"
87 },
88 "hljs-symbol": {
89 "color": "#924B72"
90 },
91 "hljs-link": {
92 "color": "#924B72"
93 },
94 "hljs-deletion": {
95 "color": "#924B72"
96 },
97 "hljs-attribute": {
98 "color": "#924B72"
99 },
100 "hljs-meta": {
101 "color": "#924B72",
102 "fontWeight": "bold"
103 },
104 "hljs-literal": {
105 "color": "#924B72",
106 "fontWeight": "bold"
107 },
108 "hljs-selector-id": {
109 "color": "#924B72",
110 "fontWeight": "bold"
111 },
112 "hljs-strong": {
113 "fontWeight": "bold"
114 },
115 "hljs-emphasis": {
116 "fontStyle": "italic"
117 }
118}
Note: See TracBrowser for help on using the repository browser.