mdc.theme.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
  7. */
  8. :root {
  9. --mdc-theme-primary: #6200ee;
  10. --mdc-theme-secondary: #018786;
  11. --mdc-theme-background: #fff;
  12. --mdc-theme-surface: #fff;
  13. --mdc-theme-error: #b00020;
  14. --mdc-theme-on-primary: #fff;
  15. --mdc-theme-on-secondary: #fff;
  16. --mdc-theme-on-surface: #000;
  17. --mdc-theme-on-error: #fff;
  18. --mdc-theme-text-primary-on-background: rgba(0, 0, 0, 0.87);
  19. --mdc-theme-text-secondary-on-background: rgba(0, 0, 0, 0.54);
  20. --mdc-theme-text-hint-on-background: rgba(0, 0, 0, 0.38);
  21. --mdc-theme-text-disabled-on-background: rgba(0, 0, 0, 0.38);
  22. --mdc-theme-text-icon-on-background: rgba(0, 0, 0, 0.38);
  23. --mdc-theme-text-primary-on-light: rgba(0, 0, 0, 0.87);
  24. --mdc-theme-text-secondary-on-light: rgba(0, 0, 0, 0.54);
  25. --mdc-theme-text-hint-on-light: rgba(0, 0, 0, 0.38);
  26. --mdc-theme-text-disabled-on-light: rgba(0, 0, 0, 0.38);
  27. --mdc-theme-text-icon-on-light: rgba(0, 0, 0, 0.38);
  28. --mdc-theme-text-primary-on-dark: white;
  29. --mdc-theme-text-secondary-on-dark: rgba(255, 255, 255, 0.7);
  30. --mdc-theme-text-hint-on-dark: rgba(255, 255, 255, 0.5);
  31. --mdc-theme-text-disabled-on-dark: rgba(255, 255, 255, 0.5);
  32. --mdc-theme-text-icon-on-dark: rgba(255, 255, 255, 0.5);
  33. }
  34. .mdc-theme--primary {
  35. color: #6200ee !important;
  36. /* @alternate */
  37. color: var(--mdc-theme-primary, #6200ee) !important;
  38. }
  39. .mdc-theme--secondary {
  40. color: #018786 !important;
  41. /* @alternate */
  42. color: var(--mdc-theme-secondary, #018786) !important;
  43. }
  44. .mdc-theme--background {
  45. background-color: #fff;
  46. /* @alternate */
  47. background-color: var(--mdc-theme-background, #fff);
  48. }
  49. .mdc-theme--surface {
  50. background-color: #fff;
  51. /* @alternate */
  52. background-color: var(--mdc-theme-surface, #fff);
  53. }
  54. .mdc-theme--error {
  55. color: #b00020 !important;
  56. /* @alternate */
  57. color: var(--mdc-theme-error, #b00020) !important;
  58. }
  59. .mdc-theme--on-primary {
  60. color: #fff !important;
  61. /* @alternate */
  62. color: var(--mdc-theme-on-primary, #fff) !important;
  63. }
  64. .mdc-theme--on-secondary {
  65. color: #fff !important;
  66. /* @alternate */
  67. color: var(--mdc-theme-on-secondary, #fff) !important;
  68. }
  69. .mdc-theme--on-surface {
  70. color: #000 !important;
  71. /* @alternate */
  72. color: var(--mdc-theme-on-surface, #000) !important;
  73. }
  74. .mdc-theme--on-error {
  75. color: #fff !important;
  76. /* @alternate */
  77. color: var(--mdc-theme-on-error, #fff) !important;
  78. }
  79. .mdc-theme--text-primary-on-background {
  80. color: rgba(0, 0, 0, 0.87) !important;
  81. /* @alternate */
  82. color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)) !important;
  83. }
  84. .mdc-theme--text-secondary-on-background {
  85. color: rgba(0, 0, 0, 0.54) !important;
  86. /* @alternate */
  87. color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)) !important;
  88. }
  89. .mdc-theme--text-hint-on-background {
  90. color: rgba(0, 0, 0, 0.38) !important;
  91. /* @alternate */
  92. color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)) !important;
  93. }
  94. .mdc-theme--text-disabled-on-background {
  95. color: rgba(0, 0, 0, 0.38) !important;
  96. /* @alternate */
  97. color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)) !important;
  98. }
  99. .mdc-theme--text-icon-on-background {
  100. color: rgba(0, 0, 0, 0.38) !important;
  101. /* @alternate */
  102. color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38)) !important;
  103. }
  104. .mdc-theme--text-primary-on-light {
  105. color: rgba(0, 0, 0, 0.87) !important;
  106. /* @alternate */
  107. color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87)) !important;
  108. }
  109. .mdc-theme--text-secondary-on-light {
  110. color: rgba(0, 0, 0, 0.54) !important;
  111. /* @alternate */
  112. color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, 0.54)) !important;
  113. }
  114. .mdc-theme--text-hint-on-light {
  115. color: rgba(0, 0, 0, 0.38) !important;
  116. /* @alternate */
  117. color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)) !important;
  118. }
  119. .mdc-theme--text-disabled-on-light {
  120. color: rgba(0, 0, 0, 0.38) !important;
  121. /* @alternate */
  122. color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38)) !important;
  123. }
  124. .mdc-theme--text-icon-on-light {
  125. color: rgba(0, 0, 0, 0.38) !important;
  126. /* @alternate */
  127. color: var(--mdc-theme-text-icon-on-light, rgba(0, 0, 0, 0.38)) !important;
  128. }
  129. .mdc-theme--text-primary-on-dark {
  130. color: white !important;
  131. /* @alternate */
  132. color: var(--mdc-theme-text-primary-on-dark, white) !important;
  133. }
  134. .mdc-theme--text-secondary-on-dark {
  135. color: rgba(255, 255, 255, 0.7) !important;
  136. /* @alternate */
  137. color: var(--mdc-theme-text-secondary-on-dark, rgba(255, 255, 255, 0.7)) !important;
  138. }
  139. .mdc-theme--text-hint-on-dark {
  140. color: rgba(255, 255, 255, 0.5) !important;
  141. /* @alternate */
  142. color: var(--mdc-theme-text-hint-on-dark, rgba(255, 255, 255, 0.5)) !important;
  143. }
  144. .mdc-theme--text-disabled-on-dark {
  145. color: rgba(255, 255, 255, 0.5) !important;
  146. /* @alternate */
  147. color: var(--mdc-theme-text-disabled-on-dark, rgba(255, 255, 255, 0.5)) !important;
  148. }
  149. .mdc-theme--text-icon-on-dark {
  150. color: rgba(255, 255, 255, 0.5) !important;
  151. /* @alternate */
  152. color: var(--mdc-theme-text-icon-on-dark, rgba(255, 255, 255, 0.5)) !important;
  153. }
  154. .mdc-theme--primary-bg {
  155. background-color: #6200ee !important;
  156. /* @alternate */
  157. background-color: var(--mdc-theme-primary, #6200ee) !important;
  158. }
  159. .mdc-theme--secondary-bg {
  160. background-color: #018786 !important;
  161. /* @alternate */
  162. background-color: var(--mdc-theme-secondary, #018786) !important;
  163. }
  164. /*# sourceMappingURL=mdc.theme.css.map*/