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