@covalent/core 4.1.0-develop.2 → 4.1.0-develop.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/common/styles/_elevation.scss +285 -0
  2. package/common/styles/_layout.scss +605 -0
  3. package/common/styles/_palette-dark.scss +326 -0
  4. package/common/styles/_palette-light.scss +637 -0
  5. package/common/styles/_rtl.scss +31 -0
  6. package/common/styles/_styles.scss +10 -0
  7. package/common/styles/_theme-functions.scss +25 -0
  8. package/common/styles/_typography-functions.scss +43 -0
  9. package/common/styles/_variables.scss +99 -0
  10. package/common/styles/colors/_colors-dark.scss +1399 -0
  11. package/common/styles/colors/_colors-light.scss +3235 -0
  12. package/common/styles/colors/_colors.scss +7 -0
  13. package/common/styles/core/_button.scss +90 -0
  14. package/common/styles/core/_card.scss +189 -0
  15. package/common/styles/core/_content.scss +43 -0
  16. package/common/styles/core/_core.scss +23 -0
  17. package/common/styles/core/_divider.scss +16 -0
  18. package/common/styles/core/_icons.scss +22 -0
  19. package/common/styles/core/_list.scss +8 -0
  20. package/common/styles/core/_sidenav.scss +22 -0
  21. package/common/styles/core/_structure.scss +127 -0
  22. package/common/styles/core/_toolbar.scss +53 -0
  23. package/common/styles/core/_whiteframe.scss +138 -0
  24. package/common/styles/font/MaterialIcons-Regular-v48.woff2 +0 -0
  25. package/common/styles/font/_font.scss +99 -0
  26. package/common/styles/utilities/_general.scss +65 -0
  27. package/common/styles/utilities/_pad.scss +36 -0
  28. package/common/styles/utilities/_pull.scss +36 -0
  29. package/common/styles/utilities/_push.scss +36 -0
  30. package/common/styles/utilities/_size.scss +24 -0
  31. package/common/styles/utilities/_text.scss +105 -0
  32. package/common/styles/utilities/_utilities.scss +15 -0
  33. package/package.json +2 -2
@@ -0,0 +1,326 @@
1
+ // Contrasting colors
2
+ $black-87-opacity: rgba(0, 0, 0, 87%);
3
+ $white-87-opacity: rgba(255, 255, 255, 87%);
4
+ // Dark color palettes.
5
+ $mat-dark-red: (
6
+ 500: #f44336,
7
+ B100: #ff4336,
8
+ B65: #a62c23,
9
+ B40: #661b15,
10
+ B30: #4d1410,
11
+ B15: #330d0b,
12
+ contrast: (
13
+ 500: $black-87-opacity,
14
+ B100: $black-87-opacity,
15
+ B65: $black-87-opacity,
16
+ B40: white,
17
+ B30: white,
18
+ B15: white,
19
+ ),
20
+ );
21
+
22
+ $mat-dark-pink: (
23
+ 500: #e91e63,
24
+ B100: #ff216b,
25
+ B65: #a41a47,
26
+ B40: #660d2b,
27
+ B30: #4d0a20,
28
+ B15: #260510,
29
+ contrast: (
30
+ 500: $black-87-opacity,
31
+ B100: $black-87-opacity,
32
+ B65: $black-87-opacity,
33
+ B40: white,
34
+ B30: white,
35
+ B15: white,
36
+ ),
37
+ );
38
+
39
+ $mat-dark-purple: (
40
+ 500: #9c27b0,
41
+ B100: #ec80ff,
42
+ B65: #9224a6,
43
+ B40: #5a1666,
44
+ B30: #41004d,
45
+ B15: #210026,
46
+ contrast: (
47
+ 500: $black-87-opacity,
48
+ B100: $black-87-opacity,
49
+ B65: $black-87-opacity,
50
+ B40: white,
51
+ B30: white,
52
+ B15: white,
53
+ ),
54
+ );
55
+
56
+ $mat-dark-deep-purple: (
57
+ 500: #673ab7,
58
+ B100: #ae80ff,
59
+ B65: #5e35a6,
60
+ B40: #3a2166,
61
+ B30: #1c004d,
62
+ B15: #0e0026,
63
+ contrast: (
64
+ 500: white,
65
+ B100: white,
66
+ B65: white,
67
+ B40: white,
68
+ B30: white,
69
+ B15: white,
70
+ ),
71
+ );
72
+
73
+ $mat-dark-indigo: (
74
+ 500: #3f51b5,
75
+ B100: #8093ff,
76
+ B65: #3a4aa6,
77
+ B40: #242e66,
78
+ B30: #000b4d,
79
+ B15: #000626,
80
+ contrast: (
81
+ 500: white,
82
+ B100: white,
83
+ B65: white,
84
+ B40: white,
85
+ B30: white,
86
+ B15: white,
87
+ ),
88
+ );
89
+
90
+ $mat-dark-blue: (
91
+ 500: #2196f3,
92
+ B100: #80c6ff,
93
+ B65: #1766a6,
94
+ B40: #0e3f66,
95
+ B30: #002a4d,
96
+ B15: #001526,
97
+ contrast: (
98
+ 500: white,
99
+ B100: white,
100
+ B65: white,
101
+ B40: white,
102
+ B30: white,
103
+ B15: white,
104
+ ),
105
+ );
106
+
107
+ $mat-dark-light-blue: (
108
+ 500: #03a9f4,
109
+ B100: #80d7ff,
110
+ B65: #0272a6,
111
+ B40: #014666,
112
+ B30: #00344d,
113
+ B15: #001a26,
114
+ contrast: (
115
+ 500: white,
116
+ B100: white,
117
+ B65: white,
118
+ B40: white,
119
+ B30: white,
120
+ B15: white,
121
+ ),
122
+ );
123
+
124
+ $mat-dark-cyan: (
125
+ 500: #00bcd4,
126
+ B100: #00e1ff,
127
+ B65: #0092a6,
128
+ B40: #005a66,
129
+ B30: #00444d,
130
+ B15: #002226,
131
+ contrast: (
132
+ 500: white,
133
+ B100: white,
134
+ B65: white,
135
+ B40: white,
136
+ B30: white,
137
+ B15: white,
138
+ ),
139
+ );
140
+
141
+ $mat-dark-teal: (
142
+ 500: #009688,
143
+ B100: #00ffe5,
144
+ B65: #00a695,
145
+ B40: #00665c,
146
+ B30: #004d45,
147
+ B15: #002622,
148
+ contrast: (
149
+ 500: white,
150
+ B100: white,
151
+ B65: white,
152
+ B40: white,
153
+ B30: white,
154
+ B15: white,
155
+ ),
156
+ );
157
+
158
+ $mat-dark-green: (
159
+ 500: #4caf50,
160
+ B100: #6eff72,
161
+ B65: #47a64a,
162
+ B40: #2c662e,
163
+ B30: #214d22,
164
+ B15: #102611,
165
+ contrast: (
166
+ 500: white,
167
+ B100: white,
168
+ B65: white,
169
+ B40: white,
170
+ B30: white,
171
+ B15: white,
172
+ ),
173
+ );
174
+
175
+ $mat-dark-light-green: (
176
+ 500: #8bc34a,
177
+ B100: #b5ff61,
178
+ B65: #76a63f,
179
+ B40: #486627,
180
+ B30: #364d1d,
181
+ B15: #1b260f,
182
+ contrast: (
183
+ 500: $black-87-opacity,
184
+ B100: $black-87-opacity,
185
+ B65: white,
186
+ B40: white,
187
+ B30: white,
188
+ B15: white,
189
+ ),
190
+ );
191
+
192
+ $mat-dark-lime: (
193
+ 500: #cddc39,
194
+ B100: #ecff42,
195
+ B65: #99a62b,
196
+ B40: #5e661b,
197
+ B30: #474d14,
198
+ B15: #172621,
199
+ contrast: (
200
+ 500: $black-87-opacity,
201
+ B100: $black-87-opacity,
202
+ B65: $black-87-opacity,
203
+ B40: white,
204
+ B30: white,
205
+ B15: white,
206
+ ),
207
+ );
208
+
209
+ $mat-dark-yellow: (
210
+ 500: #ffeb3b,
211
+ B100: #ffeb3b,
212
+ B65: #a69926,
213
+ B40: #665e17,
214
+ B30: #4d4712,
215
+ B15: #26160c,
216
+ contrast: (
217
+ 500: $black-87-opacity,
218
+ B100: $black-87-opacity,
219
+ B65: $black-87-opacity,
220
+ B40: white,
221
+ B30: white,
222
+ B15: white,
223
+ ),
224
+ );
225
+
226
+ $mat-dark-amber: (
227
+ 500: #ffc107,
228
+ B100: #ffc107,
229
+ B65: #a67e05,
230
+ B40: #664d03,
231
+ B30: #4d3a02,
232
+ B15: #261c15,
233
+ contrast: (
234
+ 500: $black-87-opacity,
235
+ B100: $black-87-opacity,
236
+ B65: $black-87-opacity,
237
+ B40: white,
238
+ B30: white,
239
+ B15: white,
240
+ ),
241
+ );
242
+
243
+ $mat-dark-orange: (
244
+ 500: #ff9800,
245
+ B100: #ff9800,
246
+ B65: #a66300,
247
+ B40: #663d00,
248
+ B30: #4d2e00,
249
+ B15: #261700,
250
+ contrast: (
251
+ 500: $black-87-opacity,
252
+ B100: $black-87-opacity,
253
+ B65: $black-87-opacity,
254
+ B40: white,
255
+ B30: white,
256
+ B15: white,
257
+ ),
258
+ );
259
+
260
+ $mat-dark-deep-orange: (
261
+ 500: #ff5722,
262
+ B100: #ff5722,
263
+ B65: #a63716,
264
+ B40: #66220d,
265
+ B30: #4d190a,
266
+ B15: #260d05,
267
+ contrast: (
268
+ 500: $black-87-opacity,
269
+ B100: $black-87-opacity,
270
+ B65: $black-87-opacity,
271
+ B40: white,
272
+ B30: white,
273
+ B15: white,
274
+ ),
275
+ );
276
+
277
+ $mat-dark-brown: (
278
+ 500: #795548,
279
+ B100: #ffb499,
280
+ B65: #a67563,
281
+ B40: #66483d,
282
+ B30: #4d362e,
283
+ B15: #261b17,
284
+ contrast: (
285
+ 500: white,
286
+ B100: white,
287
+ B65: white,
288
+ B40: white,
289
+ B30: white,
290
+ B15: white,
291
+ ),
292
+ );
293
+
294
+ $mat-dark-grey: (
295
+ 500: #9e9e9e,
296
+ B100: #ffffff,
297
+ B65: #a6a6a6,
298
+ B40: #666666,
299
+ B30: #4d4d4d,
300
+ B15: #262626,
301
+ contrast: (
302
+ 500: $black-87-opacity,
303
+ B100: $black-87-opacity,
304
+ B65: $black-87-opacity,
305
+ B40: white,
306
+ B30: white,
307
+ B15: white,
308
+ ),
309
+ );
310
+
311
+ $mat-dark-blue-grey: (
312
+ 500: #607d8b,
313
+ B100: #b0e5ff,
314
+ B65: #7295a6,
315
+ B40: #465b66,
316
+ B30: #35454d,
317
+ B15: #1a2226,
318
+ contrast: (
319
+ 500: white,
320
+ B100: white,
321
+ B65: white,
322
+ B40: white,
323
+ B30: white,
324
+ B15: white,
325
+ ),
326
+ );