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

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-styles/default-theme.html

Issue 1766433002: Roll Polymer to 1.3.1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 side-by-side diff with in-line comments
Download patch
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 */

Powered by Google App Engine
This is Rietveld 408576698