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

Side by Side Diff: highlight_js_8.3.0/styles/sunburst.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/solarized_light.css ('k') | highlight_js_8.3.0/styles/tomorrow.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 Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #000;
12 color: #f8f8f8;
13 -webkit-text-size-adjust: none;
14 }
15
16 .hljs-comment,
17 .hljs-template_comment,
18 .hljs-javadoc {
19 color: #aeaeae;
20 font-style: italic;
21 }
22
23 .hljs-keyword,
24 .ruby .hljs-function .hljs-keyword,
25 .hljs-request,
26 .hljs-status,
27 .nginx .hljs-title {
28 color: #e28964;
29 }
30
31 .hljs-function .hljs-keyword,
32 .hljs-sub .hljs-keyword,
33 .method,
34 .hljs-list .hljs-title {
35 color: #99cf50;
36 }
37
38 .hljs-string,
39 .hljs-tag .hljs-value,
40 .hljs-cdata,
41 .hljs-filter .hljs-argument,
42 .hljs-attr_selector,
43 .apache .hljs-cbracket,
44 .hljs-date,
45 .tex .hljs-command,
46 .coffeescript .hljs-attribute {
47 color: #65b042;
48 }
49
50 .hljs-subst {
51 color: #daefa3;
52 }
53
54 .hljs-regexp {
55 color: #e9c062;
56 }
57
58 .hljs-title,
59 .hljs-sub .hljs-identifier,
60 .hljs-pi,
61 .hljs-tag,
62 .hljs-tag .hljs-keyword,
63 .hljs-decorator,
64 .hljs-shebang,
65 .hljs-prompt {
66 color: #89bdff;
67 }
68
69 .hljs-class .hljs-title,
70 .hljs-type,
71 .smalltalk .hljs-class,
72 .hljs-javadoctag,
73 .hljs-yardoctag,
74 .hljs-phpdoc,
75 .hljs-dartdoc {
76 text-decoration: underline;
77 }
78
79 .hljs-symbol,
80 .ruby .hljs-symbol .hljs-string,
81 .hljs-number {
82 color: #3387cc;
83 }
84
85 .hljs-params,
86 .hljs-variable,
87 .clojure .hljs-attribute {
88 color: #3e87e3;
89 }
90
91 .css .hljs-tag,
92 .hljs-rules .hljs-property,
93 .hljs-pseudo,
94 .tex .hljs-special {
95 color: #cda869;
96 }
97
98 .css .hljs-class {
99 color: #9b703f;
100 }
101
102 .hljs-rules .hljs-keyword {
103 color: #c5af75;
104 }
105
106 .hljs-rules .hljs-value {
107 color: #cf6a4c;
108 }
109
110 .css .hljs-id {
111 color: #8b98ab;
112 }
113
114 .hljs-annotation,
115 .apache .hljs-sqbracket,
116 .nginx .hljs-built_in {
117 color: #9b859d;
118 }
119
120 .hljs-preprocessor,
121 .hljs-pragma {
122 color: #8996a8;
123 }
124
125 .hljs-hexcolor,
126 .css .hljs-value .hljs-number {
127 color: #dd7b3b;
128 }
129
130 .css .hljs-function {
131 color: #dad085;
132 }
133
134 .diff .hljs-header,
135 .hljs-chunk,
136 .tex .hljs-formula {
137 background-color: #0e2231;
138 color: #f8f8f8;
139 font-style: italic;
140 }
141
142 .diff .hljs-change {
143 background-color: #4a410d;
144 color: #f8f8f8;
145 }
146
147 .hljs-addition {
148 background-color: #253b22;
149 color: #f8f8f8;
150 }
151
152 .hljs-deletion {
153 background-color: #420e09;
154 color: #f8f8f8;
155 }
156
157 .coffeescript .javascript,
158 .javascript .xml,
159 .tex .hljs-formula,
160 .xml .javascript,
161 .xml .vbscript,
162 .xml .css,
163 .xml .hljs-cdata {
164 opacity: 0.5;
165 }
OLDNEW
« no previous file with comments | « highlight_js_8.3.0/styles/solarized_light.css ('k') | highlight_js_8.3.0/styles/tomorrow.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698