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

Side by Side Diff: highlight_js_8.3.0/styles/idea.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/hybrid.css ('k') | highlight_js_8.3.0/styles/ir_black.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 Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 color: #000;
12 background: #fff;
13 -webkit-text-size-adjust: none;
14 }
15
16 .hljs-subst,
17 .hljs-title,
18 .json .hljs-value {
19 font-weight: normal;
20 color: #000;
21 }
22
23 .hljs-comment,
24 .hljs-template_comment,
25 .hljs-javadoc,
26 .diff .hljs-header {
27 color: #808080;
28 font-style: italic;
29 }
30
31 .hljs-annotation,
32 .hljs-decorator,
33 .hljs-preprocessor,
34 .hljs-pragma,
35 .hljs-doctype,
36 .hljs-pi,
37 .hljs-chunk,
38 .hljs-shebang,
39 .apache .hljs-cbracket,
40 .hljs-prompt,
41 .http .hljs-title {
42 color: #808000;
43 }
44
45 .hljs-tag,
46 .hljs-pi {
47 background: #efefef;
48 }
49
50 .hljs-tag .hljs-title,
51 .hljs-id,
52 .hljs-attr_selector,
53 .hljs-pseudo,
54 .hljs-literal,
55 .hljs-keyword,
56 .hljs-hexcolor,
57 .css .hljs-function,
58 .ini .hljs-title,
59 .css .hljs-class,
60 .hljs-list .hljs-keyword,
61 .nginx .hljs-title,
62 .tex .hljs-command,
63 .hljs-request,
64 .hljs-status {
65 font-weight: bold;
66 color: #000080;
67 }
68
69 .hljs-attribute,
70 .hljs-rules .hljs-keyword,
71 .hljs-number,
72 .hljs-date,
73 .hljs-regexp,
74 .tex .hljs-special {
75 font-weight: bold;
76 color: #0000ff;
77 }
78
79 .hljs-number,
80 .hljs-regexp {
81 font-weight: normal;
82 }
83
84 .hljs-string,
85 .hljs-value,
86 .hljs-filter .hljs-argument,
87 .css .hljs-function .hljs-params,
88 .apache .hljs-tag {
89 color: #008000;
90 font-weight: bold;
91 }
92
93 .hljs-symbol,
94 .ruby .hljs-symbol .hljs-string,
95 .hljs-char,
96 .tex .hljs-formula {
97 color: #000;
98 background: #d0eded;
99 font-style: italic;
100 }
101
102 .hljs-phpdoc,
103 .hljs-dartdoc,
104 .hljs-yardoctag,
105 .hljs-javadoctag {
106 text-decoration: underline;
107 }
108
109 .hljs-variable,
110 .hljs-envvar,
111 .apache .hljs-sqbracket,
112 .nginx .hljs-built_in {
113 color: #660e7a;
114 }
115
116 .hljs-addition {
117 background: #baeeba;
118 }
119
120 .hljs-deletion {
121 background: #ffc8bd;
122 }
123
124 .diff .hljs-change {
125 background: #bccff9;
126 }
OLDNEW
« no previous file with comments | « highlight_js_8.3.0/styles/hybrid.css ('k') | highlight_js_8.3.0/styles/ir_black.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698