2015-06-15 21:52:01 -07:00
|
|
|
<!--
|
|
|
|
@license
|
|
|
|
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
|
|
|
|
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
|
|
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
|
|
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
|
|
Code distributed by Google as part of the polymer project is also
|
|
|
|
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
|
|
-->
|
|
|
|
|
|
|
|
<link rel="import" href="../polymer/polymer.html">
|
2016-02-23 22:36:48 -07:00
|
|
|
<link rel="import" href="color.html">
|
2015-06-15 21:52:01 -07:00
|
|
|
|
2015-12-15 22:30:14 -07:00
|
|
|
<!-- Taken from https://www.google.com/design/spec/style/color.html#color-ui-color-application -->
|
|
|
|
|
2015-06-15 21:52:01 -07:00
|
|
|
<style is="custom-style">
|
|
|
|
|
|
|
|
:root {
|
2015-12-15 22:30:14 -07:00
|
|
|
/*
|
2016-01-07 22:44:45 -07:00
|
|
|
* You can use these generic variables in your elements for easy theming.
|
|
|
|
* For example, if all your elements use `--primary-text-color` as its main
|
|
|
|
* color, then switching from a light to a dark theme is just a matter of
|
|
|
|
* changing the value of `--primary-text-color` in your application.
|
|
|
|
*/
|
|
|
|
--primary-text-color: var(--light-theme-text-color);
|
|
|
|
--primary-background-color: var(--light-theme-background-color);
|
|
|
|
--secondary-text-color: var(--light-theme-secondary-color);
|
|
|
|
--disabled-text-color: var(--light-theme-disabled-color);
|
|
|
|
--divider-color: var(--light-theme-divider-color);
|
2016-02-23 22:36:48 -07:00
|
|
|
--error-color: var(--paper-deep-orange-a700);
|
2016-01-07 22:44:45 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Primary and accent colors. Also see color.html for more colors.
|
|
|
|
*/
|
2016-02-23 22:36:48 -07:00
|
|
|
--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);
|
2016-01-07 22:44:45 -07:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Material Design Light background theme
|
2015-12-15 22:30:14 -07:00
|
|
|
*/
|
|
|
|
--light-theme-background-color: #ffffff;
|
|
|
|
--light-theme-base-color: #000000;
|
2016-02-23 22:36:48 -07:00
|
|
|
--light-theme-text-color: var(--paper-grey-900);
|
2015-12-15 22:30:14 -07:00
|
|
|
--light-theme-secondary-color: #737373; /* for secondary text and icons */
|
|
|
|
--light-theme-disabled-color: #9b9b9b; /* disabled/hint text */
|
|
|
|
--light-theme-divider-color: #dbdbdb;
|
|
|
|
|
|
|
|
/*
|
2016-01-07 22:44:45 -07:00
|
|
|
* Material Design Dark background theme
|
2015-12-15 22:30:14 -07:00
|
|
|
*/
|
2016-02-23 22:36:48 -07:00
|
|
|
--dark-theme-background-color: var(--paper-grey-900);
|
2015-12-15 22:30:14 -07:00
|
|
|
--dark-theme-base-color: #ffffff;
|
|
|
|
--dark-theme-text-color: #ffffff;
|
|
|
|
--dark-theme-secondary-color: #bcbcbc; /* for secondary text and icons */
|
|
|
|
--dark-theme-disabled-color: #646464; /* disabled/hint text */
|
|
|
|
--dark-theme-divider-color: #3c3c3c;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Deprecated values because of their confusing names.
|
|
|
|
*/
|
|
|
|
--text-primary-color: var(--dark-theme-text-color);
|
2015-12-23 10:46:01 -07:00
|
|
|
--default-primary-color: var(--primary-color);
|
2016-01-07 22:44:45 -07:00
|
|
|
|
2015-06-15 21:52:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|