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

Side by Side Diff: highlight_js_8.3.0/styles/tomorrow.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/sunburst.css ('k') | highlight_js_8.3.0/styles/tomorrow-night.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 /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
2
3 /* Tomorrow Comment */
4 .hljs-comment,
5 .hljs-title {
6 color: #8e908c;
7 }
8
9 /* Tomorrow Red */
10 .hljs-variable,
11 .hljs-attribute,
12 .hljs-tag,
13 .hljs-regexp,
14 .ruby .hljs-constant,
15 .xml .hljs-tag .hljs-title,
16 .xml .hljs-pi,
17 .xml .hljs-doctype,
18 .html .hljs-doctype,
19 .css .hljs-id,
20 .css .hljs-class,
21 .css .hljs-pseudo {
22 color: #c82829;
23 }
24
25 /* Tomorrow Orange */
26 .hljs-number,
27 .hljs-preprocessor,
28 .hljs-pragma,
29 .hljs-built_in,
30 .hljs-literal,
31 .hljs-params,
32 .hljs-constant {
33 color: #f5871f;
34 }
35
36 /* Tomorrow Yellow */
37 .ruby .hljs-class .hljs-title,
38 .css .hljs-rules .hljs-attribute {
39 color: #eab700;
40 }
41
42 /* Tomorrow Green */
43 .hljs-string,
44 .hljs-value,
45 .hljs-inheritance,
46 .hljs-header,
47 .ruby .hljs-symbol,
48 .xml .hljs-cdata {
49 color: #718c00;
50 }
51
52 /* Tomorrow Aqua */
53 .css .hljs-hexcolor {
54 color: #3e999f;
55 }
56
57 /* Tomorrow Blue */
58 .hljs-function,
59 .python .hljs-decorator,
60 .python .hljs-title,
61 .ruby .hljs-function .hljs-title,
62 .ruby .hljs-title .hljs-keyword,
63 .perl .hljs-sub,
64 .javascript .hljs-title,
65 .coffeescript .hljs-title {
66 color: #4271ae;
67 }
68
69 /* Tomorrow Purple */
70 .hljs-keyword,
71 .javascript .hljs-function {
72 color: #8959a8;
73 }
74
75 .hljs {
76 display: block;
77 overflow-x: auto;
78 background: white;
79 color: #4d4d4c;
80 padding: 0.5em;
81 -webkit-text-size-adjust: none;
82 }
83
84 .coffeescript .javascript,
85 .javascript .xml,
86 .tex .hljs-formula,
87 .xml .javascript,
88 .xml .vbscript,
89 .xml .css,
90 .xml .hljs-cdata {
91 opacity: 0.5;
92 }
OLDNEW
« no previous file with comments | « highlight_js_8.3.0/styles/sunburst.css ('k') | highlight_js_8.3.0/styles/tomorrow-night.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698