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

Side by Side Diff: highlight_js_8.3.0/styles/solarized_light.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_dark.css ('k') | highlight_js_8.3.0/styles/sunburst.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 Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmai l.com>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #fdf6e3;
12 color: #657b83;
13 -webkit-text-size-adjust: none;
14 }
15
16 .hljs-comment,
17 .hljs-template_comment,
18 .diff .hljs-header,
19 .hljs-doctype,
20 .hljs-pi,
21 .lisp .hljs-string,
22 .hljs-javadoc {
23 color: #93a1a1;
24 }
25
26 /* Solarized Green */
27 .hljs-keyword,
28 .hljs-winutils,
29 .method,
30 .hljs-addition,
31 .css .hljs-tag,
32 .hljs-request,
33 .hljs-status,
34 .nginx .hljs-title {
35 color: #859900;
36 }
37
38 /* Solarized Cyan */
39 .hljs-number,
40 .hljs-command,
41 .hljs-string,
42 .hljs-tag .hljs-value,
43 .hljs-rules .hljs-value,
44 .hljs-phpdoc,
45 .hljs-dartdoc,
46 .tex .hljs-formula,
47 .hljs-regexp,
48 .hljs-hexcolor,
49 .hljs-link_url {
50 color: #2aa198;
51 }
52
53 /* Solarized Blue */
54 .hljs-title,
55 .hljs-localvars,
56 .hljs-chunk,
57 .hljs-decorator,
58 .hljs-built_in,
59 .hljs-identifier,
60 .vhdl .hljs-literal,
61 .hljs-id,
62 .css .hljs-function {
63 color: #268bd2;
64 }
65
66 /* Solarized Yellow */
67 .hljs-attribute,
68 .hljs-variable,
69 .lisp .hljs-body,
70 .smalltalk .hljs-number,
71 .hljs-constant,
72 .hljs-class .hljs-title,
73 .hljs-parent,
74 .hljs-type,
75 .hljs-link_reference {
76 color: #b58900;
77 }
78
79 /* Solarized Orange */
80 .hljs-preprocessor,
81 .hljs-preprocessor .hljs-keyword,
82 .hljs-pragma,
83 .hljs-shebang,
84 .hljs-symbol,
85 .hljs-symbol .hljs-string,
86 .diff .hljs-change,
87 .hljs-special,
88 .hljs-attr_selector,
89 .hljs-subst,
90 .hljs-cdata,
91 .css .hljs-pseudo,
92 .hljs-header {
93 color: #cb4b16;
94 }
95
96 /* Solarized Red */
97 .hljs-deletion,
98 .hljs-important {
99 color: #dc322f;
100 }
101
102 /* Solarized Violet */
103 .hljs-link_label {
104 color: #6c71c4;
105 }
106
107 .tex .hljs-formula {
108 background: #eee8d5;
109 }
OLDNEW
« no previous file with comments | « highlight_js_8.3.0/styles/solarized_dark.css ('k') | highlight_js_8.3.0/styles/sunburst.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698