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

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

Powered by Google App Engine
This is Rietveld 408576698