source: node_modules/react-syntax-highlighter/src/styles/hljs/railscasts.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": "#232323",
7 "color": "#e6e1dc"
8 },
9 "hljs-comment": {
10 "color": "#bc9458",
11 "fontStyle": "italic"
12 },
13 "hljs-quote": {
14 "color": "#bc9458",
15 "fontStyle": "italic"
16 },
17 "hljs-keyword": {
18 "color": "#c26230"
19 },
20 "hljs-selector-tag": {
21 "color": "#c26230"
22 },
23 "hljs-string": {
24 "color": "#a5c261"
25 },
26 "hljs-number": {
27 "color": "#a5c261"
28 },
29 "hljs-regexp": {
30 "color": "#a5c261"
31 },
32 "hljs-variable": {
33 "color": "#a5c261"
34 },
35 "hljs-template-variable": {
36 "color": "#a5c261"
37 },
38 "hljs-subst": {
39 "color": "#519f50"
40 },
41 "hljs-tag": {
42 "color": "#e8bf6a"
43 },
44 "hljs-name": {
45 "color": "#e8bf6a"
46 },
47 "hljs-type": {
48 "color": "#da4939"
49 },
50 "hljs-symbol": {
51 "color": "#6d9cbe"
52 },
53 "hljs-bullet": {
54 "color": "#6d9cbe"
55 },
56 "hljs-built_in": {
57 "color": "#6d9cbe"
58 },
59 "hljs-builtin-name": {
60 "color": "#6d9cbe"
61 },
62 "hljs-attr": {
63 "color": "#6d9cbe"
64 },
65 "hljs-link": {
66 "color": "#6d9cbe",
67 "textDecoration": "underline"
68 },
69 "hljs-params": {
70 "color": "#d0d0ff"
71 },
72 "hljs-attribute": {
73 "color": "#cda869"
74 },
75 "hljs-meta": {
76 "color": "#9b859d"
77 },
78 "hljs-title": {
79 "color": "#ffc66d"
80 },
81 "hljs-section": {
82 "color": "#ffc66d"
83 },
84 "hljs-addition": {
85 "backgroundColor": "#144212",
86 "color": "#e6e1dc",
87 "display": "inline-block",
88 "width": "100%"
89 },
90 "hljs-deletion": {
91 "backgroundColor": "#600",
92 "color": "#e6e1dc",
93 "display": "inline-block",
94 "width": "100%"
95 },
96 "hljs-selector-class": {
97 "color": "#9b703f"
98 },
99 "hljs-selector-id": {
100 "color": "#8b98ab"
101 },
102 "hljs-emphasis": {
103 "fontStyle": "italic"
104 },
105 "hljs-strong": {
106 "fontWeight": "bold"
107 }
108}
Note: See TracBrowser for help on using the repository browser.