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

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

Powered by Google App Engine
This is Rietveld 408576698