1<!--
2@license
3Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7Code distributed by Google as part of the polymer project is also
8subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9-->
10
11<dom-module id="shared-styles">
12  <template>
13    <style>
14      .red-100 {
15        background: var(--google-red-100);
16      }
17
18      .yellow-100 {
19        background: var(--google-yellow-100);
20      }
21
22      .blue-100 {
23        background: var(--google-blue-100);
24      }
25
26      .green-100 {
27        background: var(--google-green-100);
28      }
29
30      .red-300 {
31        background: var(--google-red-300);
32      }
33
34      .yellow-300 {
35        background: var(--google-yellow-300);
36      }
37
38      .blue-300 {
39        background: var(--google-blue-300);
40      }
41
42      .green-300 {
43        background: var(--google-green-300);
44      }
45    </style>
46  </template>
47</dom-module>
48