Ionic + React accounts android app and PWA
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

115 Zeilen
3.0 KiB

  1. /* Ionic Variables and Theming. For more info, please see:
  2. http://ionicframework.com/docs/theming/ */
  3. /** Ionic CSS Variables **/
  4. :root {
  5. /** primary **/
  6. --ion-color-primary: #3880ff;
  7. --ion-color-primary-rgb: 56, 128, 255;
  8. --ion-color-primary-contrast: #ffffff;
  9. --ion-color-primary-contrast-rgb: 255, 255, 255;
  10. --ion-color-primary-shade: #3171e0;
  11. --ion-color-primary-tint: #4c8dff;
  12. /** secondary **/
  13. --ion-color-secondary: #3dc2ff;
  14. --ion-color-secondary-rgb: 61, 194, 255;
  15. --ion-color-secondary-contrast: #ffffff;
  16. --ion-color-secondary-contrast-rgb: 255, 255, 255;
  17. --ion-color-secondary-shade: #36abe0;
  18. --ion-color-secondary-tint: #50c8ff;
  19. /** tertiary **/
  20. --ion-color-tertiary: #5260ff;
  21. --ion-color-tertiary-rgb: 82, 96, 255;
  22. --ion-color-tertiary-contrast: #ffffff;
  23. --ion-color-tertiary-contrast-rgb: 255, 255, 255;
  24. --ion-color-tertiary-shade: #4854e0;
  25. --ion-color-tertiary-tint: #6370ff;
  26. /** success **/
  27. --ion-color-success: #2dd36f;
  28. --ion-color-success-rgb: 45, 211, 111;
  29. --ion-color-success-contrast: #ffffff;
  30. --ion-color-success-contrast-rgb: 255, 255, 255;
  31. --ion-color-success-shade: #28ba62;
  32. --ion-color-success-tint: #42d77d;
  33. /** warning **/
  34. --ion-color-warning: #ffc409;
  35. --ion-color-warning-rgb: 255, 196, 9;
  36. --ion-color-warning-contrast: #000000;
  37. --ion-color-warning-contrast-rgb: 0, 0, 0;
  38. --ion-color-warning-shade: #e0ac08;
  39. --ion-color-warning-tint: #ffca22;
  40. /** danger **/
  41. --ion-color-danger: #eb445a;
  42. --ion-color-danger-rgb: 235, 68, 90;
  43. --ion-color-danger-contrast: #ffffff;
  44. --ion-color-danger-contrast-rgb: 255, 255, 255;
  45. --ion-color-danger-shade: #cf3c4f;
  46. --ion-color-danger-tint: #ed576b;
  47. /** dark **/
  48. --ion-color-dark: #222428;
  49. --ion-color-dark-rgb: 34, 36, 40;
  50. --ion-color-dark-contrast: #ffffff;
  51. --ion-color-dark-contrast-rgb: 255, 255, 255;
  52. --ion-color-dark-shade: #1e2023;
  53. --ion-color-dark-tint: #383a3e;
  54. /** medium **/
  55. --ion-color-medium: #92949c;
  56. --ion-color-medium-rgb: 146, 148, 156;
  57. --ion-color-medium-contrast: #ffffff;
  58. --ion-color-medium-contrast-rgb: 255, 255, 255;
  59. --ion-color-medium-shade: #808289;
  60. --ion-color-medium-tint: #9d9fa6;
  61. /** light **/
  62. --ion-color-light: #f4f5f8;
  63. --ion-color-light-rgb: 244, 245, 248;
  64. --ion-color-light-contrast: #000000;
  65. --ion-color-light-contrast-rgb: 0, 0, 0;
  66. --ion-color-light-shade: #d7d8da;
  67. --ion-color-light-tint: #f5f6f9;
  68. /* Custom Colors */
  69. --red: #c35a5b;
  70. --teal: #36b583;
  71. --black: #0d0d0d;
  72. --black-medium: #212121;
  73. --dark-grey: #565656;
  74. --grey: #898989;
  75. --light-grey: #bcbcbc;
  76. --warning: #ce7f01;
  77. --page-header-size: 21px;
  78. }
  79. * {
  80. text-decoration: none;
  81. outline: none;
  82. box-sizing: border-box;
  83. font-family: 'Poppins', sans-serif;
  84. }
  85. h1, h2, h3, h4, h5, h6 {
  86. margin: 0;
  87. font-weight: 700;
  88. }
  89. button {
  90. background-color: transparent;
  91. }
  92. ul {
  93. list-style: none;
  94. padding: 0;
  95. margin: 0;
  96. }