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

Side by Side Diff: highlight_js_8.3.0/styles/rainbow.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/railscasts.css ('k') | highlight_js_8.3.0/styles/school_book.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 Style with support for rainbow parens
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #474949;
12 color: #d1d9e1;
13 -webkit-text-size-adjust: none;
14 }
15
16
17 .hljs-body,
18 .hljs-collection {
19 color: #d1d9e1;
20 }
21
22 .hljs-comment,
23 .hljs-template_comment,
24 .diff .hljs-header,
25 .hljs-doctype,
26 .lisp .hljs-string,
27 .hljs-javadoc {
28 color: #969896;
29 font-style: italic;
30 }
31
32 .hljs-keyword,
33 .clojure .hljs-attribute,
34 .hljs-winutils,
35 .javascript .hljs-title,
36 .hljs-addition,
37 .css .hljs-tag {
38 color: #cc99cc;
39 }
40
41 .hljs-number { color: #f99157; }
42
43 .hljs-command,
44 .hljs-string,
45 .hljs-tag .hljs-value,
46 .hljs-phpdoc,
47 .hljs-dartdoc,
48 .tex .hljs-formula,
49 .hljs-regexp,
50 .hljs-hexcolor {
51 color: #8abeb7;
52 }
53
54 .hljs-title,
55 .hljs-localvars,
56 .hljs-function .hljs-title,
57 .hljs-chunk,
58 .hljs-decorator,
59 .hljs-built_in,
60 .hljs-identifier {
61 color: #b5bd68;
62 }
63
64 .hljs-class .hljs-keyword {
65 color: #f2777a;
66 }
67
68 .hljs-variable,
69 .smalltalk .hljs-number,
70 .hljs-constant,
71 .hljs-class .hljs-title,
72 .hljs-parent,
73 .haskell .hljs-label,
74 .hljs-id {
75 color: #ffcc66;
76 }
77
78 .hljs-tag .hljs-title,
79 .hljs-rules .hljs-property,
80 .django .hljs-tag .hljs-keyword {
81 font-weight: bold;
82 }
83
84 .hljs-attribute {
85 color: #81a2be;
86 }
87
88 .hljs-preprocessor,
89 .hljs-pragma,
90 .hljs-pi,
91 .hljs-shebang,
92 .hljs-symbol,
93 .hljs-symbol .hljs-string,
94 .diff .hljs-change,
95 .hljs-special,
96 .hljs-attr_selector,
97 .hljs-important,
98 .hljs-subst,
99 .hljs-cdata {
100 color: #f99157;
101 }
102
103 .hljs-deletion {
104 color: #dc322f;
105 }
106
107 .tex .hljs-formula {
108 background: #eee8d5;
109 }
OLDNEW
« no previous file with comments | « highlight_js_8.3.0/styles/railscasts.css ('k') | highlight_js_8.3.0/styles/school_book.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698