Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: highlight_js_8.3.0/styles/railscasts.css

Issue 1771863004: Add highlight.js 8.3 from the highlight.js standalone repo. (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « highlight_js_8.3.0/styles/pojoaque.jpg ('k') | highlight_js_8.3.0/styles/rainbow.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2
3 Railscasts-like style (c) Visoft, Inc. (Damien White)
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #232323;
12 color: #e6e1dc;
13 -webkit-text-size-adjust: none;
14 }
15
16 .hljs-comment,
17 .hljs-template_comment,
18 .hljs-javadoc,
19 .hljs-shebang {
20 color: #bc9458;
21 font-style: italic;
22 }
23
24 .hljs-keyword,
25 .ruby .hljs-function .hljs-keyword,
26 .hljs-request,
27 .hljs-status,
28 .nginx .hljs-title,
29 .method,
30 .hljs-list .hljs-title {
31 color: #c26230;
32 }
33
34 .hljs-string,
35 .hljs-number,
36 .hljs-regexp,
37 .hljs-tag .hljs-value,
38 .hljs-cdata,
39 .hljs-filter .hljs-argument,
40 .hljs-attr_selector,
41 .apache .hljs-cbracket,
42 .hljs-date,
43 .tex .hljs-command,
44 .asciidoc .hljs-link_label,
45 .markdown .hljs-link_label {
46 color: #a5c261;
47 }
48
49 .hljs-subst {
50 color: #519f50;
51 }
52
53 .hljs-tag,
54 .hljs-tag .hljs-keyword,
55 .hljs-tag .hljs-title,
56 .hljs-doctype,
57 .hljs-sub .hljs-identifier,
58 .hljs-pi,
59 .input_number {
60 color: #e8bf6a;
61 }
62
63 .hljs-identifier {
64 color: #d0d0ff;
65 }
66
67 .hljs-class .hljs-title,
68 .hljs-type,
69 .smalltalk .hljs-class,
70 .hljs-javadoctag,
71 .hljs-yardoctag,
72 .hljs-phpdoc,
73 .hljs-dartdoc {
74 text-decoration: none;
75 }
76
77 .hljs-constant {
78 color: #da4939;
79 }
80
81
82 .hljs-symbol,
83 .hljs-built_in,
84 .ruby .hljs-symbol .hljs-string,
85 .ruby .hljs-symbol .hljs-identifier,
86 .asciidoc .hljs-link_url,
87 .markdown .hljs-link_url,
88 .hljs-attribute {
89 color: #6d9cbe;
90 }
91
92 .asciidoc .hljs-link_url,
93 .markdown .hljs-link_url {
94 text-decoration: underline;
95 }
96
97
98
99 .hljs-params,
100 .hljs-variable,
101 .clojure .hljs-attribute {
102 color: #d0d0ff;
103 }
104
105 .css .hljs-tag,
106 .hljs-rules .hljs-property,
107 .hljs-pseudo,
108 .tex .hljs-special {
109 color: #cda869;
110 }
111
112 .css .hljs-class {
113 color: #9b703f;
114 }
115
116 .hljs-rules .hljs-keyword {
117 color: #c5af75;
118 }
119
120 .hljs-rules .hljs-value {
121 color: #cf6a4c;
122 }
123
124 .css .hljs-id {
125 color: #8b98ab;
126 }
127
128 .hljs-annotation,
129 .apache .hljs-sqbracket,
130 .nginx .hljs-built_in {
131 color: #9b859d;
132 }
133
134 .hljs-preprocessor,
135 .hljs-preprocessor *,
136 .hljs-pragma {
137 color: #8996a8 !important;
138 }
139
140 .hljs-hexcolor,
141 .css .hljs-value .hljs-number {
142 color: #a5c261;
143 }
144
145 .hljs-title,
146 .hljs-decorator,
147 .css .hljs-function {
148 color: #ffc66d;
149 }
150
151 .diff .hljs-header,
152 .hljs-chunk {
153 background-color: #2f33ab;
154 color: #e6e1dc;
155 display: inline-block;
156 width: 100%;
157 }
158
159 .diff .hljs-change {
160 background-color: #4a410d;
161 color: #f8f8f8;
162 display: inline-block;
163 width: 100%;
164 }
165
166 .hljs-addition {
167 background-color: #144212;
168 color: #e6e1dc;
169 display: inline-block;
170 width: 100%;
171 }
172
173 .hljs-deletion {
174 background-color: #600;
175 color: #e6e1dc;
176 display: inline-block;
177 width: 100%;
178 }
179
180 .coffeescript .javascript,
181 .javascript .xml,
182 .tex .hljs-formula,
183 .xml .javascript,
184 .xml .vbscript,
185 .xml .css,
186 .xml .hljs-cdata {
187 opacity: 0.7;
188 }
OLDNEW
« no previous file with comments | « highlight_js_8.3.0/styles/pojoaque.jpg ('k') | highlight_js_8.3.0/styles/rainbow.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698