@omniumretail/component-library 1.2.55 → 1.2.56
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.
package/package.json
CHANGED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
body.a2aiStyle {
|
|
2
|
+
// Primary Colors
|
|
3
|
+
--color-black: #2c2d2e;
|
|
4
|
+
--color-black-rgb: 44, 45, 46;
|
|
5
|
+
--color-white: #FFFFFF;
|
|
6
|
+
--color-white-rgb: 255, 255, 255;
|
|
7
|
+
|
|
8
|
+
--color-orange: purple;
|
|
9
|
+
--color-orange-rgb: 255, 103, 76;
|
|
10
|
+
|
|
11
|
+
--color-blue: #09168B;
|
|
12
|
+
--color-blue-rgb: 9, 22, 139;
|
|
13
|
+
|
|
14
|
+
--color-grey-light: #f0f0f0;
|
|
15
|
+
--color-grey-light-rgb: 240, 240, 240;
|
|
16
|
+
--color-grey: #C7CAC9;
|
|
17
|
+
--color-grey-rgb: 199, 202, 201;
|
|
18
|
+
--color-grey-dark: #797979;
|
|
19
|
+
--color-grey-dark-rgb: 121, 121, 121;
|
|
20
|
+
|
|
21
|
+
// Helper Colors
|
|
22
|
+
--color-warning-400: #E36262;
|
|
23
|
+
--color-warning-500: #E05151;
|
|
24
|
+
|
|
25
|
+
--color-confirmation-400: #73b9a2;
|
|
26
|
+
--color-confirmation-600: #64B298;
|
|
27
|
+
|
|
28
|
+
// Font Family
|
|
29
|
+
--font-family-primary: SF Pro;
|
|
30
|
+
|
|
31
|
+
// Font Weight
|
|
32
|
+
--font-weight-light: 300;
|
|
33
|
+
--font-weight-regular: 400;
|
|
34
|
+
--font-weight-medium: 500;
|
|
35
|
+
--font-weight-semibold: 600;
|
|
36
|
+
--font-weight-bold: 700;
|
|
37
|
+
|
|
38
|
+
// Font Styles
|
|
39
|
+
--font-style-normal: normal;
|
|
40
|
+
--font-style-italic: italic;
|
|
41
|
+
|
|
42
|
+
// Font Sizes
|
|
43
|
+
--font-size-body-1: 10px;
|
|
44
|
+
--font-size-body-2: 12px;
|
|
45
|
+
--font-size-body-3: 14px;
|
|
46
|
+
--font-size-body-4: 16px;
|
|
47
|
+
--font-size-body-5: 18px;
|
|
48
|
+
--font-size-body-6: 20px;
|
|
49
|
+
|
|
50
|
+
--font-size-h1: 46px;
|
|
51
|
+
--font-size-h2: 40px;
|
|
52
|
+
--font-size-h3: 36px;
|
|
53
|
+
--font-size-h4: 30px;
|
|
54
|
+
--font-size-h5: 24px;
|
|
55
|
+
|
|
56
|
+
--font-size-body-base: var(--font-size-body-4);
|
|
57
|
+
--font-size-label: var(--font-size-body-3);
|
|
58
|
+
|
|
59
|
+
// Button Default
|
|
60
|
+
--button-default-background: var(--color-orange);
|
|
61
|
+
--button-default-text-color: var(--color-white);
|
|
62
|
+
--button-default-background-hover-color: rgba(var(--color-orange-rgb), .9);
|
|
63
|
+
--button-default-text-hover-color: var(--color-white);
|
|
64
|
+
--button-default-background-focus-color: var(--color-grey-dark);
|
|
65
|
+
--button-default-text-focus-color: rgba(var(--color-white-rgb), .8);
|
|
66
|
+
|
|
67
|
+
// Button Style 1
|
|
68
|
+
--button-style-1-background: var(--color-black);
|
|
69
|
+
--button-style-1-text-color: var(--color-white);
|
|
70
|
+
--button-style-1-background-hover-color: rgba(var(--color-black-rgb), .9);
|
|
71
|
+
--button-style-1-text-hover-color: var(--color-white);
|
|
72
|
+
--button-style-1-background-focus-color: var(--color-grey-dark);
|
|
73
|
+
--button-style-1-text-focus-color: rgba(var(--color-white-rgb), .8);
|
|
74
|
+
|
|
75
|
+
// Button Disabled
|
|
76
|
+
--button-disabled-background-color: rgba(var(--color-grey));
|
|
77
|
+
--button-disabled-default-text-color: var(--color-white);
|
|
78
|
+
|
|
79
|
+
// Link
|
|
80
|
+
--link-color: var(--color-orange);
|
|
81
|
+
--link-hover-color: var(--color-black);
|
|
82
|
+
--link-focus-color: rgba(var(--color-orange), .9);
|
|
83
|
+
--link-disabled-color: rgba(var(--color-grey), .2);
|
|
84
|
+
|
|
85
|
+
// Transition Speed
|
|
86
|
+
--transition-fast: .2s;
|
|
87
|
+
--transition: .6s;
|
|
88
|
+
--transition-slow: 1s;
|
|
89
|
+
}
|