| Index: third_party/polymer/v1_0/components-chromium/paper-styles/default-theme.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-styles/default-theme.html b/third_party/polymer/v1_0/components-chromium/paper-styles/default-theme.html
|
| index 478d087f9068f796d8b4b7cae0a2051c5d66fdd4..cc6972812cfcc3e74a7338759530b8fb191a4537 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-styles/default-theme.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-styles/default-theme.html
|
| @@ -9,6 +9,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| -->
|
|
|
| <link rel="import" href="../polymer/polymer.html">
|
| +<link rel="import" href="color.html">
|
|
|
| <!-- Taken from https://www.google.com/design/spec/style/color.html#color-ui-color-application -->
|
|
|
| @@ -26,24 +27,26 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| --secondary-text-color: var(--light-theme-secondary-color);
|
| --disabled-text-color: var(--light-theme-disabled-color);
|
| --divider-color: var(--light-theme-divider-color);
|
| + --error-color: var(--paper-deep-orange-a700);
|
|
|
| /*
|
| * Primary and accent colors. Also see color.html for more colors.
|
| */
|
| - --primary-color: #3f51b5; /* --paper-indigo-500 */
|
| - --light-primary-color: #c5cae9; /* --paper-indigo-100 */
|
| - --dark-primary-color: #303f9f; /* --paper-indigo-700 */
|
| + --primary-color: var(--paper-indigo-500);
|
| + --light-primary-color: var(--paper-indigo-100);
|
| + --dark-primary-color: var(--paper-indigo-700);
|
| +
|
| + --accent-color: var(--paper-pink-a200);
|
| + --light-accent-color: var(--paper-pink-a100);
|
| + --dark-accent-color: var(--paper-pink-a400);
|
|
|
| - --accent-color: #ff4081; /* --paper-pink-a200 */
|
| - --light-accent-color: #ff80ab; /* --paper-pink-a100 */
|
| - --dark-accent-color: #f50057; /* --paper-pink-a400 */
|
|
|
| /*
|
| * Material Design Light background theme
|
| */
|
| --light-theme-background-color: #ffffff;
|
| --light-theme-base-color: #000000;
|
| - --light-theme-text-color: #212121;
|
| + --light-theme-text-color: var(--paper-grey-900);
|
| --light-theme-secondary-color: #737373; /* for secondary text and icons */
|
| --light-theme-disabled-color: #9b9b9b; /* disabled/hint text */
|
| --light-theme-divider-color: #dbdbdb;
|
| @@ -51,7 +54,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| /*
|
| * Material Design Dark background theme
|
| */
|
| - --dark-theme-background-color: #212121;
|
| + --dark-theme-background-color: var(--paper-grey-900);
|
| --dark-theme-base-color: #ffffff;
|
| --dark-theme-text-color: #ffffff;
|
| --dark-theme-secondary-color: #bcbcbc; /* for secondary text and icons */
|
|
|