mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
feb5e91986
commit
4da1e38cc5
26 changed files with 320 additions and 125 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue