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

Side by Side Diff: polymer_1.0.4/bower_components/prism/themes/prism-tomorrow.css

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 5 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 /**
2 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
3 * Based on https://github.com/chriskempson/tomorrow-theme
4 * @author Rose Pritchard
5 */
6
7 code[class*="language-"],
8 pre[class*="language-"] {
9 color: #ccc;
10 font-family: Consolas, Monaco, 'Andale Mono', monospace;
11 direction: ltr;
12 text-align: left;
13 white-space: pre;
14 word-spacing: normal;
15 word-break: normal;
16 line-height: 1.5;
17
18 -moz-tab-size: 4;
19 -o-tab-size: 4;
20 tab-size: 4;
21
22 -webkit-hyphens: none;
23 -moz-hyphens: none;
24 -ms-hyphens: none;
25 hyphens: none;
26
27 }
28
29 /* Code blocks */
30 pre[class*="language-"] {
31 padding: 1em;
32 margin: .5em 0;
33 overflow: auto;
34 }
35
36 :not(pre) > code[class*="language-"],
37 pre[class*="language-"] {
38 background: #2d2d2d;
39 }
40
41 /* Inline code */
42 :not(pre) > code[class*="language-"] {
43 padding: .1em;
44 border-radius: .3em;
45 }
46
47 .token.comment,
48 .token.block-comment,
49 .token.prolog,
50 .token.doctype,
51 .token.cdata {
52 color: #999;
53 }
54
55 .token.punctuation {
56 color: #ccc;
57 }
58
59 .token.tag,
60 .token.attr-name,
61 .token.namespace,
62 .token.deleted {
63 color: #e2777a;
64 }
65
66 .token.function-name {
67 color: #6196cc;
68 }
69
70 .token.boolean,
71 .token.number,
72 .token.function {
73 color: #f08d49;
74 }
75
76 .token.property,
77 .token.class-name,
78 .token.constant,
79 .token.symbol {
80 color: #f8c555;
81 }
82
83 .token.selector,
84 .token.important,
85 .token.atrule,
86 .token.keyword,
87 .token.builtin {
88 color: #cc99cd;
89 }
90
91 .token.string,
92 .token.char,
93 .token.attr-value,
94 .token.regex,
95 .token.variable {
96 color: #7ec699;
97 }
98
99 .token.operator,
100 .token.entity,
101 .token.url {
102 color: #67cdcc;
103 }
104
105 .token.important,
106 .token.bold {
107 font-weight: bold;
108 }
109 .token.italic {
110 font-style: italic;
111 }
112
113 .token.entity {
114 cursor: help;
115 }
116
117 .token.inserted {
118 color: green;
119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698