@drivy/cobalt 0.42.2 → 0.42.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.
- package/cjs/tokens/palette.js +78 -60
- package/cjs/tokens/palette.js.map +1 -1
- package/cjs/tokens/theme.js +194 -167
- package/cjs/tokens/theme.js.map +1 -1
- package/components/ContainedIcon/index.js +3 -2
- package/components/ContainedIcon/index.js.map +1 -1
- package/components/Flag/index.js +3 -3
- package/components/Flag/index.js.map +1 -1
- package/components/Form/RadioWithDetails.js +2 -2
- package/components/Form/RadioWithDetails.js.map +1 -1
- package/components/Layout/Components/LayoutCard.js +15 -0
- package/components/Layout/Components/LayoutCard.js.map +1 -0
- package/components/Layout/Components/LayoutSection.js +11 -0
- package/components/Layout/Components/LayoutSection.js.map +1 -0
- package/components/Layout/Components/LayoutSectionTitle.js +8 -0
- package/components/Layout/Components/LayoutSectionTitle.js.map +1 -0
- package/components/Layout/Components/LayoutStack.js +44 -0
- package/components/Layout/Components/LayoutStack.js.map +1 -0
- package/index.js +4 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/styles/components/Form/RadioWithDetails.scss +14 -3
- package/styles/components/Icon/iconColors.scss +64 -52
- package/styles/components/Icon/index.scss +5 -1
- package/styles/components/PlateNumber/index.scss +4 -0
- package/styles/components/Tag/index.scss +4 -0
- package/styles/core/_colors-map.scss +180 -155
- package/styles/core/default-theme.scss +136 -111
- package/styles/core/palette.scss +54 -40
- package/styles/core/theme.scss +281 -231
- package/tokens/palette.js +78 -61
- package/tokens/palette.js.map +1 -1
- package/tokens/theme.js +194 -168
- package/tokens/theme.js.map +1 -1
- package/types/src/components/ContainedIcon/index.d.ts +2 -1
- package/types/src/components/Flag/index.d.ts +2 -1
- package/types/src/components/Icon/index.d.ts +1 -1
- package/types/src/index.d.ts +2 -0
- package/types/src/tokens/index.d.ts +174 -133
- package/utilities.css +370 -327
|
@@ -5,24 +5,14 @@
|
|
|
5
5
|
:root {
|
|
6
6
|
--c-background-primary: var(--c-white);
|
|
7
7
|
--c-background-secondary: var(--c-white);
|
|
8
|
-
--c-background-secondaryInteractive: var(--c-white);
|
|
9
|
-
--c-background-secondaryInteractive--hover: var(--c-navy-50);
|
|
10
8
|
--c-background-accent: var(--c-purple-500);
|
|
11
|
-
--c-background-accentInteractive: var(--c-purple-500);
|
|
12
|
-
--c-background-accentInteractive--hover: var(--c-purple-700);
|
|
13
9
|
--c-background-accentAlt: var(--c-purple-100);
|
|
14
|
-
--c-background-accentAltInteractive: var(--c-purple-100);
|
|
15
|
-
--c-background-accentAltInteractive--hover: var(--c-purpleLight-100);
|
|
16
10
|
--c-background-info: var(--c-yellow-100);
|
|
17
11
|
--c-background-error: var(--c-red-500);
|
|
18
|
-
--c-background-errorInteractive: var(--c-red-500);
|
|
19
|
-
--c-background-errorInteractive--hover: var(--c-red-700);
|
|
20
12
|
--c-background-errorAlt: var(--c-red-100);
|
|
21
13
|
--c-background-success: var(--c-green-700);
|
|
22
14
|
--c-background-successAlt: var(--c-green-100);
|
|
23
15
|
--c-background-connect: var(--c-turquoise-500);
|
|
24
|
-
--c-background-connectInteractive: var(--c-turquoise-500);
|
|
25
|
-
--c-background-connectInteractive--hover: var(--c-turquoise-700);
|
|
26
16
|
--c-background-connectAlt: var(--c-turquoise-50);
|
|
27
17
|
--c-background-driver: var(--c-yellow-500);
|
|
28
18
|
--c-background-owner: var(--c-navy-700);
|
|
@@ -32,147 +22,182 @@
|
|
|
32
22
|
--c-background-seasonLow: var(--c-season-100);
|
|
33
23
|
--c-background-seasonMedium: var(--c-season-200);
|
|
34
24
|
--c-background-seasonHigh: var(--c-season-300);
|
|
35
|
-
--c-background-
|
|
36
|
-
--c-background-
|
|
25
|
+
--c-background-seasonVeryhigh: var(--c-season-400);
|
|
26
|
+
--c-background-rental: var(--c-turquoise-100);
|
|
27
|
+
--c-background-blocker: var(--c-navy-100);
|
|
28
|
+
--c-background-rideshare: var(--c-black-1000);
|
|
29
|
+
--c-background-secondaryInteractive: var(--c-white);
|
|
30
|
+
--c-background-secondaryInteractive--hover: var(--c-navy-50);
|
|
31
|
+
--c-background-accentInteractive: var(--c-purple-500);
|
|
32
|
+
--c-background-accentInteractive--hover: var(--c-purple-700);
|
|
33
|
+
--c-background-accentAltInteractive: var(--c-purple-100);
|
|
34
|
+
--c-background-accentAltInteractive--hover: var(--c-purpleLight-100);
|
|
35
|
+
--c-background-connectInteractive: var(--c-turquoise-500);
|
|
36
|
+
--c-background-connectInteractive--hover: var(--c-turquoise-700);
|
|
37
|
+
--c-background-errorInteractive: var(--c-red-500);
|
|
38
|
+
--c-background-errorInteractive--hover: var(--c-red-700);
|
|
37
39
|
--c-text-base: var(--c-navy-700);
|
|
38
|
-
--c-text-baseInteractive: var(--c-navy-700);
|
|
39
|
-
--c-text-baseInteractive--hover: var(--c-navy-300);
|
|
40
40
|
--c-text-subdued: var(--c-navy-300);
|
|
41
|
-
--c-text-subduedInteractive: var(--c-navy-300);
|
|
42
|
-
--c-text-subduedInteractive--hover: var(--c-navy-500);
|
|
43
41
|
--c-text-accent: var(--c-purple-500);
|
|
44
|
-
--c-text-accentInteractive: var(--c-purple-500);
|
|
45
|
-
--c-text-accentInteractive--hover: var(--c-purple-700);
|
|
46
42
|
--c-text-accentAlt: var(--c-purple-500);
|
|
47
|
-
--c-text-accentAltInteractive: var(--c-purple-500);
|
|
48
|
-
--c-text-accentAltInteractive--hover: var(--c-purple-700);
|
|
49
43
|
--c-text-info: var(--c-yellow-900);
|
|
50
|
-
--c-text-infoAlt: var(--c-yellow-500);
|
|
51
44
|
--c-text-error: var(--c-red-500);
|
|
52
45
|
--c-text-errorAlt: var(--c-red-500);
|
|
53
46
|
--c-text-success: var(--c-green-700);
|
|
54
|
-
--c-text-successAlt: var(--c-green-
|
|
55
|
-
--c-text-warning: var(--c-orange-500);
|
|
47
|
+
--c-text-successAlt: var(--c-green-1000);
|
|
56
48
|
--c-text-connect: var(--c-turquoise-500);
|
|
57
49
|
--c-text-connectAlt: var(--c-turquoise-900);
|
|
58
50
|
--c-text-driver: var(--c-navy-700);
|
|
59
51
|
--c-text-owner: var(--c-white);
|
|
60
|
-
--c-text-
|
|
52
|
+
--c-text-warning: var(--c-orange-500);
|
|
53
|
+
--c-text-infoAlt: var(--c-yellow-700);
|
|
61
54
|
--c-text-disabled: var(--c-navy-200);
|
|
62
55
|
--c-text-onAccent: var(--c-white);
|
|
56
|
+
--c-text-onRideshare: var(--c-white);
|
|
63
57
|
--c-text-onError: var(--c-white);
|
|
64
58
|
--c-text-onSuccess: var(--c-white);
|
|
65
|
-
--c-text-
|
|
66
|
-
--c-text-
|
|
67
|
-
--c-
|
|
68
|
-
--c-
|
|
69
|
-
--c-
|
|
70
|
-
--c-
|
|
71
|
-
--c-
|
|
72
|
-
--c-
|
|
73
|
-
--c-buttonBackground-primaryInteractive--hover: var(--c-purple-700);
|
|
74
|
-
--c-buttonBackground-primaryInteractive--press: var(--c-purple-900);
|
|
75
|
-
--c-buttonBackground-secondaryInteractive: var(--c-white);
|
|
76
|
-
--c-buttonBackground-secondaryInteractive--hover: var(--c-white);
|
|
77
|
-
--c-buttonBackground-secondaryInteractive--press: var(--c-white);
|
|
78
|
-
--c-buttonBackground-success: var(--c-green-700);
|
|
79
|
-
--c-buttonBackground-successAltInteractive: var(--c-green-100);
|
|
80
|
-
--c-buttonBackground-successAltInteractive--hover: var(--c-green-120);
|
|
81
|
-
--c-buttonBackground-successAltInteractive--press: var(--c-green-150);
|
|
82
|
-
--c-buttonBackground-tertiaryInteractive: var(--c-white);
|
|
83
|
-
--c-buttonBackground-tertiaryInteractive--hover: var(--c-white);
|
|
84
|
-
--c-buttonBackground-tertiaryInteractive--press: var(--c-white);
|
|
85
|
-
--c-buttonIcon-selected: var(--c-purple-500);
|
|
86
|
-
--c-buttonIcon-destructiveInteractive: var(--c-red-500);
|
|
87
|
-
--c-buttonIcon-destructiveInteractive--hover: var(--c-red-500);
|
|
88
|
-
--c-buttonIcon-destructiveInteractive--press: var(--c-red-500);
|
|
89
|
-
--c-buttonIcon-disabled: var(--c-navy-300);
|
|
90
|
-
--c-buttonIcon-primaryInteractive: var(--c-white);
|
|
91
|
-
--c-buttonIcon-primaryInteractive--hover: var(--c-white);
|
|
92
|
-
--c-buttonIcon-primaryInteractive--press: var(--c-white);
|
|
93
|
-
--c-buttonIcon-secondaryInteractive: var(--c-purple-500);
|
|
94
|
-
--c-buttonIcon-secondaryInteractive--hover: var(--c-purple-700);
|
|
95
|
-
--c-buttonIcon-secondaryInteractive--press: var(--c-purple-900);
|
|
96
|
-
--c-buttonIcon-success: var(--c-white);
|
|
97
|
-
--c-buttonIcon-successAltInteractive: var(--c-green-900);
|
|
98
|
-
--c-buttonIcon-successAltInteractive--hover: var(--c-green-900);
|
|
99
|
-
--c-buttonIcon-successAltInteractive--press: var(--c-green-900);
|
|
100
|
-
--c-buttonIcon-tertiaryInteractive: var(--c-purple-500);
|
|
101
|
-
--c-buttonIcon-tertiaryInteractive--hover: var(--c-purple-700);
|
|
102
|
-
--c-buttonIcon-tertiaryInteractive--press: var(--c-purple-900);
|
|
103
|
-
--c-buttonLabel-selected: var(--c-purple-500);
|
|
104
|
-
--c-buttonLabel-destructiveInteractive: var(--c-red-500);
|
|
105
|
-
--c-buttonLabel-destructiveInteractive--hover: var(--c-red-500);
|
|
106
|
-
--c-buttonLabel-destructiveInteractive--press: var(--c-red-500);
|
|
107
|
-
--c-buttonLabel-disabled: var(--c-navy-300);
|
|
108
|
-
--c-buttonLabel-primaryInteractive: var(--c-white);
|
|
109
|
-
--c-buttonLabel-primaryInteractive--hover: var(--c-white);
|
|
110
|
-
--c-buttonLabel-primaryInteractive--press: var(--c-white);
|
|
111
|
-
--c-buttonLabel-secondaryInteractive: var(--c-purple-500);
|
|
112
|
-
--c-buttonLabel-secondaryInteractive--hover: var(--c-purple-700);
|
|
113
|
-
--c-buttonLabel-secondaryInteractive--press: var(--c-purple-900);
|
|
114
|
-
--c-buttonLabel-success: var(--c-white);
|
|
115
|
-
--c-buttonLabel-successAltInteractive: var(--c-green-900);
|
|
116
|
-
--c-buttonLabel-successAltInteractive--hover: var(--c-green-900);
|
|
117
|
-
--c-buttonLabel-successAltInteractive--press: var(--c-green-900);
|
|
118
|
-
--c-buttonLabel-tertiaryInteractive: var(--c-purple-500);
|
|
119
|
-
--c-buttonLabel-tertiaryInteractive--hover: var(--c-purple-700);
|
|
120
|
-
--c-buttonLabel-tertiaryInteractive--press: var(--c-purple-900);
|
|
59
|
+
--c-text-baseInteractive: var(--c-navy-700);
|
|
60
|
+
--c-text-baseInteractive--hover: var(--c-navy-900);
|
|
61
|
+
--c-text-subduedInteractive: var(--c-navy-300);
|
|
62
|
+
--c-text-subduedInteractive--hover: var(--c-navy-500);
|
|
63
|
+
--c-text-accentInteractive: var(--c-purple-500);
|
|
64
|
+
--c-text-accentInteractive--hover: var(--c-purple-700);
|
|
65
|
+
--c-text-accentAltInteractive: var(--c-purple-500);
|
|
66
|
+
--c-text-accentAltInteractive--hover: var(--c-purple-700);
|
|
121
67
|
--c-icon-base: var(--c-navy-500);
|
|
122
|
-
--c-icon-baseInteractive: var(--c-navy-500);
|
|
123
|
-
--c-icon-baseInteractive--hover: var(--c-navy-700);
|
|
124
68
|
--c-icon-subdued: var(--c-navy-300);
|
|
125
|
-
--c-icon-subduedInteractive: var(--c-navy-300);
|
|
126
|
-
--c-icon-subduedInteractive--hover: var(--c-navy-500);
|
|
127
69
|
--c-icon-accent: var(--c-purple-500);
|
|
128
|
-
--c-icon-accentInteractive: var(--c-purple-500);
|
|
129
|
-
--c-icon-accentInteractive--hover: var(--c-purple-700);
|
|
130
70
|
--c-icon-accentAlt: var(--c-purple-500);
|
|
131
|
-
--c-icon-accentAltInteractive: var(--c-purple-500);
|
|
132
|
-
--c-icon-accentAltInteractive--hover: var(--c-purple-700);
|
|
133
71
|
--c-icon-info: var(--c-yellow-900);
|
|
134
|
-
--c-icon-infoAlt: var(--c-yellow-500);
|
|
135
72
|
--c-icon-error: var(--c-red-500);
|
|
136
73
|
--c-icon-errorAlt: var(--c-red-500);
|
|
137
74
|
--c-icon-success: var(--c-green-700);
|
|
138
|
-
--c-icon-successAlt: var(--c-green-
|
|
139
|
-
--c-icon-warning: var(--c-orange-500);
|
|
75
|
+
--c-icon-successAlt: var(--c-green-1000);
|
|
140
76
|
--c-icon-connect: var(--c-turquoise-500);
|
|
141
77
|
--c-icon-connectAlt: var(--c-turquoise-900);
|
|
142
78
|
--c-icon-driver: var(--c-navy-700);
|
|
143
79
|
--c-icon-owner: var(--c-white);
|
|
144
|
-
--c-icon-inversed: var(--c-white);
|
|
145
80
|
--c-icon-disabled: var(--c-navy-100);
|
|
146
|
-
--c-icon-
|
|
147
|
-
--c-icon-
|
|
81
|
+
--c-icon-disabledAlt: var(--c-navy-300);
|
|
82
|
+
--c-icon-warning: var(--c-orange-500);
|
|
83
|
+
--c-icon-infoAlt: var(--c-yellow-500);
|
|
84
|
+
--c-icon-onAccent: var(--c-white);
|
|
85
|
+
--c-icon-rideshare: var(--c-black-1000);
|
|
86
|
+
--c-icon-onRideshare: var(--c-white);
|
|
87
|
+
--c-icon-onSuccess: var(--c-white);
|
|
88
|
+
--c-icon-onError: var(--c-white);
|
|
89
|
+
--c-icon-baseInteractive: var(--c-navy-500);
|
|
90
|
+
--c-icon-baseInteractive--hover: var(--c-navy-700);
|
|
91
|
+
--c-icon-subduedInteractive: var(--c-navy-300);
|
|
92
|
+
--c-icon-subduedInteractive--hover: var(--c-navy-500);
|
|
93
|
+
--c-icon-accentInteractive: var(--c-purple-500);
|
|
94
|
+
--c-icon-accentInteractive--hover: var(--c-purple-700);
|
|
95
|
+
--c-icon-accentAltInteractive: var(--c-purple-500);
|
|
96
|
+
--c-icon-accentAltInteractive--hover: var(--c-purple-700);
|
|
148
97
|
--c-stroke-base: var(--c-navy-100);
|
|
149
|
-
--c-stroke-
|
|
150
|
-
--c-stroke-baseInteractive--hover: var(--c-navy-300);
|
|
151
|
-
--c-stroke-baseInteractive--press: var(--c-navy-500);
|
|
152
|
-
--c-stroke-strong: var(--c-navy-300);
|
|
153
|
-
--c-stroke-strongInteractive: var(--c-navy-300);
|
|
154
|
-
--c-stroke-strongInteractive--hover: var(--c-navy-500);
|
|
155
|
-
--c-stroke-strongInteractive--press: var(--c-navy-700);
|
|
156
|
-
--c-stroke-subdued: var(--c-navy-100);
|
|
98
|
+
--c-stroke-subdued: var(--c-navy-50);
|
|
157
99
|
--c-stroke-accent: var(--c-purple-500);
|
|
158
|
-
--c-stroke-accentInteractive: var(--c-purple-500);
|
|
159
|
-
--c-stroke-accentInteractive--hover: var(--c-purple-700);
|
|
160
|
-
--c-stroke-accentInteractive--press: var(--c-purple-900);
|
|
161
100
|
--c-stroke-accentAlt: var(--c-purple-300);
|
|
162
|
-
--c-stroke-error: var(--c-red-500);
|
|
163
|
-
--c-stroke-errorAlt: var(--c-red-500);
|
|
164
101
|
--c-stroke-success: var(--c-green-500);
|
|
165
102
|
--c-stroke-successAlt: var(--c-green-500);
|
|
103
|
+
--c-stroke-error: var(--c-red-500);
|
|
104
|
+
--c-stroke-errorAlt: var(--c-red-500);
|
|
105
|
+
--c-stroke-strong: var(--c-navy-300);
|
|
166
106
|
--c-stroke-onAccent: var(--c-white);
|
|
107
|
+
--c-stroke-rentals: var(--c-turquoise-500);
|
|
108
|
+
--c-stroke-blokers: var(--c-navy-300);
|
|
167
109
|
--c-stroke-onError: var(--c-white);
|
|
110
|
+
--c-stroke-onSuccess: var(--c-white);
|
|
111
|
+
--c-stroke-baseInteractive: var(--c-navy-100);
|
|
112
|
+
--c-stroke-baseInteractive--hover: var(--c-navy-300);
|
|
113
|
+
--c-stroke-baseInteractive--press: var(--c-navy-500);
|
|
114
|
+
--c-stroke-accentInteractive: var(--c-purple-500);
|
|
115
|
+
--c-stroke-accentInteractive--hover: var(--c-purple-700);
|
|
116
|
+
--c-stroke-accentInteractive--press: var(--c-purple-900);
|
|
117
|
+
--c-buttonIcon-primary: var(--c-white);
|
|
118
|
+
--c-buttonIcon-secondary: var(--c-purple-500);
|
|
119
|
+
--c-buttonIcon-tertiary: var(--c-purple-500);
|
|
120
|
+
--c-buttonIcon-destructive: var(--c-red-500);
|
|
121
|
+
--c-buttonIcon-success: var(--c-white);
|
|
122
|
+
--c-buttonIcon-successAlt: var(--c-green-900);
|
|
123
|
+
--c-buttonIcon-disabled: var(--c-navy-300);
|
|
124
|
+
--c-buttonIcon-accentAlt: var(--c-purple-500);
|
|
125
|
+
--c-buttonIcon-primaryInteractive: var(--c-white);
|
|
126
|
+
--c-buttonIcon-primaryInteractive--hover: var(--c-white);
|
|
127
|
+
--c-buttonIcon-primaryInteractive--press: var(--c-white);
|
|
128
|
+
--c-buttonIcon-secondaryInteractive: var(--c-purple-500);
|
|
129
|
+
--c-buttonIcon-secondaryInteractive--hover: var(--c-purple-700);
|
|
130
|
+
--c-buttonIcon-secondaryInteractive--press: var(--c-purple-900);
|
|
131
|
+
--c-buttonIcon-tertiaryInteractive: var(--c-purple-500);
|
|
132
|
+
--c-buttonIcon-tertiaryInteractive--hover: var(--c-purple-700);
|
|
133
|
+
--c-buttonIcon-tertiaryInteractive--press: var(--c-purple-900);
|
|
134
|
+
--c-buttonIcon-destructiveInteractive: var(--c-red-500);
|
|
135
|
+
--c-buttonIcon-destructiveInteractive--hover: var(--c-red-500);
|
|
136
|
+
--c-buttonIcon-destructiveInteractive--press: var(--c-red-500);
|
|
137
|
+
--c-buttonIcon-successAltInteractive: var(--c-green-900);
|
|
138
|
+
--c-buttonIcon-successAltInteractive--hover: var(--c-green-900);
|
|
139
|
+
--c-buttonIcon-successAltInteractive--press: var(--c-green-900);
|
|
140
|
+
--c-buttonLabel-primary: var(--c-white);
|
|
141
|
+
--c-buttonLabel-secondary: var(--c-purple-500);
|
|
142
|
+
--c-buttonLabel-tertiary: var(--c-purple-500);
|
|
143
|
+
--c-buttonLabel-disabled: var(--c-navy-300);
|
|
144
|
+
--c-buttonLabel-accentAlt: var(--c-purple-500);
|
|
145
|
+
--c-buttonLabel-destructive: var(--c-red-500);
|
|
146
|
+
--c-buttonLabel-success: var(--c-white);
|
|
147
|
+
--c-buttonLabel-successAlt: var(--c-green-900);
|
|
148
|
+
--c-buttonLabel-primaryInteractive: var(--c-white);
|
|
149
|
+
--c-buttonLabel-primaryInteractive--hover: var(--c-white);
|
|
150
|
+
--c-buttonLabel-primaryInteractive--press: var(--c-white);
|
|
151
|
+
--c-buttonLabel-secondaryInteractive: var(--c-purple-500);
|
|
152
|
+
--c-buttonLabel-secondaryInteractive--hover: var(--c-purple-700);
|
|
153
|
+
--c-buttonLabel-secondaryInteractive--press: var(--c-purple-900);
|
|
154
|
+
--c-buttonLabel-tertiaryInteractive: var(--c-purple-500);
|
|
155
|
+
--c-buttonLabel-tertiaryInteractive--hover: var(--c-purple-700);
|
|
156
|
+
--c-buttonLabel-tertiaryInteractive--press: var(--c-purple-900);
|
|
157
|
+
--c-buttonLabel-destructiveInteractive: var(--c-red-500);
|
|
158
|
+
--c-buttonLabel-destructiveInteractive--hover: var(--c-red-500);
|
|
159
|
+
--c-buttonLabel-destructiveInteractive--press: var(--c-red-500);
|
|
160
|
+
--c-buttonLabel-successAltInteractive: var(--c-green-900);
|
|
161
|
+
--c-buttonLabel-successAltInteractive--hover: var(--c-green-900);
|
|
162
|
+
--c-buttonLabel-successAltInteractive--press: var(--c-green-900);
|
|
163
|
+
--c-buttonBackground-primary: var(--c-purple-500);
|
|
164
|
+
--c-buttonBackground-secondary: var(--c-white);
|
|
165
|
+
--c-buttonBackground-tertiary: var(--c-white);
|
|
166
|
+
--c-buttonBackground-accentAlt: var(--c-purple-100);
|
|
167
|
+
--c-buttonBackground-destructive: var(--c-red-100);
|
|
168
|
+
--c-buttonBackground-success: var(--c-green-700);
|
|
169
|
+
--c-buttonBackground-successAlt: var(--c-green-100);
|
|
170
|
+
--c-buttonBackground-disabled: var(--c-navy-100);
|
|
171
|
+
--c-buttonBackground-primaryInteractive: var(--c-purple-500);
|
|
172
|
+
--c-buttonBackground-primaryInteractive--hover: var(--c-purple-700);
|
|
173
|
+
--c-buttonBackground-primaryInteractive--press: var(--c-purple-900);
|
|
174
|
+
--c-buttonBackground-secondaryInteractive: var(--c-white);
|
|
175
|
+
--c-buttonBackground-secondaryInteractive--hover: var(--c-white);
|
|
176
|
+
--c-buttonBackground-secondaryInteractive--press: var(--c-white);
|
|
177
|
+
--c-buttonBackground-tertiaryInteractive: var(--c-white);
|
|
178
|
+
--c-buttonBackground-tertiaryInteractive--hover: var(--c-white);
|
|
179
|
+
--c-buttonBackground-tertiaryInteractive--press: var(--c-white);
|
|
180
|
+
--c-buttonBackground-destructiveInteractive: var(--c-red-100);
|
|
181
|
+
--c-buttonBackground-destructiveInteractive--hover: var(--c-red-120);
|
|
182
|
+
--c-buttonBackground-destructiveInteractive--press: var(--c-red-150);
|
|
183
|
+
--c-buttonBackground-successAltInteractive: var(--c-green-100);
|
|
184
|
+
--c-buttonBackground-successAltInteractive--hover: var(--c-green-120);
|
|
185
|
+
--c-buttonBackground-successAltInteractive--press: var(--c-green-150);
|
|
168
186
|
--c-fill-base: var(--c-navy-500);
|
|
187
|
+
--c-fill-accent: var(--c-purple-500);
|
|
169
188
|
--c-fill-secondary: var(--c-yellow-500);
|
|
170
189
|
--c-fill-subdued: var(--c-navy-100);
|
|
171
|
-
--c-fill-
|
|
190
|
+
--c-fill-neutral: var(--c-navy-50);
|
|
191
|
+
--c-fill-negative: var(--c-red-150);
|
|
172
192
|
--c-fill-accentAlt: var(--c-purple-100);
|
|
193
|
+
--c-fill-disabled: var(--c-navy-300);
|
|
173
194
|
--c-fill-error: var(--c-red-500);
|
|
174
|
-
--c-fill-negative: var(--c-red-150);
|
|
175
195
|
--c-fill-success: var(--c-green-500);
|
|
176
|
-
--c-fill-
|
|
177
|
-
--c-fill-
|
|
196
|
+
--c-fill-rentals: var(--c-turquoise-100);
|
|
197
|
+
--c-fill-blockers: var(--c-navy-120);
|
|
198
|
+
--c-illustrations-primary: var(--c-navy-500);
|
|
199
|
+
--c-illustrations-secondary: var(--c-white);
|
|
200
|
+
--c-illustrations-acccent1: var(--c-purple-500);
|
|
201
|
+
--c-illustrations-accent2: var(--c-blue-500);
|
|
202
|
+
--c-illustrations-foregroundDark: var(--c-white);
|
|
178
203
|
}
|
package/styles/core/palette.scss
CHANGED
|
@@ -3,31 +3,14 @@
|
|
|
3
3
|
/*** DO NOT MODIFY IT DIRECTLY ****/
|
|
4
4
|
/**********************************/
|
|
5
5
|
:root {
|
|
6
|
-
--c-
|
|
7
|
-
--c-
|
|
8
|
-
--c-
|
|
9
|
-
--c-
|
|
10
|
-
--c-
|
|
11
|
-
--c-
|
|
12
|
-
--c-
|
|
13
|
-
--c-
|
|
14
|
-
--c-green-120: #bfe5bd;
|
|
15
|
-
--c-green-150: #b1e0ae;
|
|
16
|
-
--c-green-500: #5cbf54;
|
|
17
|
-
--c-green-700: #479d3e;
|
|
18
|
-
--c-green-900: #2f6d1c;
|
|
19
|
-
--c-green-1000: #15310d;
|
|
20
|
-
--c-navy-50: #f1f1f4;
|
|
21
|
-
--c-navy-100: #e3e2e8;
|
|
22
|
-
--c-navy-200: #bbb8c7;
|
|
23
|
-
--c-navy-300: #7b728e;
|
|
24
|
-
--c-navy-500: #362e53;
|
|
25
|
-
--c-navy-700: #261a48;
|
|
26
|
-
--c-navy-900: #0f0429;
|
|
27
|
-
--c-orange-100: #f1d5b1;
|
|
28
|
-
--c-orange-300: #eec186;
|
|
29
|
-
--c-orange-500: #e39735;
|
|
30
|
-
--c-orange-900: #462e0c;
|
|
6
|
+
--c-white: #ffffff;
|
|
7
|
+
--c-purple-100: #f6e5f5;
|
|
8
|
+
--c-purple-300: #ca6bc3;
|
|
9
|
+
--c-purple-400: #c04fb8;
|
|
10
|
+
--c-purple-500: #b01aa7;
|
|
11
|
+
--c-purple-700: #8d1586;
|
|
12
|
+
--c-purple-900: #5f1159;
|
|
13
|
+
--c-purple-2000: #d62929;
|
|
31
14
|
--c-purpleDeep-100: #f2a6ee;
|
|
32
15
|
--c-purpleDeep-300: #ea71e3;
|
|
33
16
|
--c-purpleDeep-400: #c31dba;
|
|
@@ -35,37 +18,68 @@
|
|
|
35
18
|
--c-purpleDeep-700: #73116e;
|
|
36
19
|
--c-purpleDeep-900: #4b0b48;
|
|
37
20
|
--c-purpleLight-100: #ffdcfd;
|
|
38
|
-
--c-
|
|
39
|
-
--c-
|
|
40
|
-
--c-
|
|
41
|
-
--c-
|
|
42
|
-
--c-
|
|
43
|
-
--c-
|
|
21
|
+
--c-navy-50: #f1f1f4;
|
|
22
|
+
--c-navy-100: #e3e2e8;
|
|
23
|
+
--c-navy-120: #cac7d2;
|
|
24
|
+
--c-navy-200: #bbb8c7;
|
|
25
|
+
--c-navy-300: #7b728e;
|
|
26
|
+
--c-navy-500: #362e53;
|
|
27
|
+
--c-navy-700: #261a48;
|
|
28
|
+
--c-navy-900: #0f0429;
|
|
29
|
+
--c-yellow-100: #ffeed1;
|
|
30
|
+
--c-yellow-300: #ffdda3;
|
|
31
|
+
--c-yellow-500: #ffc766;
|
|
32
|
+
--c-yellow-700: #c59548;
|
|
33
|
+
--c-yellow-900: #75592d;
|
|
34
|
+
--c-yellow-1000: #3b2e17;
|
|
35
|
+
--c-green-100: #cdebcb;
|
|
36
|
+
--c-green-120: #bfe5bd;
|
|
37
|
+
--c-green-150: #b1e0ae;
|
|
38
|
+
--c-green-500: #5cbf54;
|
|
39
|
+
--c-green-700: #479d3e;
|
|
40
|
+
--c-green-900: #2f6d1c;
|
|
41
|
+
--c-green-1000: #1b500a;
|
|
44
42
|
--c-red-100: #fdeded;
|
|
45
43
|
--c-red-120: #fbdada;
|
|
46
44
|
--c-red-150: #f9c8c8;
|
|
47
|
-
--c-red-
|
|
45
|
+
--c-red-200: #e38c8c;
|
|
48
46
|
--c-red-400: #ed4545;
|
|
49
47
|
--c-red-500: #c71414;
|
|
50
48
|
--c-red-700: #af1212;
|
|
49
|
+
--c-red-800: #764747;
|
|
51
50
|
--c-red-900: #3f2424;
|
|
51
|
+
--c-orange-100: #f1d5b1;
|
|
52
|
+
--c-orange-300: #eec186;
|
|
53
|
+
--c-orange-500: #e39735;
|
|
54
|
+
--c-orange-900: #462e0c;
|
|
55
|
+
--c-black-50: #544f53;
|
|
56
|
+
--c-black-75: #443f44;
|
|
57
|
+
--c-black-100: #363036;
|
|
58
|
+
--c-black-300: #282127;
|
|
59
|
+
--c-black-500: #191218;
|
|
60
|
+
--c-black-1000: #000000;
|
|
61
|
+
--c-grey-50: #f8f9fa;
|
|
62
|
+
--c-grey-100: #e3e2e3;
|
|
63
|
+
--c-grey-300: #a9a6a9;
|
|
64
|
+
--c-grey-500: #918d91;
|
|
65
|
+
--c-blue-500: #79a3f3;
|
|
52
66
|
--c-turquoise-50: #ecf9fb;
|
|
67
|
+
--c-turquoise-100: #cfeff5;
|
|
68
|
+
--c-turquoise-200: #afe5ee;
|
|
69
|
+
--c-turquoise-300: #8edbe7;
|
|
70
|
+
--c-turquoise-400: #76d3e2;
|
|
53
71
|
--c-turquoise-500: #5ecbdd;
|
|
72
|
+
--c-turquoise-600: #56c6d9;
|
|
54
73
|
--c-turquoise-700: #4cbed4;
|
|
74
|
+
--c-turquoise-800: #42b8cf;
|
|
55
75
|
--c-turquoise-900: #31acc7;
|
|
56
|
-
--c-
|
|
57
|
-
--c-yellow-100: #ffeed1;
|
|
58
|
-
--c-yellow-300: #ffdda3;
|
|
59
|
-
--c-yellow-500: #ffc766;
|
|
60
|
-
--c-yellow-700: #c59548;
|
|
61
|
-
--c-yellow-900: #75592d;
|
|
62
|
-
--c-yellow-1000: #3b2e17;
|
|
76
|
+
--c-turquoise-1200: #11505e;
|
|
63
77
|
--c-season-100: #bdffac;
|
|
64
78
|
--c-season-200: #94ea84;
|
|
65
79
|
--c-season-300: #73c865;
|
|
66
80
|
--c-season-400: #54a949;
|
|
67
81
|
--c-season-700: #0b7011;
|
|
68
82
|
--c-season-800: #005100;
|
|
69
|
-
--c-season-900: #
|
|
83
|
+
--c-season-900: #003300;
|
|
70
84
|
--c-season-1000: #001900;
|
|
71
85
|
}
|