1
+
2
+ /* Ionic Variables and Theming. For more information, please see
3
+ * https://ionicframework.com/docs/theming/
4
+ */
5
+
6
+ /** Core CSS required for ionic components to work property */
7
+ @import "~@ionic/core/css/core.css" ;
8
+
9
+ /** Basic CSS for apps built with Ionic */
10
+ /* @import "~@ionic/core/css/normalize.css";
11
+ @import "~@ionic/core/css/structure.css";
12
+ @import "~@ionic/core/css/typography.css"; */
13
+
14
+ /** Optional CSS utils that can be commented out */
15
+ @import "~@ionic/core/css/padding.css" ;
16
+ @import "~@ionic/core/css/float-elements.css" ;
17
+ @import "~@ionic/core/css/text-alignment.css" ;
18
+ @import "~@ionic/core/css/text-transformation.css" ;
19
+ @import "~@ionic/core/css/flex-utils.css" ;
20
+
21
+
22
+ /* Ionic Colors
23
+ * --------------------------------------------------
24
+ * Named colors makes it easy to reuse colors on various components.
25
+ * It's highly recommended to change the default colors
26
+ * to match your app's branding. Ionic provides eight layered colors
27
+ * that can be changed to theme an app. Additional colors can be
28
+ * added as well (see below). For more information, please see
29
+ * https://ionicframework.com/docs/theming/advanced
30
+ *
31
+ * To easily create custom color palettes for your app’s UI,
32
+ * check out our color generator:
33
+ * https://ionicframework.com/docs/theming/color-generator
34
+ */
35
+
36
+ : root {
37
+ --ion-color-primary : # 3880ff ;
38
+ --ion-color-primary-rgb : 56 , 128 , 255 ;
39
+ --ion-color-primary-contrast : # ffffff ;
40
+ --ion-color-primary-contrast-rgb : 255 , 255 , 255 ;
41
+ --ion-color-primary-shade : # 3171e0 ;
42
+ --ion-color-primary-tint : # 4c8dff ;
43
+
44
+ --ion-color-secondary : # 0cd1e8 ;
45
+ --ion-color-secondary-rgb : 12 , 209 , 232 ;
46
+ --ion-color-secondary-contrast : # ffffff ;
47
+ --ion-color-secondary-contrast-rgb : 255 , 255 , 255 ;
48
+ --ion-color-secondary-shade : # 0bb8cc ;
49
+ --ion-color-secondary-tint : # 24d6ea ;
50
+
51
+ --ion-color-tertiary : # 7044ff ;
52
+ --ion-color-tertiary-rgb : 112 , 68 , 255 ;
53
+ --ion-color-tertiary-contrast : # ffffff ;
54
+ --ion-color-tertiary-contrast-rgb : 255 , 255 , 255 ;
55
+ --ion-color-tertiary-shade : # 633ce0 ;
56
+ --ion-color-tertiary-tint : # 7e57ff ;
57
+
58
+ --ion-color-success : # 10dc60 ;
59
+ --ion-color-success-rgb : 16 , 220 , 96 ;
60
+ --ion-color-success-contrast : # ffffff ;
61
+ --ion-color-success-contrast-rgb : 255 , 255 , 255 ;
62
+ --ion-color-success-shade : # 0ec254 ;
63
+ --ion-color-success-tint : # 28e070 ;
64
+
65
+ --ion-color-warning : # ffce00 ;
66
+ --ion-color-warning-rgb : 255 , 206 , 0 ;
67
+ --ion-color-warning-contrast : # ffffff ;
68
+ --ion-color-warning-contrast-rgb : 255 , 255 , 255 ;
69
+ --ion-color-warning-shade : # e0b500 ;
70
+ --ion-color-warning-tint : # ffd31a ;
71
+
72
+ --ion-color-danger : # f04141 ;
73
+ --ion-color-danger-rgb : 245 , 61 , 61 ;
74
+ --ion-color-danger-contrast : # ffffff ;
75
+ --ion-color-danger-contrast-rgb : 255 , 255 , 255 ;
76
+ --ion-color-danger-shade : # d33939 ;
77
+ --ion-color-danger-tint : # f25454 ;
78
+
79
+ --ion-color-dark : # 222428 ;
80
+ --ion-color-dark-rgb : 34 , 34 , 34 ;
81
+ --ion-color-dark-contrast : # ffffff ;
82
+ --ion-color-dark-contrast-rgb : 255 , 255 , 255 ;
83
+ --ion-color-dark-shade : # 1e2023 ;
84
+ --ion-color-dark-tint : # 383a3e ;
85
+
86
+ --ion-color-medium : # 989aa2 ;
87
+ --ion-color-medium-rgb : 152 , 154 , 162 ;
88
+ --ion-color-medium-contrast : # ffffff ;
89
+ --ion-color-medium-contrast-rgb : 255 , 255 , 255 ;
90
+ --ion-color-medium-shade : # 86888f ;
91
+ --ion-color-medium-tint : # a2a4ab ;
92
+
93
+ --ion-color-light : # f4f5f8 ;
94
+ --ion-color-light-rgb : 244 , 244 , 244 ;
95
+ --ion-color-light-contrast : # 000000 ;
96
+ --ion-color-light-contrast-rgb : 0 , 0 , 0 ;
97
+ --ion-color-light-shade : # d7d8da ;
98
+ --ion-color-light-tint : # f5f6f9 ;
99
+ }
0 commit comments