| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --> | 9 --> |
| 10 | 10 |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 --paper-orange-500: #ff9800; | 261 --paper-orange-500: #ff9800; |
| 262 --paper-orange-600: #fb8c00; | 262 --paper-orange-600: #fb8c00; |
| 263 --paper-orange-700: #f57c00; | 263 --paper-orange-700: #f57c00; |
| 264 --paper-orange-800: #ef6c00; | 264 --paper-orange-800: #ef6c00; |
| 265 --paper-orange-900: #e65100; | 265 --paper-orange-900: #e65100; |
| 266 --paper-orange-a100: #ffd180; | 266 --paper-orange-a100: #ffd180; |
| 267 --paper-orange-a200: #ffab40; | 267 --paper-orange-a200: #ffab40; |
| 268 --paper-orange-a400: #ff9100; | 268 --paper-orange-a400: #ff9100; |
| 269 --paper-orange-a700: #ff6500; | 269 --paper-orange-a700: #ff6500; |
| 270 | 270 |
| 271 --paper-deep-orange-50: #ff5722; | 271 --paper-deep-orange-50: #fbe9e7; |
| 272 --paper-deep-orange-100: #fbe9e7; | 272 --paper-deep-orange-100: #ffccbc; |
| 273 --paper-deep-orange-200: #ffccbc; | 273 --paper-deep-orange-200: #ffab91; |
| 274 --paper-deep-orange-300: #ff8a65; | 274 --paper-deep-orange-300: #ff8a65; |
| 275 --paper-deep-orange-400: #ff7043; | 275 --paper-deep-orange-400: #ff7043; |
| 276 --paper-deep-orange-500: #ff5722; | 276 --paper-deep-orange-500: #ff5722; |
| 277 --paper-deep-orange-600: #f4511e; | 277 --paper-deep-orange-600: #f4511e; |
| 278 --paper-deep-orange-700: #e64a19; | 278 --paper-deep-orange-700: #e64a19; |
| 279 --paper-deep-orange-800: #d84315; | 279 --paper-deep-orange-800: #d84315; |
| 280 --paper-deep-orange-900: #bf360c; | 280 --paper-deep-orange-900: #bf360c; |
| 281 --paper-deep-orange-a100: #ff9e80; | 281 --paper-deep-orange-a100: #ff9e80; |
| 282 --paper-deep-orange-a200: #ff6e40; | 282 --paper-deep-orange-a200: #ff6e40; |
| 283 --paper-deep-orange-a400: #ff3d00; | 283 --paper-deep-orange-a400: #ff3d00; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 311 --paper-blue-grey-300: #90a4ae; | 311 --paper-blue-grey-300: #90a4ae; |
| 312 --paper-blue-grey-400: #78909c; | 312 --paper-blue-grey-400: #78909c; |
| 313 --paper-blue-grey-500: #607d8b; | 313 --paper-blue-grey-500: #607d8b; |
| 314 --paper-blue-grey-600: #546e7a; | 314 --paper-blue-grey-600: #546e7a; |
| 315 --paper-blue-grey-700: #455a64; | 315 --paper-blue-grey-700: #455a64; |
| 316 --paper-blue-grey-800: #37474f; | 316 --paper-blue-grey-800: #37474f; |
| 317 --paper-blue-grey-900: #263238; | 317 --paper-blue-grey-900: #263238; |
| 318 | 318 |
| 319 /* opacity for dark text on a light background */ | 319 /* opacity for dark text on a light background */ |
| 320 --dark-divider-opacity: 0.12; | 320 --dark-divider-opacity: 0.12; |
| 321 --dark-disabled-opacity: 0.26; /* or hint text */ | 321 --dark-disabled-opacity: 0.38; /* or hint text or icon */ |
| 322 --dark-secondary-opacity: 0.54; /* or icon */ | 322 --dark-secondary-opacity: 0.54; |
| 323 --dark-primary-opacity: 0.87; | 323 --dark-primary-opacity: 0.87; |
| 324 | 324 |
| 325 /* opacity for light text on a dark background */ | 325 /* opacity for light text on a dark background */ |
| 326 --light-divider-opacity: 0.12; | 326 --light-divider-opacity: 0.12; |
| 327 --light-disabled-opacity: 0.3; /* or hint text */ | 327 --light-disabled-opacity: 0.3; /* or hint text or icon */ |
| 328 --light-secondary-opacity: 0.7; /* or icon */ | 328 --light-secondary-opacity: 0.7; |
| 329 --light-primary-opacity: 1.0; | 329 --light-primary-opacity: 1.0; |
| 330 | 330 |
| 331 } | 331 } |
| 332 | 332 |
| 333 </style> | 333 </style> |
| OLD | NEW |