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.6 KB
|
Line | |
---|
1 | export default {
|
---|
2 | "code[class*=\"language-\"]": {
|
---|
3 | "textAlign": "left",
|
---|
4 | "whiteSpace": "pre",
|
---|
5 | "wordSpacing": "normal",
|
---|
6 | "wordBreak": "normal",
|
---|
7 | "wordWrap": "normal",
|
---|
8 | "color": "#eee",
|
---|
9 | "background": "#2f2f2f",
|
---|
10 | "fontFamily": "Roboto Mono, monospace",
|
---|
11 | "fontSize": "1em",
|
---|
12 | "lineHeight": "1.5em",
|
---|
13 | "MozTabSize": "4",
|
---|
14 | "OTabSize": "4",
|
---|
15 | "tabSize": "4",
|
---|
16 | "WebkitHyphens": "none",
|
---|
17 | "MozHyphens": "none",
|
---|
18 | "msHyphens": "none",
|
---|
19 | "hyphens": "none"
|
---|
20 | },
|
---|
21 | "pre[class*=\"language-\"]": {
|
---|
22 | "textAlign": "left",
|
---|
23 | "whiteSpace": "pre",
|
---|
24 | "wordSpacing": "normal",
|
---|
25 | "wordBreak": "normal",
|
---|
26 | "wordWrap": "normal",
|
---|
27 | "color": "#eee",
|
---|
28 | "background": "#2f2f2f",
|
---|
29 | "fontFamily": "Roboto Mono, monospace",
|
---|
30 | "fontSize": "1em",
|
---|
31 | "lineHeight": "1.5em",
|
---|
32 | "MozTabSize": "4",
|
---|
33 | "OTabSize": "4",
|
---|
34 | "tabSize": "4",
|
---|
35 | "WebkitHyphens": "none",
|
---|
36 | "MozHyphens": "none",
|
---|
37 | "msHyphens": "none",
|
---|
38 | "hyphens": "none",
|
---|
39 | "overflow": "auto",
|
---|
40 | "position": "relative",
|
---|
41 | "margin": "0.5em 0",
|
---|
42 | "padding": "1.25em 1em"
|
---|
43 | },
|
---|
44 | "code[class*=\"language-\"]::-moz-selection": {
|
---|
45 | "background": "#363636"
|
---|
46 | },
|
---|
47 | "pre[class*=\"language-\"]::-moz-selection": {
|
---|
48 | "background": "#363636"
|
---|
49 | },
|
---|
50 | "code[class*=\"language-\"] ::-moz-selection": {
|
---|
51 | "background": "#363636"
|
---|
52 | },
|
---|
53 | "pre[class*=\"language-\"] ::-moz-selection": {
|
---|
54 | "background": "#363636"
|
---|
55 | },
|
---|
56 | "code[class*=\"language-\"]::selection": {
|
---|
57 | "background": "#363636"
|
---|
58 | },
|
---|
59 | "pre[class*=\"language-\"]::selection": {
|
---|
60 | "background": "#363636"
|
---|
61 | },
|
---|
62 | "code[class*=\"language-\"] ::selection": {
|
---|
63 | "background": "#363636"
|
---|
64 | },
|
---|
65 | "pre[class*=\"language-\"] ::selection": {
|
---|
66 | "background": "#363636"
|
---|
67 | },
|
---|
68 | ":not(pre) > code[class*=\"language-\"]": {
|
---|
69 | "whiteSpace": "normal",
|
---|
70 | "borderRadius": "0.2em",
|
---|
71 | "padding": "0.1em"
|
---|
72 | },
|
---|
73 | ".language-css > code": {
|
---|
74 | "color": "#fd9170"
|
---|
75 | },
|
---|
76 | ".language-sass > code": {
|
---|
77 | "color": "#fd9170"
|
---|
78 | },
|
---|
79 | ".language-scss > code": {
|
---|
80 | "color": "#fd9170"
|
---|
81 | },
|
---|
82 | "[class*=\"language-\"] .namespace": {
|
---|
83 | "Opacity": "0.7"
|
---|
84 | },
|
---|
85 | "atrule": {
|
---|
86 | "color": "#c792ea"
|
---|
87 | },
|
---|
88 | "attr-name": {
|
---|
89 | "color": "#ffcb6b"
|
---|
90 | },
|
---|
91 | "attr-value": {
|
---|
92 | "color": "#a5e844"
|
---|
93 | },
|
---|
94 | "attribute": {
|
---|
95 | "color": "#a5e844"
|
---|
96 | },
|
---|
97 | "boolean": {
|
---|
98 | "color": "#c792ea"
|
---|
99 | },
|
---|
100 | "builtin": {
|
---|
101 | "color": "#ffcb6b"
|
---|
102 | },
|
---|
103 | "cdata": {
|
---|
104 | "color": "#80cbc4"
|
---|
105 | },
|
---|
106 | "char": {
|
---|
107 | "color": "#80cbc4"
|
---|
108 | },
|
---|
109 | "class": {
|
---|
110 | "color": "#ffcb6b"
|
---|
111 | },
|
---|
112 | "class-name": {
|
---|
113 | "color": "#f2ff00"
|
---|
114 | },
|
---|
115 | "comment": {
|
---|
116 | "color": "#616161"
|
---|
117 | },
|
---|
118 | "constant": {
|
---|
119 | "color": "#c792ea"
|
---|
120 | },
|
---|
121 | "deleted": {
|
---|
122 | "color": "#ff6666"
|
---|
123 | },
|
---|
124 | "doctype": {
|
---|
125 | "color": "#616161"
|
---|
126 | },
|
---|
127 | "entity": {
|
---|
128 | "color": "#ff6666"
|
---|
129 | },
|
---|
130 | "function": {
|
---|
131 | "color": "#c792ea"
|
---|
132 | },
|
---|
133 | "hexcode": {
|
---|
134 | "color": "#f2ff00"
|
---|
135 | },
|
---|
136 | "id": {
|
---|
137 | "color": "#c792ea",
|
---|
138 | "fontWeight": "bold"
|
---|
139 | },
|
---|
140 | "important": {
|
---|
141 | "color": "#c792ea",
|
---|
142 | "fontWeight": "bold"
|
---|
143 | },
|
---|
144 | "inserted": {
|
---|
145 | "color": "#80cbc4"
|
---|
146 | },
|
---|
147 | "keyword": {
|
---|
148 | "color": "#c792ea"
|
---|
149 | },
|
---|
150 | "number": {
|
---|
151 | "color": "#fd9170"
|
---|
152 | },
|
---|
153 | "operator": {
|
---|
154 | "color": "#89ddff"
|
---|
155 | },
|
---|
156 | "prolog": {
|
---|
157 | "color": "#616161"
|
---|
158 | },
|
---|
159 | "property": {
|
---|
160 | "color": "#80cbc4"
|
---|
161 | },
|
---|
162 | "pseudo-class": {
|
---|
163 | "color": "#a5e844"
|
---|
164 | },
|
---|
165 | "pseudo-element": {
|
---|
166 | "color": "#a5e844"
|
---|
167 | },
|
---|
168 | "punctuation": {
|
---|
169 | "color": "#89ddff"
|
---|
170 | },
|
---|
171 | "regex": {
|
---|
172 | "color": "#f2ff00"
|
---|
173 | },
|
---|
174 | "selector": {
|
---|
175 | "color": "#ff6666"
|
---|
176 | },
|
---|
177 | "string": {
|
---|
178 | "color": "#a5e844"
|
---|
179 | },
|
---|
180 | "symbol": {
|
---|
181 | "color": "#c792ea"
|
---|
182 | },
|
---|
183 | "tag": {
|
---|
184 | "color": "#ff6666"
|
---|
185 | },
|
---|
186 | "unit": {
|
---|
187 | "color": "#fd9170"
|
---|
188 | },
|
---|
189 | "url": {
|
---|
190 | "color": "#ff6666"
|
---|
191 | },
|
---|
192 | "variable": {
|
---|
193 | "color": "#ff6666"
|
---|
194 | }
|
---|
195 | }; |
---|
Note:
See
TracBrowser
for help on using the repository browser.