| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- /**
- * @license
- * Copyright Google LLC All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
- */
- :root {
- --mdc-theme-primary: #6200ee;
- --mdc-theme-secondary: #018786;
- --mdc-theme-background: #fff;
- --mdc-theme-surface: #fff;
- --mdc-theme-error: #b00020;
- --mdc-theme-on-primary: #fff;
- --mdc-theme-on-secondary: #fff;
- --mdc-theme-on-surface: #000;
- --mdc-theme-on-error: #fff;
- --mdc-theme-text-primary-on-background: rgba(0, 0, 0, 0.87);
- --mdc-theme-text-secondary-on-background: rgba(0, 0, 0, 0.54);
- --mdc-theme-text-hint-on-background: rgba(0, 0, 0, 0.38);
- --mdc-theme-text-disabled-on-background: rgba(0, 0, 0, 0.38);
- --mdc-theme-text-icon-on-background: rgba(0, 0, 0, 0.38);
- --mdc-theme-text-primary-on-light: rgba(0, 0, 0, 0.87);
- --mdc-theme-text-secondary-on-light: rgba(0, 0, 0, 0.54);
- --mdc-theme-text-hint-on-light: rgba(0, 0, 0, 0.38);
- --mdc-theme-text-disabled-on-light: rgba(0, 0, 0, 0.38);
- --mdc-theme-text-icon-on-light: rgba(0, 0, 0, 0.38);
- --mdc-theme-text-primary-on-dark: white;
- --mdc-theme-text-secondary-on-dark: rgba(255, 255, 255, 0.7);
- --mdc-theme-text-hint-on-dark: rgba(255, 255, 255, 0.5);
- --mdc-theme-text-disabled-on-dark: rgba(255, 255, 255, 0.5);
- --mdc-theme-text-icon-on-dark: rgba(255, 255, 255, 0.5);
- }
- .mdc-theme--primary {
- color: #6200ee !important;
- /* @alternate */
- color: var(--mdc-theme-primary, #6200ee) !important;
- }
- .mdc-theme--secondary {
- color: #018786 !important;
- /* @alternate */
- color: var(--mdc-theme-secondary, #018786) !important;
- }
- .mdc-theme--background {
- background-color: #fff;
- /* @alternate */
- background-color: var(--mdc-theme-background, #fff);
- }
- .mdc-theme--surface {
- background-color: #fff;
- /* @alternate */
- background-color: var(--mdc-theme-surface, #fff);
- }
- .mdc-theme--error {
- color: #b00020 !important;
- /* @alternate */
- color: var(--mdc-theme-error, #b00020) !important;
- }
- .mdc-theme--on-primary {
- color: #fff !important;
- /* @alternate */
- color: var(--mdc-theme-on-primary, #fff) !important;
- }
- .mdc-theme--on-secondary {
- color: #fff !important;
- /* @alternate */
- color: var(--mdc-theme-on-secondary, #fff) !important;
- }
- .mdc-theme--on-surface {
- color: #000 !important;
- /* @alternate */
- color: var(--mdc-theme-on-surface, #000) !important;
- }
- .mdc-theme--on-error {
- color: #fff !important;
- /* @alternate */
- color: var(--mdc-theme-on-error, #fff) !important;
- }
- .mdc-theme--text-primary-on-background {
- color: rgba(0, 0, 0, 0.87) !important;
- /* @alternate */
- color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)) !important;
- }
- .mdc-theme--text-secondary-on-background {
- color: rgba(0, 0, 0, 0.54) !important;
- /* @alternate */
- color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)) !important;
- }
- .mdc-theme--text-hint-on-background {
- color: rgba(0, 0, 0, 0.38) !important;
- /* @alternate */
- color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)) !important;
- }
- .mdc-theme--text-disabled-on-background {
- color: rgba(0, 0, 0, 0.38) !important;
- /* @alternate */
- color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)) !important;
- }
- .mdc-theme--text-icon-on-background {
- color: rgba(0, 0, 0, 0.38) !important;
- /* @alternate */
- color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38)) !important;
- }
- .mdc-theme--text-primary-on-light {
- color: rgba(0, 0, 0, 0.87) !important;
- /* @alternate */
- color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87)) !important;
- }
- .mdc-theme--text-secondary-on-light {
- color: rgba(0, 0, 0, 0.54) !important;
- /* @alternate */
- color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, 0.54)) !important;
- }
- .mdc-theme--text-hint-on-light {
- color: rgba(0, 0, 0, 0.38) !important;
- /* @alternate */
- color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)) !important;
- }
- .mdc-theme--text-disabled-on-light {
- color: rgba(0, 0, 0, 0.38) !important;
- /* @alternate */
- color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38)) !important;
- }
- .mdc-theme--text-icon-on-light {
- color: rgba(0, 0, 0, 0.38) !important;
- /* @alternate */
- color: var(--mdc-theme-text-icon-on-light, rgba(0, 0, 0, 0.38)) !important;
- }
- .mdc-theme--text-primary-on-dark {
- color: white !important;
- /* @alternate */
- color: var(--mdc-theme-text-primary-on-dark, white) !important;
- }
- .mdc-theme--text-secondary-on-dark {
- color: rgba(255, 255, 255, 0.7) !important;
- /* @alternate */
- color: var(--mdc-theme-text-secondary-on-dark, rgba(255, 255, 255, 0.7)) !important;
- }
- .mdc-theme--text-hint-on-dark {
- color: rgba(255, 255, 255, 0.5) !important;
- /* @alternate */
- color: var(--mdc-theme-text-hint-on-dark, rgba(255, 255, 255, 0.5)) !important;
- }
- .mdc-theme--text-disabled-on-dark {
- color: rgba(255, 255, 255, 0.5) !important;
- /* @alternate */
- color: var(--mdc-theme-text-disabled-on-dark, rgba(255, 255, 255, 0.5)) !important;
- }
- .mdc-theme--text-icon-on-dark {
- color: rgba(255, 255, 255, 0.5) !important;
- /* @alternate */
- color: var(--mdc-theme-text-icon-on-dark, rgba(255, 255, 255, 0.5)) !important;
- }
- .mdc-theme--primary-bg {
- background-color: #6200ee !important;
- /* @alternate */
- background-color: var(--mdc-theme-primary, #6200ee) !important;
- }
- .mdc-theme--secondary-bg {
- background-color: #018786 !important;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786) !important;
- }
- /*# sourceMappingURL=mdc.theme.css.map*/
|