Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

257 wiersze
7.8 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. --brand-black: #1F1F1F;
  70. --brand-red: #6f1a0d;
  71. --brand-red-light: #9b3827;
  72. --brand-brown: #5d422d;
  73. --brand-cream-light: #fbf5e4;
  74. --brand-cream: #fbe7cc;
  75. --standard-vertical-spacing-between-sections: 1.5rem;
  76. --stories-height: 11rem;
  77. --card-radius: 2rem;
  78. --page-padding-value: 1.5rem;
  79. }
  80. // @media (prefers-color-scheme: dark) {
  81. // /*
  82. // * Dark Colors
  83. // * -------------------------------------------
  84. // */
  85. // body {
  86. // --ion-color-primary: #428cff;
  87. // --ion-color-primary-rgb: 66,140,255;
  88. // --ion-color-primary-contrast: #ffffff;
  89. // --ion-color-primary-contrast-rgb: 255,255,255;
  90. // --ion-color-primary-shade: #3a7be0;
  91. // --ion-color-primary-tint: #5598ff;
  92. // --ion-color-secondary: #50c8ff;
  93. // --ion-color-secondary-rgb: 80,200,255;
  94. // --ion-color-secondary-contrast: #ffffff;
  95. // --ion-color-secondary-contrast-rgb: 255,255,255;
  96. // --ion-color-secondary-shade: #46b0e0;
  97. // --ion-color-secondary-tint: #62ceff;
  98. // --ion-color-tertiary: #6a64ff;
  99. // --ion-color-tertiary-rgb: 106,100,255;
  100. // --ion-color-tertiary-contrast: #ffffff;
  101. // --ion-color-tertiary-contrast-rgb: 255,255,255;
  102. // --ion-color-tertiary-shade: #5d58e0;
  103. // --ion-color-tertiary-tint: #7974ff;
  104. // --ion-color-success: #2fdf75;
  105. // --ion-color-success-rgb: 47,223,117;
  106. // --ion-color-success-contrast: #000000;
  107. // --ion-color-success-contrast-rgb: 0,0,0;
  108. // --ion-color-success-shade: #29c467;
  109. // --ion-color-success-tint: #44e283;
  110. // --ion-color-warning: #ffd534;
  111. // --ion-color-warning-rgb: 255,213,52;
  112. // --ion-color-warning-contrast: #000000;
  113. // --ion-color-warning-contrast-rgb: 0,0,0;
  114. // --ion-color-warning-shade: #e0bb2e;
  115. // --ion-color-warning-tint: #ffd948;
  116. // --ion-color-danger: #ff4961;
  117. // --ion-color-danger-rgb: 255,73,97;
  118. // --ion-color-danger-contrast: #ffffff;
  119. // --ion-color-danger-contrast-rgb: 255,255,255;
  120. // --ion-color-danger-shade: #e04055;
  121. // --ion-color-danger-tint: #ff5b71;
  122. // --ion-color-dark: #f4f5f8;
  123. // --ion-color-dark-rgb: 244,245,248;
  124. // --ion-color-dark-contrast: #000000;
  125. // --ion-color-dark-contrast-rgb: 0,0,0;
  126. // --ion-color-dark-shade: #d7d8da;
  127. // --ion-color-dark-tint: #f5f6f9;
  128. // --ion-color-medium: #989aa2;
  129. // --ion-color-medium-rgb: 152,154,162;
  130. // --ion-color-medium-contrast: #000000;
  131. // --ion-color-medium-contrast-rgb: 0,0,0;
  132. // --ion-color-medium-shade: #86888f;
  133. // --ion-color-medium-tint: #a2a4ab;
  134. // --ion-color-light: #222428;
  135. // --ion-color-light-rgb: 34,36,40;
  136. // --ion-color-light-contrast: #ffffff;
  137. // --ion-color-light-contrast-rgb: 255,255,255;
  138. // --ion-color-light-shade: #1e2023;
  139. // --ion-color-light-tint: #383a3e;
  140. // }
  141. // /*
  142. // * iOS Dark Theme
  143. // * -------------------------------------------
  144. // */
  145. // .ios body {
  146. // --ion-background-color: #000000;
  147. // --ion-background-color-rgb: 0,0,0;
  148. // --ion-text-color: #ffffff;
  149. // --ion-text-color-rgb: 255,255,255;
  150. // --ion-color-step-50: #0d0d0d;
  151. // --ion-color-step-100: #1a1a1a;
  152. // --ion-color-step-150: #262626;
  153. // --ion-color-step-200: #333333;
  154. // --ion-color-step-250: #404040;
  155. // --ion-color-step-300: #4d4d4d;
  156. // --ion-color-step-350: #595959;
  157. // --ion-color-step-400: #666666;
  158. // --ion-color-step-450: #737373;
  159. // --ion-color-step-500: #808080;
  160. // --ion-color-step-550: #8c8c8c;
  161. // --ion-color-step-600: #999999;
  162. // --ion-color-step-650: #a6a6a6;
  163. // --ion-color-step-700: #b3b3b3;
  164. // --ion-color-step-750: #bfbfbf;
  165. // --ion-color-step-800: #cccccc;
  166. // --ion-color-step-850: #d9d9d9;
  167. // --ion-color-step-900: #e6e6e6;
  168. // --ion-color-step-950: #f2f2f2;
  169. // --ion-item-background: #000000;
  170. // --ion-card-background: #1c1c1d;
  171. // }
  172. // .ios ion-modal {
  173. // --ion-background-color: var(--ion-color-step-100);
  174. // --ion-toolbar-background: var(--ion-color-step-150);
  175. // --ion-toolbar-border-color: var(--ion-color-step-250);
  176. // }
  177. // /*
  178. // * Material Design Dark Theme
  179. // * -------------------------------------------
  180. // */
  181. // .md body {
  182. // --ion-background-color: #121212;
  183. // --ion-background-color-rgb: 18,18,18;
  184. // --ion-text-color: #ffffff;
  185. // --ion-text-color-rgb: 255,255,255;
  186. // --ion-border-color: #222222;
  187. // --ion-color-step-50: #1e1e1e;
  188. // --ion-color-step-100: #2a2a2a;
  189. // --ion-color-step-150: #363636;
  190. // --ion-color-step-200: #414141;
  191. // --ion-color-step-250: #4d4d4d;
  192. // --ion-color-step-300: #595959;
  193. // --ion-color-step-350: #656565;
  194. // --ion-color-step-400: #717171;
  195. // --ion-color-step-450: #7d7d7d;
  196. // --ion-color-step-500: #898989;
  197. // --ion-color-step-550: #949494;
  198. // --ion-color-step-600: #a0a0a0;
  199. // --ion-color-step-650: #acacac;
  200. // --ion-color-step-700: #b8b8b8;
  201. // --ion-color-step-750: #c4c4c4;
  202. // --ion-color-step-800: #d0d0d0;
  203. // --ion-color-step-850: #dbdbdb;
  204. // --ion-color-step-900: #e7e7e7;
  205. // --ion-color-step-950: #f3f3f3;
  206. // --ion-item-background: #1e1e1e;
  207. // --ion-toolbar-background: #1f1f1f;
  208. // --ion-tab-bar-background: #1f1f1f;
  209. // --ion-card-background: #1e1e1e;
  210. // }
  211. // }
  212. html {
  213. /*
  214. * For more information on dynamic font scaling, visit the documentation:
  215. * https://ionicframework.com/docs/layout/dynamic-font-scaling
  216. */
  217. --ion-dynamic-font: var(--ion-default-dynamic-font);
  218. }